class OPML::Outline::Meta
Public Class Methods
new( h )
click to toggle source
# File lib/opmlparser.rb, line 101 def initialize( h ) @h = h end
Public Instance Methods
[](key)
click to toggle source
# File lib/opmlparser.rb, line 105 def [](key) @h[key]; end
dateCreated()
click to toggle source
# File lib/opmlparser.rb, line 108 def dateCreated() @h['dateCreated' ]; end
Also aliased as: date_created, created
dateModified()
click to toggle source
# File lib/opmlparser.rb, line 112 def dateModified() @h['dateModified']; end
Also aliased as: date_modified, modified
ownerEmail()
click to toggle source
# File lib/opmlparser.rb, line 119 def ownerEmail() @h['ownerEmail']; end
Also aliased as: owner_email
ownerId()
click to toggle source
# File lib/opmlparser.rb, line 122 def ownerId() @h['ownerId']; end
Also aliased as: owner_id
ownerName()
click to toggle source
# File lib/opmlparser.rb, line 116 def ownerName() @h['ownerName']; end
Also aliased as: owner_name
title()
click to toggle source
# File lib/opmlparser.rb, line 107 def title() @h['title']; end