Created
July 14, 2010 09:27
-
-
Save ashmoran/475240 to your computer and use it in GitHub Desktop.
Bundler 1.0.0.beta.5 won't load Aruba
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
| 4> ~/Desktop/bundler % ruby this_fails.rb | |
| /Users/ashleymoran/.rvm/gems/ruby-1.9.2-rc1/gems/aruba-0.2.0/lib/aruba/cucumber.rb:3:in `<top (required)>': undefined method `World' for main:Object (NoMethodError) | |
| from /Users/ashleymoran/.rvm/gems/ruby-1.9.2-rc1/gems/aruba-0.2.0/lib/aruba.rb:1:in `require' | |
| from /Users/ashleymoran/.rvm/gems/ruby-1.9.2-rc1/gems/aruba-0.2.0/lib/aruba.rb:1:in `<top (required)>' | |
| from /Users/ashleymoran/.rvm/gems/ruby-1.9.2-rc1/gems/bundler-1.0.0.beta.5/lib/bundler/runtime.rb:55:in `require' | |
| from /Users/ashleymoran/.rvm/gems/ruby-1.9.2-rc1/gems/bundler-1.0.0.beta.5/lib/bundler/runtime.rb:55:in `block (2 levels) in require' | |
| from /Users/ashleymoran/.rvm/gems/ruby-1.9.2-rc1/gems/bundler-1.0.0.beta.5/lib/bundler/runtime.rb:54:in `each' | |
| from /Users/ashleymoran/.rvm/gems/ruby-1.9.2-rc1/gems/bundler-1.0.0.beta.5/lib/bundler/runtime.rb:54:in `block in require' | |
| from /Users/ashleymoran/.rvm/gems/ruby-1.9.2-rc1/gems/bundler-1.0.0.beta.5/lib/bundler/runtime.rb:45:in `each' | |
| from /Users/ashleymoran/.rvm/gems/ruby-1.9.2-rc1/gems/bundler-1.0.0.beta.5/lib/bundler/runtime.rb:45:in `require' | |
| from /Users/ashleymoran/.rvm/gems/ruby-1.9.2-rc1/gems/bundler-1.0.0.beta.5/lib/bundler.rb:109:in `require' | |
| from this_fails.rb:3:in `<main>' |
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
| source :rubygems | |
| group :cucumber do | |
| gem "cucumber" | |
| gem "aruba" | |
| end |
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
| require 'rubygems' | |
| require 'bundler' | |
| Bundler.require(:cucumber) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment