Class: Kennel::Engine
- Inherits:
-
Object
- Object
- Kennel::Engine
- Defined in:
- lib/kennel.rb
Instance Attribute Summary collapse
-
#strict_imports ⇒ Object
Returns the value of attribute strict_imports.
Instance Method Summary collapse
- #generate ⇒ Object
-
#initialize ⇒ Engine
constructor
A new instance of Engine.
- #plan ⇒ Object
-
#preload ⇒ Object
start generation and download in parallel to make planning faster.
- #update ⇒ Object
Constructor Details
#initialize ⇒ Engine
Returns a new instance of Engine.
55 56 57 |
# File 'lib/kennel.rb', line 55 def initialize @strict_imports = true end |
Instance Attribute Details
#strict_imports ⇒ Object
Returns the value of attribute strict_imports.
59 60 61 |
# File 'lib/kennel.rb', line 59 def strict_imports @strict_imports end |
Instance Method Details
#generate ⇒ Object
66 67 68 69 70 |
# File 'lib/kennel.rb', line 66 def generate parts = generated parts_serializer.write(parts) if ENV["STORE"] != "false" # quicker when debugging parts end |
#plan ⇒ Object
72 73 74 |
# File 'lib/kennel.rb', line 72 def plan syncer.plan end |
#preload ⇒ Object
start generation and download in parallel to make planning faster
62 63 64 |
# File 'lib/kennel.rb', line 62 def preload Utils.parallel([:generated, :definitions]) { |m| send m, plain: true } end |
#update ⇒ Object
76 77 78 79 |
# File 'lib/kennel.rb', line 76 def update syncer.plan syncer.update if syncer.confirm end |