Sha256: 8bb3e63366a45906b61eefc98b9057df8cfbdcef1fc9fcbe594c47abef03e9a4
Contents?: true
Size: 570 Bytes
Versions: 3
Compression:
Stored size: 570 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard :rubocop, all_on_start: false, cli: ['--format', 'clang'] do watch(%r{^app/(.+)\.rb$}) end guard :rspec, cmd: 'bundle exec rspec --color -f d' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch(%r{^examples/(.+)\.rb$}) { |m| "spec/examples/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^spec/support/(.+)\.rb$}) { "spec" } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
graphviz-diagram-0.0.3 | Guardfile |
graphviz-diagram-0.0.2 | Guardfile |
graphviz-diagram-0.0.1 | Guardfile |