flipper-active_support_cache_store 0.28.3 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4af9c24a757e7b8a54a0aeb46b2ab060e7800c8d8c38c90daff37b046a0c3a13
|
4
|
+
data.tar.gz: dadc9bba7b9be524803b436548dd4cb1e67dac3ee3b8ea1b6f3bc53c58ebd980
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05f3321be57b5faf88b94bdde97c04d6716524b87947661a989d51c840f1437f8ba75e68ba86828bd582d66de4c3bf612e18dbaef72a7baef37cb92a2e0edcbd
|
7
|
+
data.tar.gz: 22e35550741299a38bba9867baec0915b293d5b93f78a4dba1696c374d8c87390c5a71ebb2b3f558dba2a72bf7c30b31c39125ae23f28e6dee23bdb7af94ff42
|
@@ -8,10 +8,10 @@ end
|
|
8
8
|
|
9
9
|
Gem::Specification.new do |gem|
|
10
10
|
gem.authors = ['John Nunemaker']
|
11
|
-
gem.email =
|
11
|
+
gem.email = 'support@flippercloud.io'
|
12
12
|
gem.summary = 'ActiveSupport::Cache store adapter for Flipper'
|
13
13
|
gem.license = 'MIT'
|
14
|
-
gem.homepage = 'https://
|
14
|
+
gem.homepage = 'https://www.flippercloud.io/docs/optimization#activesupportcachestore'
|
15
15
|
|
16
16
|
gem.files = `git ls-files`.split("\n").select(&flipper_active_support_cache_store_files) + ['lib/flipper/version.rb']
|
17
17
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n").select(&flipper_active_support_cache_store_files)
|
data/lib/flipper/version.rb
CHANGED
@@ -48,7 +48,7 @@ RSpec.describe Flipper::Adapters::ActiveSupportCacheStore do
|
|
48
48
|
let(:feature) { flipper[:stats] }
|
49
49
|
|
50
50
|
before do
|
51
|
-
adapter.enable(feature, feature.gate(:boolean),
|
51
|
+
adapter.enable(feature, feature.gate(:boolean), Flipper::Types::Boolean.new(true))
|
52
52
|
end
|
53
53
|
|
54
54
|
it 'enables feature and deletes the cache' do
|
@@ -72,7 +72,7 @@ RSpec.describe Flipper::Adapters::ActiveSupportCacheStore do
|
|
72
72
|
let(:feature) { flipper[:stats] }
|
73
73
|
|
74
74
|
before do
|
75
|
-
adapter.disable(feature, feature.gate(:boolean),
|
75
|
+
adapter.disable(feature, feature.gate(:boolean), Flipper::Types::Boolean.new)
|
76
76
|
end
|
77
77
|
|
78
78
|
it 'disables feature and deletes the cache' do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flipper-active_support_cache_store
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Nunemaker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: flipper
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 1.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 1.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: activesupport
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -45,8 +45,7 @@ dependencies:
|
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '8'
|
47
47
|
description:
|
48
|
-
email:
|
49
|
-
- nunemaker@gmail.com
|
48
|
+
email: support@flippercloud.io
|
50
49
|
executables: []
|
51
50
|
extensions: []
|
52
51
|
extra_rdoc_files: []
|
@@ -56,11 +55,15 @@ files:
|
|
56
55
|
- lib/flipper/adapters/active_support_cache_store.rb
|
57
56
|
- lib/flipper/version.rb
|
58
57
|
- spec/flipper/adapters/active_support_cache_store_spec.rb
|
59
|
-
homepage: https://
|
58
|
+
homepage: https://www.flippercloud.io/docs/optimization#activesupportcachestore
|
60
59
|
licenses:
|
61
60
|
- MIT
|
62
61
|
metadata:
|
63
|
-
|
62
|
+
documentation_uri: https://www.flippercloud.io/docs
|
63
|
+
homepage_uri: https://www.flippercloud.io
|
64
|
+
source_code_uri: https://github.com/flippercloud/flipper
|
65
|
+
bug_tracker_uri: https://github.com/flippercloud/flipper/issues
|
66
|
+
changelog_uri: https://github.com/flippercloud/flipper/blob/main/Changelog.md
|
64
67
|
post_install_message:
|
65
68
|
rdoc_options: []
|
66
69
|
require_paths:
|
@@ -76,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
79
|
- !ruby/object:Gem::Version
|
77
80
|
version: '0'
|
78
81
|
requirements: []
|
79
|
-
rubygems_version: 3.
|
82
|
+
rubygems_version: 3.4.10
|
80
83
|
signing_key:
|
81
84
|
specification_version: 4
|
82
85
|
summary: ActiveSupport::Cache store adapter for Flipper
|