Skip to Content Skip to Search

class ActionView::FileSystemResolver

A resolver that loads files from the filesystem.

Inherits From

Attributes

[R] path

Public class methods

Source code GitHub
# File actionview/lib/action_view/template/resolver.rb, line 94
def initialize(path)
  raise ArgumentError, "path already is a Resolver class" if path.is_a?(Resolver)
  @unbound_templates = Concurrent::Map.new
  @path_parser = PathParser.new
  @path = File.expand_path(path)
  super()
end

Public instance methods

Alias for: eql?.

Source code GitHub
# File actionview/lib/action_view/template/resolver.rb, line 102
def clear_cache
  @unbound_templates.clear
  @path_parser = PathParser.new
  super
end

Also aliased as: ==.

Source code GitHub
# File actionview/lib/action_view/template/resolver.rb, line 113
def eql?(resolver)
  self.class.equal?(resolver.class) && to_path == resolver.to_path
end

Alias for: to_s.

Also aliased as: to_path.

Source code GitHub
# File actionview/lib/action_view/template/resolver.rb, line 108
def to_s
  @path.to_s
end

Definition files