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.3.0 Guardfile
dailycred-0.2.0 Guardfile
dailycred-0.1.8 Guardfile
dailycred-0.1.7 Guardfile
dailycred-0.1.6 Guardfile
dailycred-0.1.5 Guardfile
dailycred-0.1.461 Guardfile
dailycred-0.1.46 Guardfile
dailycred-0.1.45 Guardfile
dailycred-0.1.44 Guardfile
dailycred-0.1.43 Guardfile
dailycred-0.1.42 Guardfile
dailycred-0.1.41 Guardfile
dailycred-0.1.4 Guardfile
dailycred-0.1.36 Guardfile
dailycred-0.1.35 Guardfile
dailycred-0.1.34 Guardfile
dailycred-0.1.33 Guardfile
dailycred-0.1.32 Guardfile
dailycred-0.1.31 Guardfile