Sha256: d3efac2099de6ce695f0a8ee314c2368fd4b5e4336fdcdbc1c0af963deb66e36

Contents?: true

Size: 675 Bytes

Versions: 23

Compression:

Stored size: 675 Bytes

Contents

# frozen_string_literal: true

group :red_green_refactor, :halt_on_fail => true do
  guard :rspec, :cmd => "bundle exec rspec --no-profile" do
    require "guard/rspec/dsl"
    dsl = Guard::RSpec::Dsl.new(self)

    # Feel free to open issues for suggestions and improvements

    # 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 do
    watch(%r{.+\.rb$})
    watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
sidekiq-throttled-0.15.1 Guardfile
sidekiq-throttled-0.18.0 Guardfile
sidekiq-throttled-0.17.0 Guardfile
sidekiq-throttled-0.16.2 Guardfile
sidekiq-throttled-0.16.1 Guardfile
sidekiq-throttled-0.16.0 Guardfile
sidekiq-throttled-0.15.0 Guardfile
sidekiq-throttled-0.14.1 Guardfile
sidekiq-throttled-0.13.0 Guardfile
sidekiq-throttled-0.12.0 Guardfile
sidekiq-throttled-0.11.0 Guardfile
sidekiq-throttled-0.10.0 Guardfile
sidekiq-throttled-0.10.0.beta Guardfile
sidekiq-throttled-0.10.0.alpha Guardfile
sidekiq-throttled-0.9.0 Guardfile
sidekiq-throttled-0.8.2 Guardfile
sidekiq-throttled-0.8.1 Guardfile
sidekiq-throttled-0.8.0 Guardfile
sidekiq-throttled-0.7.3 Guardfile
sidekiq-throttled-0.7.2 Guardfile