class ActionView::FileSystemResolver
A resolver that loads files from the filesystem.
Attributes
path[R]
Public Class Methods
# File actionview/lib/action_view/template/resolver.rb, line 302 def initialize(path, pattern = nil) raise ArgumentError, "path already is a Resolver class" if path.is_a?(Resolver) super(pattern) @path = File.expand_path(path) end
Calls superclass method
Public Instance Methods
==(resolver)
Alias for: eql?
# File actionview/lib/action_view/template/resolver.rb, line 313 def eql?(resolver) self.class.equal?(resolver.class) && to_path == resolver.to_path end
Also aliased as: ==
to_path()
Alias for: to_s
# File actionview/lib/action_view/template/resolver.rb, line 308 def to_s @path.to_s end
Also aliased as: to_path
© 2004–2019 David Heinemeier Hansson
Licensed under the MIT License.