vote up 2 vote down star
1

In my rails application I once used authlogic-oid and ruby-openid. Now I want to get rid of them and I removed both gems and also their config.gem lines from my environment.rb.

Although my application works, I can't do any database migrations because I get a "Missing these required gems" error. Also if I run rake gems:install these gems are re-installed.

Where are the references to the gems stored?

flag

1 Answer

vote up 4 vote down check

The standard way to define a gem dependency is in the environment configuration. It usually takes place in the environment.rb file for any environment, but some gems might be specified also per-environment. Check the environment files in config/environments.

Also make sure some file doesn't include the gem with the classic RubyGems gem command.

Finally, check these gems are not required by other gems or plugins used by your application.

link|flag
Additionally I found out, that plugins can require their own gems, as it was the case in my situation. If you add that to your answer, I'll accept it :) – DR Jul 25 at 15:09
Answer updated! ;) – weppos Jul 25 at 18:08

Your Answer

Get an OpenID
or

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