class Aruba::Platforms::UnixEnvironmentVariables::UpdateAction
Update environment
def call(env)
def call(env) if block env.update(other_env, &block) else env.update(other_env) end end
def initialize(other_env, &block)
def initialize(other_env, &block) @other_env = other_env.to_h.transform_values(&:to_s) @block = block end