Sha256: 14335720005d1ffb11f627564baabc68325bf6d777ae8902c5ad5deddf5912b0
Contents?: true
Size: 462 Bytes
Versions: 5
Compression:
Stored size: 462 Bytes
Contents
notification :terminal_notifier guard 'bundler' do watch('Gemfile') # Uncomment next line if Gemfile contain `gemspec' command # watch(/^.+\.gemspec/) end guard :rspec, cmd: 'bundle exec rspec --color --fail-fast --format=progress' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^spec/support/shared_versioning_examples.rb$}) { |m| "spec/" } watch('spec/spec_helper.rb') { "spec/" } end
Version data entries
5 entries across 5 versions & 1 rubygems