Sha256: 191190ba986e411b92654b7c1291b99edfc8c08daa4c3b467ad57151c9a91041
Contents?: true
Size: 403 Bytes
Versions: 39
Compression:
Stored size: 403 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'bundler' do watch('Gemfile') watch(/^.+\.gemspec/) end guard 'rspec', cmd: "bundle exec rspec", all_on_start: true, failed_mode: :focus do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { "spec" } watch('spec/spec_helper.rb') { "spec" } watch(%r{^spec/(support|shared).*\.rb$}) { "spec" } end
Version data entries
39 entries across 39 versions & 2 rubygems