mirror of
https://github.com/github/rails.git
synced 2026-01-29 16:28:09 -05:00
Don't load observers if Active Record isn't loaded.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6819 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -216,7 +216,9 @@ module Rails
|
||||
end
|
||||
|
||||
def load_observers
|
||||
ActiveRecord::Base.instantiate_observers
|
||||
if configuration.frameworks.include?(:active_record)
|
||||
ActiveRecord::Base.instantiate_observers
|
||||
end
|
||||
end
|
||||
|
||||
# This initialzation sets $KCODE to 'u' to enable the multibyte safe operations.
|
||||
@@ -231,9 +233,10 @@ module Rails
|
||||
# this sets the database configuration from Configuration#database_configuration
|
||||
# and then establishes the connection.
|
||||
def initialize_database
|
||||
return unless configuration.frameworks.include?(:active_record)
|
||||
ActiveRecord::Base.configurations = configuration.database_configuration
|
||||
ActiveRecord::Base.establish_connection
|
||||
if configuration.frameworks.include?(:active_record)
|
||||
ActiveRecord::Base.configurations = configuration.database_configuration
|
||||
ActiveRecord::Base.establish_connection
|
||||
end
|
||||
end
|
||||
|
||||
# If the +RAILS_DEFAULT_LOGGER+ constant is already set, this initialization
|
||||
@@ -690,4 +693,4 @@ class Rails::OrderedOptions < Array #:nodoc:
|
||||
self.each { |i| return i if i.first == key }
|
||||
return false
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user