forked from flippercloud/flipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Guardfile
34 lines (29 loc) · 807 Bytes
/
Guardfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
guard 'bundler' do
watch('Gemfile')
watch(/^.+\.gemspec/)
end
rspec_options = {
:all_after_pass => false,
:all_on_start => false,
:failed_mode => :keep,
:cmd => "bundle exec rspec",
}
guard 'rspec', rspec_options do
watch(%r{^spec/.+_spec\.rb$}) { "spec" }
watch(%r{^lib/(.+)\.rb$}) { "spec" }
watch(%r{shared_adapter_specs\.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