Class: Feta::Feature::ProductContext
- Inherits:
-
Object
- Object
- Feta::Feature::ProductContext
- Defined in:
- lib/feta/feature.rb
Instance Attribute Summary collapse
-
#priorities ⇒ Hash
For an specific product, a feature has.
-
#status ⇒ Object
Status of the feature for a specific product (
:evaluation,:implementation, etc). -
#status_owner ⇒ Object
If status is
:evaluationthen the status has a owner (:teamleader,:projectmanager, etc).
Instance Method Summary collapse
-
#initialize ⇒ ProductContext
constructor
A new instance of ProductContext.
Constructor Details
#initialize ⇒ ProductContext
Returns a new instance of ProductContext.
35 36 37 |
# File 'lib/feta/feature.rb', line 35 def initialize @priorities = Hash.new end |
Instance Attribute Details
#priorities ⇒ Hash
For an specific product, a feature has
49 50 51 |
# File 'lib/feta/feature.rb', line 49 def priorities @priorities end |
#status ⇒ Object
Status of the feature for a specific product (:evaluation, :implementation, etc)
41 42 43 |
# File 'lib/feta/feature.rb', line 41 def status @status end |
#status_owner ⇒ Object
If status is :evaluation then the status has a owner (:teamleader, :projectmanager, etc)
45 46 47 |
# File 'lib/feta/feature.rb', line 45 def status_owner @status_owner end |