itunes_validator 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/itunes_validator.gemspec +21 -0
- data/lib/itunes_validator.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 893427a90163569d6d313f42183d7d4bce3fbf99
|
4
|
+
data.tar.gz: 38a8a7e50bc536f1919b596e8334b632c64f8c18
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d6d748021b6610fbf09b5a0d08ff8969a860b51990898ba50855ad5dd3e9011ecab3e1eaa7459be48521e39a57123b2e63ed23629748a9cde5f827bf6e51f28
|
7
|
+
data.tar.gz: 628badcc66a1fb455b069401556145ae609ce2a605dbb208c2bd85e1f4eaed9e687bfa39de073c3f9ec23eaa9827ad9b00802b6c5f7329faeb19c8402263917d
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# vim: sw=2 et
|
2
|
+
|
3
|
+
require File.expand_path('../lib/itunes_validator', __FILE__)
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = 'itunes_validator'
|
7
|
+
s.license = 'MPL-2.0'
|
8
|
+
s.version = ItunesValidator::VERSION
|
9
|
+
s.authors = ['Scott Talbot']
|
10
|
+
s.email = 's@chikachow.org'
|
11
|
+
s.summary = 'iTunes Receipt validation'
|
12
|
+
s.homepage = 'https://github.com/cysp/itunes_validator-ruby'
|
13
|
+
|
14
|
+
meta_files = %w| LICENSE README.md Rakefile itunes_validator.gemspec |
|
15
|
+
lib_files = %w| lib/itunes_validator.rb lib/itunes_validator/client.rb lib/itunes_validator/receipt.rb |
|
16
|
+
test_files = `git ls-files test`.split($/)
|
17
|
+
s.test_files = test_files.select{ |f| File.extname(f) == 'rb' }
|
18
|
+
s.files = meta_files + lib_files + test_files
|
19
|
+
|
20
|
+
s.add_development_dependency 'rake'
|
21
|
+
end
|
data/lib/itunes_validator.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: itunes_validator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Scott Talbot
|
@@ -33,6 +33,7 @@ files:
|
|
33
33
|
- LICENSE
|
34
34
|
- README.md
|
35
35
|
- Rakefile
|
36
|
+
- itunes_validator.gemspec
|
36
37
|
- lib/itunes_validator.rb
|
37
38
|
- lib/itunes_validator/client.rb
|
38
39
|
- lib/itunes_validator/receipt.rb
|