Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save davidphasson/92095 to your computer and use it in GitHub Desktop.
Save davidphasson/92095 to your computer and use it in GitHub Desktop.
HTTP Basic Authentication
def authenticate
authenticate_or_request_with_http_basic do |username, password|
username == "joe" && password == "secret"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment