Class: Hash

Inherits:
Object
  • Object
show all
Defined in:
lib/nwn/yaml.rb

Instance Method Summary collapse

Instance Method Details

#to_yaml(opts = {}) ⇒ Object

Replacing the to_yaml function so it’ll serialize hashes sorted (by their keys) Original function is in /usr/lib/ruby/1.8/yaml/rubytypes.rb



6
7
8
9
10
11
12
13
14
# File 'lib/nwn/yaml.rb', line 6

def to_yaml( opts = {} )
  YAML::quick_emit( object_id, opts ) do |out|
    out.map( taguri, to_yaml_style ) do |map|
      sort.each do |k, v|
        map.add( k, v )
      end
    end
  end
end