Sha256: 50d98ee696528e998ed83db39a6bbc31f46f3ed4a52edc539615a1a1e2b27e54

Contents?: true

Size: 382 Bytes

Versions: 4

Compression:

Stored size: 382 Bytes

Contents

guard 'bundler' do
  watch('Gemfile')
  watch(%r{\w+\.gemspec})
end

guard 'rspec', cmd: 'bundle exec rspec', all_on_start: true do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})      { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')   { 'spec' }
  watch(%r{^lib/config/locales}) { 'spec/launchkey/errors' }
end

guard 'yard' do
  watch(%r{lib/.+\.rb})
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
expedition-0.4.0 Guardfile
expedition-0.3.0 Guardfile
expedition-0.2.0 Guardfile
expedition-0.1.0 Guardfile