ruby on rails - Where are required gems defined? -
In my Rail application, I have once entered the authlogic-oid
and ruby-opid
. Now I am getting rid of them and I removed my gems and their config.gem
lines from my environment.rb
.
Although my application works, I can not migrate any database because I get the "missing essential gems" error. If I run Rock Gems: Install
These gems are reestablished
Where are the gems stored in the context?
The standard way of defining a gem dependency is in the environment configuration, usually for any environment In the environment.rb file, some gems can also be referred to as anti-environment. Check the environment files in config / environment
.
Also make sure that some files do not include the classic Rubyzms gem
command gem.
Finally, the investigation of these gems is not necessary for other gems or plugins used by your application.
Comments
Post a Comment