Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using RVM, Ruby 1.9.2, Rails 3, Passenger 3.0.2 configured for Nginx, I setup server configuration correctly. Another app working so far.

But for the new app, when booting server

http://myapp.local (its configured with hosts to point server bind on Nginx conf) It returns (Bundler::GemNotFound) error. How to get around this?

Thanks.

share|improve this question
Please include the stack trace of the error so we can get some more insight into it. – raidfive Jan 25 '11 at 22:06
This is the backtrace from Passenger shorttext.com/w485coz56bs – Harry Jan 26 '11 at 0:10
it says "Could not find activemerchant-1.10.0 in any of the sources (Bundler::GemNotFound)" but it cannot find any gem. Not activemerchant related. (Tested with re-configure Gemfile) – Harry Jan 26 '11 at 0:11

2 Answers

up vote 11 down vote accepted

Believe it or not this is a very common problem most Rails Developers will come across. Have a look at this post which details the fix I think you are looking for. Best of luck. http://dalibornasevic.com/posts/21-rvm-and-passenger-setup-for-rails-2-and-rails-3-apps

share|improve this answer
Thanks, I'll check this out – Harry Jan 26 '11 at 4:29
It works. Solution also mentioned here too rvm.beginrescueend.com/integration/passenger – Harry Jan 26 '11 at 8:19
1  
Also RVM's .rvmrc file must be on root path. – Harry Jan 26 '11 at 8:20
Great stuff, Good Luck Harry. – halfcube Jan 26 '11 at 9:57

For a clearer and up to date solution, check out the official docs page on using RVM rubies with Passenger.

For the gist of it, add

if ENV['MY_RUBY_HOME'] && ENV['MY_RUBY_HOME'].include?('rvm')
  begin
    gems_path = ENV['MY_RUBY_HOME'].split(/@/)[0].sub(/rubies/,'gems')
    ENV['GEM_PATH'] = "#{gems_path}:#{gems_path}@global"
    require 'rvm'
    RVM.use_from_path! File.dirname(File.dirname(__FILE__))
  rescue LoadError
    raise "RVM gem is currently unavailable."
  end
end

# If you're not using Bundler at all, remove lines bellow
ENV['BUNDLE_GEMFILE'] = File.expand_path('../Gemfile', File.dirname(__FILE__))
require 'bundler/setup'

to your <rails-app-path>/config/setup_load_paths.rb.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.