aboutsummaryrefslogtreecommitdiffstats
path: root/test/rubygems/specifications
diff options
context:
space:
mode:
authorJosef Šimánek <josef.simanek@gmail.com>2020-04-19 18:16:41 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-05-08 07:38:50 +0900
commit832a7b04589578b52297db6a9943e0c6c003fbfc (patch)
tree82705b5075092a4f783c4ad6ab263cf533724d88 /test/rubygems/specifications
parent856cbbdd52eaafd27c21a8f4dea7e89373667694 (diff)
downloadruby-832a7b04589578b52297db6a9943e0c6c003fbfc.tar.gz
[rubygems/rubygems] Add gem build test to check for removed methods.
https://github.com/rubygems/rubygems/commit/c07b9cf4f1
Diffstat (limited to 'test/rubygems/specifications')
-rw-r--r--test/rubygems/specifications/rubyforge-0.0.1.gemspec14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/rubygems/specifications/rubyforge-0.0.1.gemspec b/test/rubygems/specifications/rubyforge-0.0.1.gemspec
new file mode 100644
index 0000000000..0df2c4c379
--- /dev/null
+++ b/test/rubygems/specifications/rubyforge-0.0.1.gemspec
@@ -0,0 +1,14 @@
+# -*- encoding: utf-8 -*-
+
+Gem::Specification.new do |s|
+ s.name = "rubyforge"
+ s.version = "0.0.1"
+ s.platform = "ruby"
+ s.require_paths = ["lib"]
+ s.summary = "A very bar gem"
+ s.authors = ["unknown"]
+ s.license = 'MIT'
+ s.homepage = 'http://example.com'
+ s.files = ['README.md']
+ s.rubyforge_project = 'abc'
+end