Sha256: f520ca92ced125cddd3c88be995e2f5ccb3a8734faf04683f07c8e4c1bb7a469
Contents?: true
Size: 442 Bytes
Versions: 1
Compression:
Stored size: 442 Bytes
Contents
#!/usr/bin/ruby # A sample Guardfile # More info at https://github.com/guard/guard#readme guard :bundler do watch 'Gemfile' watch '*.gemspec' end guard :rspec do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec spec/lib/#{m[1]}_spec.rb" } watch(%r{^bin/(.+)\.rb$}) { |m| "spec/bin/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end # guard :yard do # watch(%r{^lib/(.+)\.rb$}) # end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pushover-0.5.0 | Guardfile |