From b839376a507e37a048ea2df53127ed0884310f60 Mon Sep 17 00:00:00 2001 From: elijah Date: Mon, 24 Nov 2014 22:45:27 -0800 Subject: moved core_ext and lib_ext under leap_cli --- lib/core_ext/yaml.rb | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 lib/core_ext/yaml.rb (limited to 'lib/core_ext/yaml.rb') diff --git a/lib/core_ext/yaml.rb b/lib/core_ext/yaml.rb deleted file mode 100644 index bb0b5c9..0000000 --- a/lib/core_ext/yaml.rb +++ /dev/null @@ -1,29 +0,0 @@ -class Object - # - # ya2yaml will output hash keys in sorted order, but it outputs arrays - # in natural order. This new method, sorted_ya2yaml(), is the same as - # ya2yaml but ensures that arrays are sorted. - # - # This is important so that the .yaml files don't change each time you recompile. - # - # see https://github.com/afunai/ya2yaml/blob/master/lib/ya2yaml.rb - # - def sorted_ya2yaml(options = {}) - # modify array - Array.class_eval do - alias_method :collect_without_sort, :collect - def collect(&block) - sorted = sort {|a,b| a.to_s <=> b.to_s} - sorted.collect_without_sort(&block) - end - end - - # generate yaml - yaml_str = self.ya2yaml(options) - - # restore array - Array.class_eval {alias_method :collect, :collect_without_sort} - - return yaml_str - end -end -- cgit v1.2.3