Sha256: 6c2f627b847c3337e0789f3827a203faf607677f623229d3cceafe7b64adf3f8

Contents?: true

Size: 293 Bytes

Versions: 2

Compression:

Stored size: 293 Bytes

Contents

# frozen_string_literal: true

require "thor"

module Podoy
  # Cli
  class Cli < Thor
    desc "test", "Test command"
    def test
      # add commands here
      puts :hello
    end

    desc "version", "Display the Podoy version"
    def version
      puts Podoy::VERSION
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
podoy-0.1.2 lib/podoy/cli.rb
podoy-0.1.1 lib/podoy/cli.rb