Sha256: c6c1bf11e9472cc5b90551086a164521fc56cdb987d97a90ba1032893399a6a1

Contents?: true

Size: 499 Bytes

Versions: 1

Compression:

Stored size: 499 Bytes

Contents

require 'rake'

task :default => [:make]

task :make do
  Dir.chdir 'ext' do
    puts `ruby extconf.rb`
    puts `make`
  end
end

require 'jeweler'
Jeweler::Tasks.new do |s|
  s.version = '0.2.1'
  s.name = 'blackfoundry-pcap'
  s.summary = 'extensions to ruby-pcap'
  s.email = 'david@blackfoundry.com'
  s.description =<<-eod
    Some extensions to the pcap library.
  eod
  s.executables = []
  s.authors = ['David Turnbull']
  s.files = ['Rakefile', 'lib'] + Dir['ext/**'] + Dir['lib/**']
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
blackfoundry-pcap-0.2.1 Rakefile