class DPL::Provider::Appfog
Public Instance Methods
check_auth()
click to toggle source
# File lib/dpl/provider/appfog.rb, line 7 def check_auth context.shell "af login --email=#{option(:email)} --password=#{option(:password)}" end
needs_key?()
click to toggle source
# File lib/dpl/provider/appfog.rb, line 11 def needs_key? false end
push_app()
click to toggle source
# File lib/dpl/provider/appfog.rb, line 15 def push_app context.shell "af update #{options[:app] || File.basename(Dir.getwd)}" context.shell "af logout" end