Skip to content

Commit

Permalink
Preload application classes. Uses same strategy as phusion passenger.
Browse files Browse the repository at this point in the history
  • Loading branch information
josh committed Jul 21, 2008
1 parent 0f43de6 commit 3bd34b6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions railties/lib/initializer.rb
Expand Up @@ -168,6 +168,9 @@ def process
# Observers are loaded after plugins in case Observers or observed models are modified by plugins.
load_observers

# load application classes
load_application_classes

# Flag initialized
Rails.initialized = true
end
Expand Down Expand Up @@ -330,6 +333,14 @@ def load_observers
end
end

def load_application_classes
require_dependency 'application'

Dir.glob('app/{models,controllers,helpers}/*.rb').each do |file|
require_dependency file
end
end

# For Ruby 1.8, this initialization sets $KCODE to 'u' to enable the
# multibyte safe operations. Plugin authors supporting other encodings
# should override this behaviour and set the relevant +default_charset+
Expand Down

0 comments on commit 3bd34b6

Please sign in to comment.