ATOM (GData) loader / dumper

Methods
Public Class methods
dump(obj_or_enumerable, options = {})

Return an ATOM string corresponding to the Ruby object obj.

    # File lib/raw/util/atom.rb, line 15
15:   def self.dump(obj_or_enumerable, options = {})
16:     if obj_or_enumerable.is_a? Enumerable
17:       dump_enumerable(obj_or_enumerable, options)          
18:     else
19:       dump_object(obj_or_enumerable, options)
20:     end
21:   end
load(atom)
    # File lib/raw/util/atom.rb, line 9
 9:   def self.load(atom)
10:   end