-
Notifications
You must be signed in to change notification settings - Fork 6
/
gemdiff.gemspec
28 lines (22 loc) · 1.04 KB
/
gemdiff.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 "./lib/gemdiff/version"
Gem::Specification.new do |spec|
spec.name = "gemdiff"
spec.version = Gemdiff::VERSION
spec.authors = ["Tee Parham"]
spec.email = ["[email protected]"]
spec.summary = "Find source repositories for ruby gems. Open, compare, and update outdated gem versions"
spec.description = "Command-line utility to find source repositories for ruby gems, open common GitHub pages, " \
"compare gem versions, and simplify gem update workflow in git."
spec.homepage = "https://github.com/teeparham/gemdiff"
spec.license = "MIT"
spec.files = Dir["LICENSE.txt", "README.md", "lib/**/*"]
spec.executables = %w[gemdiff]
spec.require_paths = %w[lib]
spec.required_ruby_version = ">= 3.0.0"
spec.add_dependency "faraday-retry", "~> 2.2"
spec.add_dependency "launchy", "~> 3.0"
spec.add_dependency "octokit", "~> 9.0"
spec.add_dependency "thor", "~> 1.0"
spec.metadata["rubygems_mfa_required"] = "true"
end