protobuf 2.8.2 → 2.8.3
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/CHANGES.md +5 -0
- data/lib/protobuf/evented.rb +15 -0
- data/lib/protobuf/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99faa34dcab90672042c22bf0d26d6f4c0a4c744
|
|
4
|
+
data.tar.gz: 20ebf82a6795eae334a29e5bcc1e8f6e4256bfd5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f28ad5326df4358721e6ffd7924f2acdfd6cd5931b8a2fff9b7d57bd44e8adb67e3617a79d03621437c7206c1f4c3e56b2e1bc64ff1ca85ae8158a7d7bb71cfb
|
|
7
|
+
data.tar.gz: 88dcfaa540f8d5357eb0825cba17c60d4197cf57bd8345f39053f2e00a4fbe341fedb494e783e97ea722477cd4f789d30b4effb925df8e5bb945714b19d79554
|
data/CHANGES.md
CHANGED
data/lib/protobuf/evented.rb
CHANGED
|
@@ -13,6 +13,21 @@
|
|
|
13
13
|
#
|
|
14
14
|
# gem 'protobuf', :require => 'protobuf/evented'
|
|
15
15
|
#
|
|
16
|
+
$stderr.puts <<-WARN
|
|
17
|
+
[DEPRECATED] You are using the evented connector and/or server which has been deprecated.
|
|
18
|
+
Versions >= 3.0 will no longer provide the evented module for clients
|
|
19
|
+
and servers. You should upgrade to the socket or zmq transport configurations.
|
|
20
|
+
|
|
21
|
+
To upgrade your rpc_server, simply replace `--evented` option
|
|
22
|
+
with `--socket` or `--zmq`. If you are using the `PB_CLIENT_TYPE`
|
|
23
|
+
env variable, simply assign it to socket or zmq.
|
|
24
|
+
|
|
25
|
+
If you are requiring the gem in your gemfile expclitly, change
|
|
26
|
+
the require to match your chosen transport type:
|
|
27
|
+
|
|
28
|
+
`gem 'protobuf', :require => 'protobuf/socket'`
|
|
29
|
+
WARN
|
|
30
|
+
|
|
16
31
|
require 'protobuf'
|
|
17
32
|
Protobuf.connector_type = :evented
|
|
18
33
|
|
data/lib/protobuf/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: protobuf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.8.
|
|
4
|
+
version: 2.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- BJ Neilsen
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2013-09-
|
|
13
|
+
date: 2013-09-04 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activesupport
|