An ActiveRecord adapter for Flipper.
Supported Active Record versions:
- 5.0.x
- 6.0.x
Add this line to your application's Gemfile:
gem 'flipper-active_record'
And then execute:
$ bundle
Or install it yourself with:
$ gem install flipper-active_record
For your convenience a migration generator is provided to create the necessary migrations for using the active record adapter. By default this generates a migration that will create two database tables - flipper_features and flipper_gates.
$ rails g flipper:active_record
Once you have created and executed the migration, you can use the active record adapter like so:
require 'flipper/adapters/active_record'
adapter = Flipper::Adapters::ActiveRecord.new
flipper = Flipper.new(adapter)
# profit...
Note that the active record adapter requires the database tables to be created in order to work; failure to run the migration first will cause an exception to be raised when attempting to initialize the active record adapter.
Each feature is stored as a row in a features table. Each gate is stored as a row in a gates table, related to the feature by the feature's key.
require 'flipper/adapters/active_record'
adapter = Flipper::Adapters::ActiveRecord.new
flipper = Flipper.new(adapter)
# Register a few groups.
Flipper.register(:admins) { |thing| thing.admin? }
Flipper.register(:early_access) { |thing| thing.early_access? }
# Create a user class that has flipper_id instance method.
User = Struct.new(:flipper_id)
flipper[:stats].enable
flipper[:stats].enable_group :admins
flipper[:stats].enable_group :early_access
flipper[:stats].enable_actor User.new('25')
flipper[:stats].enable_actor User.new('90')
flipper[:stats].enable_actor User.new('180')
flipper[:stats].enable_percentage_of_time 15
flipper[:stats].enable_percentage_of_actors 45
flipper[:search].enable
puts 'all rows in features table'
pp Flipper::Adapters::ActiveRecord::Feature.all
# [#<Flipper::Adapters::ActiveRecord::Feature:0x007fd259b47110
# id: 1,
# key: "stats",
# created_at: 2015-12-21 16:26:29 UTC,
# updated_at: 2015-12-21 16:26:29 UTC>,
# #<Flipper::Adapters::ActiveRecord::Feature:0x007fd259b46cd8
# id: 2,
# key: "search",
# created_at: 2015-12-21 16:26:29 UTC,
# updated_at: 2015-12-21 16:26:29 UTC>]
puts
puts 'all rows in gates table'
pp Flipper::Adapters::ActiveRecord::Gate.all
# [#<Flipper::Adapters::ActiveRecord::Gate:0x007fd259b0f0f8
# id: 1,
# feature_key: "stats",
# key: "boolean",
# value: "true",
# created_at: 2015-12-21 16:26:29 UTC,
# updated_at: 2015-12-21 16:26:29 UTC>,
# #<Flipper::Adapters::ActiveRecord::Gate:0x007fd259b0ebd0
# id: 2,
# feature_key: "stats",
# key: "groups",
# value: "admins",
# created_at: 2015-12-21 16:26:29 UTC,
# updated_at: 2015-12-21 16:26:29 UTC>,
# #<Flipper::Adapters::ActiveRecord::Gate:0x007fd259b0e748
# id: 3,
# feature_key: "stats",
# key: "groups",
# value: "early_access",
# created_at: 2015-12-21 16:26:29 UTC,
# updated_at: 2015-12-21 16:26:29 UTC>,
# #<Flipper::Adapters::ActiveRecord::Gate:0x007fd259b0e568
# id: 4,
# feature_key: "stats",
# key: "actors",
# value: "25",
# created_at: 2015-12-21 16:26:29 UTC,
# updated_at: 2015-12-21 16:26:29 UTC>,
# #<Flipper::Adapters::ActiveRecord::Gate:0x007fd259b0e0b8
# id: 5,
# feature_key: "stats",
# key: "actors",
# value: "90",
# created_at: 2015-12-21 16:26:29 UTC,
# updated_at: 2015-12-21 16:26:29 UTC>,
# #<Flipper::Adapters::ActiveRecord::Gate:0x007fd259b0da50
# id: 6,
# feature_key: "stats",
# key: "actors",
# value: "180",
# created_at: 2015-12-21 16:26:29 UTC,
# updated_at: 2015-12-21 16:26:29 UTC>,
# #<Flipper::Adapters::ActiveRecord::Gate:0x007fd259b0d3c0
# id: 7,
# feature_key: "stats",
# key: "percentage_of_time",
# value: "15",
# created_at: 2015-12-21 16:26:29 UTC,
# updated_at: 2015-12-21 16:26:29 UTC>,
# #<Flipper::Adapters::ActiveRecord::Gate:0x007fd259b0cdf8
# id: 8,
# feature_key: "stats",
# key: "percentage_of_actors",
# value: "45",
# created_at: 2015-12-21 16:26:29 UTC,
# updated_at: 2015-12-21 16:26:29 UTC>,
# #<Flipper::Adapters::ActiveRecord::Gate:0x007fd259b0cbf0
# id: 9,
# feature_key: "search",
# key: "boolean",
# value: "true",
# created_at: 2015-12-21 16:26:29 UTC,
# updated_at: 2015-12-21 16:26:29 UTC>]
puts
puts 'flipper get of feature'
pp adapter.get(flipper[:stats])
# flipper get of feature
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request