diff options
author | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-08-31 12:50:16 +0000 |
---|---|---|
committer | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-08-31 12:50:16 +0000 |
commit | ed9312527fa68d462b5a883d0de52aa81014677b (patch) | |
tree | beacb887a364617c9e870904a127269a7a8dc53c /lib/test | |
parent | 25e6db3e3cb52c1a81e1e4a958a8d520a996812e (diff) |
* lib/test/unit/test-unit.gemspec: Make test/unit default gem.
[Feature #6875] [ruby-dev:46051]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test')
-rw-r--r-- | lib/test/unit/test-unit.gemspec | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/test/unit/test-unit.gemspec b/lib/test/unit/test-unit.gemspec new file mode 100644 index 0000000000..6c7d22379d --- /dev/null +++ b/lib/test/unit/test-unit.gemspec @@ -0,0 +1,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 |