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

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request