Sha256: 0a797fa8739e63a1cd64d07814e819e4955cc4c3de6579e7b33e58ed00e54e57

Contents?: true

Size: 429 Bytes

Versions: 6

Compression:

Stored size: 429 Bytes

Contents

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

notification :terminal_notifier, subtitle: 'ruby.gems.new'

guard :bundler do
  watch('Gemfile')
end

guard :rspec, all_after_pass: true, all_on_start: true, cmd: 'bundle exec rspec' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { 'spec' }
  watch('.rspec')               { 'spec' }
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
new-0.0.6 Guardfile
new-0.0.5 Guardfile
new-0.0.4 Guardfile
new-0.0.3 Guardfile
new-0.0.2 Guardfile
new-0.0.0 Guardfile