# File lib/ruote/util/deep.rb, line 45 def self.deep_delete(h, key) h.delete(key) h.each { |k, v| deep_delete(v, key) if v.is_a?(Hash) } end