Sha256: b40c552ec572755f8bdb61eb92cff0460e9c896a3fd1cd919e2749df7cdaea27
Contents?: true
Size: 543 Bytes
Versions: 2
Compression:
Stored size: 543 Bytes
Contents
# encoding: utf-8 guard :rspec, cmd: "bundle exec rspec" do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb}) do |m| "spec/unit/#{m[1]}_spec.rb" end watch("lib/assertion/dsl.rb") { "spec/unit/assertion_spec.rb" } watch("lib/assertion/base_dsl.rb") { "spec/unit/assertion/base_spec.rb" } watch("lib/assertion/guard_dsl.rb") { "spec/unit/assertion/guard_spec.rb" } watch("lib/assertion/inflector.rb") { "spec/unit/assertion/inflector" } watch("spec/spec_helper.rb") { "spec" } end # guard :rspec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
assertion-0.2.1 | Guardfile |
assertion-0.2.0 | Guardfile |