xkoon 1.0.1 → 1.0.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -2
  3. data/lib/xkoon/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ed2e847383efde97698cd92bfb858aeed420f3b4
4
- data.tar.gz: f6d003f9457d0822a8fb0abc82f4035d1d360e12
3
+ metadata.gz: cd227df4c8ef5d10631b26f50d9be7591b108a0c
4
+ data.tar.gz: 88753a832a87964ed39cacfcd74702be5218c5e5
5
5
  SHA512:
6
- metadata.gz: 12f84fbc43f0a0d5c7a969dcae1be8a9950e1cfe1e93bafaefb6f43f3d5fa8cf3e71e887a658cc7f4104ee75b41fc5bb69aaaea352f4d34411c52b9903b04fa2
7
- data.tar.gz: 5ae25b2ee04d6d85872a9e267c3accceb71c1012e94eeed09a35165c72840c9d9570209abdf14b3ce995baea900b5f794256c8baccbbc3f9e7f964beaa4ea277
6
+ metadata.gz: 67a5f7116a5d5862af0f8f40bba713c317daf8b9aea3b0d1f47ebcf36fa3877441e823e35b19b4061b16198467254664c0f99b64804a90770ec09e9e480eaa4f
7
+ data.tar.gz: c858afbcc8426d64c4f128d9ae356f3a4b36f1da4caed917b691ee8c131dea9e309d2fef170ce7ea7ab07c328dfbadd4c6a6205b4722b150f1a970e29b99778b
data/README.md CHANGED
@@ -4,7 +4,7 @@ JSON-based Reactive Service Framework
4
4
 
5
5
  ## Presentation
6
6
 
7
- This library provides a simple framework to build network services (servers & clients) around a very simple JSON message format, using [RxIO](https://rubygems.org/gems/rxio).
7
+ This library provides a small framework to build network services (servers & clients) around a very basic JSON message format, using [RxIO](https://rubygems.org/gems/rxio).
8
8
 
9
9
  ## Installation
10
10
 
@@ -21,8 +21,11 @@ gem install -V xkoon
21
21
  ## Usage
22
22
 
23
23
  Building a service endpoint (whether client or server) with xKoon requires the following:
24
+
24
25
  1. define a *Processor* module (for your business logic) providing a bunch of _process_XXX_ methods'
26
+
25
27
  2. instantiate an *XKoon::Service* or *XKoon::Client* object around your processor
28
+
26
29
  3. run it
27
30
 
28
31
  ### The Processor
@@ -148,7 +151,7 @@ xKoon Responses contain the following information:
148
151
 
149
152
  ### Example
150
153
 
151
- Below is a simple but complete example presenting an 'echo' service, replying back anything that was answered.
154
+ Below is a simple but complete example presenting an 'echo' service, replying back anything that was requested.
152
155
 
153
156
  ```ruby
154
157
  require 'xkoon'
@@ -5,5 +5,5 @@
5
5
  module XKoon
6
6
 
7
7
  # Version
8
- VERSION = '1.0.1'
8
+ VERSION = '1.0.2'
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xkoon
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eresse
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-24 00:00:00.000000000 Z
11
+ date: 2017-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler