Namespace
Methods
E
O
R
V
Class Public methods
execute_hook(base, options, block)
# File activesupport/lib/active_support/lazy_load_hooks.rb, line 34
def self.execute_hook(base, options, block)
  if options[:yield]
    block.call(base)
  else
    base.instance_eval(&block)
  end
end
on_load(name, options = {}, &block)
# File activesupport/lib/active_support/lazy_load_hooks.rb, line 26
def self.on_load(name, options = {}, &block)
  @loaded[name].each do |base|
    execute_hook(base, options, block)
  end

  @load_hooks[name] << [block, options]
end
run_load_hooks(name, base = Object)
# File activesupport/lib/active_support/lazy_load_hooks.rb, line 42
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
version()

Returns the version of the currently loaded ActiveSupport as a Gem::Version

# File activesupport/lib/active_support/version.rb, line 3
def self.version
  Gem::Version.new "4.0.13"
end