togglefleet 0.2.0 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0f09f92537778aa772a14ed6250748d881500c9e84d35154f776fffecdecedc1
4
- data.tar.gz: deb6b017894d8fb1373c23fae52acda0a0b602a6c066c5ebde5e31b97fca6682
3
+ metadata.gz: add053306fe4d2d5cabba8a3777222eb7434804f2d248d6c2570de4904b63b55
4
+ data.tar.gz: e6e7c6a0dd21a431998a47b121dd8eada0c5fae401cb910af6f6874f50b74e14
5
5
  SHA512:
6
- metadata.gz: 8e92f5e26d72e1b324fe2ce6d9f60144c46fa8a50f10fa7b124cdda3c2bf160ca07b7b94a82df0f29822eccc7b0d6e1251b5565f81e239128bce90529e47b6ec
7
- data.tar.gz: f526fe055723c08c9f9dcc26e749d10e7a434ddecc59870372e4660aeb452fcd6fdfd1804943927c33d09f006753414455717b133bf04e216833e6cfa097bebd
6
+ metadata.gz: a14afc7241970e98e1f4faa754045bd9b21bbfa6c027c01b6600060f1770e0dd5ba72ec8f83aa7e9a073547a75acd9753ae55f0410f9de38d6324fe8f4c3c938
7
+ data.tar.gz: dfa555c326077d674e3ef8157d5a72fca16000c39be3e4ad707ebe1edf7b10aa306f6d44516972e8020823f28aface6a7c22ed2798b6e0d795942b3ce1f35d49
data/CHANGELOG.md CHANGED
@@ -3,6 +3,19 @@
3
3
  All notable changes to the ToggleFleet Ruby SDK are documented here.
4
4
  This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
5
 
6
+ ## [0.2.1] — 2026-07-26
7
+
8
+ Documentation only. No code changes; upgrading is optional.
9
+
10
+ ### Changed
11
+
12
+ - Expanded the gem description. rubygems.org does not render `README.md` — the
13
+ gem page shows only the description — so the things a developer needs in order
14
+ to evaluate the library (hot-path cost, failure behaviour under an outage,
15
+ zero-dependency footprint, fork safety, and the fact that group membership is
16
+ resolved in your own process so no user data leaves it) are now stated there
17
+ rather than being visible only on GitHub.
18
+
6
19
  ## [0.2.0] — 2026-07-26
7
20
 
8
21
  Reliability release. Every change here is about the SDK staying out of your
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ToggleFleet
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: togglefleet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ToggleFleet
@@ -9,10 +9,23 @@ bindir: bin
9
9
  cert_chain: []
10
10
  date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies: []
12
- description: ToggleFleet is a cloud feature-flag service. This gem fetches your environment's
13
- flags, caches them, and evaluates all five gates (boolean, actor, group, % of actors,
14
- % of time) locally so checking a flag is a hash lookup, not a network call. Background
15
- refresh uses conditional ETag requests; evaluation is byte-identical to the server.
12
+ description: |
13
+ ToggleFleet is a hosted feature-flag service for Ruby. This gem fetches your environment's
14
+ flags once, refreshes them in the background with conditional ETag requests, and evaluates
15
+ all five gates boolean, actor, group, percentage-of-actors (sticky), and percentage-of-time
16
+ — entirely in-process. Checking a flag is a hash lookup, not a network call, so flags cost
17
+ nothing on the hot path and keep working at their last known values if ToggleFleet is
18
+ unreachable.
19
+
20
+ Zero runtime dependencies — only the Ruby standard library. Thread-safe, fork-safe under
21
+ Puma/Unicorn/Passenger, and fail-safe by design: any error returns your configured default
22
+ rather than raising into a request.
23
+
24
+ Evaluation is byte-identical to server-side evaluation, including MD5 bucketing, so a sticky
25
+ rollout targets exactly the same actors whether it is resolved locally or through the API.
26
+ Group membership is decided by predicates in your own code, so no user data leaves your process.
27
+
28
+ Requires a ToggleFleet account for an SDK key. Full documentation at https://togglefleet.com/docs.
16
29
  email:
17
30
  - support@togglefleet.com
18
31
  executables: []