Skip to content

Fix rubygems source code location metadata. #117

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

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

### 0.4.0 (2023/03/28)

Expand Down
11 changes: 8 additions & 3 deletions grape-swagger-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,18 @@ Gem::Specification.new do |spec|
spec.version = GrapeSwaggerRails::VERSION
spec.authors = ['Alexander Logunov']
spec.email = ['unlovedru@gmail.com']
spec.description = 'Swagger UI as Rails Engine for grape-swagger gem'
spec.summary = 'Swagger UI as Rails Engine for grape-swagger gem'
spec.description = 'Swagger UI as Rails Engine for grape-swagger gem.'
spec.summary = 'Swagger UI as Rails Engine for grape-swagger gem.'
spec.homepage = 'https://github.com/ruby-grape/grape-swagger-rails'
spec.license = 'MIT'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.test_files = `git ls-files spec`.split($INPUT_RECORD_SEPARATOR)
spec.require_paths = %w[lib]

spec.add_dependency 'railties', '>= 6.0.6.1'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/ruby-grape/grape-swagger-rails/issues',
'changelog_uri' => 'https://github.com/ruby-grape/grape-swagger-rails/blob/master/CHANGELOG.md',
'source_code_uri' => "https://github.com/ruby-grape/grape-swagger-rails/tree/v#{GrapeSwaggerRails::VERSION}",
'rubygems_mfa_required' => 'true'
}
end