public
Rubygem
Description: irccat is like `cat`, but here, the STDOUT is an IRC channel.
Homepage: http://irccat.rubyforge.org/
Clone URL: git://github.com/webs/irccat.git
Click here to lend your support to: irccat and make a donation at www.pledgie.com !
irccat / config / requirements.rb
100644 17 lines (14 sloc) 0.358 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'fileutils'
include FileUtils
 
require 'rubygems'
%w[rake hoe newgem rubigen].each do |req_gem|
  begin
    require req_gem
  rescue LoadError
    puts "This Rakefile requires the '#{req_gem}' RubyGem."
    puts "Installation: gem install #{req_gem} -y"
    exit
  end
end
 
$:.unshift(File.join(File.dirname(__FILE__), %w[.. lib]))
 
require 'irc_cat'