class Packerman::Dsl::Variables

Public Class Methods

new() click to toggle source
# File lib/packerman/dsl/variables.rb, line 2
def initialize
  @_hash = {}
end

Public Instance Methods

method_missing(method, *args) click to toggle source
# File lib/packerman/dsl/variables.rb, line 6
def method_missing(method, *args)
  @_hash[method] ||= args.first
end
to_hash() click to toggle source
# File lib/packerman/dsl/variables.rb, line 10
def to_hash
  @_hash
end