Thor 脚本 ruby 中的 Rake 任务
我正在构建一个安装程序。 有了这个,我想以某种方式迁移数据库。 我正在使用 Thor 在 Rails 3 中制作安装程序。
所以类似(在命令行中)
rake db:create
rake db:migrate
谢谢。
i'm in the process of building an installer.
And with that, i want to migrate the database somehow.
I'm making my installer in Rails 3 using Thor.
So something like(in the command line)
rake db:create
rake db:migrate
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Rails Generator api实际上提供了一个rake方法,并且非常容易使用。例如,您的生成器文件可能如下所示:
然后,您可以通过运行以下命令在 Rails 应用程序中执行此文件。
这相当于在命令行中运行“rake db:migrate”。请注意,rails 生成器中的所有公共定义的方法都会在命令运行时执行。
其他信息: rake 方法由 Rails::Generators::Actions 模块提供,并可通过 Rails::Generators::Base 类使用。有关更多信息,请参阅官方文档。
The rails generator api actually provides a rake method, and is very easy to use. So for example your generator file could look like:
You could then execute this within your rails app by running the following.
Which would be the equivalent of running "rake db:migrate" in the command line. Note that all publicly defined methods in a rails generator are executed when the command is run.
Additional info: The rake method is provided by Rails::Generators::Actions module and is available by the Rails::Generators::Base class. See the Official Documentation for more information.