class Bundler::Molinillo::DependencyGraph::Action

@abstract
An action that modifies a {DependencyGraph} that is reversible.

def self.action_name

Returns:
  • (Symbol) - The name of the action.
def self.action_name
  raise 'Abstract'
end

def down(graph)

Returns:
  • (Void) -

Parameters:
  • graph (DependencyGraph) -- the graph to reverse the action on.
def down(graph)
  raise 'Abstract'
end

def up(graph)

Returns:
  • (Void) -

Parameters:
  • graph (DependencyGraph) -- the graph to perform the action on.
def up(graph)
  raise 'Abstract'
end