mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -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:
parent
a11374ad5a
commit
f78a1948d2
1 changed files with 8 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue