Repository URL to install this package:
|
Version:
1.1.0 ▾
|
omniauth-salesforce-ruby
/
Guardfile
|
|---|
guard 'rspec', :version => 2 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('omniauth-salesforce.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