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