def method
  a = 3
  b = 4

  some_method_that_gives # [a, b] 
end
link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

local_variables

It outputs array of symbols, presenting variables. In your case: [:a, :b]

link|improve this answer
Can't believe I didn't find it before. Thanks! – guangnan Dec 20 '10 at 7:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.