Sha256: 909a7335ddce20eacd43cf5ca2329f79a44fb2a1143955aa991c90cbbf24f577

Contents?: true

Size: 1.02 KB

Versions: 6

Compression:

Stored size: 1.02 KB

Contents

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

guard 'coffeescript', :input => 'vendor/assets/coffeescripts', :output => 'vendor/assets/javascripts'

guard 'shell' do
  watch(%r{ext/jasmine-webkit-specrunner/.*\.(cpp|h|pro|pri)}) { |m|
    if !m[0]['moc_']
      compile 
    end
  }
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 test.rb && ruby extconf.rb}
  system %{cd ext/jasmine-webkit-specrunner && ruby extconf.rb}
end

compile

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
jasmine-headless-webkit-0.8.4 Guardfile
jasmine-headless-webkit-0.8.3 Guardfile
jasmine-headless-webkit-0.8.1 Guardfile
jasmine-headless-webkit-0.8.0 Guardfile
jasmine-headless-webkit-0.8.0.alpha.1 Guardfile
jasmine-headless-webkit-0.7.3.2 Guardfile