如何在 rake 任务中强制使用 RAILS

编程入门 行业动态 更新时间:2024-10-24 16:33:13
本文介绍了如何在 rake 任务中强制使用 RAILS_ENV?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有这个小任务:

namespace :db do namespace :test do task :reset do ENV['RAILS_ENV'] = "test" Rake::Task['db:drop'].invoke Rake::Task['db:create'].invoke Rake::Task['db:migrate'].invoke end end end

现在,当我执行时,它会忽略我尝试硬编码的 RAILS_ENV.我如何使这项任务按预期工作

Now, when I execute, it will ignore the RAILS_ENV I tried to hard-code. How do I make this task work as expected

推荐答案

对于这个特定的任务,你只需要改变数据库连接,所以正如 Adam 所指出的,你可以这样做:

For this particular task, you only need to change the DB connection, so as Adam pointed out, you can do this:

namespace :db do namespace :test do task :reset do ActiveRecord::Base.establish_connection('test') Rake::Task['db:drop'].invoke Rake::Task['db:create'].invoke Rake::Task['db:migrate'].invoke ActiveRecord::Base.establish_connection(ENV['RAILS_ENV']) #Make sure you don't have side-effects! end end end

如果您的任务更复杂,并且您需要 ENV 的其他方面,那么最安全的做法是生成新的 rake 进程:

If your task is more complicated, and you need other aspects of ENV, you are safest spawning a new rake process:

namespace :db do namespace :test do task :reset do system("rake db:drop RAILS_ENV=test") system("rake db:create RAILS_ENV=test") system("rake db:migrate RAILS_ENV=test") end end end

namespace :db do namespace :test do task :reset do if (ENV['RAILS_ENV'] == "test") Rake::Task['db:drop'].invoke Rake::Task['db:create'].invoke Rake::Task['db:migrate'].invoke else system("rake db:test:reset RAILS_ENV=test") end end end end

更多推荐

如何在 rake 任务中强制使用 RAILS

本文发布于:2023-10-28 13:28:19,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1536766.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:如何在   rake   RAILS

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!