diff options
author | Teng Siong Ong <siong1987@gmail.com> | 2013-04-30 06:49:03 -0700 |
---|---|---|
committer | Teng Siong Ong <siong1987@gmail.com> | 2013-04-30 06:49:03 -0700 |
commit | 5aec73daf5ea144ac9f2a4e15c6807cc2dcb87b6 (patch) | |
tree | 6ce2900efb5141b104910a03f107dd114d31135f /guides | |
parent | a834b57b6e6028eebf6ec29c550f5328a527f487 (diff) | |
download | rails-5aec73daf5ea144ac9f2a4e15c6807cc2dcb87b6.tar.gz rails-5aec73daf5ea144ac9f2a4e15c6807cc2dcb87b6.tar.bz2 rails-5aec73daf5ea144ac9f2a4e15c6807cc2dcb87b6.zip |
Make `rake doc:guides` works again. Fix #10384.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/rails_guides.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/rails_guides.rb b/guides/rails_guides.rb index ab890f202c..ce409868ca 100644 --- a/guides/rails_guides.rb +++ b/guides/rails_guides.rb @@ -22,7 +22,7 @@ end begin require 'redcarpet' -rescue Gem::LoadError +rescue LoadError # This can happen if doc:guides is executed in an application. $stderr.puts('Generating guides requires Redcarpet 2.1.1+.') $stderr.puts(<<ERROR) if bundler? |