1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-03-13 04:33:08 +00:00
Jean-Philippe Lang 04fea923a4 Adds a branch for unlimited project hierarchy.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/work@2148 e93f8b46-1217-0410-a6f0-8f06a7374b81
2008-12-19 20:51:35 +00:00

16 lines
506 B
Ruby

Dir.glob("#{File.dirname(__FILE__)}/tasks/*.rake").each {|f| load f}
task :default => 'gloc:sort'
# RDoc task
require 'rake/rdoctask'
Rake::RDocTask.new() { |rdoc|
rdoc.rdoc_dir = 'doc'
rdoc.title = "GLoc Localization Library Documentation"
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README', 'CHANGELOG')
rdoc.rdoc_files.include('lib/**/*.rb')
rdoc.rdoc_files.exclude('lib/gloc-dev.rb')
rdoc.rdoc_files.exclude('lib/gloc-config.rb')
}