jonathantron-paypal 3.0.0pre
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +11 -0
- data/CHANGELOG.md +73 -0
- data/Gemfile +12 -0
- data/LICENSE +23 -0
- data/README.md +117 -0
- data/Rakefile +45 -0
- data/lib/paypal/certs/paypal_sandbox.pem +22 -0
- data/lib/paypal/config.rb +58 -0
- data/lib/paypal/helpers/common.rb +300 -0
- data/lib/paypal/helpers/rails.rb +19 -0
- data/lib/paypal/notification.rb +188 -0
- data/lib/paypal/rails.rb +5 -0
- data/lib/paypal/version.rb +3 -0
- data/lib/paypal.rb +8 -0
- data/misc/PayPal - Instant Payment Notification - Technical Overview.pdf +0 -0
- data/misc/multiruby.sh +7 -0
- data/misc/paypal.psd +0 -0
- data/spec/config_spec.rb +154 -0
- data/spec/fixtures/business_cert.pem +19 -0
- data/spec/fixtures/business_key.pem +15 -0
- data/spec/helpers/common_spec.rb +56 -0
- data/spec/notification_spec.rb +148 -0
- data/spec/spec_helper.rb +40 -0
- metadata +183 -0
metadata
ADDED
@@ -0,0 +1,183 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jonathantron-paypal
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: true
|
5
|
+
segments:
|
6
|
+
- 3
|
7
|
+
- 0
|
8
|
+
- 0pre
|
9
|
+
version: 3.0.0pre
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Jonathan Tron
|
13
|
+
- Joseph Halter
|
14
|
+
- Tobias Luetke
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2010-04-10 00:00:00 +02:00
|
20
|
+
default_executable:
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
23
|
+
name: rack
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
segments:
|
30
|
+
- 1
|
31
|
+
- 0
|
32
|
+
- 0
|
33
|
+
version: 1.0.0
|
34
|
+
type: :runtime
|
35
|
+
version_requirements: *id001
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: rspec
|
38
|
+
prerelease: false
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
segments:
|
44
|
+
- 2
|
45
|
+
- 0
|
46
|
+
- 0
|
47
|
+
- a
|
48
|
+
version: 2.0.0.a
|
49
|
+
type: :development
|
50
|
+
version_requirements: *id002
|
51
|
+
- !ruby/object:Gem::Dependency
|
52
|
+
name: rcov
|
53
|
+
prerelease: false
|
54
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
segments:
|
59
|
+
- 0
|
60
|
+
- 9
|
61
|
+
- 8
|
62
|
+
version: 0.9.8
|
63
|
+
type: :development
|
64
|
+
version_requirements: *id003
|
65
|
+
- !ruby/object:Gem::Dependency
|
66
|
+
name: nokogiri
|
67
|
+
prerelease: false
|
68
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
segments:
|
73
|
+
- 0
|
74
|
+
version: "0"
|
75
|
+
type: :development
|
76
|
+
version_requirements: *id004
|
77
|
+
- !ruby/object:Gem::Dependency
|
78
|
+
name: bluecloth
|
79
|
+
prerelease: false
|
80
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
segments:
|
85
|
+
- 0
|
86
|
+
version: "0"
|
87
|
+
type: :development
|
88
|
+
version_requirements: *id005
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: yard
|
91
|
+
prerelease: false
|
92
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
segments:
|
97
|
+
- 0
|
98
|
+
version: "0"
|
99
|
+
type: :development
|
100
|
+
version_requirements: *id006
|
101
|
+
- !ruby/object:Gem::Dependency
|
102
|
+
name: fakeweb
|
103
|
+
prerelease: false
|
104
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
segments:
|
109
|
+
- 0
|
110
|
+
version: "0"
|
111
|
+
type: :development
|
112
|
+
version_requirements: *id007
|
113
|
+
description: Integrate Paypal Express
|
114
|
+
email: jonathan@tron.name
|
115
|
+
executables: []
|
116
|
+
|
117
|
+
extensions: []
|
118
|
+
|
119
|
+
extra_rdoc_files:
|
120
|
+
- LICENSE
|
121
|
+
- README.md
|
122
|
+
files:
|
123
|
+
- .document
|
124
|
+
- .gitignore
|
125
|
+
- CHANGELOG.md
|
126
|
+
- Gemfile
|
127
|
+
- LICENSE
|
128
|
+
- README.md
|
129
|
+
- Rakefile
|
130
|
+
- lib/paypal.rb
|
131
|
+
- lib/paypal/certs/paypal_sandbox.pem
|
132
|
+
- lib/paypal/config.rb
|
133
|
+
- lib/paypal/helpers/common.rb
|
134
|
+
- lib/paypal/helpers/rails.rb
|
135
|
+
- lib/paypal/notification.rb
|
136
|
+
- lib/paypal/rails.rb
|
137
|
+
- lib/paypal/version.rb
|
138
|
+
- misc/PayPal - Instant Payment Notification - Technical Overview.pdf
|
139
|
+
- misc/multiruby.sh
|
140
|
+
- misc/paypal.psd
|
141
|
+
- spec/config_spec.rb
|
142
|
+
- spec/fixtures/business_cert.pem
|
143
|
+
- spec/fixtures/business_key.pem
|
144
|
+
- spec/helpers/common_spec.rb
|
145
|
+
- spec/notification_spec.rb
|
146
|
+
- spec/spec_helper.rb
|
147
|
+
has_rdoc: true
|
148
|
+
homepage: http://github.com/JonathanTron/paypal
|
149
|
+
licenses: []
|
150
|
+
|
151
|
+
post_install_message:
|
152
|
+
rdoc_options:
|
153
|
+
- --charset=UTF-8
|
154
|
+
require_paths:
|
155
|
+
- lib
|
156
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
157
|
+
requirements:
|
158
|
+
- - ">="
|
159
|
+
- !ruby/object:Gem::Version
|
160
|
+
segments:
|
161
|
+
- 0
|
162
|
+
version: "0"
|
163
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
164
|
+
requirements:
|
165
|
+
- - ">"
|
166
|
+
- !ruby/object:Gem::Version
|
167
|
+
segments:
|
168
|
+
- 1
|
169
|
+
- 3
|
170
|
+
- 1
|
171
|
+
version: 1.3.1
|
172
|
+
requirements: []
|
173
|
+
|
174
|
+
rubyforge_project:
|
175
|
+
rubygems_version: 1.3.6
|
176
|
+
signing_key:
|
177
|
+
specification_version: 3
|
178
|
+
summary: Paypal Express Integration
|
179
|
+
test_files:
|
180
|
+
- spec/config_spec.rb
|
181
|
+
- spec/helpers/common_spec.rb
|
182
|
+
- spec/notification_spec.rb
|
183
|
+
- spec/spec_helper.rb
|