Sha256: 3f7b07f348e46b91c52917a9c333a59750561e810da5d139372b7556fcb7b0a6

Contents?: true

Size: 661 Bytes

Versions: 4

Compression:

Stored size: 661 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/specrunner.cpp}) { 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

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

compile

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jasmine-headless-webkit-0.5.0 Guardfile
jasmine-headless-webkit-0.4.2 Guardfile
jasmine-headless-webkit-0.4.1 Guardfile
jasmine-headless-webkit-0.4.0 Guardfile