0

最も単純なプログラムでも、タスクをトールにリストするのに問題があります。

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」メソッド名は出力から省略されています。私を助けてくれませんか?

ありがとう、
ポール

4

1 に答える 1

1

「desc」行を次のように変更するだけです。

desc "hello", "コンソールに 'hello world' を表示します"

それが役に立てば幸い。

于 2012-05-23T23:40:03.027 に答える