提交 6d6ae084 编写于 作者: C Carl Lerche

Start moving the initializers into the application object

上级 d0965892
module Rails
class Application
extend Initializable
def self.inherited(child)
child.initializers = initializers.dup
end
def self.config
@config ||= Configuration.new
......@@ -9,21 +14,40 @@ def self.config=(config)
@config = config
end
def config
self.class.config
end
def routes
def self.routes
ActionController::Routing::Routes
end
def middleware
def self.middleware
config.middleware
end
def call(env)
def self.call(env)
@app ||= middleware.build(routes)
@app.call(env)
end
def self.new
initializers.run
self
end
initializer :initialize_rails do
Rails.initializers.run
end
# Set the <tt>$LOAD_PATH</tt> based on the value of
# Configuration#load_paths. Duplicates are removed.
initializer :set_load_path do
config.paths.add_to_load_path
$LOAD_PATH.uniq!
end
# Bail if boot.rb is outdated
initializer :freak_out_if_boot_rb_is_outdated do
unless defined?(Rails::BOOTSTRAP_VERSION)
abort %{Your config/boot.rb is outdated: Run "rake rails:update".}
end
end
end
end
......@@ -40,20 +40,20 @@ def preinitializer_path
class Boot
def run
load_initializer
set_load_paths
load_initializer
end
def set_load_paths
%w(
railties
railties/lib
activesupport/lib
actionmailer/lib
actionpack/lib
activemodel/lib
activerecord/lib
actionmailer/lib
activeresource/lib
actionwebservice/lib
activesupport/lib
railties/lib
railties
).reverse_each do |path|
path = "#{framework_root_path}/#{path}"
$LOAD_PATH.unshift(path) if File.directory?(path)
......@@ -68,7 +68,6 @@ def framework_root_path
class VendorBoot < Boot
def load_initializer
$:.unshift("#{framework_root_path}/railties/lib")
require "rails"
install_gem_spec_stubs
Rails::GemDependency.add_frozen_gem_path
......
module Rails
module Initializable
# A collection of initializers
class Collection < ActiveSupport::OrderedHash
# def initialize_copy(other)
# super
# each do |key, value|
# self[key] = value.dup
# end
# end
def run
each do |key, initializer|
initializer.run
end
self
end
end
class Initializer
attr_reader :name, :options, :block
def initialize(name, options = {}, &block)
@name, @options, @block = name, options, block
end
def run
return if @already_ran
@block.call
@already_ran = true
end
end
def initializer(name, options = {}, &block)
initializers[name] = Initializer.new(name, options, &block)
end
def initializers
@initializers ||= Collection.new
end
def initializers=(initializers)
@initializers = initializers
end
end
extend Initializable
# Check for valid Ruby version (1.8.2 or 1.8.4 or higher). This is done in an
# external file, so we can use it from the `rails` program as well without duplication.
initializer :check_ruby_version do
require 'rails/ruby_version_check'
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+
# on ActionController::Base.
#
# For Ruby 1.9, UTF-8 is the default internal and external encoding.
initializer :initialize_encoding do
if RUBY_VERSION < '1.9'
$KCODE='u'
else
Encoding.default_external = Encoding::UTF_8
end
end
end
\ No newline at end of file
require "pathname"
require 'active_support/ordered_hash'
require 'rails/initializable'
require 'rails/application'
require 'rails/railties_path'
require 'rails/version'
......@@ -12,10 +14,6 @@
RAILS_ENV = (ENV['RAILS_ENV'] || 'development').dup unless defined?(RAILS_ENV)
module Rails
# Sanity check to make sure this file is only loaded once
# TODO: Get to the point where this can be removed.
raise "It looks like initializer.rb was required twice" if defined?(Initializer)
class Initializer
class Error < StandardError ; end
......@@ -110,6 +108,8 @@ def self.run(initializer = nil, config = nil)
default.run(initializer)
else
Rails.application = Class.new(Application)
# Trigger the initializer
Rails.application.new
yield Rails.application.config if block_given?
default.config = Rails.application.config
default.run
......@@ -117,26 +117,6 @@ def self.run(initializer = nil, config = nil)
end
end
# Check for valid Ruby version (1.8.2 or 1.8.4 or higher). This is done in an
# external file, so we can use it from the `rails` program as well without duplication.
Initializer.default.add :check_ruby_version do
require 'rails/ruby_version_check'
end
# Bail if boot.rb is outdated
Initializer.default.add :freak_out_if_boot_rb_is_outdated do
unless defined?(Rails::BOOTSTRAP_VERSION)
abort %{Your config/boot.rb is outdated: Run "rake rails:update".}
end
end
# Set the <tt>$LOAD_PATH</tt> based on the value of
# Configuration#load_paths. Duplicates are removed.
Initializer.default.add :set_load_path do
configuration.paths.add_to_load_path
$LOAD_PATH.uniq!
end
# Requires all frameworks specified by the Configuration#frameworks
# list. By default, all frameworks (Active Record, Active Support,
# Action Pack, Action Mailer, and Active Resource) are loaded.
......@@ -230,20 +210,6 @@ def self.run(initializer = nil, config = nil)
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+
# on ActionController::Base.
#
# For Ruby 1.9, UTF-8 is the default internal and external encoding.
Initializer.default.add :initialize_encoding do
if RUBY_VERSION < '1.9'
$KCODE='u'
else
Encoding.default_external = Encoding::UTF_8
end
end
# This initialization routine does nothing unless <tt>:active_record</tt>
# is one of the frameworks to load (Configuration#frameworks). If it is,
# this sets the database configuration from Configuration#database_configuration
......
require "isolation/abstract_unit"
module ApplicationTests
class InitializerTest < Test::Unit::TestCase
include ActiveSupport::Testing::Isolation
def setup
build_app
boot_rails
end
test "initializers only ever run once" do
class MyApp < Rails::Application
initializer :counter do
$counter += 1
end
end
$counter = 0
MyApp.initializers[:counter].run
MyApp.initializers[:counter].run
assert_equal 1, $counter
end
end
end
\ No newline at end of file
require "isolation/abstract_unit"
module ApplicationTests
class InitializerTest < Test::Unit::TestCase
include ActiveSupport::Testing::Isolation
def setup
build_app
boot_rails
end
test "initializing an application initializes rails" do
class MyApp < Rails::Application ; end
if RUBY_VERSION < '1.9'
$KCODE = ''
MyApp.new
assert_equal 'UTF8', $KCODE
else
Encoding.default_external = Encoding::US_ASCII
MyApp.new
assert_equal Encoding::UTF_8, Encoding.default_external
end
end
test "initializing an application adds the application paths to the load path" do
class MyApp < Rails::Application ; end
MyApp.new
assert $:.include?("#{app_path}/app/models")
end
end
end
\ No newline at end of file
......@@ -40,14 +40,14 @@ def setup
test "Rails.application is available after config.ru has been racked up" do
rackup
assert Rails.application.new.is_a?(Rails::Application)
assert Rails.application.new < Rails::Application
end
# Passenger still uses AC::Dispatcher, so we need to
# keep it working for now
test "deprecated ActionController::Dispatcher still works" do
rackup
assert ActionController::Dispatcher.new.is_a?(Rails::Application)
assert ActionController::Dispatcher.new < Rails::Application
end
test "the config object is available on the application object" do
......
require "isolation/abstract_unit"
module InitializerTests
class InitializeI18nTest < Test::Unit::TestCase
include ActiveSupport::Testing::Isolation
def setup
build_app
boot_rails
end
# test_config_defaults_and_settings_should_be_added_to_i18n_defaults
test "i18n config defaults and settings should be added to i18n defaults" do
Rails::Initializer.run do |c|
c.i18n.load_path << "my/other/locale.yml"
end
#{RAILS_FRAMEWORK_ROOT}/railties/test/fixtures/plugins/engines/engine/config/locales/en.yml
assert_equal %W(
#{RAILS_FRAMEWORK_ROOT}/activesupport/lib/active_support/locale/en.yml
#{RAILS_FRAMEWORK_ROOT}/activemodel/lib/active_model/locale/en.yml
#{RAILS_FRAMEWORK_ROOT}/activerecord/lib/active_record/locale/en.yml
#{RAILS_FRAMEWORK_ROOT}/actionpack/lib/action_view/locale/en.yml
#{RAILS_FRAMEWORK_ROOT}/railties/tmp/app/config/locales/en.yml
my/other/locale.yml
), I18n.load_path
end
test "i18n finds locale files in engines" do
app_file "vendor/plugins/engine/init.rb", ""
app_file "vendor/plugins/engine/app/models/hellos.rb", "class Hello ; end"
app_file "vendor/plugins/engine/lib/omg.rb", "puts 'omg'"
app_file "vendor/plugins/engine/config/locales/en.yml", "hello:"
Rails::Initializer.run do |c|
c.i18n.load_path << "my/other/locale.yml"
end
#{RAILS_FRAMEWORK_ROOT}/railties/test/fixtures/plugins/engines/engine/config/locales/en.yml
assert_equal %W(
#{RAILS_FRAMEWORK_ROOT}/activesupport/lib/active_support/locale/en.yml
#{RAILS_FRAMEWORK_ROOT}/activemodel/lib/active_model/locale/en.yml
#{RAILS_FRAMEWORK_ROOT}/activerecord/lib/active_record/locale/en.yml
#{RAILS_FRAMEWORK_ROOT}/actionpack/lib/action_view/locale/en.yml
#{app_path}/config/locales/en.yml
my/other/locale.yml
#{app_path}/vendor/plugins/engine/config/locales/en.yml
), I18n.load_path
end
end
end
\ No newline at end of file
......@@ -393,24 +393,6 @@ def test_config_defaults_should_be_added_with_config_settings
assert_equal [ "my/test/locale.yml", "my/other/locale.yml" ], config.i18n.load_path
end
def test_config_defaults_and_settings_should_be_added_to_i18n_defaults
File.stubs(:exist?).returns(true)
Dir.stubs(:[]).returns([ "my/test/locale.yml" ])
config = Rails::Configuration.new
config.i18n.load_path << "my/other/locale.yml"
Rails::Initializer.run(:initialize_i18n, config)
assert_equal [
File.expand_path(File.dirname(__FILE__) + "/../../activesupport/lib/active_support/locale/en.yml"),
File.expand_path(File.dirname(__FILE__) + "/../../actionpack/lib/action_view/locale/en.yml"),
File.expand_path(File.dirname(__FILE__) + "/../../activemodel/lib/active_model/locale/en.yml"),
File.expand_path(File.dirname(__FILE__) + "/../../activerecord/lib/active_record/locale/en.yml"),
File.expand_path(File.dirname(__FILE__) + "/../../railties/test/fixtures/plugins/engines/engine/config/locales/en.yml"),
"my/test/locale.yml",
"my/other/locale.yml" ], I18n.load_path.collect { |path| path =~ /\.\./ ? File.expand_path(path) : path }
end
def test_setting_another_default_locale
config = Rails::Configuration.new
config.i18n.default_locale = :de
......
......@@ -91,7 +91,8 @@ def build_app(options = {})
end
def app_file(path, contents)
File.open(app_path(path), 'w') do |f|
FileUtils.mkdir_p File.dirname("#{app_path}/#{path}")
File.open("#{app_path}/#{path}", 'w') do |f|
f.puts contents
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册