Sha256: e39a59bb987773f58169214909443e9b57bff9eb1848ac3e37b752a96ee4fdac

Contents?: true

Size: 383 Bytes

Versions: 2

Compression:

Stored size: 383 Bytes

Contents

# encoding: utf-8

guard :rspec, cmd: "bundle exec rspec" do

  watch(%r{^spec/.+_spec\.rb$})

  watch(%r{^lib/assertion/(.+)\.rb}) do |m|
    "spec/unit/assertion/#{m[1]}_spec.rb"
  end

  watch(%r{^lib/assertion/transproc.rb}) do
    "spec/unit/assertion/transproc"
  end

  watch("lib/assertion.rb")        { "spec" }
  watch("spec/spec_helper.rb") { "spec" }

end # guard :rspec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
assertion-0.1.0 Guardfile
assertion-0.0.1 Guardfile