Flowdock
method

dependency_digest

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: Node
dependency_digest(finder, stack) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/digestor.rb, line 94
      def dependency_digest(finder, stack)
        children.map do |node|
          if stack.include?(node)
            false
          else
            finder.digest_cache[node.name] ||= begin
                                                 stack.push node
                                                 node.digest(finder, stack).tap { stack.pop }
                                               end
          end
        end.join("-")
      end
Register or log in to add new notes.