ruby-qdbm 0.1 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -5
  3. data/ruby-qdbm.gemspec +9 -3
  4. metadata +9 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5cdd8b88a98aee4df6f87be66e8b2c043af2f9382dd19cf970cb155aaab76cf8
4
- data.tar.gz: b4e917cc0fa84b194a5ecfefaa6b5f45fd504afc80387e93f84871827fb1226a
3
+ metadata.gz: aa321d7ea9333e179b9ea0b6fcad3191e0e098a28aeccf5e8599a143232821a7
4
+ data.tar.gz: 7447f4e33c312e511ae581af6bfa468b7cc0ce3b63a9e9c28950fb402a9d9e52
5
5
  SHA512:
6
- metadata.gz: f596c32e805be65b9fd3e915236174c7bac5d2c674a071ffca1256d6eda346093d08a44c763e2e85b8601d17cc57016542cbe25b2988ee9f5f01d84356970c0b
7
- data.tar.gz: 8b088c78315242b5dea2b1c4f92add5584e45042cb0a41a194d5b4115aa388a7c6dc647d1b46ce8260968c9183e1ae90c7be85deda0c82b5028df47e813c2088
6
+ metadata.gz: e77c9187d13f472190767e827ae364e80e41b219386e5d9fa9c13d4a096a1c76c31ffc165363acb747cb5cb8e7f04bd6f54d64c6bdc2c40994e647ca74ab3024
7
+ data.tar.gz: 32199e9b110c6322a95707aa7d509862ee0e524fdcf75b8f2a416cb96a6abab860fdb1655139290f2956b0201f44f2fbfa8e16c3f9f57745da1eb40369ceb950
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
- # ruby-qdbm
1
+ ruby-qdbm
2
+ =========
2
3
 
3
4
  QDBM is Quick Database Manager of https://fallabs.com/qdbm/.
4
5
  This gem provides QDBM ruby extension libraries (depot/curia/villa).
@@ -8,7 +9,8 @@ The modifications from original are as follows.
8
9
  1. The Debian patch is applied for the latest version of ruby.
9
10
  2. Repacked to rubygems.
10
11
 
11
- ## Installation
12
+ Installation
13
+ ------------
12
14
 
13
15
  Add this line to your application's Gemfile:
14
16
 
@@ -24,14 +26,17 @@ Or install it yourself as:
24
26
 
25
27
  $ gem install ruby-qdbm
26
28
 
27
- ## Usage
29
+ Usage
30
+ -----
28
31
 
29
32
  See https://fallabs.com/qdbm/rbspex.html.
30
33
 
31
- ## Contributing
34
+ Contributing
35
+ ------------
32
36
 
33
37
  Bug reports and pull requests are welcome on GitHub at https://github.com/y10k/ruby-qdbm.
34
38
 
35
- ## License
39
+ License
40
+ -------
36
41
 
37
42
  The gem is available as open source under the terms of the [LGPL-2.1](https://www.gnu.org/licenses/lgpl-2.1.html).
data/ruby-qdbm.gemspec CHANGED
@@ -5,13 +5,19 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "ruby-qdbm"
8
- spec.version = '0.1'
8
+ spec.version = '0.1.1'
9
9
  spec.authors = ["TOKI Yoshinori"]
10
10
  spec.email = ["toki@freedom.ne.jp"]
11
11
 
12
12
  spec.summary = %q{QDBM ruby extension libraries (depot/curia/villa)}
13
- spec.description = %q{(1) The Debian patch is applied for the latest version of ruby. (2) Repacked to rubygems.}
14
- spec.homepage = "https://fallabs.com/qdbm/"
13
+ spec.description = <<-'EOF'
14
+ QDBM ruby extension libraries (depot/curia/villa).
15
+ This gem provides QDBM ruby extension libraries (depot/curia/villa).
16
+ The modifications from original are as follows.
17
+ 1. The Debian patch is applied for the latest version of ruby.
18
+ 2. Repacked to rubygems.
19
+ EOF
20
+ spec.homepage = "https://github.com/y10k/ruby-qdbm"
15
21
  spec.license = "LGPL-2.1-only"
16
22
 
17
23
  spec.extensions = %w[ ext/depot/extconf.rb ext/curia/extconf.rb ext/villa/extconf.rb ]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-qdbm
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.1'
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - TOKI Yoshinori
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-02-06 00:00:00.000000000 Z
11
+ date: 2019-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,8 +52,12 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description: "(1) The Debian patch is applied for the latest version of ruby. (2)
56
- Repacked to rubygems."
55
+ description: |2
56
+ QDBM ruby extension libraries (depot/curia/villa).
57
+ This gem provides QDBM ruby extension libraries (depot/curia/villa).
58
+ The modifications from original are as follows.
59
+ 1. The Debian patch is applied for the latest version of ruby.
60
+ 2. Repacked to rubygems.
57
61
  email:
58
62
  - toki@freedom.ne.jp
59
63
  executables: []
@@ -88,7 +92,7 @@ files:
88
92
  - rbspex-ja.html
89
93
  - rbspex.html
90
94
  - ruby-qdbm.gemspec
91
- homepage: https://fallabs.com/qdbm/
95
+ homepage: https://github.com/y10k/ruby-qdbm
92
96
  licenses:
93
97
  - LGPL-2.1-only
94
98
  metadata: {}