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.
29 lines
598 B
29 lines
598 B
recipe :ruby
|
|
|
|
Kicker::Recipes::Ruby.runner_bin = 'bacon --quiet'
|
|
|
|
process do |files|
|
|
specs = files.take_and_map do |file|
|
|
if file =~ %r{lib/(.+?)\.rb$}
|
|
s = Dir.glob("spec/**/#{File.basename(file, '.rb')}_spec.rb")
|
|
s.uniq unless s.empty?
|
|
end
|
|
end
|
|
Kicker::Recipes::Ruby.run_tests(specs)
|
|
end
|
|
|
|
# Have written this so many times, probably should make a recipe out of it.
|
|
process do |files|
|
|
files.each do |file|
|
|
case file
|
|
when 'Gemfile'
|
|
files.delete(file)
|
|
execute 'bundle install'
|
|
end
|
|
end
|
|
end
|
|
|
|
recipe :ignore
|
|
ignore(/.*\/?tags/)
|
|
ignore(/.*\/?\.git/)
|
|
|
|
|