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
- Host: GitHub
- URL: https://github.com/roxasshadow/cinch-login
- Owner: RoxasShadow
- Created: 2013-07-10T13:28:07.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-11-01T00:57:52.000Z (over 12 years ago)
- Last Synced: 2025-10-07T14:27:52.907Z (10 months ago)
- Language: Ruby
- Size: 113 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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