0

即使使用最简单的程序,我也无法在 thor 中列出我的任务:

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 回答