Sha256: a2042ecc95efea311d0466e9133a62c3f0299830bb6210b3b98363f8b35a5702

Contents?: true

Size: 539 Bytes

Versions: 274

Compression:

Stored size: 539 Bytes

Contents

guard "bundler", cmd: "bundle" do
  watch("Gemfile")
  watch(/^.+\.gemspec/)
end

guard :rspec, cmd: "bundle exec rspec" do
  require "guard/rspec/dsl"
  dsl = Guard::RSpec::Dsl.new(self)

  # RSpec files
  rspec = dsl.rspec
  watch(rspec.spec_helper) { rspec.spec_dir }
  watch(rspec.spec_support) { rspec.spec_dir }
  watch(rspec.spec_files)

  # Ruby files
  ruby = dsl.ruby
  puts "ruby.lib_files #{ruby.lib_files.inspect}"
  dsl.watch_spec_files_for(ruby.lib_files)

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

Version data entries

274 entries across 274 versions & 5 rubygems

Version Path
jets-4.0.12 Guardfile
jets-4.0.11 Guardfile
jets-5.0.13 Guardfile
jets-5.0.12 Guardfile
jets-5.0.11 Guardfile
jets-5.0.10 Guardfile
jets-5.0.9 Guardfile
jets-5.0.8 Guardfile
jets-5.0.7 Guardfile
jets-5.0.6 Guardfile
jets-5.0.5 Guardfile
jets-5.0.4 Guardfile
jets-5.0.3 Guardfile
jets-5.0.2 Guardfile
jets-5.0.1 Guardfile
jets-5.0.0 Guardfile
jets-4.0.10 Guardfile
jets-5.0.0.beta1 Guardfile
jets-4.0.9 Guardfile
jets-4.0.8 Guardfile