According to http://edgeapi.rubyonrails.org/classes/Rails/Railtie.html, if I write a Rails 3 plugin and I want to hook into the initialization process, I write
class MyRailtie < Rails::Railtie
initializer "my_railtie.configure_rails_initializ开发者_如何转开发ation" do
# some initialization behavior
end
end
However, this initializer appears to be executed when you run, for instance, a Rails rake
task, not just when you run rails s
or similar. My question is, how do I prevent my code in this block from being run during Rails tasks, as opposed to full Rails server boot-ups? This seems to be a common problem with Rails 3 plugins.
add this block to your initializer:
if defined?(Rails::Server)
# do something
end
this should work with the current 3.0.6 rails version.
Way back when I posted this question, Mongoid was experiencing this issue. I reported it here, and it was resolved by wrapping the code in a config.after_initialize
block. If Rails isn't initialized, then this block is never called. More information here.
精彩评论