summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2020-02-08 18:40:39 +1300
committerJeremy Evans <code@jeremyevans.net>2020-02-08 09:53:35 -0800
commit1d5f8dfcdc3b4bf8f603a6925daf28508ea16d85 (patch)
tree24ce543e78adf891b96203eeded8ccba57246177
parent9045515f17b6147c6d8eb27ffa67f03721d2c3ac (diff)
downloadrack-1d5f8dfcdc3b4bf8f603a6925daf28508ea16d85.tar.gz
Tidy up gemspec.
-rw-r--r--rack.gemspec42
1 files changed, 21 insertions, 21 deletions
diff --git a/rack.gemspec b/rack.gemspec
index 1e17890f..cf3a15e4 100644
--- a/rack.gemspec
+++ b/rack.gemspec
@@ -5,32 +5,32 @@ require_relative 'lib/rack/version'
Gem::Specification.new do |s|
s.name = "rack"
s.version = Rack::RELEASE
- s.platform = Gem::Platform::RUBY
- s.summary = "a modular Ruby webserver interface"
- s.license = "MIT"
-
- s.description = <<-EOF
-Rack provides a minimal, modular and adaptable interface for developing
-web applications in Ruby. By wrapping HTTP requests and responses in
-the simplest way possible, it unifies and distills the API for web
-servers, web frameworks, and software in between (the so-called
-middleware) into a single method call.
-
-Also see https://rack.github.io/.
-EOF
-
- s.files = Dir['{bin/*,contrib/*,example/*,lib/**/*}'] +
- %w(MIT-LICENSE rack.gemspec Rakefile README.rdoc SPEC)
- s.bindir = 'bin'
+ s.platform = Gem::Platform::RUBY
+ s.summary = "A modular Ruby webserver interface."
+ s.license = "MIT"
+
+ s.description = <<~EOF
+ Rack provides a minimal, modular and adaptable interface for developing
+ web applications in Ruby. By wrapping HTTP requests and responses in
+ the simplest way possible, it unifies and distills the API for web
+ servers, web frameworks, and software in between (the so-called
+ middleware) into a single method call.
+ EOF
+
+ s.files = Dir['{bin/*,contrib/*,example/*,lib/**/*}'] +
+ %w(MIT-LICENSE rack.gemspec Rakefile README.rdoc SPEC)
+
+ s.bindir = 'bin'
s.executables << 'rackup'
s.require_path = 'lib'
s.extra_rdoc_files = ['README.rdoc', 'CHANGELOG.md', 'CONTRIBUTING.md']
- s.author = 'Leah Neukirchen'
- s.email = 'leah@vuxu.org'
- s.homepage = 'https://rack.github.io/'
+ s.author = 'Leah Neukirchen'
+ s.email = 'leah@vuxu.org'
+
+ s.homepage = 'https://rack.github.io/'
s.required_ruby_version = '>= 2.3.0'
- s.metadata = {
+ s.metadata = {
"bug_tracker_uri" => "https://github.com/rack/rack/issues",
"changelog_uri" => "https://github.com/rack/rack/blob/master/CHANGELOG.md",
"documentation_uri" => "https://rubydoc.info/github/rack/rack",