我的rails应用有一个网站抓取工具,可以加载抓取工具在config/initializers
中的rails初始值设定项中使用的身份验证凭据。初始化程序通过调用SiteLogin模型中的模型方法来加载身份验证。
当我运行rake db:migrate
来创建SiteLogin
模型表时,它会失败,因为初始化程序期望数据库表已经存在。我可以简单地在我的初始化程序中注释掉代码,运行迁移来创建表,然后取消注释初始化程序代码,而不用担心问题。
问题是,我正在使用Capistrano进行部署,这意味着我必须先部署而不使用初始化代码来运行迁移,然后再使用初始化代码进行部署。有没有更好的方法来做到这一点,或者在这种情况下我的方法是完全错误的。
以下是一些代码示例,以便更好地解释我的案例:
# config/initializers/site_crawler_init.rb
SiteCrawler.setup do |config|
config.hostname = "www.example.com"
end
# model/site_crawler.rb
class SiteCrawler
...
class << self
attr_accessor :configuration
def setup
self.configuration ||= Configuration.new
yield(configuration)
end
end
class Configuration
attr_accessor :hostname, :login_credentials
def initialize
@login_credentials = SiteLogin.admin_user
...
end
end
end
答案 0 :(得分:18)
它可能不是更好的解决方案,但您可以检查表格是否存在:
if ActiveRecord::Base.connection.tables.include?('your_table_name')
# your code goes here
end
但它通常还不够,因为可能有未决的迁移。
现在,您还可以检查您是否参加了佣金任务:
if ActiveRecord::Base.connection.tables.include?('your_table_name') and !defined?(::Rake)
# your code goes here
end
启动测试时仍然不够,因为在rake任务中执行,因此您还可以检查Rails环境是否为test(Rails.env.test?
)。
答案 1 :(得分:9)
我有一个类似的问题,我需要跳过一个特定的初始化程序(对于延迟作业,这需要一个delayed_job表存在),在运行特定的rake任务时 - 在这个例子中db:migrate。
我将以下内容添加到我的Rakefile中:
def running_tasks
@running_tasks ||= Rake.application.top_level_tasks
end
def is_running_migration?
running_tasks.include?("db:migrate")
end
然后在我有问题的初始化程序中的以下内容:
unless defined?(is_running_migration?) && is_running_migration?
... do whatever
end