avro 1.8.0 → 1.8.1
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/avro.gemspec +4 -4
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d432977a240aa9a9356c21483d0f1f601079131e
|
|
4
|
+
data.tar.gz: a3a7f480daee4ae503f2aa32a053efc4c387ff1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 322bf3242f8e369ed7cbceb8b82ebeb526b68a00137e18a9834cb62ea14e01e3e885549fe0301721e46546f9c657eedf596bfeba39e86f3fdb8a2a3e6ceadc13
|
|
7
|
+
data.tar.gz: 95c50679ab7d3c68e47db5e8b32e323460623dffba5fc9c22a7d95cca9a11ecba60951bcbdb3b1cdb34d30d27225dede1dbb44635791b857538aa8fdd4d33c78
|
data/avro.gemspec
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: avro 1.8.
|
|
2
|
+
# stub: avro 1.8.1 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "avro"
|
|
6
|
-
s.version = "1.8.
|
|
6
|
+
s.version = "1.8.1"
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.require_paths = ["lib"]
|
|
10
10
|
s.authors = ["Apache Software Foundation"]
|
|
11
|
-
s.date = "2016-
|
|
11
|
+
s.date = "2016-05-15"
|
|
12
12
|
s.description = "Avro is a data serialization and RPC format"
|
|
13
13
|
s.email = "dev@avro.apache.org"
|
|
14
14
|
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "lib/avro.rb", "lib/avro/data_file.rb", "lib/avro/io.rb", "lib/avro/ipc.rb", "lib/avro/protocol.rb", "lib/avro/schema.rb", "lib/avro/schema_normalization.rb"]
|
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
s.rubyforge_project = "avro"
|
|
20
20
|
s.rubygems_version = "2.2.2"
|
|
21
21
|
s.summary = "Apache Avro for Ruby"
|
|
22
|
-
s.test_files = ["test/
|
|
22
|
+
s.test_files = ["test/test_schema_normalization.rb", "test/test_io.rb", "test/test_socket_transport.rb", "test/test_schema.rb", "test/test_fingerprints.rb", "test/test_help.rb", "test/test_datafile.rb", "test/test_protocol.rb"]
|
|
23
23
|
|
|
24
24
|
if s.respond_to? :specification_version then
|
|
25
25
|
s.specification_version = 4
|
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.
|
|
4
|
+
version: 1.8.1
|
|
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: 2016-
|
|
11
|
+
date: 2016-05-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: multi_json
|
|
@@ -96,11 +96,11 @@ signing_key:
|
|
|
96
96
|
specification_version: 4
|
|
97
97
|
summary: Apache Avro for Ruby
|
|
98
98
|
test_files:
|
|
99
|
-
- test/
|
|
99
|
+
- test/test_schema_normalization.rb
|
|
100
|
+
- test/test_io.rb
|
|
101
|
+
- test/test_socket_transport.rb
|
|
102
|
+
- test/test_schema.rb
|
|
100
103
|
- test/test_fingerprints.rb
|
|
101
104
|
- test/test_help.rb
|
|
102
|
-
- test/
|
|
105
|
+
- test/test_datafile.rb
|
|
103
106
|
- test/test_protocol.rb
|
|
104
|
-
- test/test_schema.rb
|
|
105
|
-
- test/test_schema_normalization.rb
|
|
106
|
-
- test/test_socket_transport.rb
|