-
Notifications
You must be signed in to change notification settings - Fork 4
/
polyfill-data.gemspec
28 lines (22 loc) · 1.03 KB
/
polyfill-data.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
# frozen_string_literal: true
require_relative "lib/polyfill/data/version"
Gem::Specification.new do |spec|
spec.name = "polyfill-data"
spec.version = Polyfill::Data::VERSION
spec.authors = ["Jim Gay"]
spec.email = ["[email protected]"]
spec.summary = "Add the ruby 3.2 Data class to older rubies"
spec.description = "Add the ruby 3.2 Data class to older rubies. Do nothing in 3.2"
spec.license = "MIT"
spec.homepage = "https://github.com/saturnflyer/polyfill-data"
spec.required_ruby_version = ">= 2.6.0", "< 3.2.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/saturnflyer/polyfill-data.git"
spec.files = Dir["{lib,certs}/**/*"] + ["Rakefile", "README.md", "CHANGELOG.md"]
spec.test_files = Dir["test/*"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.cert_chain = ['certs/saturnflyer.pem']
spec.signing_key = File.expand_path("~/.gem/gem-private_key.pem") if $0 =~ /gem\z/
end