method

add_dependencies

add_dependencies(render_dependencies, arguments, pattern)
private

No documentation available.

# File actionview/lib/action_view/dependency_tracker/erb_tracker.rb, line 104
        def add_dependencies(render_dependencies, arguments, pattern)
          arguments.scan(pattern) do
            match = Regexp.last_match
            add_dynamic_dependency(render_dependencies, match[:dynamic])
            add_static_dependency(render_dependencies, match[:static], match[:quote])
          end
        end