Class: Deployman::App::Postsetup::Task
- Inherits:
-
Object
- Object
- Deployman::App::Postsetup::Task
- Defined in:
- lib/deployman/app/postsetup.rb
Overview
task class
Instance Attribute Summary collapse
-
#commands ⇒ Object
Returns the value of attribute commands.
-
#desc ⇒ Object
Returns the value of attribute desc.
-
#title ⇒ Object
Returns the value of attribute title.
Instance Method Summary collapse
-
#initialize ⇒ Task
constructor
A new instance of Task.
Constructor Details
#initialize ⇒ Task
Returns a new instance of Task.
13 14 15 16 17 |
# File 'lib/deployman/app/postsetup.rb', line 13 def initialize @title = "" @desc = "" @commands = [] end |
Instance Attribute Details
#commands ⇒ Object
Returns the value of attribute commands.
11 12 13 |
# File 'lib/deployman/app/postsetup.rb', line 11 def commands @commands end |
#desc ⇒ Object
Returns the value of attribute desc.
11 12 13 |
# File 'lib/deployman/app/postsetup.rb', line 11 def desc @desc end |
#title ⇒ Object
Returns the value of attribute title.
11 12 13 |
# File 'lib/deployman/app/postsetup.rb', line 11 def title @title end |