Sha256: 608079770548217bfe6417ebc9a2bfd29843b6f3810925414ce5d5a005263bab
Contents?: true
Size: 1.29 KB
Versions: 14
Compression:
Stored size: 1.29 KB
Contents
class Module # Returns the name of the module containing this one. # # M::N.parent_name # => "M" def parent_name if defined? @parent_name @parent_name else @parent_name = name =~ /::[^:]+\Z/ ? $`.freeze : nil end end # Returns the module which contains this one according to its name. # # module M # module N # end # end # X = M::N # # M::N.parent # => M # X.parent # => M # # The parent of top-level and anonymous modules is Object. # # M.parent # => Object # Module.new.parent # => Object def parent parent_name ? parent_name.constantize : Object end # Returns all the parents of this module according to its name, ordered from # nested outwards. The receiver is not contained within the result. # # module M # module N # end # end # X = M::N # # M.parents # => [Object] # M::N.parents # => [M, Object] # X.parents # => [M, Object] def parents parents = [] if parent_name parts = parent_name.split('::') until parts.empty? parents << (parts * '::').constantize parts.pop end end parents << Object unless parents.include? Object parents end def local_constants #:nodoc: constants(false) end end
Version data entries
14 entries across 14 versions & 2 rubygems