OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/tasks/spec.rake

11 lines
265 B

require "spec/rake/spectask"
namespace :spec do
namespace :plugins do
Spec::Rake::SpecTask.new('redmine_costs') do |t|
t.spec_files = Dir.glob "#{File.dirname __FILE__}/../spec/**/*_spec.rb"
end
end
end
task :spec => "spec:plugins:redmine_costs"