feature_flagger 2.2.0 → 2.2.1
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 +4 -4
- data/README.md +0 -3
- data/lib/feature_flagger/version.rb +1 -1
- data/lib/feature_flagger.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 00bb78fb3108046b58f0f12ad0f961e064704e5fb7e4a52e7599554cf256603a
|
|
4
|
+
data.tar.gz: 84ddec88634be5e22845e2f93dd6d90893bf04475e7ec02e1389eb045eda3a8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9f425c46c9c74000b1fdbc456d17db656665b7020c28f76812ec323b807d7b40b235b8bd9c8ca44d6b85fd209faafb856aa15909bf3b045ee6c6353603f43151
|
|
7
|
+
data.tar.gz: d55017ad557e4775638dc909cb5348afaa260c5941e0be777ef2ccfdaeb676533b59efcf384187e009bdfcad6f4c76330ae552a42abd7d81f8e51a7895e8ffb3
|
data/README.md
CHANGED
|
@@ -168,7 +168,6 @@ There are a few options to store/retrieve your rollout manifest (a.k.a rollout.y
|
|
|
168
168
|
If you have a rollout.yml file and want to use Redis to keep a backup, add the follow code to the configuration block:
|
|
169
169
|
|
|
170
170
|
```ruby
|
|
171
|
-
require 'feature_flagger/manifest_sources/yaml_with_backup_to_storage'
|
|
172
171
|
FeatureFlagger.configure do |config|
|
|
173
172
|
...
|
|
174
173
|
config.manifest_source = FeatureFlagger::ManifestSources::YAMLWithBackupToStorage.new(config.storage)
|
|
@@ -179,8 +178,6 @@ end
|
|
|
179
178
|
If you already have your manifest on Redis and prefer not to keep a copy in your application, add the following code to the configuration block:
|
|
180
179
|
|
|
181
180
|
```ruby
|
|
182
|
-
require 'feature_flagger/manifest_sources/storage_only'
|
|
183
|
-
|
|
184
181
|
FeatureFlagger.configure do |config|
|
|
185
182
|
...
|
|
186
183
|
config.manifest_source = FeatureFlagger::ManifestSources::StorageOnly.new(config.storage)
|
data/lib/feature_flagger.rb
CHANGED
|
@@ -12,6 +12,8 @@ require 'feature_flagger/manager'
|
|
|
12
12
|
require 'feature_flagger/railtie'
|
|
13
13
|
require 'feature_flagger/notifier'
|
|
14
14
|
require 'feature_flagger/manifest_sources/with_yaml_file'
|
|
15
|
+
require 'feature_flagger/manifest_sources/yaml_with_backup_to_storage'
|
|
16
|
+
require 'feature_flagger/manifest_sources/storage_only'
|
|
15
17
|
|
|
16
18
|
module FeatureFlagger
|
|
17
19
|
class << self
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: feature_flagger
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nando Sousa
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2022-01-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: redis
|