-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
rubygems-update.gemspec
43 lines (38 loc) · 2.26 KB
/
rubygems-update.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "rubygems-update"
s.version = "3.6.0.dev"
s.authors = ["Jim Weirich", "Chad Fowler", "Eric Hodel", "Luis Lavena", "Aaron Patterson", "Samuel Giddins", "André Arko", "Evan Phoenix", "Hiroshi SHIBATA"]
s.email = ["", "", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"]
s.summary = "RubyGems is a package management framework for Ruby. This gem is downloaded and installed by `gem update --system`, so that the `gem` CLI can update itself."
s.description = "A package (also known as a library) contains a set of functionality
that can be invoked by a Ruby program, such as reading and parsing an XML file. We call
these packages 'gems' and RubyGems is a tool to install, create, manage and load these
packages in your Ruby environment. RubyGems is also a client for RubyGems.org, a public
repository of Gems that allows you to publish a Gem that can be shared and used by other
developers. See our guide on publishing a Gem at guides.rubygems.org"
s.homepage = "https://guides.rubygems.org"
s.metadata = {
"source_code_uri" => "https://github.com/rubygems/rubygems",
"bug_tracker_uri" => "https://github.com/rubygems/rubygems/issues",
"changelog_uri" => "https://github.com/rubygems/rubygems/blob/master/CHANGELOG.md",
"funding_uri" => "https://rubycentral.org/#/portal/signup",
}
s.licenses = ["Ruby", "MIT"]
s.files = File.read(File.expand_path("Manifest.txt", __dir__)).split
s.bindir = "exe"
s.executables = ["update_rubygems"]
s.require_paths = ["hide_lib_for_update"]
s.rdoc_options = ["--main", "README.md", "--title=RubyGems Update Documentation"]
s.extra_rdoc_files = [
"LICENSE.txt", "doc/MAINTAINERS.txt",
"MIT.txt", "Manifest.txt", "README.md",
"doc/rubygems/UPGRADING.md", "doc/rubygems/POLICIES.md", "CODE_OF_CONDUCT.md",
"doc/rubygems/CONTRIBUTING.md",
"bundler/LICENSE.md", "bundler/README.md",
"hide_lib_for_update/note.txt", *Dir["bundler/lib/bundler/man/*.1", base: __dir__]
]
s.required_ruby_version = Gem::Requirement.new(">= 3.1.0")
s.required_rubygems_version = Gem::Requirement.new(">= 0")
s.specification_version = 4
end