Sha256: 6418ca2b1949c6979c8bfc300c6a985f68075d6046c2f859d516739522a7b92f

Contents?: true

Size: 463 Bytes

Versions: 2

Compression:

Stored size: 463 Bytes

Contents

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

guard 'bundler' do
  watch('Gemfile')
  watch('pipedrive.gemspec')
end

guard :cane do
  watch(%r{^(.+)\.rb$})
end

guard :rubocop do
  watch(%r{.+\.rb$})
  watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end

guard :preek, run_all_dir: 'lib' do
	watch(/^lib\/(.*).rb/)
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pipedrive.rb-0.2.0 Guardfile
pipedrive.rb-0.1.0 Guardfile