Skip to content

Instantly share code, notes, and snippets.

@j3ck
Created December 27, 2021 19:28
Show Gist options
  • Save j3ck/9e55bc8c4bba137f0abe3c5fb0913666 to your computer and use it in GitHub Desktop.
Save j3ck/9e55bc8c4bba137f0abe3c5fb0913666 to your computer and use it in GitHub Desktop.
#routes.rb
Rails.application.routes.draw do
get 'fresh_updates', to: 'home#fresh_updates', constraints: { format: :xml }
end
#home_controller.rb
class HomeController < ApplicationController
def fresh_updates
updater = Updater.new
updater.call # updates fresh_updates file
if updater.success?
respond_to do |format|
format.xml { render file: 'public/fresh_updates.xml', layout: false }
end
else
render status: :not_found
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment