netsoul 2.0.0 → 2.1.0

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 -5
  3. data/lib/netsoul/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c3867b9a41505375037c2a9dab38d767b1ff3fec
4
- data.tar.gz: accfa0351a8f3702a6b528d09c5871ea5cd3e8bf
3
+ metadata.gz: c10decfafa39ed9eb22828a8c401ae22f0adf0c1
4
+ data.tar.gz: 090e92fa26283025eb4213c3906662e79e63dca8
5
5
  SHA512:
6
- metadata.gz: b9d49424ebfdb9417801d8307190b02f9c433d789863f9c5106471ee36df2d17a5c769a3ffe78d52de7d7f98a8eab390d875d446573a4540f4d36d133f5fad6c
7
- data.tar.gz: f0f98ab4eede97c75ea6b44c95369a998b98397c90ed8b2c4cb2765a41e48168a189e4217e4b337ce39e7afb7eea36cca9fa0f09057774ee1bf35fa931359bb6
6
+ metadata.gz: e4561982f756c9690a1ce0c4ac2ae739d14a5c2df46a89d09023f1f6e53b30e03514efa16ea96c411e210eb1ff6500c2dd2d47ea4b421b1537fe54498887d4ab
7
+ data.tar.gz: b0b2e7851eaf90453fdda11e29f4bc72e833341fc89123e3e77fe41a2a7fb8dfc464fcc0e874fc5f7c88ab9cb815c6feaea7028904b67277ddd8631d557f9247
data/README.md CHANGED
@@ -3,9 +3,9 @@
3
3
  * formerly __libnetsoul-rb__
4
4
 
5
5
  This gem is a simple and efficient Netsoul client implementation written in Ruby.
6
- You can use it as a Ruby gem in order to implement your own Netsoul client in Ruby or just use the provided Netsoul client.
6
+ You can use it as a Ruby gem in order to implement your own Netsoul client or just use the provided Netsoul client.
7
7
 
8
- *__[History]__: 8 years after writing my first ruby lines of code, I decide to rewrite this old own with all my Ruby backgrounds.*
8
+ *__[History]__: 8 years after writing my first ruby lines of code, I decide to rewrite this old own with all my Ruby backgrounds. The old design was really bad.*
9
9
 
10
10
  ## Features
11
11
 
@@ -28,7 +28,7 @@ gem install netsoul
28
28
  #### Gemfile
29
29
 
30
30
  ```ruby
31
- gem 'netsoul', '~> 1.9.2'
31
+ gem 'netsoul', '~> 2.0.0'
32
32
  ```
33
33
 
34
34
  #### project.rb
@@ -96,9 +96,9 @@ c.connect
96
96
  # ...
97
97
  if c.started
98
98
  # ...
99
- c.sock_send str
99
+ c.send str
100
100
  # ...
101
- msg = c.sock_get
101
+ msg = c.get
102
102
  #...
103
103
  end
104
104
  # ...
@@ -1,3 +1,3 @@
1
1
  module Netsoul
2
- VERSION = '2.0.0'.freeze
2
+ VERSION = '2.1.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: netsoul
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Kakesa