Sha256: fa0f7c788db7140b94330b272451b10d15319fbcda03329db0abd9faf690dae9
Contents?: true
Size: 321 Bytes
Versions: 18
Compression:
Stored size: 321 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard :rspec, cmd: 'bundle exec rspec' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^routemaster/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } watch(%r{^spec/support/(.+)\.rb$}) { "spec" } end
Version data entries
18 entries across 18 versions & 1 rubygems