up vote 6 down vote favorite
2
share [g+] share [fb]

So $0 is the env variable for the top level Ruby program ... but is there one for the current method?

link|improve this question

75% accept rate
Not sure how useful this information is, but it's cool! :-) – Daniel Spiewak Oct 14 '08 at 0:17
Why did you ask this question twice? stackoverflow.com/questions/2754637/… – duncan May 2 '10 at 19:26
Ahh, you edited it, but not asked it. Sorry. – duncan May 2 '10 at 19:27
feedback

2 Answers

up vote 17 down vote accepted

Even better than my first answer you can use __method__:

class Foo
  def test_method
    __method__
  end
end

This includes a : before the name which you can easily remove.

Note: This requires Ruby 1.8.7.

link|improve this answer
in foo': undefined local variable or method __method__' for main:Object (NameError) – Kent Fredric Oct 14 '08 at 0:30
Sorry, this requires Ruby 1.9... I'll update my post. – Mark A. Nicolosi Oct 14 '08 at 0:33
just my luck, still on 1.8.6 :) – Kent Fredric Oct 14 '08 at 0:37
feedback

From http://snippets.dzone.com/posts/show/2785:

module Kernel
private
    def this_method_name
      caller[0] =~ /`([^']*)'/ and $1
    end
end

class Foo
  def test_method
    this_method_name
  end
end

puts Foo.new.test_method    # => test_method
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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