Skip to content
This repository has been archived by the owner on Apr 16, 2023. It is now read-only.

Commit

Permalink
Update README.md.
Browse files Browse the repository at this point in the history
Bump to version 2.1.0.
  • Loading branch information
christiankakesa committed Jan 13, 2016
1 parent 6989ec8 commit 82ee8cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
* formerly __libnetsoul-rb__

This gem is a simple and efficient Netsoul client implementation written in Ruby.
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.
You can use it as a Ruby gem in order to implement your own Netsoul client or just use the provided Netsoul client.

*__[History]__: 8 years after writing my first ruby lines of code, I decide to rewrite this old own with all my Ruby backgrounds.*
*__[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.*

## Features

Expand All @@ -28,7 +28,7 @@ gem install netsoul
#### Gemfile

```ruby
gem 'netsoul', '~> 1.9.2'
gem 'netsoul', '~> 2.0.0'
```

#### project.rb
Expand Down Expand Up @@ -96,9 +96,9 @@ c.connect
# ...
if c.started
# ...
c.sock_send str
c.send str
# ...
msg = c.sock_get
msg = c.get
#...
end
# ...
Expand Down
2 changes: 1 addition & 1 deletion lib/netsoul/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Netsoul
VERSION = '2.0.0'.freeze
VERSION = '2.1.0'.freeze
end

0 comments on commit 82ee8cc

Please sign in to comment.