1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
require 'bundler/setup'
require 'pp'
require 'logger'
require 'flipper/adapters/redis'
client = Redis.new
# 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
print 'all keys: '
pp client.keys
# all keys: ["stats", "flipper_features", "search"]
puts
print "known flipper features: "
pp client.smembers("flipper_features")
# known flipper features: ["stats", "search"]
puts
puts 'stats keys'
pp client.hgetall('stats')
# stats keys
# {"boolean"=>"true",
# "groups/admins"=>"1",
# "actors/25"=>"1",
# "percentage_of_time"=>"15",
# "percentage_of_actors"=>"45",
# "groups/early_access"=>"1",
# "actors/90"=>"1",
# "actors/180"=>"1"}
puts
puts 'search keys'
pp client.hgetall('search')
# search keys
# {"boolean"=>"true"}
puts
puts 'flipper get of feature'
pp Flipper.adapter.get(Flipper[:stats])
# flipper get of feature
# {:boolean=>"true",
# :groups=>#<Set: {"admins", "early_access"}>,
# :actors=>#<Set: {"25", "90", "180"}>,
# :percentage_of_actors=>"45",
# :percentage_of_time=>"15"}
|