Class: AgileTrello::CycleTime
- Inherits:
-
Object
- Object
- AgileTrello::CycleTime
- Defined in:
- lib/TrelloCycleTime.rb
Instance Attribute Summary collapse
-
#mean ⇒ Object
readonly
Returns the value of attribute mean.
-
#standard_deviation ⇒ Object
readonly
Returns the value of attribute standard_deviation.
Instance Method Summary collapse
-
#initialize(mean, standard_deviation) ⇒ CycleTime
constructor
A new instance of CycleTime.
Constructor Details
#initialize(mean, standard_deviation) ⇒ CycleTime
28 29 30 31 |
# File 'lib/TrelloCycleTime.rb', line 28 def initialize(mean, standard_deviation) @mean = mean @standard_deviation = standard_deviation end |
Instance Attribute Details
#mean ⇒ Object (readonly)
Returns the value of attribute mean.
26 27 28 |
# File 'lib/TrelloCycleTime.rb', line 26 def mean @mean end |
#standard_deviation ⇒ Object (readonly)
Returns the value of attribute standard_deviation.
26 27 28 |
# File 'lib/TrelloCycleTime.rb', line 26 def standard_deviation @standard_deviation end |