Sha256: f6735d9b545ede6889724ba77f58758eb80512d1bbe9dc124970af15a6bec91e
Contents?: true
Size: 375 Bytes
Versions: 14
Compression:
Stored size: 375 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'bundler' do watch('Gemfile') watch(/^.+\.gemspec/) end rspec_options = { :all_after_pass => false, :all_on_start => false, } guard 'rspec', rspec_options do watch(%r{^spec/.+_spec\.rb$}) { "spec" } watch(%r{^lib/(.+)\.rb$}) { "spec" } watch('spec/helper.rb') { "spec" } end
Version data entries
14 entries across 14 versions & 3 rubygems