Sha256: e6e0945c48a9ddf86951d15213ecc64a2eac96b73d09074f6c752b489ceef6fd
Contents?: true
Size: 403 Bytes
Versions: 14
Compression:
Stored size: 403 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', cmd: 'bundle exec rspec' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^spec/support/shared_versioning_examples.rb$}) { |m| "spec/" } watch('spec/spec_helper.rb') { "spec/" } end guard 'bundler' do watch('Gemfile') watch(/^.+\.gemspec/) end
Version data entries
14 entries across 14 versions & 1 rubygems