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/features/.autotest

19 lines
557 B

if RUBY_PLATFORM.downcase.include?("darwin")
require "autotest/growl"
require 'autotest/fsevent'
end
require 'redgreen/autotest'
Autotest.add_hook :initialize do |at|
%w{.git .DS_Store test assets}.each { |exception| at.add_exception(exception) }
at.remove_exception 'vendor/plugins'
at.find_directories << 'vendor/plugins/redmine_backlogs'
at.libs << 'vendor/plugins/redmine_backlogs/features'
at.libs << 'vendor/plugins/redmine_backlogs/lib'
false
end
Autotest.add_hook :all_good do |at|
system "rake redmine:backlogs:rcov"
false
end