Module: Bread
  
  
  
  
  
  
  
  
  
  
  
  
    - Defined in:
- lib/bread.rb,
 lib/bread/version.rb,
 lib/bread/reloader.rb,
 lib/bread/controller.rb,
 lib/bread/data/crumb.rb,
 lib/bread/manager/crumbs.rb,
 lib/bread/manager/actions.rb,
 lib/bread/manager/manager.rb,
 lib/bread/manager/crumbs/top_scope.rb,
 lib/bread/manager/actions/top_scope.rb,
 lib/bread/manager/crumbs/crumb_scope.rb,
 lib/bread/manager/actions/action_scope.rb,
 lib/generators/bread/install_generator.rb,
 lib/bread/manager/actions/controller_scope.rb
 
Defined Under Namespace
  
    
      Modules: Controller, Generators
    
  
    
      Classes: Crumb, Manager, Reloader
    
  
  
    
      Constant Summary
      collapse
    
    
      
        - VERSION =
          
        
- "0.0.13"
 
      Class Method Summary
      collapse
    
    
  
  
    Class Method Details
    
      
  
  
    .actions  ⇒ Object 
  
  
  
  
    | 
23
24
25 | # File 'lib/bread.rb', line 23
def self.actions
  Manager.instance.actions
end
 | 
 
    
      
  
  
    .crumbs  ⇒ Object 
  
  
  
  
    | 
27
28
29 | # File 'lib/bread.rb', line 27
def self.crumbs
  Manager.instance.crumbs
end
 | 
 
    
      
  
  
    .reload!  ⇒ Object 
  
  
  
  
    | 
31
32
33 | # File 'lib/bread.rb', line 31
def self.reload!
  Reloader.instance.reload!
end
 |