debian-mirror-gitlab/Guardfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
2.7 KiB
Plaintext
Raw Permalink Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
# More info at https://github.com/guard/guard#readme
2020-05-24 23:13:21 +05:30
require "guard/rspec/dsl"
2020-03-13 15:44:24 +05:30
cmd = ENV['GUARD_CMD'] || (ENV['SPRING'] ? 'spring rspec' : 'bundle exec rspec')
2019-12-26 22:10:19 +05:30
2021-03-08 18:12:59 +05:30
directories %w(app ee lib rubocop tooling spec)
2020-05-24 23:13:21 +05:30
rspec_context_for = proc do |context_path|
2021-12-11 22:18:48 +05:30
OpenStruct.new(to_s: "spec").tap do |rspec| # rubocop:disable Style/OpenStructUse
2020-05-24 23:13:21 +05:30
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-12-11 22:18:48 +05:30
OpenStruct.new.tap do |rails| # rubocop:disable Style/OpenStructUse
2020-05-24 23:13:21 +05:30
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-12-26 22:10:19 +05:30
2020-05-24 23:13:21 +05:30
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-12-26 22:10:19 +05:30
2020-05-24 23:13:21 +05:30
guard_setup = proc do |context_path|
2019-12-26 22:10:19 +05:30
# RSpec files
2020-05-24 23:13:21 +05:30
rspec = rspec_context_for.call(context_path)
2019-12-26 22:10:19 +05:30
watch(rspec.spec_helper) { rspec.spec_dir }
watch(rspec.spec_support) { rspec.spec_dir }
watch(rspec.spec_files)
# Ruby files
2020-05-24 23:13:21 +05:30
watch(%r{^#{context_path}(lib/.+)\.rb$}) { |m| rspec.spec.call(m[1]) }
2021-03-08 18:12:59 +05:30
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-12-26 22:10:19 +05:30
# Rails files
2020-05-24 23:13:21 +05:30
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-12-26 22:10:19 +05:30
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-24 23:13:21 +05:30
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