Ruby: Could not find RedCloth-4.2.9

I am very new to this, how can I solve this problem?

$ rake
Could not find RedCloth-4.2.9 in any of the sources
Run `bundle install` to install missing gems.
+6
source share
2 answers

you do not have RedClothgem installed in it .

If you are using a Bundler gem, which I suppose you can enter bundle installto install it, otherwise you can manually install it through gem install RedCloth.

+6
source

I had similar problems, and the main thing that helped was to run bundle update.

0
source

All Articles