Sha256: cd3d08386e59939c1dc3e59fc5d334fa5b2022ec27564195a0df0f0d432801d0
Contents?: true
Size: 344 Bytes
Versions: 10
Compression:
Stored size: 344 Bytes
Contents
# More info at https://github.com/guard/guard#readme guard 'bundler' do watch('Gemfile') #Uncomment next line if Gemfile contain `gemspec' command watch(/^.+\.gemspec/) end guard 'rspec' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
10 entries across 10 versions & 1 rubygems