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