&tag(Thor);
*目次 [#nb470a7e]
#contents
*関連ページ [#g8b35f7f]
*参考情報 [#pa88424b]
-[[Thor - Home:http://whatisthor.com/]]


*使用方法 [#t8a304ff]

**基本的な使用方法 [#j99b8261]
-Thorのサブクラスを作成し、descで説明を付ける。startで呼び出す

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

MyCLI.start(ARGV)
}}

トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS