Mercurial > hg > soundsoftware-site
comparison .svn/pristine/39/3948be5e898ac3e287d1bdeb319d2405dc4fa03a.svn-base @ 1517:dffacf8a6908 redmine-2.5
Update to Redmine SVN revision 13367 on 2.5-stable branch
author | Chris Cannam |
---|---|
date | Tue, 09 Sep 2014 09:29:00 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1516:b450a9d58aed | 1517:dffacf8a6908 |
---|---|
1 begin | |
2 require 'yard' | |
3 | |
4 YARD::Rake::YardocTask.new do |t| | |
5 files = ['app/**/*.rb'] | |
6 files << Dir['lib/**/*.rb', 'plugins/**/*.rb'].reject {|f| f.match(/test/) } | |
7 t.files = files | |
8 | |
9 static_files = ['doc/CHANGELOG', | |
10 'doc/COPYING', | |
11 'doc/INSTALL', | |
12 'doc/RUNNING_TESTS', | |
13 'doc/UPGRADING'].join(',') | |
14 | |
15 t.options += ['--output-dir', './doc/app', '--files', static_files] | |
16 end | |
17 | |
18 rescue LoadError | |
19 # yard not installed (gem install yard) | |
20 # http://yardoc.org | |
21 end |