To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / plugins / redmine_checkout / Rakefile @ 1594:69aee698921b

History | View | Annotate | Download (337 Bytes)

1
#!/usr/bin/env ruby
2
require 'redmine_plugin_support'
3
 
4
Dir[File.expand_path(File.dirname(__FILE__)) + "/lib/tasks/**/*.rake"].sort.each { |ext| load ext }
5
 
6
RedminePluginSupport::Base.setup do |plugin|
7
  plugin.project_name = 'redmine_checkout'
8
  plugin.default_task = [:spec]
9
  plugin.tasks = [:doc, :release, :clean, :spec, :stats]
10
end