Sha256: 68f8c5c056301baec138872d1f07368189b22791944e4042aeb8331e177ce114

Contents?: true

Size: 415 Bytes

Versions: 9

Compression:

Stored size: 415 Bytes

Contents

# frozen_string_literal: true

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

guard 'rspec', version: 2 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

guard 'bundler' do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
grape-entity-1.0.1 Guardfile
grape-entity-1.0.0 Guardfile
grape-entity-0.10.2 Guardfile
grape-entity-0.10.1 Guardfile
grape-entity-0.10.0 Guardfile
grape-entity-0.9.0 Guardfile
grape-entity-0.8.2 Guardfile
grape-entity-0.8.1 Guardfile
grape-entity-0.8.0 Guardfile