cache_debugging 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 966d977f9f2e3f02a1659ef160c7386742b92a16
4
- data.tar.gz: 069c388fe175aaaae2491748a4e81a387ef7ec5c
3
+ metadata.gz: b6f1d6cd5b9d295bbb09481343e61a41c3179493
4
+ data.tar.gz: b113ac5ae559bf44e02472190cca54cc8c02761a
5
5
  SHA512:
6
- metadata.gz: ea249f02ce4f52639732bc59d1b53a4017c1cbba3c1c1c4c2e9fd788727d0bf7e1a7bd2635617390b2648ebb9d73e6eeeae255eef10e320ff3a8ef09dc0d8816
7
- data.tar.gz: 01ef735d0ae31649da1f70aef82ca5de7c8d60d31d8f1df6d05d892da35b6cbace54fb02ebc03087d61a33e9bac99789874cb0f51bc4426728294a40be2ffaa7
6
+ metadata.gz: 76bfd3b1c5419d0c77bdf0db5524b883248ef6c48898188b2f02d20550c5b2dccaa6893b0a354ef661c0c5c843348a867cf543453016ebe700a82f2592eaadf5
7
+ data.tar.gz: 25e759f6223135c33462b6a0c11f11020e93ff5748fdd8b6ddd0bdcc8987dbf0ebc4aaae6027ea2124847ac3c316b4e28baf5f611466f2bf4102c2c5bbe24594
@@ -1,12 +1,12 @@
1
1
  module CacheDebugging
2
2
  class Railtie < Rails::Railtie
3
- config.cache_debugging = ActiveSupport::OrderedOptions.new(
4
- # raise exceptions if templates aren't in the dependency tree
5
- strict_dependencies: false,
3
+ config.cache_debugging = ActiveSupport::OrderedOptions.new
6
4
 
7
- # [0,1] - decimal (percent) of cache hits to check
8
- view_sampling: 0
9
- )
5
+ # raise exceptions if templates aren't in the dependency tree
6
+ config.cache_debugging.strict_dependencies = false
7
+
8
+ # [0,1] - decimal (percent) of cache hits to check
9
+ config.cache_debugging.view_sampling = 0
10
10
 
11
11
  initializer "cache_debugging.setup", :before => 'cache_digests' do |app|
12
12
  ActiveSupport.on_load(:action_view) do
@@ -1,3 +1,3 @@
1
1
  module CacheDebugging
2
- VERSION = "0.0.1"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cache_debugging
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Ching