Class: ActionView::FileSystemResolver

Inherits:
Resolver show all
Defined in:
actionview/lib/action_view/template/resolver.rb

Overview

A resolver that loads files from the filesystem.

Direct Known Subclasses

FixtureResolver

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Resolver

#find_all

Methods included from ActiveSupport::Deprecation::DeprecatedConstantAccessor

included

Constructor Details

#initialize(path) ⇒ FileSystemResolver

Returns a new instance of FileSystemResolver.

Raises:

  • (ArgumentError)


96
97
98
99
100
101
102
# File 'actionview/lib/action_view/template/resolver.rb', line 96

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

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path



94
95
96
# File 'actionview/lib/action_view/template/resolver.rb', line 94

def path
  @path
end

Instance Method Details

#all_template_pathsObject

:nodoc:



120
121
122
123
124
125
126
127
# File 'actionview/lib/action_view/template/resolver.rb', line 120

def all_template_paths # :nodoc:
  paths = template_glob("**/*")
  paths.map do |filename|
    filename.from(@path.size + 1).remove(/\.[^\/]*\z/)
  end.uniq.map do |filename|
    TemplatePath.parse(filename)
  end
end

#built_templatesObject

:nodoc:



129
130
131
# File 'actionview/lib/action_view/template/resolver.rb', line 129

def built_templates # :nodoc:
  @unbound_templates.values.flatten.flat_map(&:built_templates)
end

#clear_cacheObject



104
105
106
107
108
# File 'actionview/lib/action_view/template/resolver.rb', line 104

def clear_cache
  @unbound_templates.clear
  @path_parser = PathParser.new
  super
end

#eql?(resolver) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


115
116
117
# File 'actionview/lib/action_view/template/resolver.rb', line 115

def eql?(resolver)
  self.class.equal?(resolver.class) && to_path == resolver.to_path
end

#to_sObject Also known as: to_path



110
111
112
# File 'actionview/lib/action_view/template/resolver.rb', line 110

def to_s
  @path.to_s
end