diff options
author | snusnu <gamsnjaga@gmail.com> | 2010-01-28 02:03:05 +0100 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-01-27 18:13:06 -0800 |
commit | 016f15dc69b876c62606d267dcbb8124d0ad02a5 (patch) | |
tree | ab18e4171df93e675a13bbefef500b56daf63b04 | |
parent | f2dd3578c08dda24093a40fe054120a5c4967f66 (diff) | |
download | rails-016f15dc69b876c62606d267dcbb8124d0ad02a5.tar.gz rails-016f15dc69b876c62606d267dcbb8124d0ad02a5.tar.bz2 rails-016f15dc69b876c62606d267dcbb8124d0ad02a5.zip |
active_support/ordered_hash now requires yaml
-rw-r--r-- | activesupport/lib/active_support/ordered_hash.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/ordered_hash.rb b/activesupport/lib/active_support/ordered_hash.rb index 6723805d32..57ead35827 100644 --- a/activesupport/lib/active_support/ordered_hash.rb +++ b/activesupport/lib/active_support/ordered_hash.rb @@ -1,3 +1,5 @@ +require 'yaml' + # OrderedHash is namespaced to prevent conflicts with other implementations module ActiveSupport # Hash is ordered in Ruby 1.9! |