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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8573539341f1a096daee11e179459c6dca29ccee
4
- data.tar.gz: 288a03b93e04112043db965d05ff8acbc1c31e28
3
+ metadata.gz: 893427a90163569d6d313f42183d7d4bce3fbf99
4
+ data.tar.gz: 38a8a7e50bc536f1919b596e8334b632c64f8c18
5
5
  SHA512:
6
- metadata.gz: f7aff4e13ae9e130fe962f1f6d4a576400bf9cb732afeed770ec0fddfed03dceaf1f436ba358f95018da5503b4ee338f9894d547c95bff8eca37b3d777389435
7
- data.tar.gz: 4ed39f104237484344a80e3ad7a0f06db51cd1fab19086db84c85003f890418bd4839575f5ea51fe464e84db2291b9b8add91ff689f023bccc9bc5ae33022a99
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
@@ -2,5 +2,5 @@ require_relative 'itunes_validator/client'
2
2
  require_relative 'itunes_validator/receipt'
3
3
 
4
4
  module ItunesValidator
5
- VERSION = '0.4.1'
5
+ VERSION = '0.4.2'
6
6
  end
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.1
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