Sha256: 8c1b2149b16f83b82a2fb81ff86980eae44be88b10b3454b345dd4997a1aaf42

Contents?: true

Size: 1.53 KB

Versions: 41

Compression:

Stored size: 1.53 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 = {}

  def self.on_load(name, options = {}, &block)
    if base = @loaded[name]
      execute_hook(base, options, block)
    else
      @load_hooks[name] << [block, options]
    end
  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

41 entries across 41 versions & 3 rubygems

Version Path
social_url_stats-0.0.1 vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/lazy_load_hooks.rb
activesupport-3.0.20 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.19 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.18 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.17 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.16 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.15 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.14 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.13 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.13.rc1 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.12 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.12.rc1 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.11 lib/active_support/lazy_load_hooks.rb
messagebus_ruby_api-0.4.7 spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/lazy_load_hooks.rb
messagebus_ruby_api-0.4.4 spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/lazy_load_hooks.rb
activesupport-3.0.10 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.10.rc1 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.9 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.9.rc5 lib/active_support/lazy_load_hooks.rb
activesupport-3.0.9.rc4 lib/active_support/lazy_load_hooks.rb