Sha256: 5962b9ec828e071a20ab6c369a96b425fe935cb70993026622376755781577c7

Contents?: true

Size: 356 Bytes

Versions: 21

Compression:

Stored size: 356 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, all_after_pass: true, all_on_start: true 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

21 entries across 21 versions & 1 rubygems

Version Path
arstotzka-1.6.2 Guardfile
arstotzka-1.6.1 Guardfile
arstotzka-1.6.0 Guardfile
arstotzka-1.5.0 Guardfile
arstotzka-1.4.4 Guardfile
arstotzka-1.4.3 Guardfile
arstotzka-1.4.2 Guardfile
arstotzka-1.4.1 Guardfile
arstotzka-1.4.0 Guardfile
arstotzka-1.3.2 Guardfile
arstotzka-1.3.1 Guardfile
arstotzka-1.3.0 Guardfile
arstotzka-1.2.4 Guardfile
arstotzka-1.2.3 Guardfile
arstotzka-1.2.2 Guardfile
arstotzka-1.2.1 Guardfile
arstotzka-1.2.0 Guardfile
arstotzka-1.1.0 Guardfile
arstotzka-1.0.4 Guardfile
arstotzka-1.0.3 Guardfile