krpc 0.3.1 → 0.3.2
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/README.md +5 -3
- data/krpc.gemspec +11 -12
- data/lib/krpc.rb +2 -2
- data/lib/krpc/attributes.rb +17 -17
- data/lib/krpc/client.rb +29 -30
- data/lib/krpc/connection.rb +18 -18
- data/lib/krpc/core_extensions.rb +3 -3
- data/lib/krpc/decoder.rb +5 -5
- data/lib/krpc/doc.rb +30 -29
- data/lib/krpc/encoder.rb +9 -5
- data/lib/krpc/error.rb +1 -1
- data/lib/krpc/gen.rb +24 -24
- data/lib/krpc/protobuf_utils.rb +12 -12
- data/lib/krpc/service.rb +53 -18
- data/lib/krpc/streaming.rb +19 -19
- data/lib/krpc/types.rb +25 -25
- data/lib/krpc/version.rb +1 -1
- metadata +25 -30
- data/CHANGELOG.md +0 -42
- data/Rakefile +0 -9
data/CHANGELOG.md
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
v0.3.1 (18 Jun 2016)
|
2
|
-
========
|
3
|
-
+ Fixed receiving of chunked responses
|
4
|
-
+ Updated protocol buffers schema
|
5
|
-
|
6
|
-
v0.3.0 (15 Feb 2016)
|
7
|
-
========
|
8
|
-
+ **Updated to work with kRPC server version 0.2.x** (#6):
|
9
|
-
+ Using *google-protobuf* gem instead of *ruby_protobuf*, for protocol buffers version 3
|
10
|
-
+ Turned development dependency on *hanna-nouveau* into runtime dependency (Fix #5)
|
11
|
-
|
12
|
-
v0.2.2 (30 Oct 2015)
|
13
|
-
========
|
14
|
-
+ Static methods now require `KRPC::Client` instance as first argument (Fix #4)
|
15
|
-
+ Improved parameters default value handling
|
16
|
-
+ Improved collections encoding
|
17
|
-
+ Fixed few minor bugs
|
18
|
-
|
19
|
-
v0.2.0 (26 Sep 2015)
|
20
|
-
========
|
21
|
-
+ **Added Streaming support**:
|
22
|
-
+ Stream creation by calling method with `_stream` suffix
|
23
|
-
+ **Improved in-REPL experience**:
|
24
|
-
+ Added documentation content received from kRPC server to in-REPL documentation output
|
25
|
-
+ Improved `to_s` and `inspect` methods in `KRPC::Gen::ClassBase` and `KRPC::Streaming::Stream` classes
|
26
|
-
+ Arguments of `KRPC::Client#initialize` method turned into keyword arguments
|
27
|
-
+ RPC methods are no longer bound to single `KRPC::Client` object (Fix #3)
|
28
|
-
+ Fixed arguments sometimes not correctly passed to RPC methods (due to Ruby 2.2.1 bug) (Fix #1)
|
29
|
-
+ Removed `required_params_count` parameter from `Client#build_request` method, and made that method public
|
30
|
-
+ `KRPC::TypeStore`'s methods changed, to be class level methods
|
31
|
-
+ Added dependency on *Nokogiri* and development dependency on *Pry* and *hanna-nouveau*
|
32
|
-
+ Minor improvements and fixes
|
33
|
-
|
34
|
-
v0.1.1 (9 Sep 2015)
|
35
|
-
========
|
36
|
-
+ Added `KRPC.connect` method
|
37
|
-
+ Added block argument to `Client#connect` and `Client#connect!` methods
|
38
|
-
|
39
|
-
v0.1.0 (6 Sep 2015)
|
40
|
-
========
|
41
|
-
+ Initial release
|
42
|
-
|