Sha256: 32bc773a1ed87808b711ac7e192992d0b160bf5e1b19efdd2c5d100d182ba21a

Contents?: true

Size: 363 Bytes

Versions: 12

Compression:

Stored size: 363 Bytes

Contents

# frozen_string_literal: true

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

guard :rspec do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/apartment/(.+)\.rb$})     { |m| "spec/unit/#{m[1]}_spec.rb" }
  watch(%r{^lib/apartment/(.+)\.rb$})     { |m| "spec/integration/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb') { 'spec' }
end

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
ros-apartment-3.2.0 Guardfile
synerma-apartment-3.1.0 Guardfile
puzzle-apartment-2.13.0 Guardfile
puzzle-apartment-2.12.0 Guardfile
ros-apartment-2.11.0 Guardfile
ros-apartment-2.10.0 Guardfile
ros-apartment-2.9.0 Guardfile
ros-apartment-2.8.1 Guardfile
ros-apartment-2.8.1.rc2 Guardfile
ros-apartment-2.8.1.rc1 Guardfile
ros-apartment-2.8.0 Guardfile
ros-apartment-2.7.2 Guardfile