class Atom::Collection
Public Instance Methods
title()
click to toggle source
# File lib/atomutil.rb, line 956 def title title = get(Namespace::ATOM_WITH_PREFIX, 'title') title.nil?? nil : title.text end
title=(value)
click to toggle source
# File lib/atomutil.rb, line 960 def title=(value) set(Namespace::ATOM_WITH_PREFIX, 'title', value) end