1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00
httparty/Guardfile

17 lines
332 B
Text
Raw Normal View History

2012-04-15 22:21:03 -04:00
rspec_options = {
version: 1,
all_after_pass: false,
2015-04-17 19:25:08 -04:00
all_on_start: false
2012-04-15 22:21:03 -04:00
}
guard 'rspec', rspec_options do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end
guard 'bundler' do
watch('Gemfile')
watch(/^.+\.gemspec/)
end