Skip to content

Commit

Permalink
oops, here's the Rakefile
Browse files Browse the repository at this point in the history
darcs-hash:20051120045125-98c04-f45a7c61289ce492d3dae109625a29a6860bf365.gz
  • Loading branch information
jaredjennings committed Nov 20, 2005
1 parent 08fb2c0 commit 4f68480
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
require 'rubygems'
Gem::manage_gems
require 'rake/gempackagetask'

spec = Gem::Specification.new {|s|
s.name = 'ruby-shout'
s.version = '2.1'
s.author = 'Jared Jennings'
s.email = 'jjenning@fastmail.fm'
s.homepage = 'http://www.dingoskidneys.com/~jaredj/'
s.platform = Gem::Platform::RUBY
s.summary = 'Send audio over the network to an Icecast server'
s.files = ['ext/shout.c', 'ext/extconf.rb', 'example.rb']
s.has_rdoc = true
s.extra_rdoc_files = ['README']
s.extensions = ['ext/extconf.rb']
s.autorequire = 'shout'
s.require_path = '.'
}

Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_tar = true
end

0 comments on commit 4f68480

Please sign in to comment.