diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-03-24 19:46:42 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-03-24 19:46:42 -0700 |
commit | f8dbd416b6aed10a619da1b1e7bd3140c7317c86 (patch) | |
tree | feef8787d8d0d3760a290f7bbd46085f3d26b23b /activesupport/lib | |
parent | 712baccef56974f754d77775d04924bfa52ca76e (diff) | |
download | rails-f8dbd416b6aed10a619da1b1e7bd3140c7317c86.tar.gz rails-f8dbd416b6aed10a619da1b1e7bd3140c7317c86.tar.bz2 rails-f8dbd416b6aed10a619da1b1e7bd3140c7317c86.zip |
Explicit dependency on class_inheritable_accessor
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/rescuable.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/rescuable.rb b/activesupport/lib/active_support/rescuable.rb index c27c4ddb1a..0abbe1cd2a 100644 --- a/activesupport/lib/active_support/rescuable.rb +++ b/activesupport/lib/active_support/rescuable.rb @@ -1,3 +1,5 @@ +require 'active_support/core_ext/class/inheritable_attributes' + module ActiveSupport # Rescuable module adds support for easier exception handling. module Rescuable |