crirc
Crirc
A crystal library to create irc client/bot/server.
Works with crystal v0.23.0
Installation
To install the lib, you will have to add the CrystalIrc dependancy to your project.
Add this to your application's shard.yml:
dependencies:
  CrystalIrc:
    github: Meoowww/Crirc
Then, run crystal deps install to fetch the lib.
Development
- Network: A network object manage a socket / IO
 - Controller: A controller belongs to a network object, and handle the logic and data
 - Protocol: A protocol object represent a IRC entity (chan, user, message, ...)
 - Binding: The binding socket to allow the system to respond to incoming transmissions
 
Contributing
- Fork it ( https://github.com/Meoowww/Crirc/fork )
 - Create your feature branch (git checkout -b my-new-feature)
 - Commit your changes (git commit -am 'Add some feature')
 - Push to the branch (git push origin my-new-feature)
 - Create a new Pull Request