Guardfile in firehose-1.2.10 vs Guardfile in firehose-1.2.11
- old
+ new
@@ -1,6 +1,31 @@
+guard 'bundler' do
+ watch 'Gemfile'
+ watch /^.+\.gemspec/
+end
+
+
+guard 'coffeescript',
+ input: 'lib/assets/javascripts',
+ output: 'public/javascripts',
+ all_on_start: true
+
+
guard 'rspec', :version => 2 do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end
+
+guard :copy,
+ from: 'lib/assets/javascripts/vendor',
+ to: 'public/javascripts/vendor',
+ mkpath: true,
+ run_at_start: true
+
+
+guard :copy,
+ from: 'spec/javascripts/support',
+ to: 'public/javascripts/vendor',
+ mkpath: true,
+ run_at_start: true