最も単純なプログラムでも、タスクをトールにリストするのに問題があります。
class Mytest < Thor
desc "Hello world", "Puts 'hello world' on the console"
def hello
puts "Hello world"
end
end
実行時のコンソール出力は次のとおりですthor list
$ thor list
mytest
------
thor mytest:world # Puts 'hello world' on the console
ご覧のとおり、「hello」メソッド名は出力から省略されています。私を助けてくれませんか?
ありがとう、
ポール