Skip to content

Commit

Permalink
Add metadata to gemspec
Browse files Browse the repository at this point in the history
Remove unnecessary encoding magic comment, and shorten description.
  • Loading branch information
jeremyevans committed Jun 22, 2022
1 parent faacaff commit e917654
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions rack-test.gemspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# -*- encoding: utf-8 -*-

require_relative 'lib/rack/test/version'

Gem::Specification.new do |s|
Expand All @@ -14,9 +12,14 @@ Gem::Specification.new do |s|
s.description = <<-EOS.strip
Rack::Test is a small, simple testing API for Rack apps. It can be used on its
own or as a reusable starting point for Web frameworks and testing libraries
to build on. Most of its initial functionality is an extraction of Merb 1.0's
request helpers feature.
to build on.
EOS
s.metadata = {
'source_code_uri' => 'https://github.com/rack/rack-test',
'bug_tracker_uri' => 'https://github.com/rack/rack-test/issues',
'mailing_list_uri' => 'https://github.com/rack/rack-test/discussions',
'changelog_uri' => 'https://github.com/rack/rack-test/blob/main/History.md',
}
s.require_paths = ['lib']
s.files = `git ls-files -- lib/*`.split("\n") +
%w[History.md MIT-LICENSE.txt README.md]
Expand Down

0 comments on commit e917654

Please sign in to comment.