-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontours.gemspec
26 lines (21 loc) · 974 Bytes
/
contours.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
# frozen_string_literal: true
require_relative "lib/contours/version"
Gem::Specification.new do |spec|
spec.name = "contours"
spec.version = Contours::VERSION
spec.authors = ["Jim Gay"]
spec.email = ["[email protected]"]
spec.summary = "Support for building customizable configuration objects."
spec.description = <<~DESC
Provides objects with which you can define a configuration object
which can be customized by merging in other configuration objects.
DESC
spec.homepage = "https://github.com/SOFware/contours"
spec.required_ruby_version = ">= 2.7.0"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/SOFware/contours.git"
spec.metadata["changelog_uri"] = "https://github.com/SOFware/contours/blob/main/CHANGELOG.md"
spec.files = Dir["lib/**/*", "LICENSE", "Rakefile", "README.md"]
spec.require_paths = ["lib"]
end