diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2007-12-29 19:43:07 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2007-12-29 19:43:07 +0000 |
commit | 20d29b379767713c64397a28105d1b74f0f36f5f (patch) | |
tree | 4f15147e5e0198d48981fb0835e33f583a92f3c5 /activesupport/lib | |
parent | 1bb208d7e5c7147ed12e1e2fd0cd24b5054eceac (diff) | |
download | rails-20d29b379767713c64397a28105d1b74f0f36f5f.tar.gz rails-20d29b379767713c64397a28105d1b74f0f36f5f.tar.bz2 rails-20d29b379767713c64397a28105d1b74f0f36f5f.zip |
Ruby 1.9 compat: introduce ActiveSupport::FrozenObjectError normalize TypeError vs RuntimeError handling. Closes #10645 [Frederick Cheung]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8510 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/exception.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/exception.rb b/activesupport/lib/active_support/core_ext/exception.rb index 14cd577066..57c8568334 100644 --- a/activesupport/lib/active_support/core_ext/exception.rb +++ b/activesupport/lib/active_support/core_ext/exception.rb @@ -1,3 +1,11 @@ +module ActiveSupport + if RUBY_VERSION >= '1.9' + FrozenObjectError = RuntimeError + else + FrozenObjectError = TypeError + end +end + class Exception # :nodoc: def clean_message Pathname.clean_within message |