Sha256: ce5c7ad0fc0455005b8a9656fe91c96fc8179b9775fbbeb53b2f05b8d1c2aca9
Contents?: true
Size: 488 Bytes
Versions: 38
Compression:
Stored size: 488 Bytes
Contents
module YARD module CodeObjects # Represents the root namespace object (the invisible Ruby module that # holds all top level modules, class and other objects). class RootObject < ModuleObject def path; @path ||= "" end def inspect; @inspect ||= "#<yardoc root>" end def root?; true end def title; 'Top Level Namespace' end def equal?(other) other == :root ? true : super(other) end def hash; :root.hash end end end end
Version data entries
38 entries across 33 versions & 7 rubygems