An open API service indexing awesome lists of open source software.

https://github.com/roxasshadow/cinch-login

Sign in your bot to NickServ
https://github.com/roxasshadow/cinch-login

Last synced: about 18 hours ago
JSON representation

Sign in your bot to NickServ

Awesome Lists containing this project

README

          

# cinch-login

This plugin allows cinch to sign in automatically your bot to NickServ.

## Installation
`[sudo] gem install cinch-login`

require 'cinch'
require 'cinch/plugins/login'

Cinch::Bot.new {
configure do |c|
c.nick = 'Ambrogio'
c.user = 'Ambrogio'
c.plugins.plugins = [Cinch::Plugins::Login]
c.plugins.options[Cinch::Plugins::Login] = { :password => 'dat_password' }
end
}.start