summaryrefslogtreecommitdiff
path: root/test/rubygems/specifications/rubyforge-0.0.1.gemspec
blob: 0421b675a0f974ba387fe3f8510745f7dd6847c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

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"
  s.required_ruby_version = ">= 1.9.3"
end