Sha256: 93f812a0a1792838b4278291e25134cb4a67f8440aa8e0e935b512c94cbb4285
Contents?: true
Size: 391 Bytes
Versions: 5
Compression:
Stored size: 391 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', :version => 2 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
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
grape-entity-0.4.4 | Guardfile |
grape-entity-0.4.3 | Guardfile |
grape-entity-0.4.2 | Guardfile |
grape-entity-0.4.1 | Guardfile |
grape-entity-0.4.0 | Guardfile |