forked from flippercloud/flipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
group.rb
42 lines (31 loc) · 935 Bytes
/
group.rb
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
require File.expand_path('../example_setup', __FILE__)
require 'flipper'
require 'flipper/adapters/memory'
adapter = Flipper::Adapters::Memory.new
flipper = Flipper.new(adapter)
stats = flipper[:stats]
# Register group
Flipper.register(:admins) do |actor|
actor.respond_to?(:admin?) && actor.admin?
end
# Some class that represents actor that will be trying to do something
class User
attr_reader :id
def initialize(id, admin)
@id = id
@admin = admin
end
# Must respond to flipper_id
alias_method :flipper_id, :id
def admin?
@admin == true
end
end
admin = User.new(1, true)
non_admin = User.new(2, false)
puts "Stats for admin: #{stats.enabled?(admin)}"
puts "Stats for non_admin: #{stats.enabled?(non_admin)}"
puts "\nEnabling Stats for admins...\n\n"
stats.enable(flipper.group(:admins))
puts "Stats for admin: #{stats.enabled?(admin)}"
puts "Stats for non_admin: #{stats.enabled?(non_admin)}"