Class: Dependencies
- Inherits:
-
Object
- Object
- Dependencies
- Defined in:
- lib/gimuby/dependencies.rb
Overview
Dependencies container that is accessed from everywhere in the app
Instance Attribute Summary collapse
-
#event_manager ⇒ Object
Returns the value of attribute event_manager.
Instance Method Summary collapse
- #foxholes ⇒ Object
-
#initialize ⇒ Dependencies
constructor
A new instance of Dependencies.
-
#tsp ⇒ Object
problem specific.
Constructor Details
#initialize ⇒ Dependencies
Returns a new instance of Dependencies.
9 10 11 12 13 14 15 |
# File 'lib/gimuby/dependencies.rb', line 9 def initialize @event_manager = EventManager.new # problem specific @tsp = nil @foxholes = nil end |
Instance Attribute Details
#event_manager ⇒ Object
Returns the value of attribute event_manager.
17 18 19 |
# File 'lib/gimuby/dependencies.rb', line 17 def event_manager @event_manager end |