From c9cc36bde9f779c917171e7c378285b57f748414 Mon Sep 17 00:00:00 2001 From: Andrew Radev Date: Fri, 27 May 2011 14:04:39 +0300 Subject: Fixes minor ruby 1.8 inconsistency ActiveSupport::OrderedHash did not behave identically to Hash when given a block with a splat. --- activesupport/lib/active_support/ordered_hash.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'activesupport/lib/active_support') diff --git a/activesupport/lib/active_support/ordered_hash.rb b/activesupport/lib/active_support/ordered_hash.rb index 762a64a881..68f4bd66da 100644 --- a/activesupport/lib/active_support/ordered_hash.rb +++ b/activesupport/lib/active_support/ordered_hash.rb @@ -158,7 +158,11 @@ module ActiveSupport self end - alias_method :each_pair, :each + def each_pair + return to_enum(:each_pair) unless block_given? + @keys.each {|key| yield key, self[key]} + self + end alias_method :select, :find_all -- cgit v1.2.3