Tagged Questions

4
votes
3answers
1k views

Undefine variable in Ruby

Let's say I'm using irb, and type a = 5. How do I remove the definition of a so that typing a returns a NameError? Some context: later I want to do this: context = Proc.new{}.binding context.eval 'a ...
3
votes
1answer
322 views

How to list local-variables in Ruby?

def method a = 3 b = 4 some_method_that_gives # [a, b] end