1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/lib/test/unit/test-unit.gemspec
sorah 7c030a5ded * lib/test/unit/test-unit.gemspec: Add minitest < 5.0.0 dependency
* tool/rbinstall.rb: Add empty implementations for `add_dependency`,
  `add_runtime_dependency`, `add_development_dependency` for
  Gem::Specification.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45032 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2014-02-18 05:27:58 +00:00

18 lines
625 B
Ruby

# -*- 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 = "sorah@tubusu.net"
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"]
# Ruby bundled test/unit is a compatibility layer for minitest,
# and it doesn't have support for minitest 5.
s.add_runtime_dependency "minitest", '< 5.0.0'
end