Sha256: 21be92215c6808a1db2cb3b8394c739bef88015a0dcd19ffc15cdb26f376b2a8

Contents?: true

Size: 149 Bytes

Versions: 5

Compression:

Stored size: 149 Bytes

Contents

require 'thor'

class MyCLI < Thor
  desc "hello NAME", "say hello to NAME"
  def hello(name)
    puts "Hello #{name}"
  end
end


MyCLI.start(ARGV)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
my_help-0.6.1 docs/yagi/comparisons/thor.rb
my_help-0.6.0 docs/yagi/comparisons/thor.rb
my_help-0.5.2 docs/yagi/comparisons/thor.rb
my_help-0.5.1 docs/yagi/comparisons/thor.rb
my_help-0.5.0 docs/yagi/comparisons/thor.rb