Sha256: 3221a8f27d43ffb2ebc70a7fe1ebbcbf1194d98a62bc4ad073872d61de8c830b

Contents?: true

Size: 595 Bytes

Versions: 11

Compression:

Stored size: 595 Bytes

Contents

group :tdd, halt_on_fail: true do
  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
    dsl.watch_spec_files_for(ruby.lib_files)
  end

  guard :rubocop, all_on_start: false, cmd: "rubocop --require rubocop-rspec" do
    watch(%r{.+\.rb$}) { |m| m[0] }
    watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
  end
end

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
bamboozled-gitlab-0.2.15 Guardfile
bamboozled-gitlab-0.2.14 Guardfile
bamboozled-gitlab-0.2.13 Guardfile
bamboozled-gitlab-0.2.12 Guardfile
bamboozled-gitlab-0.2.11 Guardfile
bamboozled-gitlab-0.2.10 Guardfile
bamboozled-gitlab-0.2.9 Guardfile
bamboozled-0.3.0 Guardfile
bamboozled-0.2.0 Guardfile
bamboozled-0.1.0 Guardfile
eventum-0.0.1 Guardfile