Methods
Public Instance methods
path2class(klassname)

Retrieves the class or module for the path klassname (such as "Test::Unit::TestCase").

   # File lib/action_profiler/path2class.rb, line 7
7:   def path2class(klassname)
8:     klassname.split('::').inject(Object) { |k,n| k.const_get n }
9:   end