-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheasytest.gemspec
26 lines (21 loc) · 925 Bytes
/
easytest.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
require_relative "lib/easytest/version"
Gem::Specification.new do |spec|
spec.name = "easytest"
spec.version = Easytest::VERSION
spec.authors = ["Masafumi Koba"]
spec.email = ["[email protected]"]
spec.license = "MIT"
spec.summary = "Easy testing for Ruby."
spec.description = "Easytest is a tiny testing framework for Ruby with a familiar DSL."
spec.homepage = "https://github.com/ybiquitous/easytest"
spec.required_ruby_version = ">= 2.7"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir["CHANGELOG.md", "LICENSE", "README.md", "exe/*", "lib/**/*.rb", "sig/**/*.rbs"]
spec.bindir = "exe"
spec.executables = ["easytest"]
spec.require_paths = ["lib"]
spec.add_dependency "rainbow", ">= 3.1"
end