diff options
author | Aaron Patterson <tenderlove@github.com> | 2019-01-28 13:13:50 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-28 13:13:50 -0800 |
commit | 8f8d8b3c19b88d3f51f83872328847f45fc78de4 (patch) | |
tree | 5e1643bd14b8fb946d237565425a498aed5024d6 /actionview/lib | |
parent | c0154b5f9e27471a9b8ba7e9131eb56acd3fc588 (diff) | |
parent | 0b0412ab531590580cd303e54da68dadd4853de3 (diff) | |
download | rails-8f8d8b3c19b88d3f51f83872328847f45fc78de4.tar.gz rails-8f8d8b3c19b88d3f51f83872328847f45fc78de4.tar.bz2 rails-8f8d8b3c19b88d3f51f83872328847f45fc78de4.zip |
Merge pull request #35074 from rails/ro-lookup-context
Make the lookup context more "read-only"
Diffstat (limited to 'actionview/lib')
-rw-r--r-- | actionview/lib/action_view/lookup_context.rb | 24 | ||||
-rw-r--r-- | actionview/lib/action_view/testing/resolvers.rb | 6 |
2 files changed, 14 insertions, 16 deletions
diff --git a/actionview/lib/action_view/lookup_context.rb b/actionview/lib/action_view/lookup_context.rb index 554d223c0e..cc262dc2b7 100644 --- a/actionview/lib/action_view/lookup_context.rb +++ b/actionview/lib/action_view/lookup_context.rb @@ -106,12 +106,6 @@ module ActionView module ViewPaths attr_reader :view_paths, :html_fallback_for_js - # Whenever setting view paths, makes a copy so that we can manipulate them in - # instance objects as we wish. - def view_paths=(paths) - @view_paths = ActionView::PathSet.new(Array(paths)) - end - def find(name, prefixes = [], partial = false, keys = [], options = {}) @view_paths.find(*args_for_lookup(name, prefixes, partial, keys, options)) end @@ -138,19 +132,21 @@ module ActionView # Adds fallbacks to the view paths. Useful in cases when you are rendering # a :file. def with_fallbacks - added_resolvers = 0 - self.class.fallbacks.each do |resolver| - next if view_paths.include?(resolver) - view_paths.push(resolver) - added_resolvers += 1 - end + view_paths = @view_paths + @view_paths = build_view_paths((view_paths.paths + self.class.fallbacks).uniq) yield ensure - added_resolvers.times { view_paths.pop } + @view_paths = view_paths end private + # Whenever setting view paths, makes a copy so that we can manipulate them in + # instance objects as we wish. + def build_view_paths(paths) + ActionView::PathSet.new(Array(paths)) + end + def args_for_lookup(name, prefixes, partial, keys, details_options) name, prefixes = normalize_name(name, prefixes) details, details_key = detail_args_for(details_options) @@ -226,7 +222,7 @@ module ActionView @rendered_format = nil @details = initialize_details({}, details) - self.view_paths = view_paths + @view_paths = build_view_paths(view_paths) end def digest_cache diff --git a/actionview/lib/action_view/testing/resolvers.rb b/actionview/lib/action_view/testing/resolvers.rb index 1fad08a689..d6203b95c5 100644 --- a/actionview/lib/action_view/testing/resolvers.rb +++ b/actionview/lib/action_view/testing/resolvers.rb @@ -8,13 +8,15 @@ module ActionView #:nodoc: # useful for testing extensions that have no way of knowing what the file # system will look like at runtime. class FixtureResolver < PathResolver - attr_reader :hash - def initialize(hash = {}, pattern = nil) super(pattern) @hash = hash end + def data + @hash + end + def to_s @hash.keys.join(", ") end |