krpc 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
-
data/Rakefile DELETED
@@ -1,9 +0,0 @@
1
-
2
- desc "Run tests"
3
- task :default => [:test]
4
-
5
- desc "Run tests"
6
- task :test do
7
- sh 'bundle exec rspec --color --format documentation spec'
8
- end
9
- task :spec => :test