Skip to content

Commit

Permalink
Update gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
apainintheneck committed Nov 19, 2023
1 parent fdf1b34 commit 14daca6
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions atlasq.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,26 @@ Gem::Specification.new do |spec|
spec.email = ["[email protected]"]

spec.summary = "Query for countries info at the command line."
spec.description = "Country, region, and currency info at your fingertips. " \
"Query for regional info and see which countries show up."
spec.homepage = "https://github.com/apainintheneck/atlasq"
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 = ">= 2.7.0"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/apainintheneck/atlasq/blob/main/CHANGELOG.md"
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/**/*.rb"]
spec.files = Dir["{lib,exe}/**/*"]
spec.bindir = "exe"
spec.executables = ["atlasq"]
spec.require_paths = ["lib"]

spec.add_dependency "countries", "~> 5.7"
spec.add_dependency "iso-639", "~> 0.3"
spec.add_dependency "money", "~> 6.9"
spec.add_dependency "money-heuristics", "~> 0.1.1"
spec.add_dependency "tty-pager", "~> 0.14"

spec.metadata["rubygems_mfa_required"] = "true"
end

0 comments on commit 14daca6

Please sign in to comment.