entry.content
is an instance of RSS::Atom::Feed::Entry::Content
:
feed.entry(1..10).first.content.class# => RSS::Atom::Feed::Entry::Content < RSS::Element
It has a bunch of public methods that could allow you to inspect the tag's content, including content
and to_s
. You can inspect it's public methods by looking up the documentation or by doing: entry.content.public_methods
.