Sha256: 94b92bcd831c53044d204cc66a2216f3937750e133ee41817ff5b5e9a8597cde

Contents?: true

Size: 646 Bytes

Versions: 26

Compression:

Stored size: 646 Bytes

Contents

module Kernel

  private

  # Retreive the current running method name.
  # There is a lot of debate on what to call this.
  # #called differs from #method_name only by the fact
  # that it returns a symbol, rather then a string.
  #
  #   def tester; called; end
  #   tester  #=> :tester
  #
  def called
    /\`([^\']+)\'/.match(caller(1).first)[1].to_sym
  end

end



#  _____         _
# |_   _|__  ___| |_
#   | |/ _ \/ __| __|
#   | |  __/\__ \ |_
#   |_|\___||___/\__|
#
=begin test

  require 'test/unit'

  class TCKernel < Test::Unit::TestCase

    def test_called
      assert_equal( :test_called, called )    
    end

  end

=end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
facets-1.0.3 packages/core/lib/facet/kernel/called.rb
facets-1.0.0 lib/facet/kernel/called.rb
facets-0.9.0 lib/nano/kernel/called.rb
facets-1.1.0 lib/facet/kernel/called.rb
facets-1.2.1 lib/facets/core/kernel/called.rb
facets-1.2.0 lib/facets/core/kernel/called.rb
facets-1.3.0 lib/facets/core/kernel/called.rb
facets-1.3.3 lib/facets/core/kernel/called.rb
facets-1.3.1 lib/facets/core/kernel/called.rb
facets-1.3.2 lib/facets/core/kernel/called.rb
facets-1.4.2 lib/facets/core/kernel/called.rb
facets-1.4.0 lib/facets/core/kernel/called.rb
facets-1.4.1 lib/facets/core/kernel/called.rb
facets-1.4.3 lib/facets/core/kernel/called.rb
facets-1.4.4 lib/facets/core/kernel/called.rb
facets-1.4.5 lib/facets/core/kernel/called.rb
facets-1.7.38 lib/facets/core/kernel/called.rb
facets-1.7.30 lib/facets/core/kernel/called.rb
facets-1.7.0 lib/facets/core/kernel/called.rb
facets-1.7.46 lib/facets/core/kernel/called.rb