generated from mattbrictson/gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mighty_test.gemspec
34 lines (29 loc) · 1.29 KB
/
mighty_test.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
32
33
34
require_relative "lib/mighty_test/version"
Gem::Specification.new do |spec|
spec.name = "mighty_test"
spec.version = MightyTest::VERSION
spec.authors = ["Matt Brictson"]
spec.email = ["[email protected]"]
spec.summary = "A modern Minitest runner for TDD, with watch mode and more"
spec.homepage = "https://github.com/mattbrictson/mighty_test"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/mattbrictson/mighty_test/issues",
"changelog_uri" => "https://github.com/mattbrictson/mighty_test/releases",
"source_code_uri" => "https://github.com/mattbrictson/mighty_test",
"homepage_uri" => spec.homepage,
"rubygems_mfa_required" => "true"
}
# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob(%w[LICENSE.txt README.md {exe,lib}/**/*]).reject { |f| File.directory?(f) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
# Runtime dependencies
spec.add_dependency "listen", "~> 3.5"
spec.add_dependency "minitest", "~> 5.15"
spec.add_dependency "minitest-fail-fast", "~> 0.1.0"
spec.add_dependency "minitest-focus", "~> 1.4"
spec.add_dependency "minitest-rg", "~> 5.3"
end