Sha256: 8588dda22994b33466d642b280bc0d53a403db5a4ff30217440c37d215b911e2

Contents?: true

Size: 407 Bytes

Versions: 6

Compression:

Stored size: 407 Bytes

Contents

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

guard 'bundler' do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
thor_template-1.0.1 lib/starter_project/Guardfile
thor_template-1.0.0 lib/starter_project/Guardfile
thor_template-0.0.8 lib/starter_project/Guardfile
thor_template-0.0.7 lib/starter_project/Guardfile
thor_template-0.0.6 lib/starter_project/Guardfile
thor_template-0.0.5 lib/starter_project/Guardfile