Skip to content

Commit

Permalink
handle_unverified_callback -> handle_unverified_poundpay_callback
Browse files Browse the repository at this point in the history
  • Loading branch information
matin committed Feb 18, 2011
1 parent 1a71233 commit 1971bcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/poundpay/callback.rb
Expand Up @@ -26,10 +26,10 @@ class Base
protected
def verify_poundpay_callback
signature = request.headers['HTTP_X_POUNDPAY_SIGNATURE']
Poundpay.verified_callback?(signature, request.POST) || handle_unverified_callback
Poundpay.verified_callback?(signature, request.POST) || handle_unverified_poundpay_callback
end

def handle_unverified_callback
def handle_unverified_poundpay_callback
raise RoutingError.new('Not Found')
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/poundpay/version.rb
@@ -1,3 +1,3 @@
module Poundpay
VERSION = "0.1.2"
VERSION = "0.1.3"
end

0 comments on commit 1971bcd

Please sign in to comment.