Class: Dpl::Providers::Pages::Git
- Inherits:
-
Dpl::Providers::Pages
- Object
- Cl::Cmd
- Dpl::Provider
- Dpl::Providers::Pages
- Dpl::Providers::Pages::Git
- Defined in:
- lib/dpl/providers/pages/git.rb
Constant Summary
Constants inherited from Dpl::Provider
Dpl::Provider::FOLDS, Dpl::Provider::STAGES
Instance Attribute Summary
Attributes inherited from Dpl::Provider
Instance Method Summary collapse
Methods inherited from Dpl::Provider
#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
Methods included from Dpl::Provider::Dsl
#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
Methods included from Assets
Methods included from Env
Methods included from ConfigFile
Methods included from Interpolate
#interpolate, #obfuscate, #vars
Methods included from Memoize
Constructor Details
This class inherits a constructor from Dpl::Provider
Instance Method Details
#deploy ⇒ Object
99 100 101 102 103 104 105 106 107 108 |
# File 'lib/dpl/providers/pages/git.rb', line 99 def deploy git_clone? ? git_clone : git_init copy_files return info :stop if git_clone? && !git_dirty? git_config git_commit git_push git_status if verbose? end |
#login ⇒ Object
82 83 84 |
# File 'lib/dpl/providers/pages/git.rb', line 82 def login token? ? login_token : setup_deploy_key end |
#prepare ⇒ Object
92 93 94 95 96 97 |
# File 'lib/dpl/providers/pages/git.rb', line 92 def prepare info :deploy info :keep_history if keep_history? debug :work_dir Dir.chdir(work_dir) end |
#setup ⇒ Object
86 87 88 89 90 |
# File 'lib/dpl/providers/pages/git.rb', line 86 def setup info :setup_dir, src_dir info :committer_from_gh if committer_from_gh? info :git_config end |