To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / plugins / redmine_checkout / Rakefile @ 1315:12556ba57d17
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
|