Method not available on this version
This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
pop!(graph)
public
Pops the most recent action from the log and undoes the action @param [DependencyGraph]
graph @return [Action] the
action that was popped off the log
# File lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb, line 63
def pop!(graph)
return unless action = @current_action
unless @current_action = action.previous
@first_action = nil
end
action.down(graph)
action
end