public
Description: IRC Logger/Log Browser with Isaac and Sinatra
Homepage:
Clone URL: git://github.com/jamie/ircscribe.git
jamie (author)
Mon Nov 17 19:14:38 -0800 2008
commit  1cdc9e5aa03ba19e66529bf1bd44442f3ab157fc
tree    c9629f038d8720e317cb6e97736d6fe909a266ed
parent  cda67a616a570f9946b79cab4f50cc309490b27c
name age message
file .gitignore Loading commit data...
file README
file scribe.rb
file transcript.rb
README
## Getting Started

Edit ircwatch.rb to list channels you want logged

ruby ircwatch.rb &
ruby irclogs.rb &

Hit up a browser at localhost:4567

## Database Setup

require 'sequel'
DB = Sequel.sqlite('irc.db')
DB << "create table messages (channel varchar(255), nick varchar(255), message text, at timestamp);"