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

Version Path
ivapi-1.1.4 Guardfile
ivapi-1.1.3 Guardfile
ivapi-1.1.2 Guardfile
ivapi-1.1.1 Guardfile
ivapi-1.1.0 Guardfile
ivapi-1.0.4 Guardfile
ivapi-1.0.3 Guardfile
ivapi-1.0.2 Guardfile
ivapi-1.0.1 Guardfile
ivapi-1.0.0 Guardfile