Skip to content

Commit 9e456dc

Browse files
authored
Merge pull request #117 from dblock/fix-metadata
Fix rubygems source code location metadata.
2 parents b45720f + ce640ac commit 9e456dc

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
* Your contribution here.
44
* [#110](https://github.com/ruby-grape/grape-swagger-rails/pull/110): Update dummy app to current rails conventions - [@duffn](https://github.com/duffn).
5-
* [#112](https://github.com/ruby-grape/grape-swagger-rails/pull/112): Add Rubocop Action & autocorrect violations - [@duffn](https://github.com/duffn).
5+
* [#112](https://github.com/ruby-grape/grape-swagger-rails/pull/112): Add RuboCop GHA & autocorrect violations - [@duffn](https://github.com/duffn).
66
* [#114](https://github.com/ruby-grape/grape-swagger-rails/pull/114): Add `api_key_placeholder` option - [@SofiaSousa](https://github.com/SofiaSousa).
7-
* [#116](https://github.com/ruby-grape/grape-swagger-rails/pull/116): Ensure that ostruct is loaded - [@jrmhaig](https://github.com/jrmhaig).
7+
* [#116](https://github.com/ruby-grape/grape-swagger-rails/pull/116): Ensure that `ostruct` is loaded - [@jrmhaig](https://github.com/jrmhaig).
8+
* [#117](https://github.com/ruby-grape/grape-swagger-rails/pull/117): Fix rubygems source code location metadata - [@dblock](https://github.com/dblock).
89

910
### 0.4.0 (2023/03/28)
1011

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#{GrapeSwaggerRails::VERSION}",
24+
'rubygems_mfa_required' => 'true'
25+
}
2126
end

0 commit comments

Comments
 (0)