Thor
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&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)
}}
終了行:
&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)
}}
ページ名: