Sha256: 5f81887c29ef781779e0f7f6e4e60053825bbd09a7ca41e9cec88e929e794128

Contents?: true

Size: 658 Bytes

Versions: 12

Compression:

Stored size: 658 Bytes

Contents

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

  watch("bin/hexx-rspec") { "spec/tests/bin/install_spec.rb" }

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

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

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

  watch("lib/hexx/rspec.rb") { "spec" }

  watch("lib/hexx-rspec.rb") { "spec" }

  watch(/^spec.+_spec\.rb$/)

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

  watch("spec/spec_helper*.rb") { "spec" }
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
hexx-rspec-0.5.2 Guardfile
hexx-rspec-0.5.1 Guardfile
hexx-rspec-0.4.2 Guardfile
hexx-rspec-0.4.1 Guardfile
hexx-rspec-0.4.0 Guardfile
hexx-rspec-0.3.1 Guardfile
hexx-rspec-0.3.0 Guardfile
hexx-rspec-0.2.2 Guardfile
hexx-rspec-0.2.1 Guardfile
hexx-rspec-0.2.0 Guardfile
hexx-rspec-0.1.0 Guardfile
hexx-rspec-0.0.1 Guardfile