class Bixby::Provision::Variable

Constants

EXPORTS

Public Class Methods

new(*args) click to toggle source
Calls superclass method Bixby::Provision::Base::new
# File lib/bixby/provision/dsl/variable.rb, line 9
def initialize(*args)
  super
  @variables = {}
end

Public Instance Methods

get(name) click to toggle source
# File lib/bixby/provision/dsl/variable.rb, line 18
def get(name)
  @variables[name]
end
set(name, value) click to toggle source
# File lib/bixby/provision/dsl/variable.rb, line 14
def set(name, value)
  @variables[name] = value
end