This is an implementation of Cinch, The IRC Bot Building Framework.
bundle install
to install shit
rake turid
to run shit
Install Vagrant and Virtualbox
vagrant up
vagrant ssh
cd /vagrant
rake turid
to run
Turid has a built in databse. You can use it in your plugins like this:
db = shared[:db]
# To write data
db.put("key", "value")
# To fetch data
db.get("key")
# You can also get data from other plugins
# Say you want the user information from the location plugin in your plugin
db.get(m.user.nick, plugin: "location")