-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
refinements.gemspec
29 lines (24 loc) · 1.02 KB
/
refinements.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "refinements"
spec.version = "12.11.0"
spec.authors = ["Brooke Kuhlmann"]
spec.email = ["[email protected]"]
spec.homepage = "https://alchemists.io/projects/refinements"
spec.summary = "A collection of core object refinements."
spec.license = "Hippocratic-2.1"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/bkuhlmann/refinements/issues",
"changelog_uri" => "https://alchemists.io/projects/refinements/versions",
"homepage_uri" => "https://alchemists.io/projects/refinements",
"funding_uri" => "https://github.com/sponsors/bkuhlmann",
"label" => "Refinements",
"rubygems_mfa_required" => "true",
"source_code_uri" => "https://github.com/bkuhlmann/refinements"
}
spec.signing_key = Gem.default_key_path
spec.cert_chain = [Gem.default_cert_path]
spec.required_ruby_version = ">= 3.3", "<= 3.4"
spec.files = Dir["*.gemspec", "lib/**/*"]
spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
end