Sha256: 5c4b23fc454af4022152513f1144b347ea260e90ee852fe43fb5fd960d28f981

Contents?: true

Size: 655 Bytes

Versions: 4

Compression:

Stored size: 655 Bytes

Contents

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
firehose-1.2.20 Guardfile
firehose-1.2.13 Guardfile
firehose-1.2.12 Guardfile
firehose-1.2.11 Guardfile