Sha256: a1aedc2100c430b826c0016cbf8afcf0303e57d08c15fbb537ea8265908255fd

Contents?: true

Size: 548 Bytes

Versions: 7

Compression:

Stored size: 548 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 = <<~DESC
      - For debugging purposes
    DESC
    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

7 entries across 7 versions & 1 rubygems

Version Path
cpl-1.0.2 lib/command/test.rb
cpl-1.0.1 lib/command/test.rb
cpl-1.0.0 lib/command/test.rb
cpl-0.7.0 lib/command/test.rb
cpl-0.6.0 lib/command/test.rb
cpl-0.5.1 lib/command/test.rb
cpl-0.5.0 lib/command/test.rb