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