diff options
author | Xavier Noria <fxn@hashref.com> | 2010-01-01 21:02:19 +0100 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-01-01 14:28:56 -0800 |
commit | bddf0a6fd336bde7b74fcc5cbf9d3f29f23a1738 (patch) | |
tree | 0d42bcad620797223bdec39f9313e3f7b443ebe1 /activesupport | |
parent | b7afaa08bf7bc3e9b34e97ea2353bc82f7deaba9 (diff) | |
download | rails-bddf0a6fd336bde7b74fcc5cbf9d3f29f23a1738.tar.gz rails-bddf0a6fd336bde7b74fcc5cbf9d3f29f23a1738.tar.bz2 rails-bddf0a6fd336bde7b74fcc5cbf9d3f29f23a1738.zip |
rescuable.rb needs active_support/core_ext/string/inflections because it uses constantize
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/rescuable.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/rescuable.rb b/activesupport/lib/active_support/rescuable.rb index f0119f5994..9168dd518a 100644 --- a/activesupport/lib/active_support/rescuable.rb +++ b/activesupport/lib/active_support/rescuable.rb @@ -1,5 +1,6 @@ require 'active_support/core_ext/class/inheritable_attributes' require 'active_support/core_ext/proc' +require 'active_support/core_ext/string/inflections' module ActiveSupport # Rescuable module adds support for easier exception handling. |