RFC plugin for Cinch
This Cinch plugin will tell you about an RFC you mention in IRC.
Installation
Add this line to your application's Gemfile:
gem 'cinch-rfc'
And then execute:
$ bundle
Usage
Add the plugin class to your bot setup and put some settings in there:
require 'cinch'
require 'cinch/plugins/rfc'
bot = Cinch::Bot.new do
configure do |c|
c.nick = "githubbot"
c.realname = "Tik-Tok"
c.server = "irc.freenode.net"
c.channels = %w{#channel1 #channel2}
c.plugins.plugins = [Cinch::Plugins::RFC]
end
end
bot.start
Contributing
- Fork it
- 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 new Pull Request