Sha256: 46988f5ed969f944823f026afc6b65fdd969e169fa37fd424937ac3eaa99b8cf

Contents?: true

Size: 403 Bytes

Versions: 1

Compression:

Stored size: 403 Bytes

Contents

# More info at https://github.com/guard/guard#readme
interactor :off

guard 'bundler' do
  watch('Gemfile')
  watch(%r{\.gemspec$})
end

guard 'rspec', :cli => '--drb' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})                   { |m| "spec/lib/#{m[1]}_spec.rb" }

  watch('spec/spec_helper.rb')                { "spec" }
  watch(%r{^spec/support/(.+)\.rb$})          { "spec" }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hipchat-secrets-0.9.1 Guardfile