Class: Flippeur::Feature

Inherits:
Object
  • Object
show all
Defined in:
lib/flippeur/feature.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, &block) ⇒ Feature

Returns a new instance of Feature.



5
6
7
8
# File 'lib/flippeur/feature.rb', line 5

def initialize(name, &block)
  @name = name
  @block = block
end

Instance Attribute Details

#blockObject (readonly)

Returns the value of attribute block.



3
4
5
# File 'lib/flippeur/feature.rb', line 3

def block
  @block
end

#nameObject (readonly)

Returns the value of attribute name.



3
4
5
# File 'lib/flippeur/feature.rb', line 3

def name
  @name
end

Instance Method Details

#available?(actor) ⇒ Boolean

Returns:

  • (Boolean)


10
11
12
# File 'lib/flippeur/feature.rb', line 10

def available?(actor)
  block.call actor
end