class Feed

Public Instance Methods

jira() click to toggle source
# File lib/feed.rb, line 5
def jira
   url = ARGV[1]
   xml = HTTParty.get(url).body
   Feedjira.parse(xml).entries.each do |entry|
   puts "#{entry.title}"
  end
end