10 lines
290 B
Ruby
Executable File
10 lines
290 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
require 'redmine_plugin_support'
|
|
|
|
Dir[File.expand_path(File.dirname(__FILE__)) + "/lib/tasks/**/*.rake"].sort.each { |ext| load ext }
|
|
|
|
RedminePluginSupport::Base.setup do |plugin|
|
|
plugin.project_name = 'redmine_overhead'
|
|
plugin.default_task = [:spec, :features]
|
|
end
|