class Epuber::Compiler::FileFinders::Imaginary::FileEntry
Attributes
@return [String]
@return [String]
Public Class Methods
Source
# File lib/epuber/compiler/file_finders/imaginary.rb, line 45 def initialize(name, absolute_path) @name = name @absolute_path = absolute_path end
Public Instance Methods
Source
# File lib/epuber/compiler/file_finders/imaginary.rb, line 50 def ==(other) name == (other.is_a?(FileEntry) ? other.name : other.to_s) end