venice 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +22 -22
- data/README.md +1 -0
- data/coverage/index.html +749 -526
- data/lib/venice/client.rb +11 -1
- data/lib/venice/in_app_receipt.rb +15 -1
- data/lib/venice/pending_renewal_info.rb +4 -0
- data/lib/venice/receipt.rb +17 -0
- data/lib/venice/version.rb +1 -1
- data/spec/fixtures/receipt_expired_cancelled.json +56 -0
- data/spec/fixtures/receipt_not_expired_cancelled.json +51 -0
- data/spec/in_app_receipt_spec.rb +4 -0
- data/spec/pending_renewal_info_spec.rb +1 -0
- data/spec/receipt_spec.rb +108 -57
- metadata +7 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: venice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mattt Thompson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: commander
|
@@ -154,6 +154,8 @@ files:
|
|
154
154
|
- "./venice.gemspec"
|
155
155
|
- bin/iap
|
156
156
|
- spec/client_spec.rb
|
157
|
+
- spec/fixtures/receipt_expired_cancelled.json
|
158
|
+
- spec/fixtures/receipt_not_expired_cancelled.json
|
157
159
|
- spec/in_app_receipt_spec.rb
|
158
160
|
- spec/pending_renewal_info_spec.rb
|
159
161
|
- spec/receipt
|
@@ -178,13 +180,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
178
180
|
- !ruby/object:Gem::Version
|
179
181
|
version: '0'
|
180
182
|
requirements: []
|
181
|
-
|
182
|
-
rubygems_version: 2.7.6
|
183
|
+
rubygems_version: 3.0.3
|
183
184
|
signing_key:
|
184
185
|
specification_version: 4
|
185
186
|
summary: iTunes In-App Purchase Receipt Verification
|
186
187
|
test_files:
|
187
188
|
- spec/client_spec.rb
|
189
|
+
- spec/fixtures/receipt_expired_cancelled.json
|
190
|
+
- spec/fixtures/receipt_not_expired_cancelled.json
|
188
191
|
- spec/in_app_receipt_spec.rb
|
189
192
|
- spec/pending_renewal_info_spec.rb
|
190
193
|
- spec/receipt
|