File: test-unit-ruby-core.gemspec

package info (click to toggle)
ruby-test-unit-ruby-core 1.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 124 kB
  • sloc: ruby: 1,049; makefile: 4
file content (26 lines) | stat: -rw-r--r-- 770 bytes parent folder | download
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
# frozen_string_literal: true

Gem::Specification.new do |spec|
  spec.name = "test-unit-ruby-core"
  spec.version = "1.0.6"
  spec.authors = ["Hiroshi SHIBATA", "Nobu Nakada"]
  spec.email = ["hsbt@ruby-lang.org", "nobu@ruby-lang.org"]

  spec.summary = "Additional test assertions for Ruby standard libraries."
  spec.description = spec.summary
  spec.homepage = "https://github.com/ruby/test-unit-ruby-core"
  spec.licenses = ["Ruby", "BSD-2-Clause"]
  spec.required_ruby_version = ">= 2.3"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = spec.homepage

  spec.files = %w[
    lib/core_assertions.rb
    lib/envutil.rb
    lib/find_executable.rb
  ]
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency("test-unit")
end