Skip to content

Commit

Permalink
add authors and merge mikisvaz source
Browse files Browse the repository at this point in the history
  • Loading branch information
byplayer committed Apr 5, 2016
1 parent a3bb9d8 commit 236aef5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions tokyocabinet.c
Original file line number Diff line number Diff line change
Expand Up @@ -3395,6 +3395,7 @@ static void adb_init(void){
rb_define_method(cls_adb, "value?", adb_check_value, 1);
rb_define_method(cls_adb, "key", adb_get_reverse, 1);
rb_define_method(cls_adb, "clear", adb_vanish, 0);
rb_define_method(cls_adb, "size", adb_rnum, 0);
rb_define_method(cls_adb, "length", adb_rnum, 0);
rb_define_method(cls_adb, "empty?", adb_empty, 0);
rb_define_method(cls_adb, "each", adb_each, 0);
Expand Down
6 changes: 3 additions & 3 deletions tokyocabinet.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ require 'rubygems'

spec = Gem::Specification.new do |s|
s.name = "tokyocabinet"
s.version = "1.31.a"
s.author = "FAL Labs"
s.email = "info@fallabs.com"
s.version = "1.32.0"
s.authors = ["peleteiro", "Miguel Vazquez", "FAL Labs", "Yukio Goto"]
s.email = "byplayer100@gmail.com"
s.homepage = "http://fallabs.com/tokyocabinet/"
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."
Expand Down

0 comments on commit 236aef5

Please sign in to comment.