aboutsummaryrefslogtreecommitdiff
path: root/lib/leap_cli/config/object.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2012-10-27 15:05:03 -0700
committerelijah <elijah@riseup.net>2012-10-27 15:05:03 -0700
commitb2cf2a761e29311a5d33c6ff2761e97931667d33 (patch)
tree1ed350019280e1d73b2fb2f576546c3b4f393265 /lib/leap_cli/config/object.rb
parent20fd81ee91e44b3812d1aea0b45d0e7429b16d02 (diff)
downloadleap_cli-b2cf2a761e29311a5d33c6ff2761e97931667d33.tar.gz
leap_cli-b2cf2a761e29311a5d33c6ff2761e97931667d33.tar.bz2
switch to using ya2yaml
Diffstat (limited to 'lib/leap_cli/config/object.rb')
-rw-r--r--lib/leap_cli/config/object.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/leap_cli/config/object.rb b/lib/leap_cli/config/object.rb
index 2ef7fe8..4f993bb 100644
--- a/lib/leap_cli/config/object.rb
+++ b/lib/leap_cli/config/object.rb
@@ -1,6 +1,9 @@
require 'erb'
require 'json/pure' # pure ruby implementation is required for our sorted trick to work.
+$KCODE = 'UTF8'
+require 'ya2yaml' # pure ruby yaml
+
module LeapCli
module Config
#
@@ -28,6 +31,14 @@ module LeapCli
@node_list = Config::ObjectList.new
end
+ # We use pure ruby yaml exporter ya2yaml instead of SYCK or PSYCH because it
+ # allows us greater compatibility regardless of installed ruby version and
+ # greater control over how the yaml is exported.
+ #
+ def dump
+ self.ya2yaml(:syck_compatible => true)
+ end
+
##
## FETCHING VALUES
##