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