Sha256: ab8f60f8e39ef26b21267f20c0d9d25d2b4fb439ffff70c885ffcb140c94833b
Contents?: true
Size: 532 Bytes
Versions: 5
Compression:
Stored size: 532 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', :cli=>"--color",:version => 2 do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch(%r{^lib/commands/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch(%r{^lib/git-hack/(.+)\.rb$}) { |m| ["spec/#{m[1]}_spec.rb", "*.rb"] } watch(%r{^lib/core_ext/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
git-hack-0.0.6 | Guardfile |
git-hack-0.0.5 | Guardfile |
git-hack-0.0.3 | Guardfile |
git-hack-0.0.2 | Guardfile |
git-hack-0.0.1 | Guardfile |