lib/oauth/consumer.rb in proletarian-oauth-0.3.2 vs lib/oauth/consumer.rb in proletarian-oauth-0.3.3
- old
+ new
@@ -10,10 +10,11 @@
# default paths on site. These are the same as the defaults set up by the generators
:request_token_path=>'/oauth/request_token',
:authorize_path=>'/oauth/authorize',
:access_token_path=>'/oauth/access_token',
+ :authenticate_path=>'/oauth/authenticate',
# How do we send the oauth values to the server see
# http://oauth.net/core/1.0/#consumer_req_param for more info
#
# Possible values:
@@ -155,13 +156,9 @@
def authorize_path
@options[:authorize_path]
end
- def authentication_path
- 'yabadadooo!!!!'
- end
-
def access_token_path
@options[:access_token_path]
end
# TODO this is ugly, rewrite