Sha256: 1d346347f9cde6e1b6c841cea1dfcdebe7d271493bcf1cb5978a1806796749c8

Contents?: true

Size: 596 Bytes

Versions: 5

Compression:

Stored size: 596 Bytes

Contents

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

guard 'bundler' do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
end

guard 'rspec' do
  watch(%r{^spec/.+_spec\.rb$}) { "spec" }
  watch(%r{^lib/(.+)\.rb$}) { "spec" }
  watch('spec/helper.rb')  { "spec" }
end

coffee_options = {
  :input => 'lib/flipper/ui/assets/javascripts',
  :output => 'lib/flipper/ui/public/js',
  :all_on_start => false,
}
guard 'coffeescript', coffee_options

sass_options = {
  :input => 'lib/flipper/ui/assets/stylesheets',
  :output => 'lib/flipper/ui/public/css',
}
guard 'sass', sass_options

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
flipper-ui-0.2.0.beta5 Guardfile
flipper-ui-0.2.0.beta4 Guardfile
flipper-ui-0.2.0.beta3 Guardfile
flipper-ui-0.2.0.beta2 Guardfile
flipper-ui-0.2.0.beta1 Guardfile