-
Notifications
You must be signed in to change notification settings - Fork 2
/
jis_x_0401.gemspec
31 lines (27 loc) · 1.05 KB
/
jis_x_0401.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
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "jis_x_0401/version"
Gem::Specification.new do |spec|
spec.name = "jis_x_0401"
spec.version = JisX0401::VERSION
spec.authors = ["takkanm"]
spec.email = ["[email protected]"]
spec.summary = %q{Library for JISX401}
spec.description = %q{Library for JISX401}
spec.homepage = "https://github.com/esminc/jis_x_0401"
spec.license = "MIT"
spec.required_ruby_version = '>= 2.7.0'
spec.metadata = {
"homepage_uri" => "https://github.com/esminc/jis_x_0401",
"source_code_uri" => "https://github.com/esminc/jis_x_0401",
"bug_tracker_uri" => "https://github.com/esminc/jis_x_0401/issues",
"rubygems_mfa_required" => "true"
}
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
end