Class: Papa::Task::Integration::Deploy

Inherits:
Common::Deploy show all
Defined in:
lib/papa/task/integration/deploy.rb

Instance Method Summary collapse

Methods inherited from Base

#run

Constructor Details

#initialize(version, hostname) ⇒ Deploy

Returns a new instance of Deploy.



7
8
9
10
11
12
# File 'lib/papa/task/integration/deploy.rb', line 7

def initialize(version, hostname)
  @build_type = 'integration'
  @version = version
  @hostname = hostname || 'integration'
  super()
end