public
Description: a ruby implementation of the IRC client protocol
Homepage:
Clone URL: git://github.com/sbfaulkner/net-irc.git
net-irc / Rakefile
100644 11 lines (7 sloc) 0.196 kb
1
2
3
4
5
6
7
8
9
10
11
require 'rubygems'
Gem::manage_gems
require 'rake/gempackagetask'
 
load File.join(File.dirname(__FILE__),'net-irc.gemspec')
 
Rake::GemPackageTask.new(SPEC) do |pkg|
end
 
task :default => :package