-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelationizer.gemspec
More file actions
35 lines (29 loc) · 1.29 KB
/
Copy pathrelationizer.gemspec
File metadata and controls
35 lines (29 loc) · 1.29 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'relationizer/version'
Gem::Specification.new do |spec|
spec.name = "relationizer"
spec.version = Relationizer::VERSION
spec.authors = ["yancya"]
spec.email = ["yancya@upec.jp"]
spec.summary = %q{Array<Array> to Relation ppoi String}
spec.description = %q{Converts Array<Array> tuples into SQL relation literals for BigQuery, PostgreSQL, and MySQL 8.0.}
spec.homepage = "https://github.com/yancya/relationizer"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2"
spec.metadata = {
"homepage_uri" => spec.homepage,
"source_code_uri" => spec.homepage,
"changelog_uri" => "#{spec.homepage}/blob/master/CHANGELOG.md",
"rubygems_mfa_required" => "true",
}
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "bigdecimal"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake", ">= 12.3.3"
spec.add_development_dependency "test-unit", "~> 3.0"
end