We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3279d15 commit aaf65a8Copy full SHA for aaf65a8
Guardfile
@@ -16,6 +16,8 @@ rspec_options = {
16
guard 'rspec', rspec_options do
17
watch(%r{^spec/.+_spec\.rb$})
18
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
19
+ watch('lib/flipper/ui/middleware.rb') { 'spec/flipper/ui_spec.rb' }
20
+ watch('lib/flipper/api/middleware.rb') { 'spec/flipper/api_spec.rb' }
21
watch(/shared_adapter_specs\.rb$/) { 'spec' }
22
watch('spec/helper.rb') { 'spec' }
23
end
0 commit comments