Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Guardfile « omniauth-salesforce « gems « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2aaba26cc430d837cacfe0a77eeea8e441b1f1b3 (plain)
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