avo 2.32.0 → 2.32.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of avo might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7bde773a8062f76d29ce0655fd0948bf963f1a0627b02d3d9df706225049fab6
4
- data.tar.gz: 6503ea6bde6130648c2f2613e097ee9cc8db3e58d07702fea4d47a94b62a5118
3
+ metadata.gz: 6c6192664a6f2cf7fda32b54292112074307b4a466ae24e36557400f8dda2ae2
4
+ data.tar.gz: 5ea0bf6383dd42c82f9bff901cc1a96efe44fcba73c1c0cd78759bb60741daca
5
5
  SHA512:
6
- metadata.gz: c17065eb96f4b82a8f0d33f50627e635462e737c3fae582ab371c10a7976594df137fa8db3bb77252fcbc5d4c873ec4eb3db24c8ddedd201c6d830574be5687d
7
- data.tar.gz: 762e69b4a753622e1a6ad3eef2038e27acf05b36356bbe31a1cb7798ba1491f65306fb867d4eea41f0ffe8870c959c66df8f5a55768620119d7158ef56a6e05a
6
+ metadata.gz: 29b7f5aecc3d93ba210b71fa6722180da7fffcd064ba893af008830c569ab88cf27c26e775bfd1aebe19eba375fb94adf96cb35241d14377c734a4bda15a2d75
7
+ data.tar.gz: 326eaf0e5b31f9805d90d10ac4a79def06c9b91038dc02e087be59bb1e6eb1d94887823d75f1bb7093d0021f402cf7690a6ea20a6b14799813851e129d2adafb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- avo (2.32.0)
4
+ avo (2.32.1)
5
5
  actionview (>= 6.0)
6
6
  active_link_to
7
7
  activerecord (>= 6.0)
data/lib/avo/app.rb CHANGED
@@ -40,8 +40,8 @@ module Avo
40
40
  # We decided against the MemoryStore in production because it will not be shared between multiple processes (when using Puma).
41
41
  def get_cache_store
42
42
  if Rails.env.production?
43
- case Rails.cache.class
44
- when ActiveSupport::Cache::MemCacheStore, ActiveSupport::Cache::RedisCacheStore
43
+ case Rails.cache.class.to_s
44
+ when 'ActiveSupport::Cache::MemCacheStore', 'ActiveSupport::Cache::RedisCacheStore'
45
45
  Rails.cache
46
46
  else
47
47
  ActiveSupport::Cache::FileStore.new
data/lib/avo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Avo
2
- VERSION = "2.32.0" unless const_defined?(:VERSION)
2
+ VERSION = "2.32.1" unless const_defined?(:VERSION)
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: avo
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.32.0
4
+ version: 2.32.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrian Marin