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.
- checksums.yaml +4 -4
- data/README.md +5 -5
- data/lib/netsoul/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c10decfafa39ed9eb22828a8c401ae22f0adf0c1
|
|
4
|
+
data.tar.gz: 090e92fa26283025eb4213c3906662e79e63dca8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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', '~>
|
|
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.
|
|
99
|
+
c.send str
|
|
100
100
|
# ...
|
|
101
|
-
msg = c.
|
|
101
|
+
msg = c.get
|
|
102
102
|
#...
|
|
103
103
|
end
|
|
104
104
|
# ...
|
data/lib/netsoul/version.rb
CHANGED