Sha256: 8e1049737e27e6f8fd407e1a3319103c95222bc51f8d35db0e0bf6b361a069e2

Contents?: true

Size: 653 Bytes

Versions: 15

Compression:

Stored size: 653 Bytes

Contents

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

  watch("bin/hexx-suit") { "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/suit/(.+)\.rb$}) do |m|
    "spec/tests/lib/#{ m[1] }_spec.rb"
  end

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

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

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

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

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

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

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
hexx-suit-2.2.3 Guardfile
hexx-suit-2.2.2 Guardfile
hexx-suit-2.2.1 Guardfile
hexx-suit-2.2.0 Guardfile
hexx-suit-2.1.0 Guardfile
hexx-suit-2.0.0 Guardfile
hexx-suit-1.5.0-x86_64-linux Guardfile
hexx-suit-1.3.0-x86_64-linux Guardfile
hexx-suit-1.2.0 Guardfile
hexx-suit-1.0.0 Guardfile
hexx-suit-0.2.2 Guardfile
hexx-suit-0.2.1 Guardfile
hexx-suit-0.2.0 Guardfile
hexx-suit-0.1.0 Guardfile
hexx-suit-0.0.1 Guardfile