Sha256: da167c7514da1126369832057eea57b9a71f422bb992ce39197332a2f64c6a39
Contents?: true
Size: 520 Bytes
Versions: 63
Compression:
Stored size: 520 Bytes
Contents
# frozen_string_literal: true 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
63 entries across 62 versions & 9 rubygems