Method: RSS::Rss::Channel::Item::Guid#initialize

Defined in:
lib/rss/2.0.rb

#initialize(*args) ⇒ Guid

Returns a new instance of Guid.



105
106
107
108
109
110
111
112
113
# File '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