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 +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/togglefleet/version.rb +1 -1
- metadata +18 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: add053306fe4d2d5cabba8a3777222eb7434804f2d248d6c2570de4904b63b55
|
|
4
|
+
data.tar.gz: e6e7c6a0dd21a431998a47b121dd8eada0c5fae401cb910af6f6874f50b74e14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/lib/togglefleet/version.rb
CHANGED
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.
|
|
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:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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: []
|