Flowdock
method

as_load_path

Importance_1
v2.2.1 - Show latest stable - 0 notes - Class: Module
as_load_path() public

Returns String#underscore applied to the module name minus trailing classes.

  ActiveRecord.as_load_path               # => "active_record"
  ActiveRecord::Associations.as_load_path # => "active_record/associations"
  ActiveRecord::Base.as_load_path         # => "active_record" (Base is a class)

The <a href="/rails/Kernel">Kernel</a> module gives an empty string by definition.

  Kernel.as_load_path # => ""
  Math.as_load_path   # => "math"
Show source
Register or log in to add new notes.