class Epuber::Compiler::FileFinders::Imaginary::FileEntry

Attributes

absolute_path[R]

@return [String]

name[R]

@return [String]

Public Class Methods

new(name, absolute_path) click to toggle 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

==(other) click to toggle source
# File lib/epuber/compiler/file_finders/imaginary.rb, line 50
def ==(other)
  name == (other.is_a?(FileEntry) ? other.name : other.to_s)
end