Class: Deployman::App::Postsetup::Task

Inherits:
Object
  • Object
show all
Defined in:
lib/deployman/app/postsetup.rb

Overview

task class

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeTask

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

#commandsObject

Returns the value of attribute commands.



11
12
13
# File 'lib/deployman/app/postsetup.rb', line 11

def commands
  @commands
end

#descObject

Returns the value of attribute desc.



11
12
13
# File 'lib/deployman/app/postsetup.rb', line 11

def desc
  @desc
end

#titleObject

Returns the value of attribute title.



11
12
13
# File 'lib/deployman/app/postsetup.rb', line 11

def title
  @title
end