Skip to content

Commit

Permalink
Fix rubygems source code location metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
dblock committed Apr 6, 2024
1 parent b45720f commit ce640ac
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
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

0 comments on commit ce640ac

Please sign in to comment.