blob: 6c7d22379db25a816f4521c245a31365d0e98b36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -*- ruby -*-
Gem::Specification.new do |s|
s.name = "test-unit"
s.version = "#{RUBY_VERSION}.0"
s.homepage = "http://www.ruby-lang.org"
s.author = "Shota Fukumori"
s.email = "[email protected]"
s.summary = "test/unit compatible API testing framework"
s.description =
"This library implements test/unit compatible API on minitest. " +
"The test/unit means that test/unit which was bundled with Ruby 1.8."
s.executables = ["testrb"]
end
|