lib/depth/complex_hash.rb in depth-0.0.1 vs lib/depth/complex_hash.rb in depth-0.0.2
- old
+ new
@@ -1,9 +1,10 @@
module Depth
class ComplexHash
include Depth::Actions
- include Depth::Enumerable
+ include Depth::Enumeration::Enumerable
attr_reader :base
+ alias_method :to_h, :base
def initialize(base = {})
@base = base
end
end
end