Sha256: 7fc697e30ab2923940aef16db3b9299a3f9a568481fe07fd1796438b06247eca

Contents?: true

Size: 852 Bytes

Versions: 2

Compression:

Stored size: 852 Bytes

Contents

# Add files and commands to this file, like the example:
#   watch('file/path') { `command(s)` }
#

guard 'shell' do
  watch(%r{ext/jasmine-webkit-specrunner/.*\.(cpp|h)}) { compile }
end
# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'rspec', :version => 2, :all_on_start => false do
  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

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

def compile
  system %{cd ext/jasmine-webkit-specrunner && ruby extconf.rb}
end

compile

guard 'coffeescript', :input => 'jasmine'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jasmine-headless-webkit-0.6.3 Guardfile
jasmine-headless-webkit-0.6.2 Guardfile