From 07bff0b535941c6a52555466d1e412f2b9305231 Mon Sep 17 00:00:00 2001 From: Florian Weber Date: Thu, 20 Oct 2005 09:24:18 +0000 Subject: [PATCH] Fixed misspell of "initialize_framework_settings" git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2693 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/lib/initializer.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/railties/lib/initializer.rb b/railties/lib/initializer.rb index 09eee28be0..2d72b55b8b 100644 --- a/railties/lib/initializer.rb +++ b/railties/lib/initializer.rb @@ -57,7 +57,7 @@ def initialize(configuration) # * #initialize_dependency_mechanism # * #initialize_breakpoints # * #initialize_whiny_nils - # * #intitialize_framework_settings + # * #initialize_framework_settings # * #load_environment # * #load_plugins # @@ -81,7 +81,7 @@ def process initialize_breakpoints initialize_whiny_nils - intitialize_framework_settings + initialize_framework_settings # Support for legacy configuration style where the environment # could overwrite anything set from the defaults/global through @@ -239,7 +239,7 @@ def initialize_whiny_nils # Initialize framework-specific settings for each of the loaded frameworks # (Configuration#frameworks). The available settings map to the accessors # on each of the corresponding Base classes. - def intitialize_framework_settings + def initialize_framework_settings configuration.frameworks.each do |framework| base_class = framework.to_s.camelize.constantize.const_get("Base")