Sha256: 9db8b0c0c2a86571624c23795e2e06ee44f74975dff49d98a06ab743e938da2f

Contents?: true

Size: 832 Bytes

Versions: 3

Compression:

Stored size: 832 Bytes

Contents

guard :bundler do
  watch('Gemfile')
  # Uncomment next line if your Gemfile contains the `gemspec' command.
  # watch(/^.+\.gemspec/)
end

guard 'rails' do
  watch('Gemfile.lock')
  watch(%r{^(config|lib)/.*})
end

guard 'livereload' do
  watch(%r{app/views/.+\.erb})
  watch(%r{app/controllers/.+\.rb})
  watch(%r{app/models/.+\.rb})
  watch(%r{app/components/.+\.erb})
  watch(%r{app/helpers/.+\.rb})
  # Rails Assets Pipeline
  watch('app/assets/javascripts/application.js')
  # Templates
  watch('app/assets/javascripts/templates.js')
  watch(%r{app/assets/stylesheets/(.+\.scss).*$}) { |m| "assets/#{m[1]}" }
  watch(%r{app/assets/javascripts/(.+\.coffee).*$}) { |m| "assets/#{m[1]}" }
  watch(%r{app/components/(.+\.coffee).*$}) { |m| "assets/#{m[1]}" }
  watch(%r{app/components/(.+\.scss).*$}) { |m| "assets/#{m[1]}" }
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
frenerator-0.3.0 lib/generators/frenerator/frontend/templates/Guardfile
frenerator-0.2.3 lib/generators/frenerator/frontend/templates/Guardfile
frenerator-0.2.2 lib/generators/frenerator/frontend/templates/Guardfile