class Bundler::Molinillo::DependencyGraph::Action
@abstract
An action that modifies a {DependencyGraph} that is reversible.
def self.action_name
-
(Symbol)
- The name of the action.
def self.action_name raise 'Abstract' end
def down(graph)
-
(Void)
-
Parameters:
-
graph
(DependencyGraph
) -- the graph to reverse the action on.
def down(graph) raise 'Abstract' end
def up(graph)
-
(Void)
-
Parameters:
-
graph
(DependencyGraph
) -- the graph to perform the action on.
def up(graph) raise 'Abstract' end