Method: Binding#local_variables

Defined in:
lib/core/facets/binding/local_variables.rb

#local_variablesObject

Returns the local variables defined in the binding context:

a = 1
b = 2

binding.local_variables  #=> [:a, :b]


12
13
14
# File 'lib/core/facets/binding/local_variables.rb', line 12

def local_variables()
  eval("local_variables")
end