diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-10-10 17:24:34 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-10-10 17:24:34 +0900 |
| commit | c87c409a1ddd4884d1cd895b411c558fef99c2cd (patch) | |
| tree | 4840cad74930cdc81ead08e5af6c280f134092af | |
| parent | 02a6d866bafc31efa0d583524f38232b848f0e58 (diff) | |
| parent | f377753b16d5c3f9c527999014f3d78e4acf05f1 (diff) | |
| download | mruby-c87c409a1ddd4884d1cd895b411c558fef99c2cd.tar.gz mruby-c87c409a1ddd4884d1cd895b411c558fef99c2cd.zip | |
Merge pull request #2986 from takahashim/mrbdoc
fix `rake doc` error
| -rw-r--r-- | Rakefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -139,5 +139,10 @@ end desc 'generate document' task :doc do - load "#{MRUBY_ROOT}/doc/language/generator.rb" + begin + sh "mrbdoc" + rescue + puts "ERROR: To generate documents, you should install yard-mruby gem." + puts " $ gem install yard-mruby" + end end |
