Sha256: ca28900b53738b9eeb030ad7bb7c64f99ed6b9cf726304cc9160c4718af0fe66

Contents?: true

Size: 706 Bytes

Versions: 5

Compression:

Stored size: 706 Bytes

Contents

# More info at https://github.com/guard/guard#readme

## Uncomment and set this to only include directories you want to watch
# directories %w(app lib config test spec features)

## Uncomment to clear the screen before every task
clearing :on

guard 'livereload' do
  watch(%r{app/views/.+\.(erb|haml|slim)$})
  watch(%r{app/helpers/.+\.rb})
  watch(%r{public/.+\.(css|js|html)})
  watch(%r{config/locales/.+\.yml})
  # Rails Assets Pipeline
  watch(%r{(app|vendor)(/assets/\w+/(.+\.(css|js|html|png|jpg))).*}) { |m| "/assets/#{m[3]}" }
  watch(%r{(app|vendor)(/assets/\w+/(.+)\.(scss))}) { |m| "/assets/#{m[3]}.css" }
  watch(%r{(app|vendor)(/assets/\w+/(.+)\.(coffee))}) { |m| "/assets/#{m[3]}.js" }
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
adminos-1.0.0.pre.rc.5 lib/generators/templates/install/auto/Guardfile
adminos-1.0.0.pre.rc.4 lib/generators/templates/install/auto/Guardfile
adminos-1.0.0.pre.rc.3 lib/generators/templates/install/auto/Guardfile
adminos-1.0.0.pre.rc.2 lib/generators/templates/install/auto/Guardfile
adminos-1.0.0.pre.rc.1 lib/generators/templates/install/auto/Guardfile