Skip to content

Instantly share code, notes, and snippets.

Created February 2, 2012 10:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/1722814 to your computer and use it in GitHub Desktop.
Save anonymous/1722814 to your computer and use it in GitHub Desktop.
rails3
robinhood:~ steve$ mkdir junk89
robinhood:~ steve$ cd junk89
robinhood:junk89 steve$ ls
robinhood:junk89 steve$ rvm install ruby-1.9.3
Installing Ruby from source to: /Users/steve/.rvm/rubies/ruby-1.9.3-preview1, this may take a while depending on your cpu(s)...
ruby-1.9.3-preview1 - #fetching
ruby-1.9.3-preview1 - #downloading ruby-1.9.3-preview1, this may take a while depending on your connection...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 9284k 100 9284k 0 0 43541 0 0:03:38 0:03:38 --:--:-- 53393
ruby-1.9.3-preview1 - #extracting ruby-1.9.3-preview1 to /Users/steve/.rvm/src/ruby-1.9.3-preview1
ruby-1.9.3-preview1 - #extracted to /Users/steve/.rvm/src/ruby-1.9.3-preview1
Fetching yaml-0.1.4.tar.gz to /Users/steve/.rvm/archives
Extracting yaml-0.1.4.tar.gz to /Users/steve/.rvm/src
Configuring yaml in /Users/steve/.rvm/src/yaml-0.1.4.
Compiling yaml in /Users/steve/.rvm/src/yaml-0.1.4.
Installing yaml to /Users/steve/.rvm/usr
ruby-1.9.3-preview1 - #configuring
ruby-1.9.3-preview1 - #compiling
ruby-1.9.3-preview1 - #installing
Removing old Rubygems files...
Installing rubygems-1.8.6 for ruby-1.9.3-preview1 ...
Installation of rubygems completed successfully.
ruby-1.9.3-preview1 - adjusting #shebangs for (gem irb erb ri rdoc testrb rake).
ruby-1.9.3-preview1 - #importing default gemsets (/Users/steve/.rvm/gemsets/)
Install of ruby-1.9.3-preview1 - #complete
robinhood:junk89 steve$ rvm use ruby-1.9.3
Using /Users/steve/.rvm/gems/ruby-1.9.3-preview1
robinhood:junk89 steve$ rvm gemset list
gemsets for ruby-1.9.3-preview1 (found in /Users/steve/.rvm/gems/ruby-1.9.3-preview1)
global
robinhood:junk89 steve$ rvm gemset create new_rails
'new_rails' gemset created (/Users/steve/.rvm/gems/ruby-1.9.3-preview1@new_rails).
robinhood:junk89 steve$ rvm gemset list
gemsets for ruby-1.9.3-preview1 (found in /Users/steve/.rvm/gems/ruby-1.9.3-preview1)
global
new_rails
robinhood:junk89 steve$ rvm gemset use new_rails
robinhood:junk89 steve$ gem install bundler
Fetching: bundler-1.0.21.gem (100%)
Successfully installed bundler-1.0.21
1 gem installed
Installing ri documentation for bundler-1.0.21...
Installing RDoc documentation for bundler-1.0.21...
robinhood:junk89 steve$ gem install rails
Fetching: i18n-0.6.0.gem (100%)
Fetching: multi_json-1.0.4.gem (100%)
Fetching: activesupport-3.2.1.gem (100%)
Fetching: builder-3.0.0.gem (100%)
Fetching: activemodel-3.2.1.gem (100%)
Fetching: rack-1.4.1.gem (100%)
Fetching: rack-cache-1.1.gem (100%)
Fetching: rack-test-0.6.1.gem (100%)
Fetching: journey-1.0.1.gem (100%)
Fetching: hike-1.2.1.gem (100%)
Fetching: tilt-1.3.3.gem (100%)
Fetching: sprockets-2.1.2.gem (100%)
Fetching: erubis-2.7.0.gem (100%)
Fetching: actionpack-3.2.1.gem (100%)
Fetching: arel-3.0.0.gem (100%)
Fetching: tzinfo-0.3.31.gem (100%)
Fetching: activerecord-3.2.1.gem (100%)
Fetching: activeresource-3.2.1.gem (100%)
Fetching: mime-types-1.17.2.gem (100%)
Fetching: polyglot-0.3.3.gem (100%)
Fetching: treetop-1.4.10.gem (100%)
Fetching: mail-2.4.1.gem (100%)
Fetching: actionmailer-3.2.1.gem (100%)
Fetching: thor-0.14.6.gem (100%)
Fetching: rack-ssl-1.3.2.gem (100%)
Fetching: json-1.6.5.gem (100%)
Building native extensions. This could take a while...
Fetching: rdoc-3.12.gem (100%)
Depending on your version of ruby, you may need to install ruby rdoc/ri data:
<= 1.8.6 : unsupported
= 1.8.7 : gem install rdoc-data; rdoc-data --install
= 1.9.1 : gem install rdoc-data; rdoc-data --install
>= 1.9.2 : nothing to do! Yay!
Fetching: railties-3.2.1.gem (100%)
Fetching: rails-3.2.1.gem (100%)
Successfully installed i18n-0.6.0
Successfully installed multi_json-1.0.4
Successfully installed activesupport-3.2.1
Successfully installed builder-3.0.0
Successfully installed activemodel-3.2.1
Successfully installed rack-1.4.1
Successfully installed rack-cache-1.1
Successfully installed rack-test-0.6.1
Successfully installed journey-1.0.1
Successfully installed hike-1.2.1
Successfully installed tilt-1.3.3
Successfully installed sprockets-2.1.2
Successfully installed erubis-2.7.0
Successfully installed actionpack-3.2.1
Successfully installed arel-3.0.0
Successfully installed tzinfo-0.3.31
Successfully installed activerecord-3.2.1
Successfully installed activeresource-3.2.1
Successfully installed mime-types-1.17.2
Successfully installed polyglot-0.3.3
Successfully installed treetop-1.4.10
Successfully installed mail-2.4.1
Successfully installed actionmailer-3.2.1
Successfully installed thor-0.14.6
Successfully installed rack-ssl-1.3.2
Successfully installed json-1.6.5
Successfully installed rdoc-3.12
Successfully installed railties-3.2.1
Successfully installed rails-3.2.1
29 gems installed
Installing ri documentation for i18n-0.6.0...
Installing ri documentation for multi_json-1.0.4...
Installing ri documentation for activesupport-3.2.1...
Installing ri documentation for builder-3.0.0...
unable to convert "\xF1" from ASCII-8BIT to UTF-8 for README, skipping
unable to convert "\xF1" from ASCII-8BIT to UTF-8 for README.rdoc, skipping
Installing ri documentation for activemodel-3.2.1...
Installing ri documentation for rack-1.4.1...
Installing ri documentation for rack-cache-1.1...
Installing ri documentation for rack-test-0.6.1...
Installing ri documentation for journey-1.0.1...
Installing ri documentation for hike-1.2.1...
Installing ri documentation for tilt-1.3.3...
Installing ri documentation for sprockets-2.1.2...
Installing ri documentation for erubis-2.7.0...
Installing ri documentation for actionpack-3.2.1...
Installing ri documentation for arel-3.0.0...
Installing ri documentation for tzinfo-0.3.31...
Installing ri documentation for activerecord-3.2.1...
Installing ri documentation for activeresource-3.2.1...
Installing ri documentation for mime-types-1.17.2...
Installing ri documentation for polyglot-0.3.3...
Installing ri documentation for treetop-1.4.10...
Installing ri documentation for mail-2.4.1...
Installing ri documentation for actionmailer-3.2.1...
Installing ri documentation for thor-0.14.6...
Installing ri documentation for rack-ssl-1.3.2...
Installing ri documentation for json-1.6.5...
Installing ri documentation for rdoc-3.12...
Installing ri documentation for railties-3.2.1...
Installing ri documentation for rails-3.2.1...
Installing RDoc documentation for i18n-0.6.0...
Installing RDoc documentation for multi_json-1.0.4...
Installing RDoc documentation for activesupport-3.2.1...
Installing RDoc documentation for builder-3.0.0...
unable to convert "\xF1" from ASCII-8BIT to UTF-8 for README, skipping
unable to convert "\xF1" from ASCII-8BIT to UTF-8 for README.rdoc, skipping
Installing RDoc documentation for activemodel-3.2.1...
Installing RDoc documentation for rack-1.4.1...
Installing RDoc documentation for rack-cache-1.1...
Installing RDoc documentation for rack-test-0.6.1...
Installing RDoc documentation for journey-1.0.1...
Installing RDoc documentation for hike-1.2.1...
Installing RDoc documentation for tilt-1.3.3...
Installing RDoc documentation for sprockets-2.1.2...
Installing RDoc documentation for erubis-2.7.0...
Installing RDoc documentation for actionpack-3.2.1...
Installing RDoc documentation for arel-3.0.0...
Installing RDoc documentation for tzinfo-0.3.31...
Installing RDoc documentation for activerecord-3.2.1...
Installing RDoc documentation for activeresource-3.2.1...
Installing RDoc documentation for mime-types-1.17.2...
Installing RDoc documentation for polyglot-0.3.3...
Installing RDoc documentation for treetop-1.4.10...
Installing RDoc documentation for mail-2.4.1...
Installing RDoc documentation for actionmailer-3.2.1...
Installing RDoc documentation for thor-0.14.6...
Installing RDoc documentation for rack-ssl-1.3.2...
Installing RDoc documentation for json-1.6.5...
Installing RDoc documentation for rdoc-3.12...
Installing RDoc documentation for railties-3.2.1...
Installing RDoc documentation for rails-3.2.1...
robinhood:junk89 steve$ rails new new_app
^C/Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/version.rb:269:in `scan': Interrupt
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/version.rb:269:in `segments'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/version.rb:298:in `<=>'
from /Users/steve/.rvm/gems/ruby-1.9.3-preview1@new_rails/specifications/rails-3.2.1.gemspec:21:in `>='
from /Users/steve/.rvm/gems/ruby-1.9.3-preview1@new_rails/specifications/rails-3.2.1.gemspec:21:in `block in load'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:1346:in `initialize'
from /Users/steve/.rvm/gems/ruby-1.9.3-preview1@new_rails/specifications/rails-3.2.1.gemspec:3:in `new'
from /Users/steve/.rvm/gems/ruby-1.9.3-preview1@new_rails/specifications/rails-3.2.1.gemspec:3:in `load'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:546:in `eval'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:546:in `load'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:269:in `block (2 levels) in _all'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:268:in `each'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:268:in `block in _all'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:267:in `reverse_each'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:267:in `_all'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:409:in `each'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/dependency.rb:216:in `find_all'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/dependency.rb:216:in `matching_specs'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/dependency.rb:238:in `to_specs'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems/dependency.rb:256:in `to_spec'
from /Users/steve/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/site_ruby/1.9.1/rubygems.rb:1195:in `gem'
from /Users/steve/.rvm/gems/ruby-1.9.3-preview1@new_rails/bin/rails:18:in `<main>'
robinhood:junk89 steve$
robinhood:junk89 steve$ rails new new_app --skip-bundle
^Crobinhood:junk89 steve$
robinhood:junk89 steve$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment