Sha256: e3ccb3b9403601bd9a70044f6e16ef7ba02de9567d1b3c854b9f210bdafe5546

Contents?: true

Size: 490 Bytes

Versions: 14

Compression:

Stored size: 490 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'rspec', :version => 2, :cli => "--color --format d --tag ~integration" do
  
  watch(%r{^spec/.+_spec\.rb$})
  # As the registry and resource file affect most every file, the entire
  # suite should be run when they are changed
  watch(%r{^lib/xcode/(?:registry|resource)\.rb$}) { "spec" }
  watch(%r{^lib/xcode/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }

end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
xcoder-0.1.18 Guardfile
xcoder-0.1.15 Guardfile
xcoder-0.1.14 Guardfile
xcoder-0.1.13 Guardfile
xcoder-0.1.12 Guardfile
xcoder-0.1.11 Guardfile
xcoder-0.1.10 Guardfile
xcoder-0.1.9 Guardfile
xcoder-0.1.8 Guardfile
xcoder-0.1.7 Guardfile
xcoder-0.1.6 Guardfile
xcoder-0.1.4 Guardfile
xcoder-0.1.3 Guardfile
xcoder-0.1.2 Guardfile