avro 1.8.2 → 1.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Manifest +6 -0
- data/avro.gemspec +21 -21
- data/lib/avro.rb +11 -0
- data/lib/avro/io.rb +44 -64
- data/lib/avro/ipc.rb +8 -8
- data/lib/avro/logical_types.rb +90 -0
- data/lib/avro/protocol.rb +11 -7
- data/lib/avro/schema.rb +89 -63
- data/lib/avro/schema_compatibility.rb +170 -0
- data/lib/avro/schema_validator.rb +242 -0
- data/test/random_data.rb +21 -2
- data/test/test_datafile.rb +3 -3
- data/test/test_io.rb +73 -6
- data/test/test_logical_types.rb +128 -0
- data/test/test_protocol.rb +36 -3
- data/test/test_schema.rb +323 -27
- data/test/test_schema_compatibility.rb +475 -0
- data/test/test_schema_validator.rb +554 -0
- data/test/tool.rb +0 -1
- metadata +20 -8
data/test/tool.rb
CHANGED
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.
|
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:
|
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.
|
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/
|
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
|