Sha256: 3ad33640d5c118eca0013928f8462e460f6443460a64797a8716f1b5ff9d3197

Contents?: true

Size: 504 Bytes

Versions: 13

Compression:

Stored size: 504 Bytes

Contents

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

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

guard :rubocop, all_on_start: true, cli: ["--format", "clang"] do
  watch(/.+\.rb$/)
  watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
  watch(%r{(?:.+/)?\rubocop-todo\.yml$}) { |m| File.dirname(m[0]) }
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
statesman-5.2.0 Guardfile
statesman-5.1.0 Guardfile
statesman-5.0.0 Guardfile
statesman-4.1.4 Guardfile
statesman-4.1.3 Guardfile
statesman-4.1.2 Guardfile
statesman-4.1.1 Guardfile
statesman-4.1.0 Guardfile
statesman-4.0.0 Guardfile
statesman-3.5.0 Guardfile
statesman-3.4.1 Guardfile
statesman-3.4.0 Guardfile
statesman-3.3.0 Guardfile