From: bwv549 on 2 Oct 2009 00:16 the orderedhash gem does a really nice job at allowing you to print yaml with ordered keys. # quick example to show what I'm talking about require 'orderedhash' h = OrderedHash.new h[3] = 8 h[9] = 10 h.to_yaml # will give: "---\n3: 8\n9:10" every time I need to be able to also read in YAML while preserving the key order. Any ideas on how to do this (besides using 1.9)?
|
Pages: 1 Prev: ANN: Sequel 3.5.0 Released Next: Webrick global authentication |