-
Notifications
You must be signed in to change notification settings - Fork 0
/
atlasq.gemspec
31 lines (25 loc) · 967 Bytes
/
atlasq.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
# frozen_string_literal: true
require_relative "lib/atlasq/version"
Gem::Specification.new do |spec|
spec.name = "atlasq"
spec.version = Atlasq::VERSION
spec.authors = ["Kevin Robell"]
spec.email = ["[email protected]"]
spec.summary = "Query for countries info at the command line."
spec.description = <<~DESCRIPTION
Country, region, and currency info at your fingertips.
Query for regional info and see which countries show up.
DESCRIPTION
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0"
spec.metadata = {
"homepage_uri" => "https://github.com/apainintheneck/atlasq/",
"changelog_uri" => "https://github.com/apainintheneck/atlasq/blob/main/CHANGELOG.md",
"rubygems_mfa_required" => "true",
}
spec.files = Dir["{lib,exe}/**/*", "{cache}/**/*.json"]
spec.bindir = "exe"
spec.executables = ["atlasq"]
spec.add_dependency "tty-pager", "~> 0.14.0"
spec.add_dependency "unaccent", "~> 0.4.0"
end