Sha256: 0c9c1ea30863484c04ba93ab1a26148c3140a2fb471323d25003c7653cf0de09

Contents?: true

Size: 370 Bytes

Versions: 1

Compression:

Stored size: 370 Bytes

Contents

require 'thor'

module Sandoz

  class Cli < Thor

    desc "hello", "Say hello"
    def hello
      puts "Well, I met a girl called Sandoz\nAnd she taught me many, many things\nGood things, very good things, sweet things."
    end

    desc "new", "Take a hit and create a new sandoz project"
    def new
      `say Well, I met a girl called Sandoz`
    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sandoz-0.1.52 lib/cli.rb