Sha256: 1336ba79a97af6c2d6c234ff322133398412815aefb2d7eba6d6351072dbba14

Contents?: true

Size: 341 Bytes

Versions: 7

Compression:

Stored size: 341 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

7 entries across 7 versions & 1 rubygems

Version Path
phony_rails-0.15.0 Guardfile
phony_rails-0.14.13 Guardfile
phony_rails-0.14.12 Guardfile
phony_rails-0.14.11 Guardfile
phony_rails-0.14.10 Guardfile
phony_rails-0.14.9 Guardfile
phony_rails-0.14.7 Guardfile