File: Guardfile

package info (click to toggle)
ruby-omniauth-bitbucket 0.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 116 kB
  • ctags: 6
  • sloc: ruby: 79; makefile: 5
file content (10 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (8)
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-github.gemspec')
end