File: Guardfile

package info (click to toggle)
ruby-omniauth-salesforce 1.0.5-3
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 140 kB
  • sloc: ruby: 319; makefile: 3
file content (10 lines) | stat: -rwxr-xr-x 256 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
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