method
binding
binding()
public
Returns a Binding object, describing the variable and method bindings at the point of call. This object can be used when calling eval to execute the evaluated command in this environment. See also the description of class Binding.
def get_binding(param) return binding end b = get_binding("hello") eval("param", b) #=> "hello"