vote up 5 vote down star
1

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

flag

79% accept rate
Not sure how useful this information is, but it's cool! :-) – Daniel Spiewak Oct 14 '08 at 0:17

2 Answers

vote up 11 vote down check

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|flag
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
Make that 1.8.7: ruby-doc.org/core-1.8.7/classes/… – Mark A. Nicolosi Oct 14 '08 at 0:36
just my luck, still on 1.8.6 :) – Kent Fredric Oct 14 '08 at 0:37
vote up 6 vote down

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|flag

Your Answer

Get an OpenID
or

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