Sha256: 622aee34b99b9a0911ed68afe4ad1198c9f27327a52c8a6a6310258595ca4c74

Contents?: true

Size: 890 Bytes

Versions: 3

Compression:

Stored size: 890 Bytes

Contents

guard :rspec, cmd: "bundle exec rspec --color --format documentation" do
  require "guard/rspec/dsl"
  dsl = Guard::RSpec::Dsl.new(self)
  watch(%r{^spec/(.*)\/?(.*)_spec\.rb$})

  # 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)

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

  watch(rails.controllers) do |m|
    [
      rspec.spec.call("controllers/#{m[1]}_controller"),
      rspec.spec.call("api/#{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" }
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
graphiti-1.2.19 Guardfile
graphiti-1.2.18 Guardfile
graphiti-1.2.17 Guardfile