Sha256: 00e1250238053c1062c364a151e87692564220dcfed9e5d0fe65eca1e7b73cdd

Contents?: true

Size: 1.6 KB

Versions: 114

Compression:

Stored size: 1.6 KB

Contents

module ActiveSupport
  # 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)
  @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

114 entries across 109 versions & 14 rubygems

Version Path
activesupport-4.2.11.3 lib/active_support/lazy_load_hooks.rb
activesupport-4.2.11.2 lib/active_support/lazy_load_hooks.rb
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/lazy_load_hooks.rb
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/lazy_load_hooks.rb
activesupport-4.2.11.1 lib/active_support/lazy_load_hooks.rb
activesupport-4.2.11 lib/active_support/lazy_load_hooks.rb
activesupport-4.2.10 lib/active_support/lazy_load_hooks.rb
activesupport-4.2.10.rc1 lib/active_support/lazy_load_hooks.rb
activesupport-4.2.9 lib/active_support/lazy_load_hooks.rb
activesupport-4.2.9.rc2 lib/active_support/lazy_load_hooks.rb
activesupport-4.2.9.rc1 lib/active_support/lazy_load_hooks.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activesupport-4.2.8/lib/active_support/lazy_load_hooks.rb
activesupport-4.2.8 lib/active_support/lazy_load_hooks.rb
activesupport-4.2.8.rc1 lib/active_support/lazy_load_hooks.rb
abaci-0.3.0 vendor/bundle/gems/activesupport-5.0.0/lib/active_support/lazy_load_hooks.rb
second_step-0.1.2 secondstep-notify-1.0.0-osx/lib/ruby/lib/ruby/gems/2.2.0/gems/activesupport-5.0.0.1/lib/active_support/lazy_load_hooks.rb
activesupport-5.0.0.1 lib/active_support/lazy_load_hooks.rb
activesupport-4.2.7.1 lib/active_support/lazy_load_hooks.rb
activesupport-4.2.7 lib/active_support/lazy_load_hooks.rb
activesupport-4.1.16 lib/active_support/lazy_load_hooks.rb