如何在不需要参数的情况下创建自己的 Rails 生成器?
看来我一直在想办法,这样我的生成器就不需要参数了。例如,我的生成器代码是这样的:
class MyGenerator < Rails::Generators::NamedBase
source_root File.expand_path('../templates', __FILE__)
def generate_stylesheet
copy_file "my.css", "public/stylesheets/my.css"
end
end
但是当我执行rails g时,我的rails总是要求额外的参数。你能告诉我如何让它不需要额外的参数吗?
谢谢。
It seems that I am stuck figuring out so that my generator doesn't need an argument. So for instance my generator code is this:
class MyGenerator < Rails::Generators::NamedBase
source_root File.expand_path('../templates', __FILE__)
def generate_stylesheet
copy_file "my.css", "public/stylesheets/my.css"
end
end
But when I do rails g my
rails always asks for an extra argument. Can you show me how so it doesn't need an extra argument?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 class MyGenerator
class MyGenerator
class MyGenerator
class MyGenerator
class MyGenerator < Rails::Generators::Base
而不是 class MyGeneratorRails::Generators::NamedBase
You have to use
class MyGenerator < Rails::Generators::Base
instead ofclass MyGenerator < Rails::Generators::NamedBase