class EbDeployer::DeploymentStrategy::InplaceUpdate

Public Class Methods

new(component) click to toggle source
# File lib/eb_deployer/deployment_strategy/inplace_update.rb, line 4
def initialize(component)
  @component = component
end

Public Instance Methods

deploy(version_label, env_settings, inactive_settings) click to toggle source
# File lib/eb_deployer/deployment_strategy/inplace_update.rb, line 11
def deploy(version_label, env_settings, inactive_settings)
  @component.new_eb_env.deploy(version_label, env_settings)
end
test_compatibility(env_create_opts) click to toggle source
# File lib/eb_deployer/deployment_strategy/inplace_update.rb, line 8
def test_compatibility(env_create_opts)
end