Sha256: 12e8ee2f40e83d3d31471f18b18a0e397a017d9d3cbafa15aee23813d8b985fc

Contents?: true

Size: 554 Bytes

Versions: 2

Compression:

Stored size: 554 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
      # rubocop:disable Lint/Debugger
      pp latest_image_next
      # rubocop:enable Lint/Debugger
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cpl-0.4.1 lib/command/test.rb
cpl-0.4.0 lib/command/test.rb