Skip to content

Commit

Permalink
Run all cache changes when base changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jnunemaker committed Feb 18, 2024
1 parent 2baa5af commit a57ccf7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ guard 'rspec', rspec_options do
watch(/shared_adapter_specs\.rb$/) { 'spec' }
watch('spec/helper.rb') { 'spec' }
watch('lib/flipper/adapters/http/client.rb') { 'spec/flipper/adapters/http_spec.rb' }
watch('lib/flipper/adapters/cache_base.rb') {
[
'spec/flipper/adapters/redis_cache_spec.rb',
'spec/flipper/adapters/dalli_cache_spec.rb',
'spec/flipper/adapters/active_support_cache_store_spec.rb',
]
}

# To run all specs on every change... (useful with focus and fit)
# watch(%r{.*}) { 'spec' }
Expand Down

0 comments on commit a57ccf7

Please sign in to comment.