2019-11-18 16:06:19 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# More info at https://github.com/guard/guard#readme
|
|
|
|
|
2020-05-07 14:09:28 -04:00
|
|
|
require "guard/rspec/dsl"
|
|
|
|
|
2020-01-29 10:08:59 -05:00
|
|
|
cmd = ENV['GUARD_CMD'] || (ENV['SPRING'] ? 'spring rspec' : 'bundle exec rspec')
|
2019-11-18 16:06:19 -05:00
|
|
|
|
2021-01-13 13:10:55 -05:00
|
|
|
directories %w(app ee lib rubocop tooling spec)
|
2020-05-07 14:09:28 -04:00
|
|
|
|
|
|
|
rspec_context_for = proc do |context_path|
|
2021-11-04 14:09:40 -04:00
|
|
|
OpenStruct.new(to_s: "spec").tap do |rspec| # rubocop:disable Style/OpenStructUse
|
2020-05-07 14:09:28 -04:00
|
|
|
rspec.spec_dir = "#{context_path}spec"
|
|
|
|
rspec.spec = ->(m) { Guard::RSpec::Dsl.detect_spec_file_for(rspec, m) }
|
|
|
|
rspec.spec_helper = "#{rspec.spec_dir}/spec_helper.rb"
|
|
|
|
rspec.spec_files = %r{^#{rspec.spec_dir}/.+_spec\.rb$}
|
|
|
|
rspec.spec_support = %r{^#{rspec.spec_dir}/support/(.+)\.rb$}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
rails_context_for = proc do |context_path, exts|
|
2021-11-04 14:09:40 -04:00
|
|
|
OpenStruct.new.tap do |rails| # rubocop:disable Style/OpenStructUse
|
2020-05-07 14:09:28 -04:00
|
|
|
rails.app_files = %r{^#{context_path}app/(.+)\.rb$}
|
|
|
|
|
|
|
|
rails.views = %r{^#{context_path}app/(views/.+/[^/]*\.(?:#{exts}))$}
|
|
|
|
rails.view_dirs = %r{^#{context_path}app/views/(.+)/[^/]*\.(?:#{exts})$}
|
|
|
|
rails.layouts = %r{^#{context_path}app/layouts/(.+)/[^/]*\.(?:#{exts})$}
|
2019-11-18 16:06:19 -05:00
|
|
|
|
2020-05-07 14:09:28 -04:00
|
|
|
rails.controllers = %r{^#{context_path}app/controllers/(.+)_controller\.rb$}
|
|
|
|
rails.routes = "#{context_path}config/routes.rb"
|
|
|
|
rails.app_controller = "#{context_path}app/controllers/application_controller.rb"
|
|
|
|
rails.spec_helper = "#{context_path}spec/rails_helper.rb"
|
|
|
|
end
|
|
|
|
end
|
2019-11-18 16:06:19 -05:00
|
|
|
|
2020-05-07 14:09:28 -04:00
|
|
|
guard_setup = proc do |context_path|
|
2019-11-18 16:06:19 -05:00
|
|
|
# RSpec files
|
2020-05-07 14:09:28 -04:00
|
|
|
rspec = rspec_context_for.call(context_path)
|
2019-11-18 16:06:19 -05:00
|
|
|
watch(rspec.spec_helper) { rspec.spec_dir }
|
|
|
|
watch(rspec.spec_support) { rspec.spec_dir }
|
|
|
|
watch(rspec.spec_files)
|
|
|
|
|
|
|
|
# Ruby files
|
2020-05-07 14:09:28 -04:00
|
|
|
watch(%r{^#{context_path}(lib/.+)\.rb$}) { |m| rspec.spec.call(m[1]) }
|
2021-01-13 13:10:55 -05:00
|
|
|
watch(%r{^#{context_path}(rubocop/.+)\.rb$}) { |m| rspec.spec.call(m[1]) }
|
|
|
|
watch(%r{^#{context_path}(tooling/.+)\.rb$}) { |m| rspec.spec.call(m[1]) }
|
2019-11-18 16:06:19 -05:00
|
|
|
|
|
|
|
# Rails files
|
2020-05-07 14:09:28 -04:00
|
|
|
rails = rails_context_for.call(context_path, %w(erb haml slim))
|
|
|
|
watch(rails.app_files) { |m| rspec.spec.call(m[1]) }
|
|
|
|
watch(rails.views) { |m| rspec.spec.call(m[1]) }
|
2019-11-18 16:06:19 -05:00
|
|
|
|
|
|
|
watch(rails.controllers) do |m|
|
|
|
|
[
|
|
|
|
rspec.spec.call("routing/#{m[1]}_routing"),
|
|
|
|
rspec.spec.call("controllers/#{m[1]}_controller")
|
|
|
|
]
|
|
|
|
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]}") }
|
|
|
|
end
|
2020-05-07 14:09:28 -04:00
|
|
|
|
|
|
|
context_paths = ['', 'ee/']
|
|
|
|
|
|
|
|
context_paths.each do |context_path|
|
|
|
|
guard :rspec, cmd: cmd, spec_paths: ["#{context_path}spec/"] do
|
|
|
|
guard_setup.call(context_path)
|
|
|
|
end
|
|
|
|
end
|