Module: ActionView::LookupContext::ViewPaths
- Included in:
- ActionView::LookupContext
- Defined in:
- lib/action_view/lookup_context.rb
Overview
Helpers related to template lookup using the lookup context information.
Instance Attribute Summary collapse
-
#view_paths ⇒ Object
Returns the value of attribute view_paths.
Instance Method Summary collapse
- #exists?(name, prefixes = [], partial = false, keys = [], options = {}) ⇒ Boolean (also: #template_exists?)
- #find(name, prefixes = [], partial = false, keys = [], options = {}) ⇒ Object (also: #find_template)
- #find_all(name, prefixes = [], partial = false, keys = [], options = {}) ⇒ Object
- #find_file(name, prefixes = [], partial = false, keys = [], options = {}) ⇒ Object
-
#with_fallbacks ⇒ Object
Add fallbacks to the view paths.
Instance Attribute Details
#view_paths ⇒ Object
Returns the value of attribute view_paths.
113 114 115 |
# File 'lib/action_view/lookup_context.rb', line 113 def view_paths @view_paths end |
Instance Method Details
#exists?(name, prefixes = [], partial = false, keys = [], options = {}) ⇒ Boolean Also known as: template_exists?
134 135 136 |
# File 'lib/action_view/lookup_context.rb', line 134 def exists?(name, prefixes = [], partial = false, keys = [], = {}) @view_paths.exists?(*args_for_lookup(name, prefixes, partial, keys, )) end |
#find(name, prefixes = [], partial = false, keys = [], options = {}) ⇒ Object Also known as: find_template
121 122 123 |
# File 'lib/action_view/lookup_context.rb', line 121 def find(name, prefixes = [], partial = false, keys = [], = {}) @view_paths.find(*args_for_lookup(name, prefixes, partial, keys, )) end |
#find_all(name, prefixes = [], partial = false, keys = [], options = {}) ⇒ Object
126 127 128 |
# File 'lib/action_view/lookup_context.rb', line 126 def find_all(name, prefixes = [], partial = false, keys = [], = {}) @view_paths.find_all(*args_for_lookup(name, prefixes, partial, keys, )) end |
#find_file(name, prefixes = [], partial = false, keys = [], options = {}) ⇒ Object
130 131 132 |
# File 'lib/action_view/lookup_context.rb', line 130 def find_file(name, prefixes = [], partial = false, keys = [], = {}) @view_paths.find_file(*args_for_lookup(name, prefixes, partial, keys, )) end |
#with_fallbacks ⇒ Object
Add fallbacks to the view paths. Useful in cases you are rendering a :file.
140 141 142 143 144 145 146 147 148 149 150 |
# File 'lib/action_view/lookup_context.rb', line 140 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 yield ensure added_resolvers.times { view_paths.pop } end |