paypal 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README +2 -2
  2. data/Rakefile +1 -1
  3. 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 = PaypalNotification.new(request.raw_post)
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
@@ -5,7 +5,7 @@ require 'rake/rdoctask'
5
5
  require 'rake/gempackagetask'
6
6
  require 'rake/contrib/rubyforgepublisher'
7
7
 
8
- PKG_VERSION = "0.5.0"
8
+ PKG_VERSION = "0.5.1"
9
9
  PKG_NAME = "paypal"
10
10
  PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
11
11
 
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.10
3
3
  specification_version: 1
4
4
  name: paypal
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.5.0
7
- date: 2005-06-08
6
+ version: 0.5.1
7
+ date: 2005-06-25
8
8
  summary: Paypal IPN integration for rails apps and similar
9
9
  require_paths:
10
10
  - lib