Class: Togls::Feature
- Inherits:
-
Object
- Object
- Togls::Feature
- Defined in:
- lib/togls/feature.rb
Overview
Feature
The Feature model is the business representation of a feature. It is how Togls primarily interfaces with the concept of a feature.
Instance Attribute Summary collapse
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
Instance Method Summary collapse
- #id ⇒ Object
-
#initialize(key, description) ⇒ Feature
constructor
A new instance of Feature.
Constructor Details
#initialize(key, description) ⇒ Feature
Returns a new instance of Feature.
9 10 11 12 |
# File 'lib/togls/feature.rb', line 9 def initialize(key, description) @key = key.to_s @description = description end |
Instance Attribute Details
#description ⇒ Object (readonly)
Returns the value of attribute description.
7 8 9 |
# File 'lib/togls/feature.rb', line 7 def description @description end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
7 8 9 |
# File 'lib/togls/feature.rb', line 7 def key @key end |
Instance Method Details
#id ⇒ Object
14 15 16 |
# File 'lib/togls/feature.rb', line 14 def id @key end |