Method: Gem::Molinillo::DependencyGraph::Log#set_payload

Defined in:
lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph/log.rb

#set_payload(graph, name, payload) ⇒ Void

Parameters:

  • graph (Graph)

    the graph to perform the action on

  • name (String)

    the name of the vertex

  • payload (Object)

    the payload

Returns:

  • (Void)


56
57
58
# File 'lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph/log.rb', line 56

def set_payload(graph, name, payload)
  push_action(graph, SetPayload.new(name, payload))
end