ruby-qdbm 0.1

Sign up to get free protection for your applications and to get access to all the features.
data/ruby-qdbm.gemspec ADDED
@@ -0,0 +1,36 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ lib = File.expand_path("../lib", __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ruby-qdbm"
8
+ spec.version = '0.1'
9
+ spec.authors = ["TOKI Yoshinori"]
10
+ spec.email = ["toki@freedom.ne.jp"]
11
+
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/"
15
+ spec.license = "LGPL-2.1-only"
16
+
17
+ spec.extensions = %w[ ext/depot/extconf.rb ext/curia/extconf.rb ext/villa/extconf.rb ]
18
+
19
+ # Specify which files should be added to the gem when it is released.
20
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
22
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
23
+ end
24
+ spec.bindir = "exe"
25
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
+ spec.require_paths = ["lib"]
27
+
28
+ spec.add_development_dependency "bundler", "~> 1.16"
29
+ spec.add_development_dependency "rake", "~> 10.0"
30
+ spec.add_development_dependency "rake-compiler"
31
+ end
32
+
33
+ # Local Variables:
34
+ # mode: Ruby
35
+ # indent-tabs-mode: nil
36
+ # End:
metadata ADDED
@@ -0,0 +1,114 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby-qdbm
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.1'
5
+ platform: ruby
6
+ authors:
7
+ - TOKI Yoshinori
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-02-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake-compiler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: "(1) The Debian patch is applied for the latest version of ruby. (2)
56
+ Repacked to rubygems."
57
+ email:
58
+ - toki@freedom.ne.jp
59
+ executables: []
60
+ extensions:
61
+ - ext/depot/extconf.rb
62
+ - ext/curia/extconf.rb
63
+ - ext/villa/extconf.rb
64
+ extra_rdoc_files: []
65
+ files:
66
+ - ".gitignore"
67
+ - Gemfile
68
+ - README.md
69
+ - Rakefile
70
+ - ext/curia/MANIFEST
71
+ - ext/curia/extconf.rb
72
+ - ext/curia/mod_curia.c
73
+ - ext/depot/MANIFEST
74
+ - ext/depot/extconf.rb
75
+ - ext/depot/mod_depot.c
76
+ - ext/villa/MANIFEST
77
+ - ext/villa/extconf.rb
78
+ - ext/villa/mod_villa.c
79
+ - lib/curia.rb
80
+ - lib/depot.rb
81
+ - lib/villa.rb
82
+ - myrbdoc
83
+ - overview
84
+ - rbapidoc/curia.rb.html
85
+ - rbapidoc/depot.rb.html
86
+ - rbapidoc/index.html
87
+ - rbapidoc/villa.rb.html
88
+ - rbspex-ja.html
89
+ - rbspex.html
90
+ - ruby-qdbm.gemspec
91
+ homepage: https://fallabs.com/qdbm/
92
+ licenses:
93
+ - LGPL-2.1-only
94
+ metadata: {}
95
+ post_install_message:
96
+ rdoc_options: []
97
+ require_paths:
98
+ - lib
99
+ required_ruby_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ required_rubygems_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ requirements: []
110
+ rubygems_version: 3.0.1
111
+ signing_key:
112
+ specification_version: 4
113
+ summary: QDBM ruby extension libraries (depot/curia/villa)
114
+ test_files: []