Class: Feta::Feature::ProductContext

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeProductContext

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

#prioritiesHash

For an specific product, a feature has

Returns:

  • (Hash)

    key is the owner, value is the priority



49
50
51
# File 'lib/feta/feature.rb', line 49

def priorities
  @priorities
end

#statusObject

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_ownerObject

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