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