Sha256: d3d75a9440275b19dbbf4453a51ebe1e425ac5e459f6607857e7b797182809b9

Contents?: true

Size: 479 Bytes

Versions: 4

Compression:

Stored size: 479 Bytes

Contents

# frozen_string_literal: true

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

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cpl-0.3.3 lib/command/test.rb
cpl-0.3.2 lib/command/test.rb
cpl-0.3.1 lib/command/test.rb
cpl-0.3.0 lib/command/test.rb