Sha256: 49bb78acc83b56b7d687da8feac4fba28f367434bf81501fa70936042fe5f015

Contents?: true

Size: 1.26 KB

Versions: 19

Compression:

Stored size: 1.26 KB

Contents

# frozen_string_literal: true

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

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

  ruby = dsl.ruby
  dsl.watch_spec_files_for(ruby.lib_files)

  # Rails files
  rails = dsl.rails(view_extensions: %w[erb haml slim])
  dsl.watch_spec_files_for(rails.app_files)
  dsl.watch_spec_files_for(rails.views)

  watch(rails.controllers) do |m|
    [
      rspec.spec.call("routing/#{m[1]}_routing"),
      rspec.spec.call("controllers/#{m[1]}_controller"),
      rspec.spec.call("acceptance/#{m[1]}"),
    ]
  end

  # Rails config changes
  watch(rails.spec_helper)     { rspec.spec_dir }
  watch(rails.routes)          { "#{rspec.spec_dir}/routing" }
  watch(rails.app_controller)  { "#{rspec.spec_dir}/controllers" }

  # Capybara features specs
  watch(rails.view_dirs)     { |m| rspec.spec.call("features/#{m[1]}") }
  watch(rails.layouts)       { |m| rspec.spec.call("features/#{m[1]}") }

  # Turnip features and steps
  watch(%r{^spec/acceptance/(.+)\.feature$})
  watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) do |m|
    Dir[File.join("**/#{m[1]}.feature")][0] || "spec/acceptance"
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
twitch-bot-6.0.0 Guardfile
twitch-bot-5.0.6 Guardfile
twitch-bot-5.0.5 Guardfile
twitch-bot-5.0.4 Guardfile
twitch-bot-5.0.2 Guardfile
twitch-bot-5.0.1 Guardfile
twitch-bot-5.0.0 Guardfile
twitch-bot-4.1.1 Guardfile
twitch-bot-4.1.0 Guardfile
twitch-bot-4.0.1 Guardfile
twitch-bot-4.0.0 Guardfile
twitch-bot-3.2.1 Guardfile
twitch-bot-3.2.0 Guardfile
twitch-bot-3.1.0 Guardfile
twitch-bot-2.1.1 Guardfile
twitch-bot-2.1.0 Guardfile
twitch-bot-2.0.1 Guardfile
twitch-bot-2.0.0 Guardfile
twitch-bot-1.0.0 Guardfile