File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
* Your contribution here.
4
4
* [ #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 ) .
6
6
* [ #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 ) .
8
9
9
10
### 0.4.0 (2023/03/28)
10
11
Original file line number Diff line number Diff line change @@ -9,13 +9,18 @@ Gem::Specification.new do |spec|
9
9
spec . version = GrapeSwaggerRails ::VERSION
10
10
spec . authors = [ 'Alexander Logunov' ]
11
11
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. '
14
14
spec . homepage = 'https://github.com/ruby-grape/grape-swagger-rails'
15
15
spec . license = 'MIT'
16
16
spec . files = `git ls-files` . split ( $INPUT_RECORD_SEPARATOR)
17
17
spec . test_files = `git ls-files spec` . split ( $INPUT_RECORD_SEPARATOR)
18
18
spec . require_paths = %w[ lib ]
19
-
20
19
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
+ }
21
26
end
You can’t perform that action at this time.
0 commit comments