paypal-express 0.5.4 → 0.5.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3ac817d3cb8d282bb9ecc3d8a64e62e9976d2135
4
- data.tar.gz: 463777d1aa12e5717ab57d4cd6b4d40912fb7b0e
3
+ metadata.gz: 0a1efbcece6ca156968e202296852124d5671a31
4
+ data.tar.gz: 93d1c16722894988ab929e949a6feda827fd6c92
5
5
  SHA512:
6
- metadata.gz: ccc1b0fd9724526454f80e0c931bbe55574ee2685eadfd54bab567036c86ade49957b2055e27a74ad1f42811bf490162ce21b07340750b5611778a7d6ec178a6
7
- data.tar.gz: 83646fdb5830786793849dc3ff12086c125371ac18fac44ea61540c1a22cb372136340e070d3b657e42fe092bc49ae1120362f47dbeb0a7485977de2dff92151
6
+ metadata.gz: 746fa1cd4af53dc83389e1cafb365efaa6e54ca8bb9a360cab880252caccc2721018aaa4f1f8c9e2159b8c7acf55cacdbb10de7189331ef3b6f07a9726fccda9
7
+ data.tar.gz: f68a8061a47c18598fbde8958ff71a8ce30705a15ea6ea919a8f90dfa1758532482702cce005910c127f14c6bfa638c63a21f9751a4336dfa3ff5dc449c0589c
data/Gemfile.lock ADDED
@@ -0,0 +1,59 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ paypal-express (0.5.4)
5
+ activesupport (>= 2.3)
6
+ attr_required (>= 0.0.5)
7
+ restclient_with_cert
8
+
9
+ GEM
10
+ remote: http://rubygems.org/
11
+ specs:
12
+ activesupport (4.0.2)
13
+ i18n (~> 0.6, >= 0.6.4)
14
+ minitest (~> 4.2)
15
+ multi_json (~> 1.3)
16
+ thread_safe (~> 0.1)
17
+ tzinfo (~> 0.3.37)
18
+ atomic (1.1.14)
19
+ attr_required (0.0.5)
20
+ configatron (2.13.0)
21
+ yamler (>= 0.1.0)
22
+ cover_me (1.2.0)
23
+ configatron
24
+ hashie
25
+ diff-lcs (1.2.5)
26
+ fakeweb (1.3.0)
27
+ hashie (2.0.5)
28
+ i18n (0.6.9)
29
+ mime-types (2.0)
30
+ minitest (4.7.5)
31
+ multi_json (1.8.2)
32
+ rake (10.1.0)
33
+ rest-client (1.6.7)
34
+ mime-types (>= 1.16)
35
+ restclient_with_cert (0.0.8)
36
+ rest-client (>= 1.6)
37
+ rspec (2.14.1)
38
+ rspec-core (~> 2.14.0)
39
+ rspec-expectations (~> 2.14.0)
40
+ rspec-mocks (~> 2.14.0)
41
+ rspec-core (2.14.7)
42
+ rspec-expectations (2.14.4)
43
+ diff-lcs (>= 1.1.3, < 2.0)
44
+ rspec-mocks (2.14.4)
45
+ thread_safe (0.1.3)
46
+ atomic
47
+ tzinfo (0.3.38)
48
+ yamler (0.1.0)
49
+
50
+ PLATFORMS
51
+ ruby
52
+
53
+ DEPENDENCIES
54
+ cover_me (>= 1.2.0)
55
+ fakeweb (>= 1.3.0)
56
+ jruby-openssl (>= 0.7)
57
+ paypal-express!
58
+ rake (>= 0.8)
59
+ rspec (>= 2)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.4
1
+ 0.5.5
@@ -4,7 +4,6 @@ module Paypal
4
4
  cattr_reader :attribute_mapping
5
5
  @@attribute_mapping = {
6
6
  :ACK => :ack,
7
- :ADDRESSSTATUS => :address_status,
8
7
  :BUILD => :build,
9
8
  :BILLINGAGREEMENTACCEPTEDSTATUS => :billing_agreement_accepted_status,
10
9
  :CHECKOUTSTATUS => :checkout_status,
@@ -22,7 +21,6 @@ module Paypal
22
21
  # GetTransactionDetails response.
23
22
  :RECEIVEREMAIL => :receiver_email,
24
23
  :RECEIVERID => :receiver_id,
25
- :ADDRESSOWNER => :address_owner,
26
24
  :SUBJECT => :subject,
27
25
  :TRANSACTIONID => :transaction_id,
28
26
  :TRANSACTIONTYPE => :transaction_type,
@@ -34,7 +32,9 @@ module Paypal
34
32
  :PROTECTIONELIGIBILITY => :protection_eligibility,
35
33
  :PROTECTIONELIGIBILITYTYPE => :protection_eligibility_type,
36
34
  :ADDRESSOWNER => :address_owner,
37
- :ADDRESSSTATUS => :address_status
35
+ :ADDRESSSTATUS => :address_status,
36
+ :INVNUM => :invoice_number,
37
+ :CUSTOM => :custom
38
38
  }
39
39
  attr_accessor *@@attribute_mapping.values
40
40
  attr_accessor :shipping_options_is_default, :success_page_redirect_requested, :insurance_option_selected
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paypal-express
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - nov matake
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-30 00:00:00.000000000 Z
11
+ date: 2013-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -122,6 +122,7 @@ files:
122
122
  - .rspec
123
123
  - .travis.yml
124
124
  - Gemfile
125
+ - Gemfile.lock
125
126
  - LICENSE
126
127
  - README.rdoc
127
128
  - Rakefile