Class: Kamal::Cli::App::RolloutBoot
- Inherits:
-
Object
- Object
- Kamal::Cli::App::RolloutBoot
- Defined in:
- lib/kamal/cli/app/rollout_boot.rb
Instance Attribute Summary collapse
-
#host ⇒ Object
readonly
Returns the value of attribute host.
-
#role ⇒ Object
readonly
Returns the value of attribute role.
-
#sshkit ⇒ Object
readonly
Returns the value of attribute sshkit.
-
#version ⇒ Object
readonly
Returns the value of attribute version.
Instance Method Summary collapse
-
#initialize(host, role, sshkit, version) ⇒ RolloutBoot
constructor
A new instance of RolloutBoot.
- #run ⇒ Object
Constructor Details
#initialize(host, role, sshkit, version) ⇒ RolloutBoot
Returns a new instance of RolloutBoot.
5 6 7 8 9 10 |
# File 'lib/kamal/cli/app/rollout_boot.rb', line 5 def initialize(host, role, sshkit, version) @host = host @role = role @version = version @sshkit = sshkit end |
Instance Attribute Details
#host ⇒ Object (readonly)
Returns the value of attribute host.
2 3 4 |
# File 'lib/kamal/cli/app/rollout_boot.rb', line 2 def host @host end |
#role ⇒ Object (readonly)
Returns the value of attribute role.
2 3 4 |
# File 'lib/kamal/cli/app/rollout_boot.rb', line 2 def role @role end |
#sshkit ⇒ Object (readonly)
Returns the value of attribute sshkit.
2 3 4 |
# File 'lib/kamal/cli/app/rollout_boot.rb', line 2 def sshkit @sshkit end |
#version ⇒ Object (readonly)
Returns the value of attribute version.
2 3 4 |
# File 'lib/kamal/cli/app/rollout_boot.rb', line 2 def version @version end |