Class: Bundler::Molinillo::DependencyGraph::Tag
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
| Class Chain: 
          self,
           Action | |
| Instance Chain: 
          self,
           Action | |
| Inherits: | Bundler::Molinillo::DependencyGraph::Action 
 | 
| Defined in: | lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb | 
Overview
Action
- .action_name ⇒ Symbol
- 
    
      #down(_graph)  ⇒ Void 
    
    Reverses the action on the given graph. 
- 
    
      #up(_graph)  ⇒ Void 
    
    Performs the action on the given graph. 
Tag
- 
    
      .new(tag)  ⇒ Tag 
    
    constructor
    Initialize an action to tag a state of a dependency graph. 
- #tag ⇒ Object readonly
Class Method Summary
Action - Inherited
Instance Attribute Summary
Instance Method Summary
Action - Inherited
Constructor Details
    .new(tag)  ⇒ Tag 
  
Initialize an action to tag a state of a dependency graph
Class Method Details
    .action_name  ⇒ Symbol 
  
# File 'lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb', line 12
def self.action_name :tag end
Instance Attribute Details
    #tag  ⇒ Object  (readonly)
  
# File 'lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb', line 27
attr_reader :tag
Instance Method Details
    #down(_graph)  ⇒ Void 
  
Reverses the action on the given graph.
# File 'lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb', line 21
def down(_graph) end
    #up(_graph)  ⇒ Void 
  
Performs the action on the given graph.
# File 'lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb', line 17
def up(_graph) end