diff options
author | Daniel Harrington <me@rubiii.com> | 2013-12-02 19:52:01 +0100 |
---|---|---|
committer | Daniel Harrington <me@rubiii.com> | 2013-12-02 19:52:01 +0100 |
commit | f046e8a70fe526ebcea88ea1d084eb4b634b653b (patch) | |
tree | 72538556314a2cf8372e81477850ab1b744f88e1 /activesupport/lib | |
parent | 23aa94a7b2d51536baa5eb91a8cd50cdd6dfa99e (diff) | |
download | rails-f046e8a70fe526ebcea88ea1d084eb4b634b653b.tar.gz rails-f046e8a70fe526ebcea88ea1d084eb4b634b653b.tar.bz2 rails-f046e8a70fe526ebcea88ea1d084eb4b634b653b.zip |
added missing require
we’re using .delegate and should require it.
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/tagged_logging.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/tagged_logging.rb b/activesupport/lib/active_support/tagged_logging.rb index 18bc919734..d5c2222d2e 100644 --- a/activesupport/lib/active_support/tagged_logging.rb +++ b/activesupport/lib/active_support/tagged_logging.rb @@ -1,3 +1,4 @@ +require 'active_support/core_ext/module/delegation' require 'active_support/core_ext/object/blank' require 'logger' require 'active_support/logger' |