##// END OF EJS Templates
Save yard doc to the doc/app directory....
Save yard doc to the doc/app directory. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3921 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3807:2c79572e4bdc
r3807:2c79572e4bdc
Show More
yardoc.rake
14 lines | 356 B | text/x-ruby | RubyLexer
begin
require 'yard'
YARD::Rake::YardocTask.new do |t|
files = ['lib/**/*.rb', 'app/**/*.rb']
files << Dir['vendor/plugins/**/*.rb'].reject {|f| f.match(/test/) } # Exclude test files
t.files = files
t.options += ['--output-dir', './doc/app']
end
rescue LoadError
# yard not installed (gem install yard)
# http://yardoc.org
end