class Kitchen::Docker::ERBContext

Public Class Methods

new(config={}) click to toggle source
# File lib/kitchen/docker/erb_context.rb, line 21
def initialize(config={})
  config.each do |key, value|
    instance_variable_set('@' + key.to_s, value)
  end
end

Public Instance Methods

get_binding() click to toggle source
# File lib/kitchen/docker/erb_context.rb, line 27
def get_binding
  binding
end