Class: DPL::Provider::DotCloud

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

Instance Attribute Summary

Attributes inherited from DPL::Provider

#context, #options

Instance Method Summary collapse

Methods inherited from DPL::Provider

apt_get, #cleanup, #commit_msg, context, #create_key, #deploy, #detect_encoding?, #encoding_for, #error, experimental, #initialize, #log, new, npm_g, #option, pip, requires, #setup_git_credentials, #setup_git_ssh, #sha, shell, #uncleanup, #user_agent, #warn

Constructor Details

This class inherits a constructor from DPL::Provider

Instance Method Details

#check_appObject



11
12
13
# File 'lib/dpl/provider/dot_cloud.rb', line 11

def check_app
  context.shell "dotcloud connect #{option(:app)}"
end

#check_authObject



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

def check_auth
  context.shell "echo #{option(:api_key)} | dotcloud setup --api-key"
end

#needs_key?Boolean

Returns:

  • (Boolean)


15
16
17
# File 'lib/dpl/provider/dot_cloud.rb', line 15

def needs_key?
  false
end

#push_appObject



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

def push_app
  context.shell "dotcloud push #{option(:app)}"
end

#run(command) ⇒ Object



23
24
25
26
# File 'lib/dpl/provider/dot_cloud.rb', line 23

def run(command)
  service = options[:instance] || options[:service] || 'www'
  context.shell "dotcloud -A #{option(:app)} #{service} #{command}"
end