Sha256: a183a5ed2ca9c4373d722af8b29c01738177c86a6aa003299602d42f9d0fedda

Contents?: true

Size: 303 Bytes

Versions: 5

Compression:

Stored size: 303 Bytes

Contents

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

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
redis_analytics-1.1.0 Guardfile
redis_analytics-1.0.1 Guardfile
redis_analytics-1.0.0 Guardfile
redis_analytics-0.7.1 Guardfile
redis_analytics-0.6.0 Guardfile