Sha256: bc438a9d73e05561211b6afbf6fe47c7b323a3353772b246d82215110651aed8

Contents?: true

Size: 343 Bytes

Versions: 2

Compression:

Stored size: 343 Bytes

Contents

# encoding: utf-8

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

  watch("lib/service_objects.rb") { "spec" }

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

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

  watch(/^spec\/spec_helper\w*\.rb$/) { "spec" }

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
service_objects-0.0.2 Guardfile
service_objects-0.0.1 Guardfile