2010-02-04 12:29:18 -05:00
|
|
|
require "active_record"
|
|
|
|
require "rails"
|
|
|
|
require "active_model/railtie"
|
|
|
|
|
2009-12-23 17:55:12 -05:00
|
|
|
# For now, action_controller must always be present with
|
|
|
|
# rails, so let's make sure that it gets required before
|
|
|
|
# here. This is needed for correctly setting up the middleware.
|
|
|
|
# In the future, this might become an optional require.
|
2009-12-31 16:11:54 -05:00
|
|
|
require "action_controller/railtie"
|
2009-12-23 17:55:12 -05:00
|
|
|
|
|
|
|
module ActiveRecord
|
2010-06-16 13:45:04 -04:00
|
|
|
# = Active Record Railtie
|
2009-12-31 16:11:54 -05:00
|
|
|
class Railtie < Rails::Railtie
|
2010-03-26 13:47:55 -04:00
|
|
|
config.active_record = ActiveSupport::OrderedOptions.new
|
2009-12-27 07:32:40 -05:00
|
|
|
|
2010-09-29 11:41:30 -04:00
|
|
|
config.app_generators.orm :active_record, :migration => true,
|
2010-10-28 12:00:52 -04:00
|
|
|
:timestamps => true
|
2010-01-28 13:45:25 -05:00
|
|
|
|
2010-08-20 21:55:02 -04:00
|
|
|
config.app_middleware.insert_after "::ActionDispatch::Callbacks",
|
|
|
|
"ActiveRecord::QueryCache"
|
|
|
|
|
|
|
|
config.app_middleware.insert_after "::ActionDispatch::Callbacks",
|
|
|
|
"ActiveRecord::ConnectionAdapters::ConnectionManagement"
|
2010-05-15 09:08:55 -04:00
|
|
|
|
2009-12-28 20:37:18 -05:00
|
|
|
rake_tasks do
|
2009-12-30 22:24:00 -05:00
|
|
|
load "active_record/railties/databases.rake"
|
2009-12-28 20:37:18 -05:00
|
|
|
end
|
|
|
|
|
2010-07-17 04:59:41 -04:00
|
|
|
# When loading console, force ActiveRecord to be loaded to avoid cross
|
|
|
|
# references when loading a constant for the first time.
|
|
|
|
console do
|
|
|
|
ActiveRecord::Base
|
|
|
|
end
|
|
|
|
|
2010-01-22 14:44:29 -05:00
|
|
|
initializer "active_record.initialize_timezone" do
|
2010-03-29 20:08:08 -04:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
2010-03-07 09:24:30 -05:00
|
|
|
self.time_zone_aware_attributes = true
|
|
|
|
self.default_timezone = :utc
|
|
|
|
end
|
2010-01-22 14:44:29 -05:00
|
|
|
end
|
|
|
|
|
2010-01-24 19:06:12 -05:00
|
|
|
initializer "active_record.logger" do
|
2010-03-29 20:08:08 -04:00
|
|
|
ActiveSupport.on_load(:active_record) { self.logger ||= ::Rails.logger }
|
2010-01-24 19:06:12 -05:00
|
|
|
end
|
|
|
|
|
2009-12-23 17:55:12 -05:00
|
|
|
initializer "active_record.set_configs" do |app|
|
2010-03-29 20:08:08 -04:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
2010-03-07 09:24:30 -05:00
|
|
|
app.config.active_record.each do |k,v|
|
|
|
|
send "#{k}=", v
|
|
|
|
end
|
2009-12-23 17:55:12 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# This sets the database configuration from Configuration#database_configuration
|
|
|
|
# and then establishes the connection.
|
|
|
|
initializer "active_record.initialize_database" do |app|
|
2010-03-29 20:08:08 -04:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
2010-03-07 09:24:30 -05:00
|
|
|
self.configurations = app.config.database_configuration
|
|
|
|
establish_connection
|
|
|
|
end
|
2009-12-23 17:55:12 -05:00
|
|
|
end
|
|
|
|
|
2009-12-30 22:24:00 -05:00
|
|
|
# Expose database runtime to controller for logging.
|
|
|
|
initializer "active_record.log_runtime" do |app|
|
|
|
|
require "active_record/railties/controller_runtime"
|
2010-03-29 20:08:08 -04:00
|
|
|
ActiveSupport.on_load(:action_controller) do
|
2010-03-07 09:24:30 -05:00
|
|
|
include ActiveRecord::Railties::ControllerRuntime
|
|
|
|
end
|
2009-12-30 22:24:00 -05:00
|
|
|
end
|
|
|
|
|
2010-04-20 07:44:49 -04:00
|
|
|
initializer "active_record.set_dispatch_hooks", :before => :set_clear_dependencies_hook do |app|
|
2010-12-19 19:00:01 -05:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
|
|
|
ActionDispatch::Reloader.to_cleanup do
|
|
|
|
ActiveRecord::Base.clear_reloadable_connections!
|
2011-02-03 18:35:34 -05:00
|
|
|
ActiveRecord::Base.clear_cache!
|
2010-03-07 09:24:30 -05:00
|
|
|
end
|
2010-01-14 13:53:07 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-04-20 07:44:49 -04:00
|
|
|
config.after_initialize do
|
2010-04-15 17:47:11 -04:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
|
|
|
instantiate_observers
|
|
|
|
|
2010-12-20 06:41:49 -05:00
|
|
|
ActionDispatch::Reloader.to_prepare do
|
2010-04-20 07:44:49 -04:00
|
|
|
ActiveRecord::Base.instantiate_observers
|
2010-01-14 13:53:07 -05:00
|
|
|
end
|
|
|
|
end
|
2009-12-23 17:55:12 -05:00
|
|
|
end
|
|
|
|
end
|
2009-12-30 22:24:00 -05:00
|
|
|
end
|