README.md in netsoul-2.0.0 vs README.md in netsoul-2.1.0

- old
+ new

@@ -1,13 +1,13 @@ # Netsoul-Ruby [![Gem Version](https://badge.fury.io/rb/netsoul.svg)](http://badge.fury.io/rb/netsoul) [![Build Status](https://travis-ci.org/fenicks/netsoul-ruby.svg?branch=master)](https://travis-ci.org/fenicks/netsoul-ruby) [![Coverage Status](https://coveralls.io/repos/fenicks/netsoul-ruby/badge.svg?branch=master&service=github)](https://coveralls.io/github/fenicks/netsoul-ruby?branch=master) * 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 * __MD5__ authentication * __Kerberos__ (my own Ruby native extension) authentication. Something is wrong with kerberos server or gssapi __[work in progress]__ @@ -26,11 +26,11 @@ ### In your project #### Gemfile ```ruby -gem 'netsoul', '~> 1.9.2' +gem 'netsoul', '~> 2.0.0' ``` #### project.rb ```ruby @@ -94,12 +94,12 @@ c = Netsoul::Client.new options[:user_opts] c.connect # ... if c.started # ... - c.sock_send str + c.send str # ... - msg = c.sock_get + msg = c.get #... end # ... c.disconnect ```