From b2cf2a761e29311a5d33c6ff2761e97931667d33 Mon Sep 17 00:00:00 2001 From: elijah Date: Sat, 27 Oct 2012 15:05:03 -0700 Subject: switch to using ya2yaml --- lib/core_ext/hash.rb | 39 --------------------------------------- 1 file changed, 39 deletions(-) (limited to 'lib/core_ext/hash.rb') diff --git a/lib/core_ext/hash.rb b/lib/core_ext/hash.rb index 15f72fc..7df33b2 100644 --- a/lib/core_ext/hash.rb +++ b/lib/core_ext/hash.rb @@ -1,44 +1,5 @@ -# -# -# We modify Hash to add a few features we need: -# -# * sorted output of keys to in yaml. -# * reference values either with hsh[key] or hsh.key -# * deep merge -# * select fields -# -# Because the json parsing code we use doesn't support setting a custom class, it is easier for us to just modify Hash. -# - -require 'yaml' - class Hash - ## - ## YAML - ## - - # - # make the type appear to be a normal Hash in yaml, even for subclasses. - # - def to_yaml_type - "!map" - end - - # - # just like Hash#to_yaml, but sorted - # - def to_yaml(opts = {}) - YAML::quick_emit(self, opts) do |out| - out.map(taguri, to_yaml_style) do |map| - keys.sort.each do |k| - v = self[k] - map.add(k, v) - end - end - end - end - ## ## CONVERTING ## -- cgit v1.2.3