Class: DInstaller::Progress::Step
- Inherits:
-
Object
- Object
- DInstaller::Progress::Step
- Defined in:
- lib/dinstaller/progress.rb
Overview
Step of the progress
Instance Attribute Summary collapse
-
#description ⇒ String
readonly
Description of the step.
-
#id ⇒ Integer
readonly
Id of the step.
Instance Method Summary collapse
-
#initialize(id, description) ⇒ Step
constructor
Constructor.
Constructor Details
#initialize(id, description) ⇒ Step
Constructor
65 66 67 68 |
# File 'lib/dinstaller/progress.rb', line 65 def initialize(id, description) @id = id @description = description end |
Instance Attribute Details
#description ⇒ String (readonly)
Description of the step
59 60 61 |
# File 'lib/dinstaller/progress.rb', line 59 def description @description end |
#id ⇒ Integer (readonly)
Id of the step
54 55 56 |
# File 'lib/dinstaller/progress.rb', line 54 def id @id end |