Skip to content

Commit e917654

Browse files
committed
Add metadata to gemspec
Remove unnecessary encoding magic comment, and shorten description.
1 parent faacaff commit e917654

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

rack-test.gemspec

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- encoding: utf-8 -*-
2-
31
require_relative 'lib/rack/test/version'
42

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

0 commit comments

Comments
 (0)