Reputation: 12224
I have a feeling this has to do with rvm no longer using an .rvmrc
file:
SystemExit: exit
/Library/Ruby/Gems/1.8/gems/bundler-0.9.26/lib/bundler/setup.rb:16:in `exit'
/Library/Ruby/Gems/1.8/gems/bundler-0.9.26/lib/bundler/setup.rb:16
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_requir e.rb:36:in `gem_original_require'
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:36:in `require'
Now rvm
uses two files instead of .rvmrc
:
.ruby-version
.ruby-gemset
I don't know that Pow knows how to use those files. Because those files above that are getting used are from the global gemset, which tells me that my gemset isn't getting picked up.
Upvotes: 0
Views: 192
Reputation: 785
You can still use .rvmrc if you like, it will take precedence over the two new rvm .dotfiles.
Upvotes: 2