Method: Binding#eval
- Defined in:
- lib/core/facets/binding/eval.rb
#eval(str) ⇒ Object
Evaluate a Ruby source code string (or block) in the binding context.
7 8 9 |
# File 'lib/core/facets/binding/eval.rb', line 7 def eval(str) Kernel.eval(str, self) end |