rpatricia.git  about / heads / tags
see http://www.goto.info.waseda.ac.jp/~tatsuya/rpatricia/
blob f6226260b717d157c03109c6683134a9901cab8b 1218 bytes (raw)
$ git show HEAD:rpatricia.gemspec	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
 
# to build a gem:
#   gem build rpatricia.gemspec

Gem::Specification.new do |s|
  s.name = %q{rpatricia}
  s.version = %q{1.0.1} # remember to update Changes if this is changed

  s.homepage = "http://www.goto.info.waseda.ac.jp/~tatsuya/rpatricia/"

  # Tatsuya wrote the extension, Eric gemified this
  s.authors = [ "Tatsuya Mori", "Eric Wong" ]

  s.date = Time.now.utc.strftime('%Y-%m-%d')
  s.summary = %q{module for fast IP address/prefix lookups}
  s.description = %q{
This is a ruby wrapper of Net::Patricia, which has been developed by
Dave Plonka. The original Net::Patricia and its C API are available
from:
http://net.doit.wisc.edu/~plonka/Net-Patricia/

Net::Patricia is a module for fast IP address/prefix lookups.
I have modified some interfaces for the Ruby wrapper version.
}.strip

  # bother Eric for all gem issues
  s.email = %q{normalperson@yhbt.net}

  # generated using "git ls-files" from Eric's git repo
  s.files = %w(
Changes
README
TODO
COPYING
LGPL-2.1
ext/rpatricia/credits.txt
ext/rpatricia/extconf.rb
ext/rpatricia/patricia.c
ext/rpatricia/patricia.h
ext/rpatricia/rpatricia.c
rpatricia.gemspec
test.rb
)
  s.extensions = %w(ext/rpatricia/extconf.rb)
  s.licenses = %w(LGPLv2.1+)
end

git clone https://yhbt.net/rpatricia.git