Sha256: e0e038ef01a96ce1496b62506e26f799c224182d549756c57fc9b893e22a2bcc
Contents?: true
Size: 445 Bytes
Versions: 68
Compression:
Stored size: 445 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 equal?(other) other == :root ? true : super(other) end def hash; :root.hash end end end end
Version data entries
68 entries across 55 versions & 5 rubygems