In Files

  • yaml/store.rb

YAML::Store

Public Class Methods

new( *o ) click to toggle source
 
               # File yaml/store.rb, line 8
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
            

Public Instance Methods

dump(table) click to toggle source
 
               # File yaml/store.rb, line 18
def dump(table)
  @table.to_yaml(@opt)
end
            
empty_marshal_checksum() click to toggle source
 
               # File yaml/store.rb, line 40
def empty_marshal_checksum
  EMPTY_MARSHAL_CHECKSUM
end
            
empty_marshal_data() click to toggle source
 
               # File yaml/store.rb, line 37
def empty_marshal_data
  EMPTY_MARSHAL_DATA
end
            
load(content) click to toggle source
 
               # File yaml/store.rb, line 22
def load(content)
  table = YAML::load(content)
  if table == false
    {}
  else
    table
  end
end
            
marshal_dump_supports_canonical_option?() click to toggle source
 
               # File yaml/store.rb, line 31
def marshal_dump_supports_canonical_option?
  false
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.

blog comments powered by Disqus