gpt4 book ai didi

ruby-on-rails - 如何在 Rails 中使用雷神?

转载 作者:数据小太阳 更新时间:2023-10-29 08:03:27 24 4
gpt4 key购买 nike

Thor 是一个用于构建强大命令行界面的工具包。

它一直用于单个命令行。如果我想在rails项目中使用它,例如:

lib/tasks/my_cli.rb

require "thor"

class MyCLI < Thor
desc "hello NAME", "say hello to NAME"
def hello(name)
puts "Hello #{name}"
end
end

MyCLI.start(ARGV) 放在哪里?

如果我把它放在那个文件 (lib/tasks/my_cli.rb) 下,当我运行我的 rspec 测试时,它会显示命令消息:

Commands:
rspec help [COMMAND] # Describe available commands or one specific command
rspec hello NAME # say hello to NAME

我不想在我的 bundle exec rspec 中看到它,所以我将 MyCLI.start(ARGV) 移到了 bin/rails。看起来不错。但是在我这样做之后:

$ ./bin/rails s -b 0.0.0.0
$ [CTRL+C]

我看到了这条消息:

=> Booting Thin
=> Rails 4.2.0 application starting in development on http://0.0.0.0:3000
=> Run `rails server -h` for more startup options
=> Ctrl-C to shutdown server
Thin web server (v1.6.3 codename Protein Powder)
Maximum connections set to 1024
Listening on 0.0.0.0:3000, CTRL+C to stop
^CStopping ...
Exiting
Could not find command "_b".

这是什么意思:

Could not find command "_b".

所以,我不知道如何在 Rails 项目中使用 Thor 的最佳实践。

最佳答案

您必须使用 method_option: https://github.com/erikhuda/thor/wiki/Method-Options

并且不要像普通方法那样传递参数

require "thor"

class MyCLI < Thor
desc "hello NAME", "say hello to NAME"

method_option :name, aliases: '-b', type: :string, desc: 'It`s the named passed'

def hello
puts "Hello #{options[:name]}"
end
end

然后将它与 thor 命令一起使用:thor mycli:hello -b Robert

关于ruby-on-rails - 如何在 Rails 中使用雷神?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32491845/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com