Sha256: 6ffd8a871579dc377c34e843625f7e3cc837880f5fc6dbf99c542bb4e6e5d4b3
Contents?: true
Size: 340 Bytes
Versions: 3
Compression:
Stored size: 340 Bytes
Contents
# frozen_string_literal: true # More info at https://github.com/guard/guard#readme guard 'bundler' do watch('Gemfile') watch(/^.+\.gemspec/) end guard 'rspec', 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' } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
phony_rails-0.14.6 | Guardfile |
phony_rails-0.14.5 | Guardfile |
phony_rails-0.14.4 | Guardfile |