avro 1.8.2 → 1.9.0

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.
@@ -42,7 +42,6 @@ class GenericHandler < WEBrick::HTTPServlet::AbstractServlet
42
42
  writer = Avro::IPC::FramedWriter.new(StringIO.new)
43
43
  writer.write_framed_message(unframed_resp)
44
44
  resp.body = writer.to_s
45
- @server.stop
46
45
  end
47
46
  end
48
47
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: avro
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.2
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Apache Software Foundation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-07 00:00:00.000000000 Z
11
+ date: 2019-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json
@@ -35,9 +35,12 @@ extra_rdoc_files:
35
35
  - lib/avro/data_file.rb
36
36
  - lib/avro/io.rb
37
37
  - lib/avro/ipc.rb
38
+ - lib/avro/logical_types.rb
38
39
  - lib/avro/protocol.rb
39
40
  - lib/avro/schema.rb
41
+ - lib/avro/schema_compatibility.rb
40
42
  - lib/avro/schema_normalization.rb
43
+ - lib/avro/schema_validator.rb
41
44
  files:
42
45
  - CHANGELOG
43
46
  - LICENSE
@@ -50,9 +53,12 @@ files:
50
53
  - lib/avro/data_file.rb
51
54
  - lib/avro/io.rb
52
55
  - lib/avro/ipc.rb
56
+ - lib/avro/logical_types.rb
53
57
  - lib/avro/protocol.rb
54
58
  - lib/avro/schema.rb
59
+ - lib/avro/schema_compatibility.rb
55
60
  - lib/avro/schema_normalization.rb
61
+ - lib/avro/schema_validator.rb
56
62
  - test/case_finder.rb
57
63
  - test/random_data.rb
58
64
  - test/sample_ipc_client.rb
@@ -63,9 +69,12 @@ files:
63
69
  - test/test_fingerprints.rb
64
70
  - test/test_help.rb
65
71
  - test/test_io.rb
72
+ - test/test_logical_types.rb
66
73
  - test/test_protocol.rb
67
74
  - test/test_schema.rb
75
+ - test/test_schema_compatibility.rb
68
76
  - test/test_schema_normalization.rb
77
+ - test/test_schema_validator.rb
69
78
  - test/test_socket_transport.rb
70
79
  - test/tool.rb
71
80
  homepage: http://avro.apache.org/
@@ -91,16 +100,19 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
100
  version: '1.2'
92
101
  requirements: []
93
102
  rubyforge_project: avro
94
- rubygems_version: 2.2.2
103
+ rubygems_version: 2.5.2.1
95
104
  signing_key:
96
105
  specification_version: 4
97
106
  summary: Apache Avro for Ruby
98
107
  test_files:
99
- - test/test_datafile.rb
100
- - test/test_fingerprints.rb
108
+ - test/test_schema_validator.rb
101
109
  - test/test_help.rb
102
- - test/test_io.rb
103
- - test/test_protocol.rb
104
- - test/test_schema.rb
105
110
  - test/test_schema_normalization.rb
111
+ - test/test_datafile.rb
112
+ - test/test_schema.rb
113
+ - test/test_io.rb
106
114
  - test/test_socket_transport.rb
115
+ - test/test_schema_compatibility.rb
116
+ - test/test_logical_types.rb
117
+ - test/test_fingerprints.rb
118
+ - test/test_protocol.rb