Class: Orchparty::Generators::DockerComposeV2
- Inherits:
-
Object
- Object
- Orchparty::Generators::DockerComposeV2
- Defined in:
- lib/orchparty/generators/docker_compose_v2.rb
Instance Attribute Summary collapse
-
#ast ⇒ Object
readonly
Returns the value of attribute ast.
Instance Method Summary collapse
-
#initialize(ast) ⇒ DockerComposeV2
constructor
A new instance of DockerComposeV2.
- #output(application_name) ⇒ Object
Constructor Details
#initialize(ast) ⇒ DockerComposeV2
Returns a new instance of DockerComposeV2.
6 7 8 |
# File 'lib/orchparty/generators/docker_compose_v2.rb', line 6 def initialize(ast) @ast = ast end |
Instance Attribute Details
#ast ⇒ Object (readonly)
Returns the value of attribute ast.
5 6 7 |
# File 'lib/orchparty/generators/docker_compose_v2.rb', line 5 def ast @ast end |
Instance Method Details
#output(application_name) ⇒ Object
10 11 12 13 14 15 16 17 18 19 |
# File 'lib/orchparty/generators/docker_compose_v2.rb', line 10 def output(application_name) {"version" => "2", "services" => ast.applications[application_name].services.map do |name,service| service = service.to_h service.delete(:mix) [service.delete(:name), HashUtils.deep_stringify_keys(service.to_h)] end.to_h }.to_yaml end |