diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2020-06-30 21:23:37 +0900 |
|---|---|---|
| committer | nagachika <nagachika@ruby-lang.org> | 2020-09-15 20:55:40 +0900 |
| commit | 7d76314885be3532999684356657ce36da84d04e (patch) | |
| tree | aae23ff9ce30ff03c1f0867c0bc46ea968e8e324 /test/rubygems/specifications | |
| parent | 3590f082442afc4506250f5274a7877371a112de (diff) | |
Merge RubyGems 3.1.4
Diffstat (limited to 'test/rubygems/specifications')
| -rw-r--r-- | test/rubygems/specifications/rubyforge-0.0.1.gemspec | 14 |
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 |
