Sha256: f0eae4c7ae6e27e1aeb060fdb0767da9bd7245f0c45f7197d6a3c4ccf037c7b9

Contents?: true

Size: 376 Bytes

Versions: 3

Compression:

Stored size: 376 Bytes

Contents

# encoding: utf-8

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

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

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

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

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

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

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
hexx-validators-0.0.3 Guardfile
hexx-validators-0.0.2 Guardfile
hexx-validators-0.0.1 Guardfile