public
Description: The tokyo cabinet ruby interface wrapped up in a gem
Homepage:
Clone URL: git://github.com/careo/tokyocabinet-ruby.git
Norman Clarke (author)
Wed May 20 09:05:47 -0700 2009
careo (committer)
Wed May 20 11:17:43 -0700 2009
tokyocabinet-ruby / tokyocabinet.gemspec
100644 28 lines (25 sloc) 1.14 kb
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
spec = Gem::Specification.new do |s|
  s.name = "tokyocabinet"
  s.version = "1.22"
  s.author "Mikio Hirabayashi"
  s.email = "mikio@users.sourceforge.net"
  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