Skip to content

Commit 38c6177

Browse files
committed
Fix rubygems source code location metadata.
1 parent b45720f commit 38c6177

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

grape-swagger-rails.gemspec

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,18 @@ Gem::Specification.new do |spec|
99
spec.version = GrapeSwaggerRails::VERSION
1010
spec.authors = ['Alexander Logunov']
1111
spec.email = ['unlovedru@gmail.com']
12-
spec.description = 'Swagger UI as Rails Engine for grape-swagger gem'
13-
spec.summary = 'Swagger UI as Rails Engine for grape-swagger gem'
12+
spec.description = 'Swagger UI as Rails Engine for grape-swagger gem.'
13+
spec.summary = 'Swagger UI as Rails Engine for grape-swagger gem.'
1414
spec.homepage = 'https://github.com/ruby-grape/grape-swagger-rails'
1515
spec.license = 'MIT'
1616
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
1717
spec.test_files = `git ls-files spec`.split($INPUT_RECORD_SEPARATOR)
1818
spec.require_paths = %w[lib]
19-
2019
spec.add_dependency 'railties', '>= 6.0.6.1'
20+
spec.metadata = {
21+
'bug_tracker_uri' => 'https://github.com/ruby-grape/grape-swagger-rails/issues',
22+
'changelog_uri' => 'https://github.com/ruby-grape/grape-swagger-rails/blob/master/CHANGELOG.md',
23+
'source_code_uri' => "https://github.com/ruby-grape/grape-swagger-rails/tree/v#{version}",
24+
'rubygems_mfa_required' => 'true'
25+
}
2126
end

0 commit comments

Comments
 (0)