Sha256: dd8be93a39847a4780786ec6cc88e4931cdd799ebcd5e6f88dadbfee3ba187cb
Contents?: true
Size: 472 Bytes
Versions: 21
Compression:
Stored size: 472 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard :test do watch(%r{^lib/generators/(.+)\.rb$}) { "test/generator_test.rb" } watch(%r{^test/.+_test\.rb$}) { "test/generator_test.rb" } watch('test/test_helper.rb') { "test/generator_test.rb" } end guard 'rspec', :version => 2 do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/support/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
21 entries across 21 versions & 1 rubygems
Version | Path |
---|---|
dailycred-0.1.30 | Guardfile |