avromatic 0.30.0 → 0.31.0

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
  SHA256:
3
- metadata.gz: 6c6dcc8fbca571b5d0dfff98417d67f71731f6dbbef64034bab0b6717565239e
4
- data.tar.gz: 3ac538e0dd288f3a8b10115ef3fbaa59e86da2b1390035c4ff646b1cc32653d5
3
+ metadata.gz: c4f5da9c86e42f15db6a7792ba18ce8360beacdd08201dfa82c2a4917661e119
4
+ data.tar.gz: 30728c18e220c5e3514d825b8353241a075738a9d0b7bf093cb196c8b938597a
5
5
  SHA512:
6
- metadata.gz: 0e1996635fbb793bd9217c29af8b40833f488544db3b9036ec20156c7e2268b099605798520474b43bf56a2f93fee337e0704a62437f0bd1945b18fa2c4b0f84
7
- data.tar.gz: 9463cea8645f309183281998e89ef1d6a741ac2d43597687012f162251830a7282fa99f4c1c0a73d1cada5cfb52c51d36f0706826d1ed5d7bc1f2305bc6398c8
6
+ metadata.gz: 59ff7e8a760ab10a9a72f0af55f91aa66ee72c8a00824e760857f8f6fb5322ba3f06e34f7ea7ec7b1e12f075a0b4a25eb9d43018b2458c3789b5d20f6344314a
7
+ data.tar.gz: 339f7c10dc3605909f4cf097d773e2fde6b3581b5ee7c028e5a6b0d6f615d0c3b6cfd8dda57db02399251578447317aa35a3154a3a4dda6bf5867d6d0800439e
data/.travis.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.5.0
4
- - 2.4.3
3
+ - 2.5.1
4
+ - 2.4.4
5
5
  - 2.3.5
6
6
  - 2.2.8
7
7
  before_script:
@@ -12,6 +12,8 @@ script:
12
12
  - bundle exec appraisal rails4_2 rake spec
13
13
  - bundle exec appraisal rails5_0 rake spec
14
14
  - bundle exec appraisal rails5_1 rake spec
15
+ - bundle exec appraisal rails5_2 rake spec
15
16
  - bundle exec appraisal avro-patches-4_1 rake spec
16
17
  - bundle exec appraisal avro-patches-5_0 rake spec
17
18
  - bundle exec appraisal avro-patches-5_1 rake spec
19
+ - bundle exec appraisal avro-patches-5_2 rake spec
data/Appraisals CHANGED
@@ -22,6 +22,12 @@ appraise 'rails5_1' do
22
22
  gem 'activemodel', '~> 5.1.4'
23
23
  end
24
24
 
25
+ appraise 'rails5_2' do
26
+ gem 'avro', '1.8.2'
27
+ gem 'activesupport', '~> 5.2.0'
28
+ gem 'activemodel', '~> 5.2.0'
29
+ end
30
+
25
31
  appraise 'avro-patches-4_1' do
26
32
  gem 'avro-patches'
27
33
  gem 'activesupport', '~> 4.1.16'
@@ -39,3 +45,9 @@ appraise 'avro-patches-5_1' do
39
45
  gem 'activesupport', '~> 5.1.4'
40
46
  gem 'activemodel', '~> 5.1.4'
41
47
  end
48
+
49
+ appraise 'avro-patches-5_2' do
50
+ gem 'avro-patches'
51
+ gem 'activesupport', '~> 5.2.0'
52
+ gem 'activemodel', '~> 5.2.0'
53
+ end
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # avromatic changelog
2
2
 
3
+ ## v0.31.0
4
+ = Add support for Rails 5.2.
5
+
3
6
  ## v0.30.0
4
7
  - Add `Avromatic::Model::MessageDecoder#model` method to return the Avromatic
5
8
  model class for a message.
data/avromatic.gemspec CHANGED
@@ -22,8 +22,8 @@ Gem::Specification.new do |spec|
22
22
 
23
23
  spec.add_runtime_dependency 'avro', '>= 1.7.7'
24
24
  spec.add_runtime_dependency 'virtus'
25
- spec.add_runtime_dependency 'activesupport', '>= 4.1', '< 5.2'
26
- spec.add_runtime_dependency 'activemodel', '>= 4.1', '< 5.2'
25
+ spec.add_runtime_dependency 'activesupport', '>= 4.1', '< 5.3'
26
+ spec.add_runtime_dependency 'activemodel', '>= 4.1', '< 5.3'
27
27
  spec.add_runtime_dependency 'avro_turf'
28
28
  spec.add_runtime_dependency 'avro_schema_registry-client', '>= 0.3.0'
29
29
 
@@ -0,0 +1,9 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "avro-patches"
6
+ gem "activesupport", "~> 5.2.0"
7
+ gem "activemodel", "~> 5.2.0"
8
+
9
+ gemspec path: "../"
@@ -0,0 +1,9 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "avro", "1.8.2"
6
+ gem "activesupport", "~> 5.2.0"
7
+ gem "activemodel", "~> 5.2.0"
8
+
9
+ gemspec path: "../"
@@ -1,3 +1,3 @@
1
1
  module Avromatic
2
- VERSION = '0.30.0'.freeze
2
+ VERSION = '0.31.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: avromatic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.30.0
4
+ version: 0.31.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Salsify Engineering
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-01-06 00:00:00.000000000 Z
11
+ date: 2018-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: avro
@@ -47,7 +47,7 @@ dependencies:
47
47
  version: '4.1'
48
48
  - - "<"
49
49
  - !ruby/object:Gem::Version
50
- version: '5.2'
50
+ version: '5.3'
51
51
  type: :runtime
52
52
  prerelease: false
53
53
  version_requirements: !ruby/object:Gem::Requirement
@@ -57,7 +57,7 @@ dependencies:
57
57
  version: '4.1'
58
58
  - - "<"
59
59
  - !ruby/object:Gem::Version
60
- version: '5.2'
60
+ version: '5.3'
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: activemodel
63
63
  requirement: !ruby/object:Gem::Requirement
@@ -67,7 +67,7 @@ dependencies:
67
67
  version: '4.1'
68
68
  - - "<"
69
69
  - !ruby/object:Gem::Version
70
- version: '5.2'
70
+ version: '5.3'
71
71
  type: :runtime
72
72
  prerelease: false
73
73
  version_requirements: !ruby/object:Gem::Requirement
@@ -77,7 +77,7 @@ dependencies:
77
77
  version: '4.1'
78
78
  - - "<"
79
79
  - !ruby/object:Gem::Version
80
- version: '5.2'
80
+ version: '5.3'
81
81
  - !ruby/object:Gem::Dependency
82
82
  name: avro_turf
83
83
  requirement: !ruby/object:Gem::Requirement
@@ -271,10 +271,12 @@ files:
271
271
  - gemfiles/avro_patches_4_1.gemfile
272
272
  - gemfiles/avro_patches_5_0.gemfile
273
273
  - gemfiles/avro_patches_5_1.gemfile
274
+ - gemfiles/avro_patches_5_2.gemfile
274
275
  - gemfiles/rails4_1.gemfile
275
276
  - gemfiles/rails4_2.gemfile
276
277
  - gemfiles/rails5_0.gemfile
277
278
  - gemfiles/rails5_1.gemfile
279
+ - gemfiles/rails5_2.gemfile
278
280
  - lib/avromatic.rb
279
281
  - lib/avromatic/io.rb
280
282
  - lib/avromatic/io/datum_reader.rb
@@ -330,7 +332,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
330
332
  version: '0'
331
333
  requirements: []
332
334
  rubyforge_project:
333
- rubygems_version: 2.7.3
335
+ rubygems_version: 2.7.6
334
336
  signing_key:
335
337
  specification_version: 4
336
338
  summary: Generate Ruby models from Avro schemas