class Lorj::ERBConfig

This class limits ERB template to access only to config object data.

Attributes

config[R]
data[RW]

Public Class Methods

new(config) click to toggle source
# File lib/lorj_account.rb, line 68
def initialize(config)
  @config = config
end

Public Instance Methods

get_binding() click to toggle source

Bind this limited class with ERB templates

# File lib/lorj_account.rb, line 73
def get_binding # rubocop: disable AccessorMethodName
  binding
end