Skip to content

Instantly share code, notes, and snippets.

@drnic
Created October 11, 2009 22:31
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drnic/207929 to your computer and use it in GitHub Desktop.
Save drnic/207929 to your computer and use it in GitHub Desktop.
# Temporary middleware for your APIs to immediately support a /v1/some/path.json prefix to
# all route calls.
#
# When you decide to freeze a current API and provide a /v2/ route then
# you will cease using this middleware and implement /v1/ and /v2/ routing as appropriate
# to your app.
#
# This middleware provides a placeholder until then so users can be told to use /v1/some/path routes
# immediately.
#
# Example:
# /resource.json -> /resource.json
# /v1/resource.json -> /resource.json
#
# MIT-License - Dr Nic Williams, http://drnicwilliams.com
#
module Rack
class ProbablyVersioned
def initialize(app)
@app = app
end
def call(env)
req = Rack::Request.new(env)
if req.path_info =~ /\/?v1(.+)/
req.path_info = $1
end
@app.call(env)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment