Rails 3.0.0, Passenger 2.2.15:

  • Create a new Rails project
  • Add gem 'paperclip', :git => 'git://github.com/lmumar/paperclip.git', :branch => 'rails3' to your Gemfile
  • Do bundle install
  • Everything OK, starting with rails/script server & accessing also works
  • However, when accessing with Passenger, it says:

git://github.com/lmumar/paperclip.git (at rails3) is not checked out. Please run bundle install (Bundler::GitError)

I have tried bundler pack (doesn't help) and setting BUNDER_HOME to ~/.bundler (the Paperclip git gets installed there by bundler install) in the .htaccess and various places in config/*.rb, but this wasn't successful, too.

~/.bundler is owned by the same user as the Rails project (Passenger runs under this user), so it can't be a permission problem. sudo is installed and called by bundle install.

Any hints?

link|improve this question
Isn't this a better candidate for serverfault since it deals with setting up nginx or apache? – alternative Aug 31 '10 at 0:35
I don't understand. I have the problems with Passenger, using Apache. – amay82 Aug 31 '10 at 0:50
bundle pack solve my problem. stackoverflow.com/questions/2494399/… – zires Apr 19 at 3:16
feedback

4 Answers

Im used to have this problem, resolve using

bundle --deployment

Which will install the gems in vendor/bundle

link|improve this answer
3  
+1 This works, too, and is much simpler. – GarlicFries Mar 3 '11 at 17:01
This works perfectly, thanks. The docs say it shouldn't be used for development though, so on a development machine you would use bundle install --path vendor/bundle instead. – Dave James Miller Dec 6 '11 at 11:43
I don't want my gems in my git repository. – The Doctor What Feb 17 at 20:55
feedback

Solution (took me a few hours):

Mare sure that RAILS_ROOT/.bundle/config (SetEnv etc. didn't work for me) contains:

--- 
BUNDLE_PATH: /home/xxxxx/.bundler

Note BUNDLE_PATH, not BUNDLER_PATH! There was also an DISABLED_SHARED_GEMS=1 entry, I removed it.

Then bundler recognises the correct path even when loaded from Passenger. Without Passenger, it always worked (and used /home/xxxxx/.bundler, as said in the question)

link|improve this answer
Saved my day! Thanks for sharing. – Fábio Batista Nov 4 '10 at 18:34
And mine! Thanks a lot. I left DISABLED_SHARED_GEMS=1 in place btw. – artemave Jan 18 '11 at 10:40
1  
I didn't have a .bundler directory in my home before adding the config option to .bundle/config and then re-running bundle install. After I did that, I had the directory and passenger was able to find the bundled gems. – orangechicken Jan 26 '11 at 8:38
@orangechicken Thanks! that worked for me. Only detail is that I had to create the folder in the home folder of the user that is running the server process – HappyDeveloper Feb 22 at 21:13
feedback

You can use bundle install --path vendor/bundle to install the gems locally, instead of into system gems.

If you want to keep using system gems, though, it's just one line in your Apache configuration to tell Passenger where to find your system gems:

SetEnv GEM_HOME /Users/bob/.bundle

There's a slightly more elaborate writeup on my blog at Using Passenger with GEM_HOME set

link|improve this answer
vendoring my gems didn't work for me using passenger/nginx :( – Macario May 27 '11 at 21:36
I don't want my gems in my git repository. – The Doctor What Feb 17 at 20:55
feedback

I ran into this problem while writing a Sinatra app. To solve it I added this line to config.ru.

require 'bundler/setup'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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