Class: Kamal::Commands::Builder

Inherits:
Base
  • Object
show all
Includes:
Clone
Defined in:
lib/kamal/commands/builder.rb

Defined Under Namespace

Modules: Clone Classes: Base, Cloud, Hybrid, Local, Remote

Constant Summary

Constants inherited from Base

Kamal::Commands::Base::DOCKER_HEALTH_STATUS_FORMAT

Instance Attribute Summary

Attributes inherited from Base

#config

Instance Method Summary collapse

Methods included from Clone

#clone, #clone_reset_steps, #clone_revision, #clone_status, #escaped_build_directory, #escaped_root

Methods inherited from Base

#container_id_for, #ensure_docker_installed, #initialize, #make_directory, #make_directory_for, #remove_directory, #remove_file, #run_over_ssh

Constructor Details

This class inherits a constructor from Kamal::Commands::Base

Instance Method Details

#cloudObject



39
40
41
# File 'lib/kamal/commands/builder.rb', line 39

def cloud
  @cloud ||= Kamal::Commands::Builder::Cloud.new(config)
end

#hybridObject



35
36
37
# File 'lib/kamal/commands/builder.rb', line 35

def hybrid
  @hybrid ||= Kamal::Commands::Builder::Hybrid.new(config)
end

#localObject



31
32
33
# File 'lib/kamal/commands/builder.rb', line 31

def local
  @local ||= Kamal::Commands::Builder::Local.new(config)
end

#nameObject



9
10
11
# File 'lib/kamal/commands/builder.rb', line 9

def name
  target.class.to_s.remove("Kamal::Commands::Builder::").underscore.inquiry
end

#remoteObject



27
28
29
# File 'lib/kamal/commands/builder.rb', line 27

def remote
  @remote ||= Kamal::Commands::Builder::Remote.new(config)
end

#targetObject



13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/kamal/commands/builder.rb', line 13

def target
  if remote?
    if local?
      hybrid
    else
      remote
    end
  elsif cloud?
    cloud
  else
    local
  end
end