diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-04-10 14:10:19 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-04-10 14:10:19 +0000 |
commit | 1e8ec51e8fafc27f170241f93868528dd22861d4 (patch) | |
tree | f5a3e3367988621afdbfdfeb9d24a8e5b812b8d7 /lib/yaml/store.rb | |
parent | df033c0632fb59f6120d8d03dbcd371bf39a16ab (diff) |
* lib/pstore.rb (PStore::dump, PStore::load): allow subclass
overriding. [ruby-dev:34305]
* lib/yaml/store.rb (YAML::Store::marshal_dump_supports_canonical_option?):
add a method to support faster PStore.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15964 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/yaml/store.rb')
-rw-r--r-- | lib/yaml/store.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/yaml/store.rb b/lib/yaml/store.rb index 2ffa9554b9..4f0384cc5e 100644 --- a/lib/yaml/store.rb +++ b/lib/yaml/store.rb @@ -23,7 +23,7 @@ class YAML::Store < PStore YAML::load(content) end - def load_file(file) - YAML::load(file) + def marshal_dump_supports_canonical_option? + false end end |