Sha256: e24a6f83730ea370cc3905085246ba99a8c3f8074da3e38d5ad84ce4c7d85cd1

Contents?: true

Size: 353 Bytes

Versions: 8

Compression:

Stored size: 353 Bytes

Contents

# frozen_string_literal: true

module Command
  class LatestImage < Base
    NAME = "latest-image"
    OPTIONS = [
      app_option(required: true)
    ].freeze
    DESCRIPTION = "Displays the latest image name"
    LONG_DESCRIPTION = <<~HEREDOC
      - Displays the latest image name
    HEREDOC

    def call
      puts latest_image
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
cpl-0.4.1 lib/command/latest_image.rb
cpl-0.4.0 lib/command/latest_image.rb
cpl-0.3.3 lib/command/latest_image.rb
cpl-0.3.2 lib/command/latest_image.rb
cpl-0.3.1 lib/command/latest_image.rb
cpl-0.3.0 lib/command/latest_image.rb
cpl-0.2.0 lib/command/latest_image.rb
cpl-0.1.0 lib/command/latest_image.rb