-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathloupe.gemspec
32 lines (25 loc) · 1.16 KB
/
loupe.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
# frozen_string_literal: true
require_relative "lib/loupe/version"
Gem::Specification.new do |spec|
spec.name = "loupe"
spec.version = Loupe::VERSION
spec.authors = ["Vinicius Stock"]
spec.email = ["[email protected]"]
spec.summary = "Loupe is a Rubyy test framework with built in parallelism"
spec.description = "Loupe is a Ruby test framework that can run tests in parallel in Ractor or forked process mode"
spec.homepage = "https://github.com/vinistock/loupe"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/vinistock/loupe"
spec.metadata["changelog_uri"] = "https://github.com/vinistock/loupe/blob/master/CHANGELOG.md"
spec.files = Dir["{exe,lib}/**/*",
"LICENSE.txt",
"Rakefile",
"README.md"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "drb", "~> 2.0"
spec.add_dependency "io-console", "~> 0.5"
end