-
Notifications
You must be signed in to change notification settings - Fork 201
/
sqlite3.gemspec
89 lines (77 loc) · 2.7 KB
/
sqlite3.gemspec
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
begin
require_relative "lib/sqlite3/version"
rescue LoadError
puts "WARNING: could not load Sqlite3::VERSION"
end
Gem::Specification.new do |s|
s.name = "sqlite3"
s.version = defined?(SQLite3::VERSION) ? SQLite3::VERSION : "0.0.0"
s.summary = "Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org)."
s.description = <<~TEXT
Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org). Precompiled
binaries are available for common platforms for recent versions of Ruby.
TEXT
s.authors = ["Jamis Buck", "Luis Lavena", "Aaron Patterson", "Mike Dalessio"]
s.licenses = ["BSD-3-Clause"]
s.required_ruby_version = Gem::Requirement.new(">= 3.1")
s.homepage = "https://github.com/sparklemotion/sqlite3-ruby"
s.metadata = {
"homepage_uri" => "https://github.com/sparklemotion/sqlite3-ruby",
"bug_tracker_uri" => "https://github.com/sparklemotion/sqlite3-ruby/issues",
"documentation_uri" => "https://www.rubydoc.info/gems/sqlite3",
"changelog_uri" => "https://github.com/sparklemotion/sqlite3-ruby/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/sparklemotion/sqlite3-ruby",
# https://github.com/oneclick/rubyinstaller2/wiki/For-gem-developers#msys2-library-dependency
"msys2_mingw_dependencies" => "sqlite3",
# https://guides.rubygems.org/mfa-requirement-opt-in/
"rubygems_mfa_required" => "true"
}
s.files = [
".gemtest",
"CHANGELOG.md",
"CONTRIBUTING.md",
"FAQ.md",
"INSTALLATION.md",
"LICENSE",
"README.md",
"dependencies.yml",
"ext/sqlite3/aggregator.c",
"ext/sqlite3/aggregator.h",
"ext/sqlite3/backup.c",
"ext/sqlite3/backup.h",
"ext/sqlite3/database.c",
"ext/sqlite3/database.h",
"ext/sqlite3/exception.c",
"ext/sqlite3/exception.h",
"ext/sqlite3/extconf.rb",
"ext/sqlite3/sqlite3.c",
"ext/sqlite3/sqlite3_ruby.h",
"ext/sqlite3/statement.c",
"ext/sqlite3/statement.h",
"ext/sqlite3/timespec.h",
"lib/sqlite3.rb",
"lib/sqlite3/constants.rb",
"lib/sqlite3/database.rb",
"lib/sqlite3/errors.rb",
"lib/sqlite3/fork_safety.rb",
"lib/sqlite3/pragmas.rb",
"lib/sqlite3/resultset.rb",
"lib/sqlite3/statement.rb",
"lib/sqlite3/value.rb",
"lib/sqlite3/version.rb",
"lib/sqlite3/version_info.rb"
]
s.extra_rdoc_files = [
"CHANGELOG.md",
"README.md",
"ext/sqlite3/aggregator.c",
"ext/sqlite3/backup.c",
"ext/sqlite3/database.c",
"ext/sqlite3/exception.c",
"ext/sqlite3/sqlite3.c",
"ext/sqlite3/statement.c"
]
s.rdoc_options = ["--main", "README.md"]
s.add_dependency("mini_portile2", "~> 2.8.0")
s.extensions << "ext/sqlite3/extconf.rb"
end