A summary of data about the Ruby ecosystem.

https://github.com/flippercloud/flipper

🐬 Beautiful, performant feature flags for Ruby.
https://github.com/flippercloud/flipper

Keywords

api dalli feature feature-flag feature-flagging feature-flags feature-toggle feature-toggles features flipper http memcached mongo mysql postgres rails redis rollout ruby

Keywords from Contributors

activerecord mvc activejob rubygems crash-reporting rubocop code-formatter static-code-analysis sidekiq rack

Last synced: about 18 hours ago
JSON representation

Repository metadata

🐬 Beautiful, performant feature flags for Ruby.

README.md

Flipper Mark

Website | Documentation | Examples | Chat | Twitter | Ruby.social

Flipper

Beautiful, performant feature flags for Ruby and Rails.

Flipper gives you control over who has access to features in your app.

  • Enable or disable features for everyone, specific actors, groups of actors, a percentage of actors, or a percentage of time.
  • Configure your feature flags from the console or a web UI.
  • Regardless of what data store you are using, Flipper can performantly store your feature flags.
  • Use Flipper Cloud to cascade features from multiple environments, share settings with your team, control permissions, keep an audit history, and rollback.

Control your software β€” don't let it control you.

Installation

Add this line to your application's Gemfile:

gem 'flipper'

You'll also want to pick a storage adapter, for example:

gem 'flipper-active_record'

And then execute:

$ bundle

Or install it yourself with:

$ gem install flipper

Subscribe & Ship

πŸ’Œ Β Subscribe - we'll send you short and sweet emails when we release new versions (examples).

Getting Started

Use Flipper#enabled? in your app to check if a feature is enabled.

# check if search is enabled
if Flipper.enabled?(:search, current_user)
  puts 'Search away!'
else
  puts 'No search for you!'
end

All features are disabled by default, so you'll need to explicitly enable them.

# Enable a feature for everyone
Flipper.enable :search

# Enable a feature for a specific actor
Flipper.enable_actor :search, current_user

# Enable a feature for a group of actors
Flipper.enable_group :search, :admin

# Enable a feature for a percentage of actors
Flipper.enable_percentage_of_actors :search, 2

Read more about getting started with Flipper and enabling features.

Flipper Cloud

Like Flipper and want more? Check out Flipper Cloud, which comes with:

  • multiple environments β€” production, staging, per continent, whatever you need. Every environment inherits from production by default and every project comes with a project overview page that shows each feature and its status in each environment.
  • personal environments β€” everyone on your team gets a personal environment (that inherits from production) which they can modify however they want without stepping on anyone else's toes.
  • permissions β€” grant access to everyone in your organization or lockdown each project to particular people. You can even limit access to a particular environment (like production) to specific people.
  • audit history β€” every feature change and who made it.
  • rollbacks β€” enable or disable a feature accidentally? No problem. You can roll back to any point in the audit history with a single click.
  • maintenance β€” we'll keep the lights on for you. We also have handy webhooks and background polling for keeping your app in sync with Cloud, so our availability won't affect yours. All your feature flag reads are local to your app.
  • everything in one place β€” no need to bounce around from different application UIs or IRB consoles.

Flipper Cloud Screenshot

Cloud is super simple to integrate with Rails (demo app), Sinatra or any other framework.

We also have a free plan that you can use forever.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Run the tests (bundle exec rake). Check out Docker-Compose if you need help getting all the adapters running.
  4. Commit your changes (git commit -am 'Added some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create new Pull Request

Releasing

  1. Update the version to be whatever it should be and commit.
  2. script/release
  3. Create a new GitHub Release

Brought To You By

pic @mention area
@jnunemaker @jnunemaker most things
@bkeepers @bkeepers most things
@dpep @dpep tbd
@alexwheeler @alexwheeler api
@thetimbanks @thetimbanks ui
@lazebny @lazebny docker
@pagertree @pagertree sponsor
@kdaigle @kdaigle sponsor

Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: about 18 hours ago

Total Commits: 2,728
Total Committers: 148
Avg Commits per committer: 18.432
Development Distribution Score (DDS): 0.275

Commits in past year: 89
Committers in past year: 10
Avg Commits per committer in past year: 8.9
Development Distribution Score (DDS) in past year: 0.157

Name Email Commits
John Nunemaker n****r@g****m 1978
Brandon Keepers b****n@o****g 332
Alex Wheeler a****2@g****m 72
Alex Wheeler aw@v****m 20
Daniel Pepper p****l@g****m 15
dependabot[bot] 4****] 14
Campbell Allen c****n@g****m 14
Garry Shutler g****y@r****k 8
Chris Autwell c****l@g****m 8
Brett C. Dudo b****o@c****m 8
Ivan Garanin i****3@g****m 7
Jonathan del Strother j****r@g****m 6
Rob Sanheim r****m@g****m 6
Kath f****h@g****m 6
John Nunemaker j****n@g****m 6
Jack Anderson j****n@g****m 6
Phil Phillips p****l@p****m 5
Tim Banks t****s@g****m 5
mo khan m****n@g****m 4
Ben Bader b****r@i****m 4
Daniel Alfaro p****8@g****m 4
Ryan Bigg me@r****m 4
Vadim Lazebny v****y@g****m 4
ivorpad i****c@g****m 4
Benjamin Fleischer g****b@b****m 4
Bradley Grzesiak d****y@b****m 4
Jeffrey Wan j****n@b****m 4
Kevin Bongart c****t@k****t 3
Piotr Szotkowski c****l@c****t 3
Peter Rosanelli 3****i 3
and 118 more...

Committer domains:


Issue and Pull Request metadata

Last synced: 4 days ago

Total issues: 86
Total pull requests: 206
Average time to close issues: 2 months
Average time to close pull requests: about 1 month
Total issue authors: 72
Total pull request authors: 43
Average comments per issue: 2.66
Average comments per pull request: 1.09
Merged pull request: 153
Bot issues: 0
Bot pull requests: 10

Past year issues: 21
Past year pull requests: 39
Past year average time to close issues: 12 days
Past year average time to close pull requests: 6 days
Past year issue authors: 20
Past year pull request authors: 12
Past year average comments per issue: 1.52
Past year average comments per pull request: 0.59
Past year merged pull request: 24
Past year bot issues: 0
Past year bot pull requests: 3

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/flippercloud/flipper

Top Issue Authors

  • jnunemaker (6)
  • n-rodriguez (3)
  • abratashov (2)
  • clinejj (2)
  • nhorton (2)
  • GarrisonD (2)
  • kiliczsh (2)
  • doutatsu (2)
  • rstawarz (2)
  • manewitz (1)
  • Hanaffi (1)
  • iftheshoefritz (1)
  • limjinsun (1)
  • danielmorrison (1)
  • frank-west-iii (1)

Top Pull Request Authors

  • bkeepers (63)
  • jnunemaker (57)
  • dependabot[bot] (10)
  • dpep (5)
  • pbstriker38 (4)
  • pauloancheta (4)
  • benedikt (4)
  • blumhardts (3)
  • joshuay03 (2)
  • codeconscious (2)
  • ur5us (2)
  • ericboehs (2)
  • andrewmcodes (2)
  • khiet (2)
  • pkrisko (2)

Top Issue Labels

  • feature (2)
  • idea (1)

Top Pull Request Labels

  • dependencies (10)
  • github_actions (3)
  • bug (1)

Package metadata

gem.coop: flipper

Beautiful, performant feature flags for Ruby and Rails.

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-03-01T13:01:57.516Z (2 days ago)
  • Versions: 107
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 87,598,348 Total
  • Docker Downloads: 434,503,958
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.152%
    • Docker downloads count: 0.297%
    • Downloads: 0.313%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
gem.coop: flipper-active_record

ActiveRecord feature flag adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-active_record/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-03-02T15:01:56.899Z (about 20 hours ago)
  • Versions: 87
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 63,396,968 Total
  • Docker Downloads: 434,503,958
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.186%
    • Docker downloads count: 0.297%
    • Downloads: 0.449%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
gem.coop: flipper-active_support_cache_store

ActiveSupport::Cache feature flag cache adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-active_support_cache_store/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-02-28T11:02:02.449Z (3 days ago)
  • Versions: 69
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 47,565,070 Total
  • Docker Downloads: 434,214,675
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.212%
    • Docker downloads count: 0.321%
    • Downloads: 0.529%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
gem.coop: flipper-redis

Redis feature flag adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-redis/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-03-02T13:32:57.755Z (about 22 hours ago)
  • Versions: 101
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 21,130,047 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.296%
    • Downloads: 0.888%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
gem.coop: flipper-ui

Feature flag UI for the Flipper gem

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-ui/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-03-02T16:00:31.211Z (about 19 hours ago)
  • Versions: 98
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 32,649,271 Total
  • Docker Downloads: 289,283
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.586%
    • Downloads: 0.739%
    • Docker downloads count: 1.605%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
gem.coop: flipper-api

Feature flag API for the Flipper gem

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-api/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-03-02T14:33:07.147Z (about 21 hours ago)
  • Versions: 84
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,085,806 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.699%
    • Downloads: 2.097%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
rubygems.org: flipper

Beautiful, performant feature flags for Ruby and Rails.

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-02-28T16:01:17.666Z (3 days ago)
  • Versions: 107
  • Dependent Packages: 26
  • Dependent Repositories: 1,345
  • Downloads: 87,591,027 Total
  • Docker Downloads: 434,503,958
  • Rankings:
    • Docker downloads count: 0.377%
    • Downloads: 0.388%
    • Stargazers count: 0.584%
    • Average: 0.734%
    • Dependent repos count: 0.842%
    • Dependent packages count: 0.891%
    • Forks count: 1.318%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
gem.coop: flipper-dalli

Dalli feature flag cache adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-dalli/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-03-01T23:03:07.901Z (1 day ago)
  • Versions: 82
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,455,334 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.899%
    • Downloads: 2.696%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
gem.coop: flipper-mongo

Mongo feature flag adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-mongo/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-03-01T22:33:16.895Z (1 day ago)
  • Versions: 100
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,368,161 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.945%
    • Downloads: 2.836%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
rubygems.org: flipper-active_record

ActiveRecord feature flag adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-active_record/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-03-01T11:31:49.602Z (2 days ago)
  • Versions: 87
  • Dependent Packages: 3
  • Dependent Repositories: 1,203
  • Downloads: 63,368,336 Total
  • Docker Downloads: 434,503,958
  • Rankings:
    • Docker downloads count: 0.377%
    • Downloads: 0.507%
    • Stargazers count: 0.584%
    • Dependent repos count: 0.931%
    • Average: 1.29%
    • Forks count: 1.318%
    • Dependent packages count: 4.021%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
gem.coop: flipper-cloud

[DEPRECATED] This gem has been merged into the `flipper` gem

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-cloud/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-03-02T01:31:15.807Z (1 day ago)
  • Versions: 76
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 503,957 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.435%
    • Downloads: 4.304%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
rubygems.org: flipper-ui

Feature flag UI for the Flipper gem

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-ui/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-03-01T14:02:58.874Z (2 days ago)
  • Versions: 98
  • Dependent Packages: 2
  • Dependent Repositories: 376
  • Downloads: 32,622,752 Total
  • Docker Downloads: 289,283
  • Rankings:
    • Stargazers count: 0.592%
    • Downloads: 0.814%
    • Forks count: 1.294%
    • Dependent repos count: 1.693%
    • Average: 1.916%
    • Docker downloads count: 1.925%
    • Dependent packages count: 5.178%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
rubygems.org: flipper-active_support_cache_store

ActiveSupport::Cache feature flag cache adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-active_support_cache_store/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-03-02T10:31:35.321Z (1 day ago)
  • Versions: 69
  • Dependent Packages: 1
  • Dependent Repositories: 912
  • Downloads: 47,572,766 Total
  • Docker Downloads: 434,214,675
  • Rankings:
    • Docker downloads count: 0.386%
    • Stargazers count: 0.592%
    • Downloads: 0.593%
    • Dependent repos count: 1.103%
    • Forks count: 1.294%
    • Average: 1.937%
    • Dependent packages count: 7.654%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
gem.coop: flipper-sequel

Sequel feature flag adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-sequel/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-02-28T16:01:19.325Z (3 days ago)
  • Versions: 79
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 233,596 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 2.065%
    • Downloads: 6.194%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
rubygems.org: flipper-redis

Redis feature flag adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-redis/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-02-28T16:01:17.714Z (3 days ago)
  • Versions: 101
  • Dependent Packages: 1
  • Dependent Repositories: 107
  • Downloads: 21,122,630 Total
  • Rankings:
    • Stargazers count: 0.61%
    • Downloads: 0.873%
    • Forks count: 1.319%
    • Average: 2.655%
    • Dependent repos count: 2.725%
    • Dependent packages count: 7.746%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
gem.coop: flipper-rollout

Rollout feature flag adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-rollout/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-02-28T16:01:17.818Z (3 days ago)
  • Versions: 65
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 95,549 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 3.282%
    • Downloads: 9.846%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
proxy.golang.org: github.com/flippercloud/flipper

rubygems.org: flipper-api

Feature flag API for the Flipper gem

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-api/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-02-28T16:01:18.371Z (3 days ago)
  • Versions: 84
  • Dependent Packages: 0
  • Dependent Repositories: 7
  • Downloads: 3,084,041 Total
  • Rankings:
    • Stargazers count: 0.592%
    • Forks count: 1.294%
    • Downloads: 2.423%
    • Average: 5.666%
    • Dependent repos count: 8.443%
    • Dependent packages count: 15.576%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
rubygems.org: flipper-mongo

Mongo feature flag adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-mongo/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-02-28T16:01:17.751Z (3 days ago)
  • Versions: 100
  • Dependent Packages: 0
  • Dependent Repositories: 3
  • Downloads: 1,367,704 Total
  • Rankings:
    • Stargazers count: 0.592%
    • Forks count: 1.294%
    • Downloads: 3.399%
    • Average: 6.712%
    • Dependent repos count: 12.699%
    • Dependent packages count: 15.576%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
rubygems.org: flipper-dalli

Dalli feature flag cache adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-dalli/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-02-28T16:01:17.959Z (3 days ago)
  • Versions: 82
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 1,453,201 Total
  • Rankings:
    • Stargazers count: 0.592%
    • Forks count: 1.294%
    • Downloads: 2.515%
    • Average: 8.354%
    • Dependent packages count: 15.576%
    • Dependent repos count: 21.793%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
rubygems.org: flipper-cloud

[DEPRECATED] This gem has been merged into the `flipper` gem

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-cloud/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-02-28T16:01:18.143Z (3 days ago)
  • Versions: 76
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 503,895 Total
  • Rankings:
    • Stargazers count: 0.592%
    • Forks count: 1.294%
    • Downloads: 4.195%
    • Average: 8.69%
    • Dependent packages count: 15.576%
    • Dependent repos count: 21.793%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
rubygems.org: flipper-sequel

Sequel feature flag adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-sequel/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-02-28T16:01:19.303Z (3 days ago)
  • Versions: 79
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 233,596 Total
  • Rankings:
    • Stargazers count: 0.61%
    • Forks count: 1.319%
    • Downloads: 6.803%
    • Average: 9.243%
    • Dependent packages count: 15.784%
    • Dependent repos count: 21.701%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud
rubygems.org: flipper-rollout

Rollout feature flag adapter for Flipper

  • Homepage: https://www.flippercloud.io
  • Documentation: http://www.rubydoc.info/gems/flipper-rollout/
  • Licenses: MIT
  • Latest release: 1.4.0 (published 5 days ago)
  • Last Synced: 2026-02-28T16:01:17.733Z (3 days ago)
  • Versions: 65
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 95,549 Total
  • Rankings:
    • Stargazers count: 0.548%
    • Forks count: 1.271%
    • Downloads: 10.743%
    • Average: 15.01%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (2)
  • Funding:
    • https://github.com/sponsors/flippercloud

Dependencies

.github/workflows/ci.yml actions
  • KeisukeYamashita/memcached-actions v1 composite
  • actions/cache v3 composite
  • actions/checkout v3 composite
  • ruby/setup-ruby v1 composite
  • supercharge/mongodb-github-action 1.8.0 composite
  • redis * docker
.github/workflows/examples.yml actions
  • KeisukeYamashita/memcached-actions v1 composite
  • actions/cache v3 composite
  • actions/checkout v3 composite
  • ruby/setup-ruby v1 composite
  • supercharge/mongodb-github-action 1.8.0 composite
  • redis * docker
Dockerfile docker
  • ruby 3.0 build
docker-compose.yml docker
  • busybox latest
  • memcached 1.4.33
  • mongo 4.4.8
  • redis 6.2.5
Gemfile rubygems
  • guard ~> 2.15 development
  • guard-bundler ~> 2.2 development
  • guard-rspec ~> 4.5 development
  • rb-fsevent ~> 0.9 development
  • debug >= 0
  • ice_age >= 0
  • minitest ~> 5.8
  • minitest-documentation >= 0
  • rack-test ~> 0.6.3
  • rake ~> 12.3.3
  • redis-namespace >= 0
  • rspec ~> 3.0
  • shotgun ~> 0.9
  • statsd-ruby ~> 1.2.1
  • webmock ~> 3.0
  • webrick >= 0
flipper-active_record.gemspec rubygems
  • activerecord >= 4.2, < 8
flipper-active_support_cache_store.gemspec rubygems
  • activesupport >= 4.2, < 8
flipper-api.gemspec rubygems
  • rack >= 1.4, < 3
flipper-cloud.gemspec rubygems
  • brow ~> 0.4.1
flipper-dalli.gemspec rubygems
  • dalli >= 2.0, < 4
flipper-moneta.gemspec rubygems
  • moneta >= 0.7.0, < 1.2
flipper-mongo.gemspec rubygems
  • mongo ~> 2.0
flipper-redis.gemspec rubygems
  • redis >= 3.0, < 6
flipper-rollout.gemspec rubygems
  • redis >= 2.2, < 5
  • rollout ~> 2.0
flipper-sequel.gemspec rubygems
  • sequel >= 4.0.0, < 6
flipper-ui.gemspec rubygems
  • erubi >= 1.0.0, < 2.0.0
  • rack >= 1.4, < 3
  • rack-protection >= 1.5.3, <= 4.0.0
  • sanitize < 7
flipper.gemspec rubygems
  • concurrent-ruby < 2

Score: 35.13939632399375