Class: DPL::Provider::Cloud66

Inherits:
DPL::Provider show all
Defined in:
lib/dpl/provider/cloud66.rb

Instance Method Summary collapse

Instance Method Details

#check_authObject



19
20
# File 'lib/dpl/provider/cloud66.rb', line 19

def check_auth
end

#needs_key?Boolean

Returns:

  • (Boolean)


7
8
9
# File 'lib/dpl/provider/cloud66.rb', line 7

def needs_key?
  false
end

#push_appObject



11
12
13
14
15
16
17
# File 'lib/dpl/provider/cloud66.rb', line 11

def push_app
  uri = URI.parse(redeployment_hook)

  response = webhook_call(uri.scheme, uri.host, uri.port, uri.path)

  error("Redeployment failed [#{response.code}]") if response.code != '200'
end