Codebase list ruby-omniauth-auth0 / upstream/latest Guardfile
upstream/latest

Tree @upstream/latest (Download .tar.gz)

Guardfile @upstream/latestraw · history · blame

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