Sha256: 5fe76b8c81a762e8b24801e948bd13da7bdfe212b4ddea2b71a172c2c847aab4
Contents?: true
Size: 432 Bytes
Versions: 104
Compression:
Stored size: 432 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard :rspec do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { "spec" } ## Uncomment & edit below (and comment out above) to watch particular specs. # watch(%r{^lib/(.+)\.rb$}) do # [ # "spec/to_html/asides_spec.rb", # "spec/to_html/codelistings_spec.rb" # ] # end watch('spec/spec_helper.rb') { "spec" } end
Version data entries
104 entries across 104 versions & 1 rubygems