Created
October 12, 2010 15:56
-
-
Save takkanm/622417 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| % jruby -S gem list | |
| *** LOCAL GEMS *** | |
| rake (0.8.7) | |
| takkanm@takkanm.local ~/work/rails_sexy_validator/blog | |
| % jruby -S gem install bundler rails | |
| JRuby limited openssl loaded. http://jruby.org/openssl | |
| gem install jruby-openssl for full support. | |
| ^C% takkanm@takkanm.local ~/work/rails_sexy_validator/blog | |
| % jruby -S gem list | |
| *** LOCAL GEMS *** | |
| rake (0.8.7) | |
| takkanm@takkanm.local ~/work/rails_sexy_validator/blog | |
| % jruby --1.9 -S gem list | |
| *** LOCAL GEMS *** | |
| rake (local) | |
| takkanm@takkanm.local ~/work/rails_sexy_validator/blog | |
| % jruby --1.9 -S gem install bundler rails | |
| JRuby limited openssl loaded. http://jruby.org/openssl | |
| gem install jruby-openssl for full support. | |
| Successfully installed bundler-1.0.2 | |
| Successfully installed activesupport-3.0.0 | |
| Successfully installed builder-2.1.2 | |
| Successfully installed i18n-0.4.1 | |
| Successfully installed activemodel-3.0.0 | |
| Successfully installed rack-1.2.1 | |
| Successfully installed rack-test-0.5.6 | |
| Successfully installed rack-mount-0.6.13 | |
| Successfully installed tzinfo-0.3.23 | |
| Successfully installed abstract-1.0.0 | |
| Successfully installed erubis-2.6.6 | |
| Successfully installed actionpack-3.0.0 | |
| Successfully installed arel-1.0.1 | |
| Successfully installed activerecord-3.0.0 | |
| Successfully installed activeresource-3.0.0 | |
| Successfully installed mime-types-1.16 | |
| Successfully installed polyglot-0.3.1 | |
| Successfully installed treetop-1.4.8 | |
| Successfully installed mail-2.2.7 | |
| Successfully installed actionmailer-3.0.0 | |
| Successfully installed thor-0.14.3 | |
| Successfully installed railties-3.0.0 | |
| Successfully installed rails-3.0.0 | |
| 23 gems installed | |
| takkanm@takkanm.local ~/work/rails_sexy_validator/blog | |
| % jruby --1.9 -S bundle install | |
| JRuby limited openssl loaded. http://jruby.org/openssl | |
| gem install jruby-openssl for full support. | |
| Fetching source index for http://rubygems.org/ | |
| /Users/takkanm/.rvm/rubies/jruby-head/lib/ruby/1.9/tsort.rb:204:in `each_strongly_connected_component_from': bignum too big to convert into `long' (RangeError) | |
| from /Users/takkanm/.rvm/gems/ruby-1.8.7-p302/gems/bundler-1.0.2/lib/bundler/spec_set.rb:130:in `tsort_each_child' | |
| from /Users/takkanm/.rvm/gems/ruby-1.8.7-p302/gems/bundler-1.0.2/lib/bundler/spec_set.rb:130:in `each' | |
| from /Users/takkanm/.rvm/gems/ruby-1.8.7-p302/gems/bundler-1.0.2/lib/bundler/spec_set.rb:130:in `tsort_each_child' | |
| from /Users/takkanm/.rvm/gems/ruby-1.8.7-p302/gems/bundler-1.0.2/lib/bundler/spec_set.rb:128:in `each' | |
| from /Users/takkanm/.rvm/gems/ruby-1.8.7-p302/gems/bundler-1.0.2/lib/bundler/spec_set.rb:128:in `tsort_each_child' | |
| from /Users/takkanm/.rvm/rubies/jruby-head/lib/ruby/1.9/tsort.rb:203:in `each_strongly_connected_component_from' | |
| from /Users/takkanm/.rvm/rubies/jruby-head/lib/ruby/1.9/tsort.rb:208:in `each_strongly_connected_component_from' | |
| from /Users/takkanm/.rvm/gems/ruby-1.8.7-p302/gems/bundler-1.0.2/lib/bundler/spec_set.rb:130:in `tsort_each_child' | |
| ... 21 levels... | |
| from /Users/takkanm/.rvm/gems/ruby-1.8.7-p302/gems/bundler-1.0.2/bin/bundle:13 | |
| from /Users/takkanm/.rvm/gems/ruby-1.8.7-p302/gems/bundler-1.0.2/bin/bundle:19:in `load' | |
| from /Users/takkanm/.rvm/gems/jruby-head/bin/bundle:19 | |
| % cat Gemfile | |
| source 'http://rubygems.org' | |
| gem 'rails', '3.0.0' | |
| gem 'sqlite3-ruby', :require => 'sqlite3' | |
| group :development, :test do | |
| gem 'rspec', '>=2.0.0.beta.20' | |
| gem 'rspec-rails', '>=2.0.0.beta.20' | |
| end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment