paypal 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README +2 -2
- data/Rakefile +1 -1
- metadata +2 -2
data/README
CHANGED
@@ -43,7 +43,7 @@ sandbox account to use while the application is running in development mode.
|
|
43
43
|
|
44
44
|
class BackendController < ApplicationController
|
45
45
|
def paypal_ipn
|
46
|
-
notify =
|
46
|
+
notify = Paypal::Notification.new(request.raw_post)
|
47
47
|
|
48
48
|
order = Order.find(notify.item_id)
|
49
49
|
|
@@ -66,7 +66,7 @@ sandbox account to use while the application is running in development mode.
|
|
66
66
|
end
|
67
67
|
end
|
68
68
|
|
69
|
-
render :nothing
|
69
|
+
render :nothing => true
|
70
70
|
end
|
71
71
|
end
|
72
72
|
|
data/Rakefile
CHANGED
metadata
CHANGED