Sha256: cd1e33ebfdaff0736d66cce348a9f53b8cfd6cfa5222c23e14967e291e3e8e37

Contents?: true

Size: 335 Bytes

Versions: 2

Compression:

Stored size: 335 Bytes

Contents

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

guard 'rspec', after_all_pass: true, all_on_start: false 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

2 entries across 2 versions & 1 rubygems

Version Path
memory_model-1.0.0 Guardfile
memory_model-0.1.0 Guardfile