Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

General Discussion

Rafael Rocha
Rafael Rocha
9,583 Points

Polling data form XML without user interaction

Hi Guys,

I'm doing an app that time to time need to refresh my model with a third party xml content.

I'm using Nokogiri to parse the XML, but as soon as I need to get the content time to time without the user interaction, where should I call my method auto_update_from_feed ??

    def self.auto_update_from_feed(delay_interval = 1.minutes)
#fake url
        file = open("http://www.sample.com/sample.xml")
        xml = Nokogiri::XML(file)


        loop do
            sleep delay_interval.to_i
            add_entries(xml)
        end
    end

Thanks