Class Methods
::
lib/rss/2.0.rb
View on GitHub
# File tmp/rubies/ruby-2.4.10/lib/rss/2.0.rb, line 105
def initialize(*args)
if Utils.element_initialize_arguments?(args)
super
else
super()
self.isPermaLink = args[0]
self.content = args[1]
end
end
No documentation available
Instance Methods
lib/rss/2.0.rb
View on GitHub
# File tmp/rubies/ruby-2.4.10/lib/rss/2.0.rb, line 117
def PermaLink?
perma = _PermaLink?
perma or perma.nil?
end
No documentation available
lib/rss/2.0.rb
View on GitHub
# File tmp/rubies/ruby-2.4.10/lib/rss/2.0.rb, line 123
def maker_target(item)
item.guid
end
No documentation available
lib/rss/2.0.rb
View on GitHub
# File tmp/rubies/ruby-2.4.10/lib/rss/2.0.rb, line 127
def setup_maker_attributes(guid)
guid.isPermaLink = isPermaLink
guid.content = content
end
No documentation available