Sha256: 7ccfbe88596e6ecf139bcc0c0cb64edbfe0f1fd421103442757ffee3e9c5abb7

Contents?: true

Size: 422 Bytes

Versions: 4

Compression:

Stored size: 422 Bytes

Contents

guard 'rspec', :version => 2 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

4 entries across 4 versions & 1 rubygems

Version Path
thor_template-0.0.4 lib/starter_project/Guardfile
thor_template-0.0.3 lib/starter_project/Guardfile
thor_template-0.0.2 lib/starter_project/Guardfile
thor_template-0.0.1 lib/starter_project/Guardfile