forked from careo/tokyocabinet-ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tokyocabinet.gemspec
27 lines (25 loc) · 1.12 KB
/
tokyocabinet.gemspec
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
spec = Gem::Specification.new do |s|
s.name = "tokyocabinet"
s.version = "1.22"
s.authors = ["Mikio Hirabayashi"]
s.email = "[email protected]"
s.homepage = "http://tokyocabinet.sourceforge.net/"
s.summary = "Tokyo Cabinet: a modern implementation of DBM."
s.description = "Tokyo Cabinet is a library of routines for managing a database. The database is a simple data file containing records, each is a pair of a key and a value. Every key and value is serial bytes with variable length. Both binary data and character string can be used as a key and a value. There is neither concept of data tables nor data types. Records are organized in hash table, B+ tree, or fixed-length array."
s.files = %w{MANIFEST
extconf.rb
tokyocabinet.c
overview.rd
tchtest.rb
tcbtest.rb
tcftest.rb
tcttest.rb
test.rb
example/tchdbex.rb
example/tcbdbex.rb
example/tcfdbex.rb
example/tctdbex.rb
tokyocabinet.gemspec
COPYING}
s.extensions = [ "extconf.rb" ]
end