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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 919e183c0d752f485d286f0f8dff9725c7f919b784f523fe4db74665bdf2c0b4
4
- data.tar.gz: 44bdaa00f143a581d79595a1dde4dab5247aeb01c74981deb57d61f6ef30843f
3
+ metadata.gz: 3fc85ef0053c9780d69a7f68a427e781d6d18562f500471fce701d2c713620e1
4
+ data.tar.gz: 050fc622f01aef80dd5377eee18d0468619d9a18bab4076920d598d500a5f7ce
5
5
  SHA512:
6
- metadata.gz: 14de86fd9f102e3b9f33934b0083d18585c9f524260801a5e88b01582753e7a169242f6226323523ab38e135d74ec3164b85fe8971b6a9fec8ed57b20ae6e33a
7
- data.tar.gz: 848358a4cc5a32ceb6fb54fc0019ee8d84d36f72c707c60e2cb54e6c4f8e0c6c1b2a1202a86c299d8f53e357af4d0d36b789e3000b421ebf8d67900cf05014b1
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
+ [![Tests](https://github.com/philiprehberger/rb-feature-flag/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-feature-flag/actions/workflows/ci.yml)
3
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-feature_flag.svg)](https://rubygems.org/gems/philiprehberger-feature_flag)
4
- [![CI](https://github.com/philiprehberger/rb-feature-flag/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-feature-flag/actions/workflows/ci.yml)
5
5
  [![License](https://img.shields.io/github/license/philiprehberger/rb-feature-flag)](LICENSE)
6
6
 
7
- Minimal feature flag system with YAML, ENV, and in-memory backends. Supports percentage rollout, A/B variants, flag dependencies, scheduling, metrics, user targeting, and flag groups.
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 'philiprehberger-feature_flag'
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 'philiprehberger/feature_flag'
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 License. See [LICENSE](LICENSE) for details.
235
+ MIT
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module FeatureFlag
5
- VERSION = '0.2.0'
5
+ VERSION = '0.2.2'
6
6
  end
7
7
  end
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.0
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-17 00:00:00.000000000 Z
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@users.noreply.github.com
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: []