##// END OF EJS Templates
Added two hooks to the issues report. #5233...
Added two hooks to the issues report. #5233 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3797 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3516:f3e375275964
r3683:5db9a982cc31
Show More
yardoc.rake
11 lines | 223 B | text/x-ruby | RubyLexer
Eric Davis
Added rake task to generate the yardoc (rake yard)...
r3516 begin
require 'yard'
YARD::Rake::YardocTask.new do |t|
t.files = ['lib/**/*.rb', 'app/**/*.rb', 'vendor/plugins/**/*.rb']
end
rescue LoadError
# yard not installed (gem install yard)
# http://yardoc.org
end