Instance Methods
lib/rss/maker/0.9.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/maker/0.9.rb, line 456
def required_variable_names
%w(title description name link)
end
No documentation available
lib/rss/maker/0.9.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/rss/maker/0.9.rb, line 445
def to_feed(rss)
textInput = Rss::Channel::TextInput.new
set = setup_values(textInput)
if set
rss.channel.textInput = textInput
set_parent(textInput, rss.channel)
setup_other_elements(rss, textInput)
end
end
No documentation available