Sha256: 730ddbdad9cac10564b4cb778d3d3a34032cf4b777a504bede07be20956dd736

Contents?: true

Size: 303 Bytes

Versions: 6

Compression:

Stored size: 303 Bytes

Contents

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

guard :bundler do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
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

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
yaps-0.1.0 Guardfile
yaps-0.0.2 Guardfile
yaps-0.0.1 Guardfile
nlp_toolz-1.0.5 Guardfile
nlp_toolz-1.0.4 Guardfile
nlp_toolz-1.0.3 Guardfile