philiprehberger-feature_flag 0.2.0 → 0.2.2
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/CHANGELOG.md +14 -1
- data/README.md +5 -5
- data/lib/philiprehberger/feature_flag/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3fc85ef0053c9780d69a7f68a427e781d6d18562f500471fce701d2c713620e1
|
|
4
|
+
data.tar.gz: 050fc622f01aef80dd5377eee18d0468619d9a18bab4076920d598d500a5f7ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ec37f71140ce0e6d104cc949c99e98d8d4316ecbf1f53a571a1affadc1af59f369a9c7a9bb8c59fd6a3b709b5c479b691bb36283d89fbb32039a2b221671af0
|
|
7
|
+
data.tar.gz: 7c247ac56d6bea5219f0d3b1cfd5bdd9b7e0d549de1058b268ef565ec388d2b963d6997c4cf04a1ff7a2ed9b60a6390caaff7b5f37c4cfdb5a1cc0570d7a95d3
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.2] - 2026-03-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Standardize README code examples to use double-quote require statements
|
|
14
|
+
|
|
15
|
+
## [0.2.1] - 2026-03-24
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Fix Installation section quote style to double quotes
|
|
19
|
+
|
|
10
20
|
## [0.2.0] - 2026-03-17
|
|
11
21
|
|
|
12
22
|
### Added
|
|
@@ -16,12 +26,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
16
26
|
- User targeting — `enable_for(:feature, users: ["user_1"])` to whitelist specific users
|
|
17
27
|
- Flag groups — `group(:beta, [:feature_a, :feature_b])` for bulk enable/disable
|
|
18
28
|
|
|
19
|
-
## [0.1.2]
|
|
29
|
+
## [0.1.2] - 2026-03-16
|
|
20
30
|
|
|
31
|
+
### Changed
|
|
21
32
|
- Add License badge to README
|
|
22
33
|
- Add bug_tracker_uri to gemspec
|
|
23
34
|
- Add Requirements section to README
|
|
24
35
|
|
|
36
|
+
## [0.1.1] - 2026-03-15
|
|
37
|
+
|
|
25
38
|
## [0.1.0] - 2026-03-15
|
|
26
39
|
|
|
27
40
|
### Added
|
data/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# philiprehberger-feature_flag
|
|
2
2
|
|
|
3
|
+
[](https://github.com/philiprehberger/rb-feature-flag/actions/workflows/ci.yml)
|
|
3
4
|
[](https://rubygems.org/gems/philiprehberger-feature_flag)
|
|
4
|
-
[](https://github.com/philiprehberger/rb-feature-flag/actions/workflows/ci.yml)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
|
-
Minimal feature flag system with YAML, ENV, and in-memory backends
|
|
7
|
+
Minimal feature flag system with YAML, ENV, and in-memory backends for Ruby
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
|
@@ -15,7 +15,7 @@ Minimal feature flag system with YAML, ENV, and in-memory backends. Supports per
|
|
|
15
15
|
Add to your Gemfile:
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
|
-
gem
|
|
18
|
+
gem "philiprehberger-feature_flag"
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
Or install directly:
|
|
@@ -29,7 +29,7 @@ gem install philiprehberger-feature_flag
|
|
|
29
29
|
### Configuration
|
|
30
30
|
|
|
31
31
|
```ruby
|
|
32
|
-
require
|
|
32
|
+
require "philiprehberger/feature_flag"
|
|
33
33
|
|
|
34
34
|
# In-memory backend (default)
|
|
35
35
|
Philiprehberger::FeatureFlag.configure do |c|
|
|
@@ -232,4 +232,4 @@ bundle exec rubocop
|
|
|
232
232
|
|
|
233
233
|
## License
|
|
234
234
|
|
|
235
|
-
MIT
|
|
235
|
+
MIT
|
metadata
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-feature_flag
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Philip Rehberger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A lightweight feature flag library supporting in-memory, ENV, and YAML
|
|
14
14
|
backends with percentage rollout and A/B variant support.
|
|
15
15
|
email:
|
|
16
|
-
- philiprehberger
|
|
16
|
+
- me@philiprehberger.com
|
|
17
17
|
executables: []
|
|
18
18
|
extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
|
@@ -40,6 +40,7 @@ metadata:
|
|
|
40
40
|
homepage_uri: https://github.com/philiprehberger/rb-feature-flag
|
|
41
41
|
source_code_uri: https://github.com/philiprehberger/rb-feature-flag
|
|
42
42
|
changelog_uri: https://github.com/philiprehberger/rb-feature-flag/blob/main/CHANGELOG.md
|
|
43
|
+
bug_tracker_uri: https://github.com/philiprehberger/rb-feature-flag/issues
|
|
43
44
|
rubygems_mfa_required: 'true'
|
|
44
45
|
post_install_message:
|
|
45
46
|
rdoc_options: []
|