Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <pre><code>bold_rewards ∴ ruby -v ruby 1.9.2p0 (2010-08-18 revision 29036) [x86_64-darwin10.5.0] bold_rewards ∴ rake -T | wc -l 46 bold_rewards ∴ cd vendor/plugins/pretty_flash pretty_flash ∴ rake -T | wc -l 6 pretty_flash ∴ cd ../../.. bold_rewards ∴ rails c Loading development environment (Rails 3.0.3) &gt;&gt; Dir.pwd =&gt; "/Users/george/work/bold_rewards" &gt;&gt; `rake -T | wc -l`.chomp.strip =&gt; "46" &gt;&gt; Dir.chdir 'vendor/plugins/pretty_flash' =&gt; 0 &gt;&gt; Dir.pwd =&gt; "/Users/george/work/bold_rewards/vendor/plugins/pretty_flash" &gt;&gt; `rake -T | wc -l`.chomp.strip =&gt; "6" &gt;&gt; Dir.chdir Rails.root =&gt; 0 &gt;&gt; `rake -T | wc -l`.chomp.strip =&gt; "46" &gt;&gt; </code></pre> <p>Unfortunately, I think Bundler is a much tougher nut to crack:</p> <pre><code>increment ∴ cat Gemfile source 'http://rubygems.org' gem 'rails', '3.0.3' # Bundle edge Rails instead: # gem 'rails', :git =&gt; 'git://github.com/rails/rails.git' gem 'sqlite3-ruby', :require =&gt; 'sqlite3' # Use unicorn as the web server # gem 'unicorn' # Deploy with Capistrano # gem 'capistrano' # To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+) # gem 'ruby-debug' # gem 'ruby-debug19' # Bundle the extra gems: # gem 'bj' # gem 'nokogiri' # gem 'sqlite3-ruby', :require =&gt; 'sqlite3' # gem 'aws-s3', :require =&gt; 'aws/s3' # Bundle gems for the local environment. Make sure to # put test-only gems in this group so their generators # and rake tasks are available in development mode: # group :development, :test do # gem 'webrat' # end increment ∴ cat vendor/subproject_x/Gemfile source 'http://rubygems.org' gem 'net-ssh' increment ∴ rails c Loading development environment (Rails 3.0.3) &gt;&gt; Dir.pwd =&gt; "/Users/george/tmp/increment" &gt;&gt; `BUNDLE_GEMFILE="vendor/subproject_x/Gemfile" bundle install` =&gt; "\e[31mCould not find net-ssh-2.0.24 in any of the sources\e[0m\n" &gt;&gt; Dir.chdir 'vendor/subproject_x' =&gt; 0 &gt;&gt; Dir.entries '.' =&gt; [".", "..", "Gemfile", "Rakefile"] &gt;&gt; Dir.pwd =&gt; "/Users/george/tmp/increment/vendor/subproject_x" &gt;&gt; `BUNDLE_GEMFILE="Gemfile" bundle install` =&gt; "\e[31mCould not find net-ssh-2.0.24 in any of the sources\e[0m\n" &gt;&gt; Dir.chdir Rails.root =&gt; 0 &gt;&gt; Dir.pwd =&gt; "/Users/george/tmp/increment" &gt;&gt; `BUNDLE_GEMFILE="vendor/subproject_x/Gemfile" bundle install` =&gt; "\e[31mCould not find net-ssh-2.0.24 in any of the sources\e[0m\n" &gt;&gt; quit increment ∴ cd vendor/subproject_x subproject_x ∴ bundle install Fetching source index for http://rubygems.org/ Installing net-ssh (2.0.24) Using bundler (1.0.7) Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed. subproject_x ∴ </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload