JamesChevalier/Little-Corner

View on GitHub
app/controllers/tumblr_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# Connects to Tumblr via RSS
class TumblrController < ApplicationController
  def index
    @feed = Rails.cache.fetch('tumblr_feed', expires_in: 12.hours, race_condition_ttl: 10) do
      Feedjira::Feed.fetch_and_parse(TUMBLR_FEED_URL)
    end
  end
end