Sha256: dabe1fe23965363b8dece3239a53671ee76e25b863c02b1ba4c48b5eecfd4685

Contents?: true

Size: 349 Bytes

Versions: 2

Compression:

Stored size: 349 Bytes

Contents

#!/usr/bin/ruby
# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard :bundler do
	watch('Gemfile')

end

guard :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

# guard :yard do
#   watch(%r{^lib/(.+)\.rb$})
# end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bini-0.5.5 Guardfile
bini-0.5.4 Guardfile