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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b8b90d97ac7aaee3386bb7610307da62ca99b7e4
4
- data.tar.gz: b79d0e1cf4b047363dffef09fdc2560cb91d5a86
3
+ metadata.gz: c24a8c561538298db657e2064c32d27dfeb2be6a
4
+ data.tar.gz: 424a5a981b2d081b3a5eac2069fd94ad110bea3b
5
5
  SHA512:
6
- metadata.gz: 330587548c9be9afb403acd7ad1ea86b1d5689056180808ad2b10d3ced970e261c0cfc7c91174fd65e58df238c7c054b99b86695597f57d81260f54c59777e78
7
- data.tar.gz: 62361ed0fdd8f8926243610d23aef2618f8cc97196076b5fa6e66f306b26244daab81bc86d7ff893c8762cac1cb8795e889277654d5b576c89bc79fa0d4e2bea
6
+ metadata.gz: b5cc174893942e1ecf65cee04a7b615ccc5cdb5b555d7cb8f7bca39fd0ba2c6972be13dbcb314d16c1cbf5923a6e15761e55ea6b9bbf6ef915396985353028d1
7
+ data.tar.gz: 2911010f0397cba3fb9ed1d9040a5e09f39c196bb2b25eb433981268263e6da0bc66f159cfc8c32263f59d8914b5ce92775bbff0381adf4f2617e16cb55dc139
@@ -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`.
@@ -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`.
@@ -1,3 +1,3 @@
1
1
  module ProtocolBuffers
2
- VERSION = "1.6.0"
2
+ VERSION = "1.6.1"
3
3
  end
@@ -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.0
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-22 00:00:00.000000000 Z
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