任务:某事=> :环境
有人可以解释一下当我将这种依赖性添加到我的任务中时会发生什么吗?加载了哪些文件等?
Can someone explain me what happens when I add such dependency to my tasks? Which files are loaded etc.?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所有这些依赖项所做的就是需要您的 config/environment.rb 文件,即。加载整个 Rails 环境。每当您需要在 rake 任务(即模型)中使用应用程序中的任何代码时,您都可以执行此操作,这很常见。
All this dependency does is requiring your config/environment.rb file, ie. loading the entire Rails environment. You can do this whenever you need to use any code from your application in the rake tasks (ie. models), which is quite common.