RedCloth not found

Hi,

I'm learning RoR and I have a problem with RedCloth.

I have installed it by gem install RedCloth and I have it in my path. But when I require it, it is not found.

irb(main):001:0> require 'rubygems' => nil irb(main):002:0> require 'redcloth' LoadError: no such file to load -- redcloth   from /usr/local/lib64/ruby/gems/1.8/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:239:in `require'   from /usr/local/lib64/ruby/gems/1.8/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:239:in `require'   from /usr/local/lib64/ruby/gems/1.8/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:225:in `load_dependency'   from /usr/local/lib64/ruby/gems/1.8/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:596:in `new_constants_in'   from /usr/local/lib64/ruby/gems/1.8/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:225:in `load_dependency'   from /usr/local/lib64/ruby/gems/1.8/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:239:in `require'   from (irb):2

What did I forget ? Thanks

Hi,

I'm learning RoR and I have a problem with RedCloth.

I have installed it by gem install RedCloth and I have it in my path. But when I require it, it is not found.

irb(main):001:0> require 'rubygems' => nil irb(main):002:0> require 'redcloth' LoadError: no such file to load -- redcloth from /usr/local/lib64/ruby/gems/1.8/gems/activesupport-3.0.7/lib/active_support/ dependencies.rb:239:in `require' from /usr/local/lib64/ruby/gems/1.8/gems/activesupport-3.0.7/lib/active_support/ dependencies.rb:239:in `require' from /usr/local/lib64/ruby/gems/1.8/gems/activesupport-3.0.7/lib/active_support/ dependencies.rb:225:in `load_dependency' from /usr/local/lib64/ruby/gems/1.8/gems/activesupport-3.0.7/lib/active_support/ dependencies.rb:596:in `new_constants_in' from /usr/local/lib64/ruby/gems/1.8/gems/activesupport-3.0.7/lib/active_support/ dependencies.rb:225:in `load_dependency' from /usr/local/lib64/ruby/gems/1.8/gems/activesupport-3.0.7/lib/active_support/ dependencies.rb:239:in `require' from (irb):2

What did I forget ? Thanks

If this is in a rails app, then don't forget to add it to your bundle

Fred

If this is in a rails app, then don't forget to add it to your bundle

and by that I mean add it to your Gemfile

Fred

By putting

gem 'rubygems' gem 'redcloth'

in my Gemfile ? If it is that, it makes my another error :

Could not find gem 'redcloth (>= 0, runtime)' in any of the gem sources listed in your Gemfile.

By putting

gem 'rubygems' gem 'redcloth'

in my Gemfile ? If it is that, it makes my another error :

You don't need gem 'rubygems'.

Could not find gem 'redcloth (>= 0, runtime)' in any of the gem sources

The name of the gem is RedCloth

Fred