Sha256: de6d311e49db6506cb08ba2479fb7108fa67655df7672d1f958ea95673aee612

Contents?: true

Size: 402 Bytes

Versions: 9

Compression:

Stored size: 402 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'bundler' do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
  watch('VERSION')
end

guard 'rspec', cmd: "bundle exec rspec --color --format documentation" do
  watch('Gemfile.lock')
  watch(%r{^spec/.+_spec\.rb})
  watch(%r{^lib/(.+)\.rb})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb') { "spec" }
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
guard-rails-0.8.1 Guardfile
guard-rails-0.8.0 Guardfile
guard-rails-0.7.3 Guardfile
guard-rails-0.7.2 Guardfile
guard-rails-0.7.1 Guardfile
guard-rails-0.7.0 Guardfile
guard-rails-0.6.1 Guardfile
guard-rails-0.6.0 Guardfile
guard-rails-0.5.3 Guardfile