Sha256: 8ad334506b8a249f0ec9ea28bc528379ed1d76d07608025ed76c4771e8f3ba53

Contents?: true

Size: 542 Bytes

Versions: 2

Compression:

Stored size: 542 Bytes

Contents

# frozen_string_literal: true

# Be sure to have run: gem install debug
require "debug"

# rubocop:disable Lint/Debugger
module Command
  class Test < Base
    NAME = "test"
    OPTIONS = all_options
    DESCRIPTION = "For debugging purposes"
    LONG_DESCRIPTION = <<~HEREDOC
      - For debugging purposes
    HEREDOC
    HIDE = true

    def call
      # Change code here to test.
      # You can use `debugger` to debug.
      # debugger
      # Or print values
      pp latest_image_next
    end
  end
end
# rubocop:enable Lint/Debugger

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cpl-0.2.0 lib/command/test.rb
cpl-0.1.0 lib/command/test.rb