ruby-protocol-buffers 1.6.0 → 1.6.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/CHANGELOG.md +4 -0
- data/Changelog.md +4 -0
- data/lib/protocol_buffers/version.rb +1 -1
- data/ruby-protocol-buffers.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c24a8c561538298db657e2064c32d27dfeb2be6a
|
|
4
|
+
data.tar.gz: 424a5a981b2d081b3a5eac2069fd94ad110bea3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5cc174893942e1ecf65cee04a7b615ccc5cdb5b555d7cb8f7bca39fd0ba2c6972be13dbcb314d16c1cbf5923a6e15761e55ea6b9bbf6ef915396985353028d1
|
|
7
|
+
data.tar.gz: 2911010f0397cba3fb9ed1d9040a5e09f39c196bb2b25eb433981268263e6da0bc66f159cfc8c32263f59d8914b5ce92775bbff0381adf4f2617e16cb55dc139
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
+
## 1.6.1 - 2014-09-24
|
|
5
|
+
### Changed
|
|
6
|
+
- Fix gem packaging error.
|
|
7
|
+
|
|
4
8
|
## 1.6.0 - 2014-09-22
|
|
5
9
|
### Added
|
|
6
10
|
- More metaprogramming support via `get_expected_field`, `get_optional_field`.
|
data/Changelog.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
+
## 1.6.1 - 2014-09-24
|
|
5
|
+
### Changed
|
|
6
|
+
- Fix gem packaging error.
|
|
7
|
+
|
|
4
8
|
## 1.6.0 - 2014-09-22
|
|
5
9
|
### Added
|
|
6
10
|
- More metaprogramming support via `get_expected_field`, `get_optional_field`.
|
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |gem|
|
|
|
11
11
|
gem.summary = %{Ruby compiler and runtime for the google protocol buffers library.}
|
|
12
12
|
gem.homepage = "https://github.com/codekitchen/ruby-protocol-buffers"
|
|
13
13
|
|
|
14
|
-
gem.files = `git ls-files`.split($/)
|
|
14
|
+
gem.files = `git ls-files`.split($/) + ['lib/protocol_buffers/runtime/text_parser.rb']
|
|
15
15
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
16
16
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
17
17
|
gem.require_paths = ["lib"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-protocol-buffers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Palmer
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2014-09-
|
|
14
|
+
date: 2014-09-24 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: autotest-standalone
|
|
@@ -173,6 +173,7 @@ files:
|
|
|
173
173
|
- lib/protocol_buffers/runtime/rpc.rb
|
|
174
174
|
- lib/protocol_buffers/runtime/service.rb
|
|
175
175
|
- lib/protocol_buffers/runtime/text_formatter.rb
|
|
176
|
+
- lib/protocol_buffers/runtime/text_parser.rb
|
|
176
177
|
- lib/protocol_buffers/runtime/text_parser.ry
|
|
177
178
|
- lib/protocol_buffers/runtime/text_scanner.rb
|
|
178
179
|
- lib/protocol_buffers/runtime/varint.rb
|