Class: Chickadee::Bootstrapper
- Inherits:
-
Object
- Object
- Chickadee::Bootstrapper
- Defined in:
- lib/chickadee/bootstrapper.rb
Instance Method Summary collapse
-
#initialize(container_class, installer) ⇒ Bootstrapper
constructor
A new instance of Bootstrapper.
- #new_bootstrap_container ⇒ Object
Constructor Details
#initialize(container_class, installer) ⇒ Bootstrapper
Returns a new instance of Bootstrapper.
3 4 5 6 |
# File 'lib/chickadee/bootstrapper.rb', line 3 def initialize(container_class, installer) @container_class = container_class @installer = installer end |
Instance Method Details
#new_bootstrap_container ⇒ Object
8 9 10 |
# File 'lib/chickadee/bootstrapper.rb', line 8 def new_bootstrap_container @container_class.install(@installer) end |