Sha256: cbfcfee20cabe72a4c0194606381bf98081a375f8cf1490b38e2187dbf82e663

Contents?: true

Size: 619 Bytes

Versions: 5

Compression:

Stored size: 619 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/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/components/(.+\.scss).*$}) { |m| "assets/#{m[1]}" }
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
frenerator-0.2.0 lib/generators/frenerator/frontend/templates/Guardfile
frenerator-0.1.4 lib/generators/frenerator/frontend/templates/Guardfile
frenerator-0.1.3 lib/generators/frenerator/frontend/templates/Guardfile
frenerator-0.1.2 lib/generators/frenerator/frontend/templates/Guardfile
frenerator-0.1.1 lib/generators/frenerator/frontend/templates/Guardfile