Class: Togls::Feature

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key, description) ⇒ Feature

Returns a new instance of Feature.



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

def initialize(key, description)
  @key = key.to_s
  @description = description
end

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



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

def description
  @description
end

#keyObject (readonly)

Returns the value of attribute key.



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

def key
  @key
end

Instance Method Details

#idObject



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

def id
  @key
end