Skip to content

Instantly share code, notes, and snippets.

@kml
Created December 13, 2016 23:14
Show Gist options
  • Save kml/210453dbda6e01bd3ec59a80d75b6957 to your computer and use it in GitHub Desktop.
Save kml/210453dbda6e01bd3ec59a80d75b6957 to your computer and use it in GitHub Desktop.
/revision
# config/routes.rb
REVISION = Rails.root.join('REVISION').exist? ? Rails.root.join('REVISION').read.chomp.strip : nil
Rails.application.routes.draw do
get 'revision' => proc { |_env| [200, {'Content-Type' => 'text/plain'}, [REVISION.to_s]] }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment