Action View Resolver

Methods

Included Modules

Instance Public methods

clear_cache()

📝 Source code
# File actionview/lib/action_view/template/resolver.rb, line 59
    def clear_cache
    end
🔎 See on GitHub

find_all(name, prefix = nil, partial = false, details = {}, key = nil, locals = [])

Normalizes the arguments and passes it on to find_templates.

📝 Source code
# File actionview/lib/action_view/template/resolver.rb, line 63
    def find_all(name, prefix = nil, partial = false, details = {}, key = nil, locals = [])
      _find_all(name, prefix, partial, details, key, locals)
    end
🔎 See on GitHub