class ActionView::FileSystemResolver
A resolver that loads files from the filesystem.
Attributes
path[R]
Public Class Methods
new(path)
click to toggle source
Calls superclass method
ActionView::Resolver::new
# File lib/action_view/template/resolver.rb, line 325 def initialize(path) raise ArgumentError, "path already is a Resolver class" if path.is_a?(Resolver) super() @path = File.expand_path(path) end
Public Instance Methods
eql?(resolver)
click to toggle source
# File lib/action_view/template/resolver.rb, line 336 def eql?(resolver) self.class.equal?(resolver.class) && to_path == resolver.to_path end
Also aliased as: ==
to_s()
click to toggle source
# File lib/action_view/template/resolver.rb, line 331 def to_s @path.to_s end
Also aliased as: to_path