Class: DPL::Provider::Appfog

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

Instance Attribute Summary

Attributes inherited from DPL::Provider

#context, #options

Instance Method Summary collapse

Methods inherited from DPL::Provider

apt_get, #check_app, #cleanup, #commit_msg, context, #create_key, #deploy, #detect_encoding?, #encoding_for, #error, experimental, #initialize, #log, new, npm_g, #option, pip, requires, #run, #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_authObject



6
7
8
# File 'lib/dpl/provider/appfog.rb', line 6

def check_auth
  context.shell "af login --email=#{option(:email)} --password=#{option(:password)}"
end

#needs_key?Boolean

Returns:

  • (Boolean)


10
11
12
# File 'lib/dpl/provider/appfog.rb', line 10

def needs_key?
  false
end

#push_appObject



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

def push_app
  context.shell "af update #{options[:app] || File.basename(Dir.getwd)}"
  context.shell "af logout"
end