83def5004f
Yes, it takes a way to long before you can get started. We anyway have to run spec:portability to also locally test on all supported Rubies.
29 lines
652 B
Ruby
29 lines
652 B
Ruby
group :specs do
|
|
guard :rspec, :all_on_start => false, :all_after_pass => false, :cli => '--fail-fast --format doc' do
|
|
watch(%r{^spec/.+_spec\.rb$})
|
|
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
|
|
watch('spec/support/listener_helper.rb') { Dir.glob("spec/guard/listeners/*") }
|
|
watch('spec/spec_helper.rb') { "spec" }
|
|
end
|
|
end
|
|
|
|
group :docs do
|
|
guard :ronn do
|
|
watch(%r{^man/.+\.ronn?$})
|
|
end
|
|
end
|
|
|
|
# require 'guard/guard'
|
|
#
|
|
# module ::Guard
|
|
# class Breaking < ::Guard::Guard
|
|
# def run_all
|
|
# raise "Fool !"
|
|
# end
|
|
# end
|
|
# end
|
|
#
|
|
# group "exceptional" do
|
|
# guard :breaking
|
|
# end
|