Method: Kernel#calling_method
- Defined in:
- lib/openc3/core_ext/kernel.rb
#calling_method(start = 1) ⇒ Symbol
Returns The name of the calling method.
42 43 44 |
# File 'lib/openc3/core_ext/kernel.rb', line 42 def calling_method(start = 1) caller[start][/`([^']*)'/, 1].intern end |