class Epuber::Compiler::FileFinders::Imaginary::DirEntry
Attributes
@return [Hash<String, String | DirEntry>]
@return [String]
Public Class Methods
Source
# File lib/epuber/compiler/file_finders/imaginary.rb, line 18 def initialize(name) @name = name @entries = {} end
Public Instance Methods
Source
# File lib/epuber/compiler/file_finders/imaginary.rb, line 31 def ==(other) name == other.name && entries == other.entries end
Source
# File lib/epuber/compiler/file_finders/imaginary.rb, line 23 def [](key) @entries[key] end
Source
# File lib/epuber/compiler/file_finders/imaginary.rb, line 27 def []=(key, value) @entries[key] = value end