A resolver that loads files from the filesystem.
Methods
- #
-
- E
-
- N
-
- T
-
Attributes
Class Public methods
new(path)
Link
Source:
show
|
on GitHub
def initialize(path)
raise ArgumentError, "path already is a Resolver class" if path.is_a?(Resolver)
super()
@path = File.expand_path(path)
end
Instance Public methods
eql?(resolver)
Link
Source:
show
|
on GitHub
def eql?(resolver)
self.class.equal?(resolver.class) && to_path == resolver.to_path
end