jasmine-headless-webkit/Guardfile

42 lines
1.2 KiB
Plaintext
Raw Normal View History

2011-05-29 16:30:19 +00:00
# Add files and commands to this file, like the example:
# watch('file/path') { `command(s)` }
#
2011-10-26 12:45:23 +00:00
guard 'coffeescript', :input => 'vendor/assets/coffeescripts', :output => 'vendor/assets/javascripts'
2011-05-29 16:30:19 +00:00
guard 'shell' do
2011-08-03 16:26:39 +00:00
watch(%r{ext/jasmine-webkit-specrunner/.*\.(cpp|h|pro|pri)}) { |m|
if !m[0]['moc_']
compile
end
}
2011-05-29 16:30:19 +00:00
end
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
2011-06-10 14:04:21 +00:00
guard 'rspec', :version => 2, :all_on_start => false do
2011-05-29 16:30:19 +00:00
watch(%r{^spec/.+_spec\.rb})
watch(%r{^lib/(.+)\.rb}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch(%r{^bin/(.+)}) { |m| "spec/bin/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end
2011-12-29 23:37:23 +00:00
guard 'cucumber', :cli => '-r features --format pretty' do
watch(%r{^features/.+\.feature$})
watch(%r{^features/support/.+$}) { 'features' }
watch(%r{^features/steps/(.+)_steps\.rb$}) { 'features' }
end
2011-07-14 14:54:44 +00:00
guard 'jasmine-headless-webkit', :all_on_start => false do
watch(%r{^spec/javascripts/.+_spec\.coffee})
watch(%r{^jasmine/(.+)\.coffee$}) { |m| "spec/javascripts/#{m[1]}_spec.coffee" }
end
2011-05-29 16:30:19 +00:00
def compile
system %{cd ext/jasmine-webkit-specrunner && ruby extconf.rb}
2011-05-29 16:30:19 +00:00
end
compile