eschulte / rinari

Rinari Is Not A Rails IDE (it is an Emacs minor mode for Rails)
http://rinari.rubyforge.org
GNU General Public License v3.0
412 stars 68 forks source link

Rinari does not support rvm #24

Closed simao closed 12 years ago

simao commented 12 years ago

When I try to run rinari-web-server It fails with the following message:

Could not find activesupport-3.2.2 in any of the sources
Run `bundle install` to install missing gems.

Presumably because even though I am using rvm.el, rinari is not using rvm.

Is there something I can do about this?

Thanks

purcell commented 12 years ago

Rinari can't know whether or not you need rvm until it tries (and perhaps fails) to start ruby processes. For this reason, it's intentionally the responsibility of the user to make sure rinari can execute the ruby commands properly. In practice, this means you will need to use rvm.el to do something like: M-x rvm-activate-corresponding-ruby.

-Steve

simao commented 12 years ago

Yes that worked. Thanks