Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ruby : Could not find RedCloth-4.2.9

Tags:

ruby

I am very new to this, How can I resolve this issue?

$ rake
Could not find RedCloth-4.2.9 in any of the sources
Run `bundle install` to install missing gems.
like image 610
daydreamer Avatar asked Jul 14 '12 23:07

daydreamer


2 Answers

you don't have the RedCloth gem installed that's it.

If you are using Bundler gem, which I suppose, you can type bundle install to install it, otherwise you can manually install it via gem install RedCloth.

like image 91
Jack Avatar answered Nov 19 '22 07:11

Jack


I was having similar issues and the main thing that helped was running bundle update.

like image 27
Andrew Avatar answered Nov 19 '22 07:11

Andrew