I have the RedCloth
gem in my vendor/gems
directory.
I also have this in my environment.rb
:
config.gem 'RedCloth'
So why does Rails complain that the gem is missing:
Missing these required gems:
RedCloth
What else does it need to recognize that I have it installed in the vendor/gems
directory?
environment.rb
:
RAILS_GEM_VERSION = '2.3.4' unless defined? RAILS_GEM_VERSION
require File.join(File.dirname(__FILE__), 'boot')
Rails::Initializer.run do |config|
config.gem 'RedCloth'
config.plugins = [ :all ]
config.action_controller.session_store = :active_record_store
config.time_zone = 'UTC'
end