Sha256: 2bacff80a981a42e9af3baa63933e1afafe24afea02d39d1b08d154ff4e20fad

Contents?: true

Size: 588 Bytes

Versions: 1

Compression:

Stored size: 588 Bytes

Contents

guard "spork", rspec_port: 8991 do
  watch("Gemfile")
  watch("spec/spec_helper.rb") { :rspec }
end

guard "yard", port: 8809, stdout: "/dev/null", stderr: "/dev/null" do
  watch(%r{app/.+\.rb})
  watch(%r{lib/.+\.rb})
  watch(%r{ext/.+\.c})
end

guard "rspec", cli: "--color --drb --drb-port 8991 --format Fuubar", all_on_start: false, all_after_pass: false, notification: false do
  watch(%r{^spec/acceptance/.+_spec\.rb$})
  watch(%r{^spec/unit/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})          { |m| "spec/unit/#{m[1]}_spec.rb" }
  watch("spec/spec_helper.rb")       { "spec" }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
solve-4.0.0 Guardfile