Search code examples
ruby-on-railsfeedtumblrrefinerycms

RefineryCMS - Import tumblr feed


I need to import all the posts from tumblr to refinerycms blog. How should I go about it?

Thanks,


Solution

  • You can use the FeedJira gem. The gem allows you to import an RSS feed. Watch this railscast for more details.

    Feedjira::Feed.fetch_and_parse("http://www.foozzz.com/rss").entries.each do |entry|
      # update refinery blog here
      Refinery::Blogs::Post.create(:title => entry.title, ....)
    end