authlogic 3.4.3 → 3.4.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,9 +0,0 @@
1
- class Hash
2
- def each(&block)
3
- sorted_keys = keys.sort { |a, b| a.to_s <=> b.to_s }
4
- sorted_keys.each do |key|
5
- yield key, self[key]
6
- end
7
- self
8
- end
9
- end