ToggleFleet is cloud feature flags with all five Flipper gates — boolean, actor, group, % of actors, % of time — plus teams, multiple environments, and a drop-in Ruby gem. Flat $15/mo. Not Flipper Cloud's $49-and-up per-seat bill.
Free tier: 10 flags · unlimited seats & environments · no card.
The control surface
Exactly the model Flipper popularized — evaluated in order, the first match wins. ToggleFleet implements all five, server-stored and read through the SDK so your app stays fast.
The master switch. Flip it and the feature is live for every actor, everywhere.
Turn it on for specific users, accounts, or teams by ID — your beta list, your own account, Dave in QA.
Enable for anyone matching a rule you register in code — admins, internal staff, EU customers.
Sticky percentage rollout. The same users keep the feature as you ramp 1% → 100% — no flicker.
Random on a per-call basis — handy for load-testing a path or sampling without pinning to a user.
Wire it in
Drop the gem in and check flags with one method — it caches and evaluates locally, so there's no network call on the hot path. Not on Ruby? Hit the JSON API directly from anything. The gem is open source (MIT) — view the source on GitHub →
# Gemfile gem "togglefleet" # config/initializers/togglefleet.rb ToggleFleet.configure do |c| c.sdk_key = ENV["TOGGLEFLEET_KEY"] end ToggleFleet.register_group(:admins) { |u| u.admin? } # anywhere in your app if ToggleFleet.enabled?(:checkout_v2, actor: current_user) render "checkout/v2" end
# evaluate one flag for an actor curl https://togglefleet.com/v1/evaluate \ -H "Authorization: Bearer tf_live_…" \ -G --data-urlencode "flag=checkout_v2" \ --data-urlencode "actor=dave" # → { "flag":"checkout_v2", "enabled":true } # or pull the whole environment to cache curl https://togglefleet.com/v1/config \ -H "Authorization: Bearer tf_live_…"
Pricing
Flipper Cloud bills by seats — $49/mo for 10, $149 for 25, $299 for 50. ToggleFleet is one flat price for your whole team. (Flipper Cloud pricing verified June 2026.)
vs Flipper Cloud at the same team size: 10 seats — $49/mo → $15 · 25 seats — $149/mo → $15 · 50 seats — $299/mo → $15