Using the paperclip-cloudfiles fork of paperclip:

gem 'paperclip-cloudfiles', '~>2.3', :require => 'paperclip'

Using passenger and I get the following load error: no such file to load -- cocaine

Key part of stack trace:

.rvm/gems/ruby-1.9.2-p180/gems/paperclip-cloudfiles-2.3.10.1/lib/paperclip.rb   43  in `'

Paperclip works fine locally on the development server. Haven't been able to find any reference to this problem. Any ideas?

link|improve this question

lol.. it seems to be a required file in paperclip from what I've been able to tell. – John Jun 1 '11 at 1:30
On a side note...try and help other's here, your profile shows you've asked 38 questions and answered 0. Try and be a 'giver' rather than a 'taker'. Everyone out here has other engagements and jobs. You don't need to be an expert to answer questions here, I am not! Just a bit of philosophy, hope you don't mind... ;) – amit_saxena Jun 1 '11 at 1:37
Just started doing software, mostly a hardware guy – John Jun 1 '11 at 1:40
feedback

4 Answers

I would add

gem require 'cocaine'

to your Gemfile then run bundle install again.

Extra credit . . . add the dependency to the gem itself and send it back to the community at large.

link|improve this answer
feedback
up vote 0 down vote accepted

[SOLVED]: Downgraded paperclip-cloudfiles to '2.3.8' and it works. Must be a problem with the current version.

link|improve this answer
feedback

Have you already run bundle install on your production server?

link|improve this answer
ran bundle install. yes – John Jun 1 '11 at 1:33
and also restarted passenger after running bundle install. – amit_saxena Jun 1 '11 at 1:39
restarted the whole server – John Jun 1 '11 at 1:54
1  
Running sudo bundle install is silly. Just bundle install. – Ryan Bigg Jun 1 '11 at 3:05
sorry 'Bigg' bro... ;) Even though it is technically correct, but not necessary infact as bundle install itself asks for a password if it needs to install a gem. Edited the answer. That downvote hurt real bad...;) why are you so angry....you also had the option of editing the answer.....:P – amit_saxena Jun 1 '11 at 4:03
feedback

You can simply install the missing cocaine gem by 'gem install cocaine' and everything works.

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.