diff options
author | Michael Koziarski <michael@koziarski.com> | 2009-10-15 10:42:18 +1300 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2009-10-15 10:42:18 +1300 |
commit | d39f397dc6726b27cc2c60a6e24e15cb1944ec58 (patch) | |
tree | a5755b63a15a0fadfcf0c759ae6de6c895d29f15 /activesupport | |
parent | 945d999aadc9df41487e675fa0a863396cb54e31 (diff) | |
download | rails-d39f397dc6726b27cc2c60a6e24e15cb1944ec58.tar.gz rails-d39f397dc6726b27cc2c60a6e24e15cb1944ec58.tar.bz2 rails-d39f397dc6726b27cc2c60a6e24e15cb1944ec58.zip |
Missing requires
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/callbacks.rb | 1 | ||||
-rw-r--r-- | activesupport/lib/active_support/testing/setup_and_teardown.rb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb index 67e9b0103f..0856e4f568 100644 --- a/activesupport/lib/active_support/callbacks.rb +++ b/activesupport/lib/active_support/callbacks.rb @@ -1,6 +1,7 @@ require 'active_support/core_ext/array/wrap' require 'active_support/core_ext/class/inheritable_attributes' require 'active_support/core_ext/kernel/reporting' +require 'active_support/concern' module ActiveSupport # Callbacks are hooks into the lifecycle of an object that allow you to trigger logic diff --git a/activesupport/lib/active_support/testing/setup_and_teardown.rb b/activesupport/lib/active_support/testing/setup_and_teardown.rb index b738ef334c..137e2629ff 100644 --- a/activesupport/lib/active_support/testing/setup_and_teardown.rb +++ b/activesupport/lib/active_support/testing/setup_and_teardown.rb @@ -1,3 +1,4 @@ +require 'active_support/callbacks' module ActiveSupport module Testing module SetupAndTeardown |