Method not available on this version
This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
push_action(graph, action)
private
Adds the given action to the log, running the action @param [DependencyGraph]
graph @param [Action]
action @return The value returned by `action.up`
# File lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb, line 117
def push_action(graph, action)
action.previous = @current_action
@current_action.next = action if @current_action
@current_action = action
@first_action ||= action
action.up(graph)
end