Sha256: afebbd66e8e9b6f200684a4f9df77c10fa05f7bab28354a81a90fbb92b3f3427

Contents?: true

Size: 1.55 KB

Versions: 186

Compression:

Stored size: 1.55 KB

Contents

# lazy_load_hooks allows rails to lazily load a lot of components and thus making the app boot faster. Because of
# this feature now there is no need to require <tt>ActiveRecord::Base</tt> at boot time purely to apply configuration. Instead
# a hook is registered that applies configuration once <tt>ActiveRecord::Base</tt> is loaded. Here <tt>ActiveRecord::Base</tt> is used
# as example but this feature can be applied elsewhere too.
#
# Here is an example where +on_load+ method is called to register a hook.
#
#   initializer "active_record.initialize_timezone" do
#     ActiveSupport.on_load(:active_record) do
#       self.time_zone_aware_attributes = true
#       self.default_timezone = :utc
#     end
#   end
#
# When the entirety of +activerecord/lib/active_record/base.rb+ has been evaluated then +run_load_hooks+ is invoked.
# The very last line of +activerecord/lib/active_record/base.rb+ is:
#
#   ActiveSupport.run_load_hooks(:active_record, ActiveRecord::Base)
#
module ActiveSupport
  @load_hooks = Hash.new { |h,k| h[k] = [] }
  @loaded = Hash.new { |h,k| h[k] = [] }

  def self.on_load(name, options = {}, &block)
    @loaded[name].each do |base|
      execute_hook(base, options, block)
    end

    @load_hooks[name] << [block, options]
  end

  def self.execute_hook(base, options, block)
    if options[:yield]
      block.call(base)
    else
      base.instance_eval(&block)
    end
  end

  def self.run_load_hooks(name, base = Object)
    @loaded[name] << base
    @load_hooks[name].each do |hook, options|
      execute_hook(base, options, hook)
    end
  end
end

Version data entries

186 entries across 150 versions & 24 rubygems

Version Path
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activesupport-3.2.22.5/lib/active_support/lazy_load_hooks.rb
activesupport-3.2.22.5 lib/active_support/lazy_load_hooks.rb
activesupport-3.2.22.4 lib/active_support/lazy_load_hooks.rb
activesupport-3.2.22.3 lib/active_support/lazy_load_hooks.rb
activesupport-3.2.22.2 lib/active_support/lazy_load_hooks.rb
activesupport-3.2.22.1 lib/active_support/lazy_load_hooks.rb
classiccms-0.7.5 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/lazy_load_hooks.rb
classiccms-0.7.4 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/lazy_load_hooks.rb
classiccms-0.7.3 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/lazy_load_hooks.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/lazy_load_hooks.rb
activesupport-3.2.22 lib/active_support/lazy_load_hooks.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.12/lib/active_support/lazy_load_hooks.rb
activesupport-3.2.21 lib/active_support/lazy_load_hooks.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/lazy_load_hooks.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/lazy_load_hooks.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/lazy_load_hooks.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/lazy_load_hooks.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/lazy_load_hooks.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/lazy_load_hooks.rb
activesupport-3.2.20 lib/active_support/lazy_load_hooks.rb