I have the following gems defined in the environment.rb file:
config.gem "authlogic"
config.gem "paperclip"
config.gem "pauldix-feedzirra", :lib => "feedzirra", :source => "http://gems.github.com"
config.gem 'whenever', :lib => false, :source => 'http://gemcutter.org/'
I installed them on my local computer and everything works fine. Since I'm working on a shared server (DreamHost), I need to unzip these gems to make them work (I can’t install them the way I did on my computer to get them to work).
Before downloading, I ran the following on my local machine:
rake gems:unpack
This created the following folders in /vender/gems:
authlogic-2.1.3, paperclip-2.3.1.1, pauldix-feedzirra-0.0.18, whenever-0.4.1
So it looks like they are all there.
When I run rake db:migrateon the server, I get the following error:
Missing these required gems:
pauldix-feedzirra
For some reason, the raw feedzirra gem has not been discovered. Can someone make it clear why this is happening and a potential solution?
Thank!
EDIT: , environment.rb , bundler . ?