tokyocabinet 1.29.1 → 1.32.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +6 -14
- data/extconf.rb +2 -0
- data/tokyocabinet.c +1 -1
- metadata +17 -15
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
OGQyNGFkNzFjNDEyM2RmMzYyZThkZTdhMTJlMWJiMzM1ODE1N2EyYzhjN2Fj
|
10
|
-
OGI1MjYxMGVmMjE0YzNlODg5MmIzYjRlNzBkMzJhNjUxZDFiMjdhYzAxODM3
|
11
|
-
YzE3ZWFiMjc4YjY0ZWU4YzM1MmUzMTAxMjNhMWRiN2ExMTYxYmQ=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
Njc1YTQ1Y2RlMjJhOGUxM2M2Zjc3NDFmOTFkNGYxYTVlOWQyN2Y0NmZlMTRm
|
14
|
-
ZGJjZWFjMDc1MzJhZGExMDk5MGIwMGExY2NlYmUzYzhjYTJhMDFlOGNkYTBh
|
15
|
-
MDQyN2UzMTBjNDM2Mjg2YzIxMWZiN2Y4Yjk4NjlkOWY2OGRjYjY=
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 29fb76140b5ea50d7dad41feec0f8b19522bcb0c
|
4
|
+
data.tar.gz: dbd9f5fda0907d4c8b3b096514c7501ec97a77b6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 55f6969b5415fbb8733f0a9e9d51a7538d5df957f05637bd0add005806c68aa7c17b60a7b8dcd3103aaa4507e53ee5351c0262108336c406a1077ef0a8704e79
|
7
|
+
data.tar.gz: 27c802d7c116ae3c2899ee257add56eb710bd913e82a571b258526dc188245f7b4583d3a841ec6e5fff2fc6511cfe03a8c07f42721a5cdda1321f49fc8d0b514
|
data/extconf.rb
CHANGED
data/tokyocabinet.c
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*************************************************************************************************
|
2
2
|
* Ruby binding of Tokyo Cabinet
|
3
|
-
*
|
3
|
+
* Copyright (C) 2006-2010 FAL Labs
|
4
4
|
* This file is part of Tokyo Cabinet.
|
5
5
|
* Tokyo Cabinet is free software; you can redistribute it and/or modify it under the terms of
|
6
6
|
* the GNU Lesser General Public License as published by the Free Software Foundation; either
|
metadata
CHANGED
@@ -1,24 +1,25 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tokyocabinet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- peleteiro
|
8
8
|
- Miguel Vazquez
|
9
|
+
- FAL Labs
|
10
|
+
- Yukio Goto
|
9
11
|
autorequire:
|
10
12
|
bindir: bin
|
11
13
|
cert_chain: []
|
12
|
-
date:
|
14
|
+
date: 2016-04-08 00:00:00.000000000 Z
|
13
15
|
dependencies: []
|
14
|
-
description:
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
email: mikisvaz@gmail.com
|
16
|
+
description: Tokyo Cabinet is a library of routines for managing a database. The
|
17
|
+
database is a simple data file containing records, each is a pair of a key and a
|
18
|
+
value. Every key and value is serial bytes with variable length. Both binary data
|
19
|
+
and character string can be used as a key and a value. There is neither concept
|
20
|
+
of data tables nor data types. Records are organized in hash table, B+ tree, or
|
21
|
+
fixed-length array.
|
22
|
+
email: byplayer100@gmail.com
|
22
23
|
executables: []
|
23
24
|
extensions:
|
24
25
|
- extconf.rb
|
@@ -32,21 +33,22 @@ metadata: {}
|
|
32
33
|
post_install_message:
|
33
34
|
rdoc_options: []
|
34
35
|
require_paths:
|
35
|
-
- .
|
36
|
+
- "."
|
36
37
|
required_ruby_version: !ruby/object:Gem::Requirement
|
37
38
|
requirements:
|
38
|
-
- -
|
39
|
+
- - ">="
|
39
40
|
- !ruby/object:Gem::Version
|
40
41
|
version: '0'
|
41
42
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
42
43
|
requirements:
|
43
|
-
- -
|
44
|
+
- - ">="
|
44
45
|
- !ruby/object:Gem::Version
|
45
46
|
version: '0'
|
46
47
|
requirements: []
|
47
48
|
rubyforge_project:
|
48
|
-
rubygems_version: 2.
|
49
|
+
rubygems_version: 2.4.8
|
49
50
|
signing_key:
|
50
51
|
specification_version: 4
|
51
|
-
summary:
|
52
|
+
summary: 'Tokyo Cabinet: a modern implementation of DBM.'
|
52
53
|
test_files: []
|
54
|
+
has_rdoc:
|