Sha256: 4022de4073f12f8059096f0b5022f8a0c5e14d8b5fc4cd465c4dd8a2fe268af8

Contents?: true

Size: 535 Bytes

Versions: 4

Compression:

Stored size: 535 Bytes

Contents

# frozen_string_literal: true

module Neptuno
  module Environment
    # Build docker container for Neptuno project
    class Config < Neptuno::CLI::Base
      desc "Environment: Configure local or remote"

      argument :services, type: :array, required: false, desc: "Optional list of services"

      def call(services: [], **_options)
        command_services_to("print", services_as_args: services) do |services|
          services.each do |service|
            puts service
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
neptuno-1.5.0 lib/neptuno/environment/config.rb
neptuno-1.4.10 lib/neptuno/environment/config.rb
neptuno-1.2.1 lib/neptuno/environment/config.rb
neptuno-1.2.0 lib/neptuno/environment/config.rb