From eb71e5cd67f4ce4da5ba331f93a8e36c65457b94 Mon Sep 17 00:00:00 2001 From: tenderlove Date: Sat, 3 Apr 2010 21:50:47 +0000 Subject: * lib/yaml: Moved to ext/syck/lib, Syck only uses Syck constant. * lib/yaml.rb: Added an engine manager for choosing YAML engine. * ext/syck/lib/syck/rubytypes.rb: squashed warnings when using Psych git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27212 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/yaml/store.rb | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 lib/yaml/store.rb (limited to 'lib/yaml/store.rb') diff --git a/lib/yaml/store.rb b/lib/yaml/store.rb deleted file mode 100644 index e3a8e9fcdd..0000000000 --- a/lib/yaml/store.rb +++ /dev/null @@ -1,43 +0,0 @@ -# -# YAML::Store -# -require 'yaml' -require 'pstore' - -class YAML::Store < PStore - def initialize( *o ) - @opt = YAML::DEFAULTS.dup - if String === o.first - super(o.shift) - end - if o.last.is_a? Hash - @opt.update(o.pop) - end - end - - def dump(table) - @table.to_yaml(@opt) - end - - def load(content) - table = YAML::load(content) - if table == false - {} - else - table - end - end - - def marshal_dump_supports_canonical_option? - false - end - - EMPTY_MARSHAL_DATA = {}.to_yaml - EMPTY_MARSHAL_CHECKSUM = Digest::MD5.digest(EMPTY_MARSHAL_DATA) - def empty_marshal_data - EMPTY_MARSHAL_DATA - end - def empty_marshal_checksum - EMPTY_MARSHAL_CHECKSUM - end -end -- cgit v1.2.3