Skip to content

Instantly share code, notes, and snippets.

@jpemberthy
Created May 16, 2012 20:08
Show Gist options
  • Save jpemberthy/2713548 to your computer and use it in GitHub Desktop.
Save jpemberthy/2713548 to your computer and use it in GitHub Desktop.
# based on http://freelancing-gods.com/posts/versioning_your_ap_is
# curl -H "Accept: vnd.myapp+json; version=2"
class ApiVersion
def initialize(version)
@version = version
end
def matches?(request)
versioned_accept_header?(request) || @version == 1
end
private
def versioned_accept_header?(request)
accept = request.headers['Accept']
if accept
mime_type, version = accept.gsub(/\s/, "").split(";")
mime_type.match(/vnd\.myapp\+json/) && version == "version=#{@version}"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment