method

get_name

Importance_0
v1_9_3_125 - Show latest stable - 0 notes - Class: Profiler__
get_name(klass, id) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/profiler.rb, line 49
  def get_name(klass, id)
    name = klass.to_s || ""
    if klass.kind_of? Class
      name += "#"
    else
      name += "."
    end
    name + id.id2name
  end
Register or log in to add new notes.