Skip to content

Instantly share code, notes, and snippets.

@cnruby
Created February 14, 2010 09:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cnruby/303918 to your computer and use it in GitHub Desktop.
Save cnruby/303918 to your computer and use it in GitHub Desktop.
$ Rails demo && cd demo
$ bundle check
$ bundle show #不会看到RedCloth,即使你的Ruby环境安装了RedCloth。
$ vim Gemfile
gem "RedCloth" #需要增加的代码
$ bundle check #出现错误,如果Ruby环境没有安装RedCloth。
$ sudo gem install RedCloth
$ bundle check #一切正常,如果你安装RedCloth没有错误的话。
$ bundle show
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment