aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-01-01 21:02:19 +0100
committerJeremy Kemper <jeremy@bitsweat.net>2010-01-01 14:28:56 -0800
commitbddf0a6fd336bde7b74fcc5cbf9d3f29f23a1738 (patch)
tree0d42bcad620797223bdec39f9313e3f7b443ebe1 /activesupport
parentb7afaa08bf7bc3e9b34e97ea2353bc82f7deaba9 (diff)
downloadrails-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.rb1
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.