Class: Dpl::Providers::Scalingo
Constant Summary
Dpl::Provider::FOLDS, Dpl::Provider::STAGES
Instance Attribute Summary
#key_name, #repo_name
Instance Method Summary
collapse
#before_finish, #before_init, #before_install, #before_prepare, #before_setup, #chmod, #cleanup, #cmd, #compact, #err, #error, #escape, examples, #expand, #file?, #finish?, #fold, #fold?, #info, #initialize, install_deps, install_deps?, #mkdir_p, move_files, #msg, #mv, #only, #open, #opt_for, #opt_key, #opts_for, #print, #quote, #read, #remove_dpl_dir, #rm_rf, #run, #run_cmd, #run_cmds, #run_stage, #run_stage?, #script, #setup_dpl_dir, #setup_git_config, #setup_git_http_user_agent, #setup_git_ssh, #setup_ssh_key, #shell, #sq, #ssh_keygen, #symbolize, #try_ssh_access, #uncleanup, unmove_files, validate_runtimes, #wait_for_ssh_access, #warn
#apt, #apt?, #cmds, #description, #env, #errs, #full_name, #gem, #gem?, #keep, #move, #msgs, #needs, #needs?, #node_js, #npm, #npm?, #opt, #path, #pip, #pip?, #python, #ruby_pre?, #ruby_version, #runtimes, #status, #strs, #summary, #user_agent, #vars
Methods included from Squiggle
#sq
Methods included from Assets
#asset
Methods included from Env
included, #opts
Methods included from ConfigFile
included, #opts
#interpolate, #obfuscate, #vars
Methods included from Memoize
included
Constructor Details
This class inherits a constructor from Dpl::Provider
Instance Method Details
#add_key(key, _type = nil) ⇒ Object
52
53
54
|
# File 'lib/dpl/providers/scalingo.rb', line 52
def add_key(key, _type = nil)
shell :add_key, key:
end
|
#deploy ⇒ Object
60
61
62
|
# File 'lib/dpl/providers/scalingo.rb', line 60
def deploy
shell :push
end
|
#install ⇒ Object
43
44
45
46
|
# File 'lib/dpl/providers/scalingo.rb', line 43
def install
script :install
ENV['SCALINGO_REGION'] = region if region?
end
|
#login ⇒ Object
48
49
50
|
# File 'lib/dpl/providers/scalingo.rb', line 48
def login
shell api_token ? :login_key : :login_creds, assert: err(:login)
end
|
#remove_key ⇒ Object
64
65
66
|
# File 'lib/dpl/providers/scalingo.rb', line 64
def remove_key
shell :remove_key
end
|
#setup ⇒ Object
56
57
58
|
# File 'lib/dpl/providers/scalingo.rb', line 56
def setup
shell :git_setup
end
|