Merge pull request #2539 from arunagw/delegate_expl

Delegate expl
This commit is contained in:
Jon Leighton
2011-08-15 13:32:52 -07:00
3 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,3 @@
require 'active_support/core_ext/module/delegation'
module ActiveSupport
# Notifications provides an instrumentation API for Ruby. To instrument an
# action in Ruby you just need to do:

View File

@@ -1,4 +1,5 @@
require 'abstract_unit'
require 'active_support/core_ext/module/delegation'
module Notifications
class TestCase < ActiveSupport::TestCase

View File

@@ -2,6 +2,7 @@ require 'rails/initializable'
require 'rails/configuration'
require 'active_support/inflector'
require 'active_support/core_ext/module/introspection'
require 'active_support/core_ext/module/delegation'
module Rails
# Railtie is the core of the Rails framework and provides several hooks to extend