Class: Dpl::Providers::S3

Inherits:
Dpl::Provider show all
Defined in:
lib/dpl/providers/s3.rb

Defined Under Namespace

Classes: Mapping

Constant Summary collapse

DEFAULT_CONTENT_TYPE =
'application/octet-stream'

Constants inherited from Dpl::Provider

Dpl::Provider::FOLDS, Dpl::Provider::STAGES

Instance Attribute Summary

Attributes inherited from Dpl::Provider

#key_name, #repo_name

Instance Method Summary collapse

Methods inherited from Dpl::Provider

#before_finish, #before_init, #before_install, #before_prepare, #before_setup, #chmod, #cleanup, #cmd, #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

#sq

Methods included from Assets

#asset

Methods included from Env

included, #opts

Methods included from ConfigFile

included, #opts

Methods included from Interpolate

#interpolate, #obfuscate, #vars

Methods included from Memoize

included

Constructor Details

This class inherits a constructor from Dpl::Provider

Instance Method Details

#deployObject



70
71
72
73
74
75
# File 'lib/dpl/providers/s3.rb', line 70

def deploy
  upload
  index_document_suffix if index_document_suffix?
rescue Aws::S3::Errors::ServiceError => e
  handle_error(e)
end

#finishObject



77
78
79
# File 'lib/dpl/providers/s3.rb', line 77

def finish
  Dir.chdir(@cwd) if @cwd
end

#loginObject



66
67
68
# File 'lib/dpl/providers/s3.rb', line 66

def 
  info :login
end

#setupObject



60
61
62
63
64
# File 'lib/dpl/providers/s3.rb', line 60

def setup
  @cwd = Dir.pwd
  Dir.chdir(local_dir)
  # Aws.eager_autoload!(services: ['S3'])
end