grape-swagger-entity 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/danger.yml +21 -0
- data/.github/workflows/test.yml +43 -0
- data/.gitignore +2 -1
- data/.rubocop.yml +1 -12
- data/.rubocop_todo.yml +71 -13
- data/CHANGELOG.md +24 -20
- data/Gemfile +3 -3
- data/README.md +15 -1
- data/RELEASING.md +64 -0
- data/grape-swagger-entity.gemspec +1 -0
- data/lib/grape-swagger/entity/attribute_parser.rb +5 -5
- data/lib/grape-swagger/entity/parser.rb +1 -3
- data/lib/grape-swagger/entity/version.rb +1 -1
- data/lib/grape-swagger/entity.rb +1 -1
- metadata +12 -9
- data/.travis.yml +0 -36
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c52f57bfdcfb52cd362e65afc3a53ac2a442eada913a5323866d1b9b485e4f56
|
4
|
+
data.tar.gz: 6e0e4d87db0738dcaf8e5e5d51a6db8863449dc468dfcc482e8b833e1ef4e27d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58121f8454551c748d77754e93ebc54522aeb71f8811dd5186265cc4b7697f5cb9be6a20dd6dd1b3f14e8a3aaf59a5f73aefaf1fea55d7cd702c9996143ea8b7
|
7
|
+
data.tar.gz: 632da40699409c7d9e4d1954b9159fa80b8f1ef2196672706d15d88f5f8fcf6c55c911d83f2d0ba6a06e7fb9158bc77788b120675ab8ea478a6632379659958e
|
@@ -0,0 +1,21 @@
|
|
1
|
+
name: danger
|
2
|
+
on: pull_request
|
3
|
+
|
4
|
+
jobs:
|
5
|
+
danger:
|
6
|
+
runs-on: ubuntu-latest
|
7
|
+
steps:
|
8
|
+
- uses: actions/checkout@v3
|
9
|
+
with:
|
10
|
+
fetch-depth: 100
|
11
|
+
- name: Set up Ruby
|
12
|
+
uses: ruby/setup-ruby@v1
|
13
|
+
with:
|
14
|
+
ruby-version: 2.7
|
15
|
+
bundler-cache: true
|
16
|
+
rubygems: latest
|
17
|
+
- name: Run Danger
|
18
|
+
run: |
|
19
|
+
# the token is public, has public_repo scope and belongs to the grape-bot user owned by @dblock, this is ok
|
20
|
+
TOKEN=$(echo -n Z2hwX2lYb0dPNXNyejYzOFJyaTV3QUxUdkNiS1dtblFwZTFuRXpmMwo= | base64 --decode)
|
21
|
+
DANGER_GITHUB_API_TOKEN=$TOKEN bundle exec danger --verbose
|
@@ -0,0 +1,43 @@
|
|
1
|
+
name: test
|
2
|
+
|
3
|
+
on: [push, pull_request]
|
4
|
+
|
5
|
+
permissions:
|
6
|
+
contents: read
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
lint:
|
10
|
+
name: RuboCop
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v3
|
14
|
+
|
15
|
+
- name: Set up Ruby
|
16
|
+
uses: ruby/setup-ruby@v1
|
17
|
+
with:
|
18
|
+
ruby-version: 3.2
|
19
|
+
bundler-cache: true
|
20
|
+
rubygems: latest
|
21
|
+
|
22
|
+
- name: Run RuboCop
|
23
|
+
run: bundle exec rubocop
|
24
|
+
|
25
|
+
test:
|
26
|
+
env:
|
27
|
+
GRAPE_ENTITY: 0.8.0
|
28
|
+
|
29
|
+
runs-on: ubuntu-latest
|
30
|
+
strategy:
|
31
|
+
fail-fast: false
|
32
|
+
matrix:
|
33
|
+
ruby-version: ['3.0', '3.1', '3.2']
|
34
|
+
|
35
|
+
steps:
|
36
|
+
- uses: actions/checkout@v3
|
37
|
+
- name: Set up Ruby
|
38
|
+
uses: ruby/setup-ruby@v1
|
39
|
+
with:
|
40
|
+
ruby-version: ${{ matrix.ruby-version }}
|
41
|
+
bundler-cache: true
|
42
|
+
- name: Run tests
|
43
|
+
run: bundle exec rake spec
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
AllCops:
|
2
|
+
NewCops: enable
|
2
3
|
Exclude:
|
3
4
|
- vendor/**/*
|
4
5
|
TargetRubyVersion:
|
@@ -6,18 +7,6 @@ AllCops:
|
|
6
7
|
|
7
8
|
inherit_from: .rubocop_todo.yml
|
8
9
|
|
9
|
-
Metrics/BlockLength:
|
10
|
-
Exclude:
|
11
|
-
- spec/**/*
|
12
|
-
|
13
|
-
Metrics/LineLength:
|
14
|
-
Exclude:
|
15
|
-
- spec/**/*
|
16
|
-
|
17
|
-
Metrics/MethodLength:
|
18
|
-
Exclude:
|
19
|
-
- spec/**/*
|
20
|
-
|
21
10
|
Naming/FileName:
|
22
11
|
Enabled: false
|
23
12
|
|
data/.rubocop_todo.yml
CHANGED
@@ -1,44 +1,96 @@
|
|
1
1
|
# This configuration was generated by
|
2
|
-
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
2
|
+
# `rubocop --auto-gen-config --auto-gen-only-exclude --exclude-limit 5000`
|
3
|
+
# on 2023-07-06 20:16:40 UTC using RuboCop version 1.42.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
8
8
|
|
9
9
|
# Offense count: 1
|
10
|
-
# Configuration parameters: Include.
|
10
|
+
# Configuration parameters: Severity, Include.
|
11
11
|
# Include: **/*.gemspec
|
12
12
|
Gemspec/RequiredRubyVersion:
|
13
13
|
Exclude:
|
14
14
|
- 'grape-swagger-entity.gemspec'
|
15
15
|
|
16
|
+
# Offense count: 3
|
17
|
+
# Configuration parameters: AllowedMethods.
|
18
|
+
# AllowedMethods: enums
|
19
|
+
Lint/ConstantDefinitionInBlock:
|
20
|
+
Exclude:
|
21
|
+
- 'spec/grape-swagger/entities/response_model_spec.rb'
|
22
|
+
- 'spec/support/shared_contexts/inheritance_api.rb'
|
23
|
+
- 'spec/support/shared_contexts/this_api.rb'
|
24
|
+
|
25
|
+
# Offense count: 1
|
26
|
+
# Configuration parameters: AllowComments, AllowEmptyLambdas.
|
27
|
+
Lint/EmptyBlock:
|
28
|
+
Exclude:
|
29
|
+
- 'spec/grape-swagger/entity/attribute_parser_spec.rb'
|
30
|
+
|
31
|
+
# Offense count: 1
|
32
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
33
|
+
# Configuration parameters: AllowedMethods.
|
34
|
+
# AllowedMethods: instance_of?, kind_of?, is_a?, eql?, respond_to?, equal?
|
35
|
+
Lint/RedundantSafeNavigation:
|
36
|
+
Exclude:
|
37
|
+
- 'lib/grape-swagger/entity/attribute_parser.rb'
|
38
|
+
|
16
39
|
# Offense count: 4
|
17
|
-
# Configuration parameters: IgnoredMethods.
|
40
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods, CountRepeatedAttributes, Max.
|
18
41
|
Metrics/AbcSize:
|
19
|
-
|
42
|
+
Exclude:
|
43
|
+
- 'lib/grape-swagger/entity/attribute_parser.rb'
|
44
|
+
- 'lib/grape-swagger/entity/parser.rb'
|
45
|
+
|
46
|
+
# Offense count: 13
|
47
|
+
# Configuration parameters: CountComments, Max, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods.
|
48
|
+
# AllowedMethods: refine
|
49
|
+
Metrics/BlockLength:
|
50
|
+
Exclude:
|
51
|
+
- '**/*.gemspec'
|
52
|
+
- 'spec/grape-swagger/entities/response_model_spec.rb'
|
53
|
+
- 'spec/grape-swagger/entity/attribute_parser_spec.rb'
|
54
|
+
- 'spec/grape-swagger/entity/parser_spec.rb'
|
55
|
+
- 'spec/support/shared_contexts/this_api.rb'
|
20
56
|
|
21
57
|
# Offense count: 1
|
22
|
-
# Configuration parameters: CountComments.
|
58
|
+
# Configuration parameters: CountComments, Max, CountAsOne.
|
23
59
|
Metrics/ClassLength:
|
24
|
-
|
60
|
+
Exclude:
|
61
|
+
- 'lib/grape-swagger/entity/parser.rb'
|
25
62
|
|
26
63
|
# Offense count: 2
|
27
|
-
# Configuration parameters: IgnoredMethods.
|
64
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods, Max.
|
28
65
|
Metrics/CyclomaticComplexity:
|
29
|
-
|
66
|
+
Exclude:
|
67
|
+
- 'lib/grape-swagger/entity/attribute_parser.rb'
|
68
|
+
- 'lib/grape-swagger/entity/parser.rb'
|
30
69
|
|
31
70
|
# Offense count: 5
|
32
|
-
# Configuration parameters: CountComments, ExcludedMethods.
|
71
|
+
# Configuration parameters: CountComments, Max, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods.
|
33
72
|
Metrics/MethodLength:
|
34
|
-
|
73
|
+
Exclude:
|
74
|
+
- 'lib/grape-swagger/entity/attribute_parser.rb'
|
75
|
+
- 'lib/grape-swagger/entity/parser.rb'
|
35
76
|
|
36
77
|
# Offense count: 2
|
37
|
-
# Configuration parameters: IgnoredMethods.
|
78
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods, Max.
|
38
79
|
Metrics/PerceivedComplexity:
|
39
|
-
|
80
|
+
Exclude:
|
81
|
+
- 'lib/grape-swagger/entity/attribute_parser.rb'
|
82
|
+
- 'lib/grape-swagger/entity/parser.rb'
|
83
|
+
|
84
|
+
# Offense count: 2
|
85
|
+
# Configuration parameters: EnforcedStyle, CheckMethodNames, CheckSymbols, AllowedIdentifiers, AllowedPatterns.
|
86
|
+
# SupportedStyles: snake_case, normalcase, non_integer
|
87
|
+
# AllowedIdentifiers: capture3, iso8601, rfc1123_date, rfc822, rfc2822, rfc3339
|
88
|
+
Naming/VariableNumber:
|
89
|
+
Exclude:
|
90
|
+
- 'spec/grape-swagger/entities/response_model_spec.rb'
|
40
91
|
|
41
92
|
# Offense count: 4
|
93
|
+
# Configuration parameters: AllowedConstants.
|
42
94
|
Style/Documentation:
|
43
95
|
Exclude:
|
44
96
|
- 'spec/**/*'
|
@@ -46,3 +98,9 @@ Style/Documentation:
|
|
46
98
|
- 'lib/grape-swagger/entity.rb'
|
47
99
|
- 'lib/grape-swagger/entity/attribute_parser.rb'
|
48
100
|
- 'lib/grape-swagger/entity/parser.rb'
|
101
|
+
|
102
|
+
# Offense count: 4
|
103
|
+
Style/OpenStructUse:
|
104
|
+
Exclude:
|
105
|
+
- 'spec/grape-swagger/entities/response_model_spec.rb'
|
106
|
+
- 'spec/support/shared_contexts/this_api.rb'
|
data/CHANGELOG.md
CHANGED
@@ -8,17 +8,21 @@
|
|
8
8
|
|
9
9
|
* Your contribution here.
|
10
10
|
|
11
|
-
### 0.5.
|
11
|
+
### 0.5.2 (2023/07/07)
|
12
12
|
|
13
|
-
####
|
13
|
+
#### Fixes
|
14
14
|
|
15
|
-
* [#
|
15
|
+
* [#60](https://github.com/ruby-grape/grape-swagger-entity/pull/60): Examples on arrays should be directly on the property, not on the item - [@collinsauve](https://github.com/collinsauve).
|
16
|
+
* [#61](https://github.com/ruby-grape/grape-swagger-entity/pull/61): Migrate from Travis to GHA for CI - [@mscrivo](https://github.com/mscrivo).
|
17
|
+
* Your contribution here.
|
16
18
|
|
17
|
-
### 0.5.
|
19
|
+
### 0.5.1 (2020/06/30)
|
18
20
|
|
19
|
-
|
21
|
+
#### Features
|
22
|
+
|
23
|
+
* [#50](https://github.com/ruby-grape/grape-swagger-entity/pull/50): Features/inheritance and discriminator - [@MaximeRDY](https://github.com/MaximeRDY).
|
20
24
|
|
21
|
-
### 0.4.0 (
|
25
|
+
### 0.4.0 (2020/05/30)
|
22
26
|
|
23
27
|
#### Features
|
24
28
|
|
@@ -29,81 +33,81 @@ Yanked due to invalid dependency
|
|
29
33
|
|
30
34
|
* [#46](https://github.com/ruby-grape/grape-swagger-entity/pull/46): Fixed issue where a boolean example value of false would not display in swagger file - [@drewnichols](https://github.com/drewnichols).
|
31
35
|
|
32
|
-
### 0.3.4 (
|
36
|
+
### 0.3.4 (2020/01/09)
|
33
37
|
|
34
38
|
#### Features
|
35
39
|
|
36
40
|
* [#40](https://github.com/ruby-grape/grape-swagger-entity/pull/40): Add support for minLength and maxLength - [@fotos](https://github.com/fotos).
|
37
41
|
|
38
|
-
### 0.3.3 (
|
42
|
+
### 0.3.3 (2019/02/22)
|
39
43
|
|
40
44
|
#### Features
|
41
45
|
|
42
46
|
* [#39](https://github.com/ruby-grape/grape-swagger-entity/pull/39): Fix to avoid conflict with polymorphic model - [@kinoppyd](https://github.com/kinoppyd).
|
43
47
|
|
44
|
-
### 0.3.2 (
|
48
|
+
### 0.3.2 (2019/01/15)
|
45
49
|
|
46
50
|
#### Features
|
47
51
|
|
48
52
|
* [#38](https://github.com/ruby-grape/grape-swagger-entity/pull/38): Added support for hidden option for documentation - [@vitoravelino](https://github.com/vitoravelino).
|
49
53
|
|
50
|
-
### 0.3.1 (
|
54
|
+
### 0.3.1 (2018/11/26)
|
51
55
|
|
52
56
|
#### Features
|
53
57
|
|
54
58
|
* [#37](https://github.com/ruby-grape/grape-swagger-entity/pull/37): Add support for minItems, maxItems and uniqueItems - [@fotos](https://github.com/fotos).
|
55
59
|
|
56
|
-
### 0.3.0 (
|
60
|
+
### 0.3.0 (2018/08/22)
|
57
61
|
|
58
62
|
#### Features
|
59
63
|
|
60
64
|
* [#35](https://github.com/ruby-grape/grape-swagger-entity/pull/35): Support for required attributes - [@Bugagazavr](https://github.com/Bugagazavr).
|
61
65
|
|
62
|
-
### 0.2.5 (
|
66
|
+
### 0.2.5 (2018/04/26)
|
63
67
|
|
64
68
|
#### Features
|
65
69
|
|
66
70
|
* [#33](https://github.com/ruby-grape/grape-swagger-entity/pull/33): Update parser to respect merge option for entities - [@b-boogaard](https://github.com/b-boogaard).
|
67
71
|
|
68
|
-
### 0.2.4 (
|
72
|
+
### 0.2.4 (2018/04/03)
|
69
73
|
|
70
74
|
#### Fixes
|
71
75
|
|
72
76
|
* [#32](https://github.com/ruby-grape/grape-swagger-entity/pull/32): Fix issue with read_only fields - [@mcfilib](https://github.com/mcfilib).
|
73
77
|
|
74
|
-
### 0.2.3 (
|
78
|
+
### 0.2.3 (2017/11/19)
|
75
79
|
|
76
80
|
#### Fixes
|
77
81
|
|
78
82
|
* [#30](https://github.com/ruby-grape/grape-swagger-entity/pull/30): Fix nested exposures with an alias - [@Kukunin](https://github.com/Kukunin).
|
79
83
|
* [#31](https://github.com/ruby-grape/grape-swagger-entity/pull/31): Respect `required: true` for nested attributes as well - [@Kukunin](https://github.com/Kukunin).
|
80
84
|
|
81
|
-
### 0.2.2 (
|
85
|
+
### 0.2.2 (2017/11/3)
|
82
86
|
|
83
87
|
#### Features
|
84
88
|
|
85
89
|
* [#27](https://github.com/ruby-grape/grape-swagger-entity/pull/27): Add support for attribute examples - [@Kukunin](https://github.com/Kukunin).
|
86
90
|
|
87
|
-
### 0.2.1 (
|
91
|
+
### 0.2.1 (2017/07/05)
|
88
92
|
|
89
93
|
#### Features
|
90
94
|
|
91
95
|
* [#26](https://github.com/ruby-grape/grape-swagger-entity/pull/26): Add support for read only field - [@FChaack](https://github.com/FChaack).
|
92
96
|
|
93
|
-
### 0.2.0 (
|
97
|
+
### 0.2.0 (2017/03/02)
|
94
98
|
|
95
99
|
#### Features
|
96
100
|
|
97
101
|
* [#22](https://github.com/ruby-grape/grape-swagger-entity/pull/22): Nested exposures - [@Bugagazavr](https://github.com/Bugagazavr).
|
98
102
|
|
99
|
-
### 0.1.6 (
|
103
|
+
### 0.1.6 (2017/02/03)
|
100
104
|
|
101
105
|
#### Features
|
102
106
|
|
103
107
|
* [#21](https://github.com/ruby-grape/grape-swagger-entity/pull/21): Adds support for own format - [@LeFnord](https://github.com/LeFnord).
|
104
108
|
* [#19](https://github.com/ruby-grape/grape-swagger-entity/pull/19): Adds support for default value - [@LeFnord](https://github.com/LeFnord).
|
105
109
|
|
106
|
-
### 0.1.5 (
|
110
|
+
### 0.1.5 (2016/11/21)
|
107
111
|
|
108
112
|
#### Features
|
109
113
|
|
@@ -115,7 +119,7 @@ Yanked due to invalid dependency
|
|
115
119
|
* [#8](https://github.com/ruby-grape/grape-swagger-entity/pull/8): Generate enum property if values key is passed in documentation - [@lordnibbler](https://github.com/lordnibbler).
|
116
120
|
* [#15](https://github.com/ruby-grape/grape-swagger-entity/pull/15): Support grape entity 0.6.x and later - [@Bugagazavr](https://github.com/Bugagazavr).
|
117
121
|
|
118
|
-
### 0.1.4 (
|
122
|
+
### 0.1.4 (2016/06/07)
|
119
123
|
|
120
124
|
#### Fixes
|
121
125
|
|
data/Gemfile
CHANGED
@@ -14,14 +14,14 @@ group :development, :test do
|
|
14
14
|
gem 'rack-test'
|
15
15
|
gem 'rake'
|
16
16
|
gem 'rdoc'
|
17
|
-
gem 'rspec'
|
18
|
-
gem 'rubocop'
|
17
|
+
gem 'rspec'
|
18
|
+
gem 'rubocop'
|
19
19
|
end
|
20
20
|
|
21
21
|
gem 'grape-swagger', git: 'https://github.com/ruby-grape/grape-swagger.git'
|
22
22
|
|
23
23
|
group :test do
|
24
24
|
gem 'grape-entity', ENV.fetch('GRAPE_ENTITY', '0.6.1')
|
25
|
-
gem 'ruby-grape-danger', '~> 0.
|
25
|
+
gem 'ruby-grape-danger', '~> 0.2.0', require: false
|
26
26
|
gem 'simplecov', require: false
|
27
27
|
end
|
data/README.md
CHANGED
@@ -1,4 +1,18 @@
|
|
1
|
-
# GrapeSwagger::Entity
|
1
|
+
# GrapeSwagger::Entity
|
2
|
+
|
3
|
+
[](https://badge.fury.io/rb/grape-swagger-entity)
|
4
|
+
[](https://github.com/ruby-grape/grape-swagger-entity/actions)
|
5
|
+
|
6
|
+
## Table of Contents
|
7
|
+
|
8
|
+
- [What is grape-swagger-entity?](#what-is-grape-swagger-entity)
|
9
|
+
- [Installation](#installation)
|
10
|
+
- [Development](#development)
|
11
|
+
- [Contributing](#contributing)
|
12
|
+
- [License](#license)
|
13
|
+
|
14
|
+
|
15
|
+
## What is grape-swagger-entity?
|
2
16
|
|
3
17
|
A simple grape-swagger adapter to allow parse representers as response model
|
4
18
|
|
data/RELEASING.md
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
# Releasing Grape-Swagger-Entity
|
2
|
+
|
3
|
+
There are no particular rules about when to release Grape-Swagger-Entity. Release bug fixes frequent, features not so frequently and breaking API changes rarely.
|
4
|
+
|
5
|
+
### Release
|
6
|
+
|
7
|
+
Run tests, check that all tests succeed locally.
|
8
|
+
|
9
|
+
```
|
10
|
+
bundle install
|
11
|
+
rake
|
12
|
+
```
|
13
|
+
|
14
|
+
Check that the last build succeeded in [GitHub Actions](https://github.com/ruby-grape/grape-swagger-entity/actions) for all supported platforms.
|
15
|
+
|
16
|
+
Increment the version, modify [lib/grape-swagger/entity/version.rb](lib/grape-swagger/entity/version.rb).
|
17
|
+
|
18
|
+
* Increment the third number if the release has bug fixes and/or very minor features, only (eg. change `0.1.0` to `0.1.1`).
|
19
|
+
* Increment the second number if the release contains major features or breaking API changes (eg. change `0.1.0` to `0.2.0`).
|
20
|
+
|
21
|
+
Change "Next Release" in [CHANGELOG.md](CHANGELOG.md) to the new version.
|
22
|
+
|
23
|
+
```
|
24
|
+
### 0.1.1 (February 5, 2015)
|
25
|
+
```
|
26
|
+
|
27
|
+
Remove the line with "Your contribution here.", since there will be no more contributions to this release.
|
28
|
+
|
29
|
+
Commit your changes.
|
30
|
+
|
31
|
+
```
|
32
|
+
git add CHANGELOG.md lib/grape-swagger-entity/version.rb
|
33
|
+
git commit -m "Preparing for release, 0.1.1."
|
34
|
+
git push origin master
|
35
|
+
```
|
36
|
+
|
37
|
+
Release.
|
38
|
+
|
39
|
+
```
|
40
|
+
$ rake release
|
41
|
+
|
42
|
+
Grape-Swagger-Entity 0.1.1 built to pkg/grape-swagger-entity-0.1.1.gem.
|
43
|
+
Tagged v0.1.1.
|
44
|
+
Pushed git commits and tags.
|
45
|
+
Pushed grape-swagger-entity 0.1.1 to rubygems.org.
|
46
|
+
```
|
47
|
+
|
48
|
+
### Prepare for the Next Version
|
49
|
+
|
50
|
+
Add the next release to [CHANGELOG.md](CHANGELOG.md).
|
51
|
+
|
52
|
+
```
|
53
|
+
### Next Release
|
54
|
+
|
55
|
+
* Your contribution here.
|
56
|
+
```
|
57
|
+
|
58
|
+
Commit your changes.
|
59
|
+
|
60
|
+
```
|
61
|
+
git add CHANGELOG.md
|
62
|
+
git commit -m "Preparing for next release."
|
63
|
+
git push origin master
|
64
|
+
```
|
@@ -26,11 +26,8 @@ module GrapeSwagger
|
|
26
26
|
param = data_type_from(entity_options)
|
27
27
|
return param unless documentation
|
28
28
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
if (values = documentation[:values])
|
33
|
-
param[:enum] = values if values.is_a?(Array)
|
29
|
+
if (values = documentation[:values]) && values.is_a?(Array)
|
30
|
+
param[:enum] = values
|
34
31
|
end
|
35
32
|
|
36
33
|
if documentation[:is_array]
|
@@ -38,6 +35,9 @@ module GrapeSwagger
|
|
38
35
|
add_array_documentation(param, documentation)
|
39
36
|
end
|
40
37
|
|
38
|
+
add_attribute_sample(param, documentation, :default)
|
39
|
+
add_attribute_sample(param, documentation, :example)
|
40
|
+
|
41
41
|
add_attribute_documentation(param, documentation)
|
42
42
|
|
43
43
|
add_extension_documentation(param, documentation)
|
data/lib/grape-swagger/entity.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grape-swagger-entity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kirill Zaitsev
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grape-entity
|
@@ -38,23 +38,25 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 1.2.0
|
41
|
-
description:
|
41
|
+
description:
|
42
42
|
email:
|
43
43
|
- kirik910@gmail.com
|
44
44
|
executables: []
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
|
+
- ".github/workflows/danger.yml"
|
49
|
+
- ".github/workflows/test.yml"
|
48
50
|
- ".gitignore"
|
49
51
|
- ".rspec"
|
50
52
|
- ".rubocop.yml"
|
51
53
|
- ".rubocop_todo.yml"
|
52
|
-
- ".travis.yml"
|
53
54
|
- CHANGELOG.md
|
54
55
|
- Dangerfile
|
55
56
|
- Gemfile
|
56
57
|
- LICENSE.txt
|
57
58
|
- README.md
|
59
|
+
- RELEASING.md
|
58
60
|
- Rakefile
|
59
61
|
- bin/pry
|
60
62
|
- bin/setup
|
@@ -68,8 +70,9 @@ files:
|
|
68
70
|
homepage: https://github.com/ruby-grape/grape-swagger-entity
|
69
71
|
licenses:
|
70
72
|
- MIT
|
71
|
-
metadata:
|
72
|
-
|
73
|
+
metadata:
|
74
|
+
rubygems_mfa_required: 'true'
|
75
|
+
post_install_message:
|
73
76
|
rdoc_options: []
|
74
77
|
require_paths:
|
75
78
|
- lib
|
@@ -84,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
87
|
- !ruby/object:Gem::Version
|
85
88
|
version: '0'
|
86
89
|
requirements: []
|
87
|
-
rubygems_version: 3.
|
88
|
-
signing_key:
|
90
|
+
rubygems_version: 3.4.10
|
91
|
+
signing_key:
|
89
92
|
specification_version: 4
|
90
93
|
summary: Grape swagger adapter to support grape-entity object parsing
|
91
94
|
test_files: []
|
data/.travis.yml
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
|
3
|
-
sudo: false
|
4
|
-
|
5
|
-
before_install:
|
6
|
-
- gem update --system
|
7
|
-
- gem install bundler
|
8
|
-
|
9
|
-
after_success:
|
10
|
-
- bundle exec danger
|
11
|
-
|
12
|
-
rvm:
|
13
|
-
- 2.5.8
|
14
|
-
- 2.6.6
|
15
|
-
- 2.7.1
|
16
|
-
|
17
|
-
env:
|
18
|
-
- GRAPE_ENTITY=0.6.1
|
19
|
-
- GRAPE_ENTITY=0.7.1
|
20
|
-
- GRAPE_ENTITY=0.8.0
|
21
|
-
|
22
|
-
matrix:
|
23
|
-
fast_finish: true
|
24
|
-
|
25
|
-
include:
|
26
|
-
- rvm: 2.4.10
|
27
|
-
env:
|
28
|
-
- rvm: ruby-head
|
29
|
-
env:
|
30
|
-
- rvm: jruby-head
|
31
|
-
env:
|
32
|
-
|
33
|
-
allow_failures:
|
34
|
-
- rvm: 2.4.10
|
35
|
-
- rvm: ruby-head
|
36
|
-
- rvm: jruby-head
|