Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
def method
  a = 3
  b = 4

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

1 Answer

up vote 14 down vote accepted

local_variables

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

share|improve this answer
Can't believe I didn't find it before. Thanks! – Guangnan Cheng Dec 20 '10 at 7:06
1  
Some versions of Ruby output an array of strings instead of an array of symbols. Ruby 2.0 and 1.9 use symbols, but Ruby 1.8.7 used strings. – inquiryqueue Apr 15 at 17:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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