class DPL::Provider::BitBalloon

Public Instance Methods

check_auth() click to toggle source
# File lib/dpl/provider/bitballoon.rb, line 6
def check_auth
end
needs_key?() click to toggle source
# File lib/dpl/provider/bitballoon.rb, line 9
def needs_key?
  false
end
push_app() click to toggle source
# File lib/dpl/provider/bitballoon.rb, line 13
def push_app
  command = 'bitballoon deploy'
  command << " ./#{option(:local_dir)}" if options.fetch(:local_dir,false)
  command << " --site-id=#{option(:site_id)}" if options[:site_id]
  command << " --access-token=#{option(:access_token)}" if options[:access_token]
  context.shell command
end