module Hashie # @author Jamie Winsor class Hash < ::Hash # Ensure we always symbolize keys when calling #to_hash def to_hash super.deep_symbolize_keys end end end