-
Notifications
You must be signed in to change notification settings - Fork 549
/
mysql2.gemspec
27 lines (23 loc) · 1.02 KB
/
mysql2.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
require File.expand_path('../lib/mysql2/version', __FILE__)
Mysql2::GEMSPEC = Gem::Specification.new do |s|
s.name = 'mysql2'
s.version = Mysql2::VERSION
s.authors = ['Brian Lopez', 'Aaron Stone']
s.license = "MIT"
s.email = ['[email protected]', '[email protected]']
s.extensions = ["ext/mysql2/extconf.rb"]
s.homepage = 'https://github.com/brianmario/mysql2'
s.rdoc_options = ["--charset=UTF-8"]
s.summary = 'A simple, fast Mysql library for Ruby, binding to libmysql'
s.metadata = {
'bug_tracker_uri' => "#{s.homepage}/issues",
'changelog_uri' => "#{s.homepage}/releases/tag/#{s.version}",
'documentation_uri' => "https://www.rubydoc.info/gems/mysql2/#{s.version}",
'homepage_uri' => s.homepage,
'source_code_uri' => "#{s.homepage}/tree/#{s.version}",
}
s.required_ruby_version = '>= 2.0.0'
s.files = `git ls-files README.md CHANGELOG.md LICENSE ext lib support`.split
s.metadata['msys2_mingw_dependencies'] = 'libmariadbclient'
s.add_runtime_dependency 'bigdecimal'
end