即使使用最简单的程序,我也无法在 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”方法名称。你能帮帮我吗?
谢谢你,
保罗