aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--test/lib/test/unit/test-unit.gemspec18
2 files changed, 4 insertions, 18 deletions
diff --git a/ChangeLog b/ChangeLog
index d959d62d5c..c588ed524d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat May 24 13:42:46 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
+
+ * test/lib/test/unit/test-unit.gemspec: removed needless gemspec file.
+
Sat May 24 09:39:06 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* defs/default_gems: removed mintiest entry.
diff --git a/test/lib/test/unit/test-unit.gemspec b/test/lib/test/unit/test-unit.gemspec
deleted file mode 100644
index 363fd50c02..0000000000
--- a/test/lib/test/unit/test-unit.gemspec
+++ /dev/null
@@ -1,18 +0,0 @@
-# -*- 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