Sha256: 2cef735e116aca61a227db2908a9fe3dcf9b3b068335565af9d435e62f00ba47

Contents?: true

Size: 427 Bytes

Versions: 2

Compression:

Stored size: 427 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('ar_json_serialize.gemspec')
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 & 2 rubygems

Version Path
nexmos-0.3 Guardfile
ar_json_serialize-0.0.3 Guardfile