Sha256: 2cfc33a945d722e9ee5de683c6f7753add3fd828fe7c04257ce5a9d4439c31c0

Contents?: true

Size: 381 Bytes

Versions: 2

Compression:

Stored size: 381 Bytes

Contents

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


guard 'bundler' do
  watch('Gemfile')
  # Uncomment next line if Gemfile contain `gemspec' command
  # watch(/^.+\.gemspec/)
end


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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pio-0.1.1 Guardfile
pio-0.1.0 Guardfile