jsonapi-swagger-blocks-generator 0.1.1
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 +7 -0
- data/.gitignore +12 -0
- data/.rspec +3 -0
- data/.rubocop.yml +267 -0
- data/.simplecov +5 -0
- data/.travis.yml +16 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +14 -0
- data/Gemfile.lock +137 -0
- data/LICENSE.txt +21 -0
- data/README.md +65 -0
- data/Rakefile +8 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/jsonapi-swagger-blocks-generator.gemspec +29 -0
- data/lib/generators/jsonapi/USAGE +9 -0
- data/lib/generators/jsonapi/swagger_blocks_generator.rb +30 -0
- data/lib/generators/jsonapi/templates/controller_template.template +671 -0
- data/lib/generators/jsonapi/templates/model_template.template +352 -0
- data/lib/jsonapi/swagger/blocks/generator.rb +8 -0
- data/lib/jsonapi/swagger/blocks/generator/version.rb +11 -0
- metadata +107 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f752d6e331ad40ab0e7d5feb816791d087d75560
|
4
|
+
data.tar.gz: 237941d762a4392b969669ba1669371c47e009a8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: aef7de674a572c5d90943882e8086dfe4a58b89a70b75e694be931888f743ecefeac0741eccabdce1a5870bc0a2ed9b30038428b1cd781c90fad1fbfadef8edd
|
7
|
+
data.tar.gz: 0fe65439073ae47606ec9c0dd9afc3f71cc054b02d65021269580149207e4e2a74f8a47b34c904cab4814b965dd702e46390abdb2b2ae0c6cdcef77888b02daa
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,267 @@
|
|
1
|
+
AllCops:
|
2
|
+
TargetRubyVersion: 2.3
|
3
|
+
# RuboCop has a bunch of cops enabled by default. This setting tells RuboCop
|
4
|
+
# to ignore them, so only the ones explicitly set in this file are enabled.
|
5
|
+
DisabledByDefault: true
|
6
|
+
Exclude:
|
7
|
+
- '**/migrate/**/*'
|
8
|
+
- '**/templates/**/*'
|
9
|
+
- '**/vendor/**/*'
|
10
|
+
- 'actionpack/lib/action_dispatch/journey/parser.rb'
|
11
|
+
|
12
|
+
# Prefer &&/|| over and/or.
|
13
|
+
Style/AndOr:
|
14
|
+
Enabled: true
|
15
|
+
|
16
|
+
# Do not use braces for hash literals when they are the last argument of a
|
17
|
+
# method call.
|
18
|
+
Style/BracesAroundHashParameters:
|
19
|
+
Enabled: true
|
20
|
+
EnforcedStyle: context_dependent
|
21
|
+
|
22
|
+
# Align `when` with `case`.
|
23
|
+
Layout/CaseIndentation:
|
24
|
+
Enabled: true
|
25
|
+
|
26
|
+
# Align comments with method definitions.
|
27
|
+
Layout/CommentIndentation:
|
28
|
+
Enabled: true
|
29
|
+
|
30
|
+
Layout/ElseAlignment:
|
31
|
+
Enabled: true
|
32
|
+
|
33
|
+
Layout/EmptyLineAfterMagicComment:
|
34
|
+
Enabled: true
|
35
|
+
|
36
|
+
# In a regular class definition, no empty lines around the body.
|
37
|
+
Layout/EmptyLinesAroundClassBody:
|
38
|
+
Enabled: true
|
39
|
+
|
40
|
+
# In a regular method definition, no empty lines around the body.
|
41
|
+
Layout/EmptyLinesAroundMethodBody:
|
42
|
+
Enabled: true
|
43
|
+
|
44
|
+
# In a regular module definition, no empty lines around the body.
|
45
|
+
Layout/EmptyLinesAroundModuleBody:
|
46
|
+
Enabled: true
|
47
|
+
|
48
|
+
Layout/FirstParameterIndentation:
|
49
|
+
Enabled: true
|
50
|
+
|
51
|
+
# Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }.
|
52
|
+
Style/HashSyntax:
|
53
|
+
Enabled: true
|
54
|
+
|
55
|
+
# Method definitions after `private` or `protected` isolated calls need one
|
56
|
+
# extra level of indentation.
|
57
|
+
Layout/IndentationConsistency:
|
58
|
+
Enabled: true
|
59
|
+
EnforcedStyle: rails
|
60
|
+
|
61
|
+
# Two spaces, no tabs (for indentation).
|
62
|
+
Layout/IndentationWidth:
|
63
|
+
Enabled: true
|
64
|
+
|
65
|
+
Layout/LeadingCommentSpace:
|
66
|
+
Enabled: true
|
67
|
+
|
68
|
+
Layout/SpaceAfterColon:
|
69
|
+
Enabled: true
|
70
|
+
|
71
|
+
Layout/SpaceAfterComma:
|
72
|
+
Enabled: true
|
73
|
+
|
74
|
+
Layout/SpaceAroundEqualsInParameterDefault:
|
75
|
+
Enabled: true
|
76
|
+
|
77
|
+
Layout/SpaceAroundKeyword:
|
78
|
+
Enabled: true
|
79
|
+
|
80
|
+
Layout/SpaceAroundOperators:
|
81
|
+
Enabled: true
|
82
|
+
|
83
|
+
Layout/SpaceBeforeComma:
|
84
|
+
Enabled: true
|
85
|
+
|
86
|
+
Layout/SpaceBeforeFirstArg:
|
87
|
+
Enabled: true
|
88
|
+
|
89
|
+
Style/DefWithParentheses:
|
90
|
+
Enabled: true
|
91
|
+
|
92
|
+
# Defining a method with parameters needs parentheses.
|
93
|
+
Style/MethodDefParentheses:
|
94
|
+
Enabled: true
|
95
|
+
|
96
|
+
Style/FrozenStringLiteralComment:
|
97
|
+
Enabled: true
|
98
|
+
EnforcedStyle: always
|
99
|
+
Exclude:
|
100
|
+
- 'actionview/test/**/*.builder'
|
101
|
+
- 'actionview/test/**/*.ruby'
|
102
|
+
- 'actionpack/test/**/*.builder'
|
103
|
+
- 'actionpack/test/**/*.ruby'
|
104
|
+
- 'activestorage/db/migrate/**/*.rb'
|
105
|
+
|
106
|
+
# Use `foo {}` not `foo{}`.
|
107
|
+
Layout/SpaceBeforeBlockBraces:
|
108
|
+
Enabled: true
|
109
|
+
|
110
|
+
# Use `foo { bar }` not `foo {bar}`.
|
111
|
+
|
112
|
+
# Use `{ a: 1 }` not `{a:1}`.
|
113
|
+
Layout/SpaceInsideHashLiteralBraces:
|
114
|
+
Enabled: true
|
115
|
+
|
116
|
+
Layout/SpaceInsideParens:
|
117
|
+
Enabled: true
|
118
|
+
|
119
|
+
# Check quotes usage according to lint rule below.
|
120
|
+
Style/StringLiterals:
|
121
|
+
Enabled: true
|
122
|
+
EnforcedStyle: double_quotes
|
123
|
+
|
124
|
+
# Detect hard tabs, no hard tabs.
|
125
|
+
Layout/Tab:
|
126
|
+
Enabled: true
|
127
|
+
|
128
|
+
# Blank lines should not have any spaces.
|
129
|
+
Layout/TrailingBlankLines:
|
130
|
+
Enabled: true
|
131
|
+
|
132
|
+
# No trailing whitespace.
|
133
|
+
Layout/TrailingWhitespace:
|
134
|
+
Enabled: true
|
135
|
+
|
136
|
+
# Use quotes for string literals when they are enough.
|
137
|
+
Style/UnneededPercentQ:
|
138
|
+
Enabled: true
|
139
|
+
|
140
|
+
# Align `end` with the matching keyword or starting expression except for
|
141
|
+
# assignments, where it should be aligned with the LHS.
|
142
|
+
Layout/EndAlignment:
|
143
|
+
Enabled: true
|
144
|
+
EnforcedStyleAlignWith: variable
|
145
|
+
AutoCorrect: true
|
146
|
+
|
147
|
+
# Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
|
148
|
+
Lint/RequireParentheses:
|
149
|
+
Enabled: true
|
150
|
+
|
151
|
+
Style/RedundantReturn:
|
152
|
+
Enabled: true
|
153
|
+
AllowMultipleReturnValues: true
|
154
|
+
|
155
|
+
Style/Semicolon:
|
156
|
+
Enabled: true
|
157
|
+
AllowAsExpressionSeparator: true
|
158
|
+
|
159
|
+
# Prefer Foo.method over Foo::method
|
160
|
+
Style/ColonMethodCall:
|
161
|
+
Enabled: true
|
162
|
+
|
163
|
+
Style/CollectionMethods:
|
164
|
+
Enabled: true
|
165
|
+
PreferredMethods:
|
166
|
+
# inject seems more common in the community.
|
167
|
+
reduce: "inject"
|
168
|
+
|
169
|
+
# # Commonly used screens these days easily fit more than 80 characters.
|
170
|
+
# # Metrics/LineLength:
|
171
|
+
# # Max: 120
|
172
|
+
|
173
|
+
# # Too short methods lead to extraction of single-use methods, which can make
|
174
|
+
# # the code easier to read (by naming things), but can also clutter the class
|
175
|
+
# # Metrics/MethodLength:
|
176
|
+
# # Max: 20
|
177
|
+
|
178
|
+
# The guiding principle of classes is SRP, SRP can't be accurately measured by LoC
|
179
|
+
Metrics/ClassLength:
|
180
|
+
Max: 1500
|
181
|
+
|
182
|
+
# We do not need to support Ruby 1.9, so this is good to use.
|
183
|
+
Style/SymbolArray:
|
184
|
+
Enabled: true
|
185
|
+
|
186
|
+
# Most readable form.
|
187
|
+
Layout/AlignHash:
|
188
|
+
EnforcedHashRocketStyle: table
|
189
|
+
EnforcedColonStyle: table
|
190
|
+
|
191
|
+
# Mixing the styles looks just silly.
|
192
|
+
Style/HashSyntax:
|
193
|
+
EnforcedStyle: ruby19_no_mixed_keys
|
194
|
+
|
195
|
+
# has_key? and has_value? are far more readable than key? and value?
|
196
|
+
Style/PreferredHashMethods:
|
197
|
+
Enabled: false
|
198
|
+
|
199
|
+
# String#% is by far the least verbose and only object oriented variant.
|
200
|
+
Style/FormatString:
|
201
|
+
EnforcedStyle: percent
|
202
|
+
|
203
|
+
# Either allow this style or don't. Marking it as safe with parenthesis
|
204
|
+
# is silly. Let's try to live without them for now.
|
205
|
+
Style/ParenthesesAroundCondition:
|
206
|
+
AllowSafeAssignment: false
|
207
|
+
Lint/AssignmentInCondition:
|
208
|
+
AllowSafeAssignment: false
|
209
|
+
|
210
|
+
# A specialized exception class will take one or more arguments and construct the message from it.
|
211
|
+
# So both variants make sense.
|
212
|
+
Style/RaiseArgs:
|
213
|
+
Enabled: false
|
214
|
+
|
215
|
+
# Indenting the chained dots beneath each other is not supported by this cop,
|
216
|
+
# see https://github.com/bbatsov/rubocop/issues/1633
|
217
|
+
Layout/MultilineOperationIndentation:
|
218
|
+
Enabled: false
|
219
|
+
|
220
|
+
# Fail is an alias of raise. Avoid aliases, it's more cognitive load for no gain.
|
221
|
+
# The argument that fail should be used to abort the program is wrong too,
|
222
|
+
# there's Kernel#abort for that.
|
223
|
+
Style/SignalException:
|
224
|
+
EnforcedStyle: only_raise
|
225
|
+
|
226
|
+
# Suppressing exceptions can be perfectly fine, and be it to avoid to
|
227
|
+
# explicitly type nil into the rescue since that's what you want to return,
|
228
|
+
# or suppressing LoadError for optional dependencies
|
229
|
+
Lint/HandleExceptions:
|
230
|
+
Enabled: false
|
231
|
+
|
232
|
+
# { ... } for multi-line blocks is okay, follow Weirichs rule instead:
|
233
|
+
# https://web.archive.org/web/20140221124509/http://onestepback.org/index.cgi/Tech/Ruby/BraceVsDoEnd.rdoc
|
234
|
+
Style/BlockDelimiters:
|
235
|
+
Enabled: false
|
236
|
+
|
237
|
+
# do / end blocks should be used for side effects,
|
238
|
+
# methods that run a block for side effects and have
|
239
|
+
# a useful return value are rare, assign the return
|
240
|
+
# value to a local variable for those cases.
|
241
|
+
Style/MethodCalledOnDoEndBlock:
|
242
|
+
Enabled: true
|
243
|
+
|
244
|
+
# Enforcing the names of variables? To single letter ones? Just no.
|
245
|
+
Style/SingleLineBlockParams:
|
246
|
+
Enabled: false
|
247
|
+
|
248
|
+
# Shadowing outer local variables with block parameters is often useful
|
249
|
+
# to not reinvent a new name for the same thing, it highlights the relation
|
250
|
+
# between the outer variable and the parameter. The cases where it's actually
|
251
|
+
# confusing are rare, and usually bad for other reasons already, for example
|
252
|
+
# because the method is too long.
|
253
|
+
Lint/ShadowingOuterLocalVariable:
|
254
|
+
Enabled: false
|
255
|
+
|
256
|
+
# Check with yard instead.
|
257
|
+
Style/Documentation:
|
258
|
+
Enabled: false
|
259
|
+
|
260
|
+
# This is just silly. Calling the argument `other` in all cases makes no sense.
|
261
|
+
Naming/BinaryOperatorParameterName:
|
262
|
+
Enabled: false
|
263
|
+
|
264
|
+
# There are valid cases, for example debugging Cucumber steps,
|
265
|
+
# also they'll fail CI anyway
|
266
|
+
Lint/Debugger:
|
267
|
+
Enabled: false
|
data/.simplecov
ADDED
data/.travis.yml
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
sudo: false
|
2
|
+
language: ruby
|
3
|
+
rvm:
|
4
|
+
- 2.3.6
|
5
|
+
before_install: gem install bundler -v 1.16.1
|
6
|
+
env:
|
7
|
+
global:
|
8
|
+
- CC_TEST_REPORTER_ID=98f3f903dbaf744be2e3b879ab64a2ac2dbce4842855f10357efba1ff30f6776
|
9
|
+
before_script:
|
10
|
+
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
11
|
+
- chmod +x ./cc-test-reporter
|
12
|
+
- ./cc-test-reporter before-build
|
13
|
+
script:
|
14
|
+
- bundle exec rspec
|
15
|
+
after_script:
|
16
|
+
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at tavares.gleydson@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
6
|
+
|
7
|
+
group :test do
|
8
|
+
# provides a framework for developing a server that complies with the JSON API specification.
|
9
|
+
gem "aruba"
|
10
|
+
gem "jsonapi-resources"
|
11
|
+
gem 'simplecov', require: false
|
12
|
+
end
|
13
|
+
# Specify your gem's dependencies in jsonapi-swagger-blocks-generator.gemspec
|
14
|
+
gemspec
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,137 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
jsonapi-swagger-blocks-generator (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
actionpack (5.2.1)
|
10
|
+
actionview (= 5.2.1)
|
11
|
+
activesupport (= 5.2.1)
|
12
|
+
rack (~> 2.0)
|
13
|
+
rack-test (>= 0.6.3)
|
14
|
+
rails-dom-testing (~> 2.0)
|
15
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
16
|
+
actionview (5.2.1)
|
17
|
+
activesupport (= 5.2.1)
|
18
|
+
builder (~> 3.1)
|
19
|
+
erubi (~> 1.4)
|
20
|
+
rails-dom-testing (~> 2.0)
|
21
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
22
|
+
activemodel (5.2.1)
|
23
|
+
activesupport (= 5.2.1)
|
24
|
+
activerecord (5.2.1)
|
25
|
+
activemodel (= 5.2.1)
|
26
|
+
activesupport (= 5.2.1)
|
27
|
+
arel (>= 9.0)
|
28
|
+
activesupport (5.2.1)
|
29
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
30
|
+
i18n (>= 0.7, < 2)
|
31
|
+
minitest (~> 5.1)
|
32
|
+
tzinfo (~> 1.1)
|
33
|
+
arel (9.0.0)
|
34
|
+
aruba (0.14.6)
|
35
|
+
childprocess (>= 0.6.3, < 0.10.0)
|
36
|
+
contracts (~> 0.9)
|
37
|
+
cucumber (>= 1.3.19)
|
38
|
+
ffi (~> 1.9.10)
|
39
|
+
rspec-expectations (>= 2.99)
|
40
|
+
thor (~> 0.19)
|
41
|
+
backports (3.11.3)
|
42
|
+
builder (3.2.3)
|
43
|
+
childprocess (0.9.0)
|
44
|
+
ffi (~> 1.0, >= 1.0.11)
|
45
|
+
concurrent-ruby (1.0.5)
|
46
|
+
contracts (0.16.0)
|
47
|
+
crass (1.0.4)
|
48
|
+
cucumber (3.1.2)
|
49
|
+
builder (>= 2.1.2)
|
50
|
+
cucumber-core (~> 3.2.0)
|
51
|
+
cucumber-expressions (~> 6.0.1)
|
52
|
+
cucumber-wire (~> 0.0.1)
|
53
|
+
diff-lcs (~> 1.3)
|
54
|
+
gherkin (~> 5.1.0)
|
55
|
+
multi_json (>= 1.7.5, < 2.0)
|
56
|
+
multi_test (>= 0.1.2)
|
57
|
+
cucumber-core (3.2.0)
|
58
|
+
backports (>= 3.8.0)
|
59
|
+
cucumber-tag_expressions (~> 1.1.0)
|
60
|
+
gherkin (>= 5.0.0)
|
61
|
+
cucumber-expressions (6.0.1)
|
62
|
+
cucumber-tag_expressions (1.1.1)
|
63
|
+
cucumber-wire (0.0.1)
|
64
|
+
diff-lcs (1.3)
|
65
|
+
docile (1.3.1)
|
66
|
+
erubi (1.7.1)
|
67
|
+
ffi (1.9.25)
|
68
|
+
gherkin (5.1.0)
|
69
|
+
i18n (1.1.0)
|
70
|
+
concurrent-ruby (~> 1.0)
|
71
|
+
json (2.1.0)
|
72
|
+
jsonapi-resources (0.9.0)
|
73
|
+
activerecord (>= 4.1)
|
74
|
+
concurrent-ruby
|
75
|
+
railties (>= 4.1)
|
76
|
+
loofah (2.2.2)
|
77
|
+
crass (~> 1.0.2)
|
78
|
+
nokogiri (>= 1.5.9)
|
79
|
+
method_source (0.9.0)
|
80
|
+
mini_portile2 (2.3.0)
|
81
|
+
minitest (5.11.3)
|
82
|
+
multi_json (1.13.1)
|
83
|
+
multi_test (0.1.2)
|
84
|
+
nokogiri (1.8.4)
|
85
|
+
mini_portile2 (~> 2.3.0)
|
86
|
+
rack (2.0.5)
|
87
|
+
rack-test (1.1.0)
|
88
|
+
rack (>= 1.0, < 3)
|
89
|
+
rails-dom-testing (2.0.3)
|
90
|
+
activesupport (>= 4.2.0)
|
91
|
+
nokogiri (>= 1.6)
|
92
|
+
rails-html-sanitizer (1.0.4)
|
93
|
+
loofah (~> 2.2, >= 2.2.2)
|
94
|
+
railties (5.2.1)
|
95
|
+
actionpack (= 5.2.1)
|
96
|
+
activesupport (= 5.2.1)
|
97
|
+
method_source
|
98
|
+
rake (>= 0.8.7)
|
99
|
+
thor (>= 0.19.0, < 2.0)
|
100
|
+
rake (10.4.2)
|
101
|
+
rspec (3.5.0)
|
102
|
+
rspec-core (~> 3.5.0)
|
103
|
+
rspec-expectations (~> 3.5.0)
|
104
|
+
rspec-mocks (~> 3.5.0)
|
105
|
+
rspec-core (3.5.4)
|
106
|
+
rspec-support (~> 3.5.0)
|
107
|
+
rspec-expectations (3.5.0)
|
108
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
109
|
+
rspec-support (~> 3.5.0)
|
110
|
+
rspec-mocks (3.5.0)
|
111
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
112
|
+
rspec-support (~> 3.5.0)
|
113
|
+
rspec-support (3.5.0)
|
114
|
+
simplecov (0.16.1)
|
115
|
+
docile (~> 1.1)
|
116
|
+
json (>= 1.8, < 3)
|
117
|
+
simplecov-html (~> 0.10.0)
|
118
|
+
simplecov-html (0.10.2)
|
119
|
+
thor (0.20.0)
|
120
|
+
thread_safe (0.3.6)
|
121
|
+
tzinfo (1.2.5)
|
122
|
+
thread_safe (~> 0.1)
|
123
|
+
|
124
|
+
PLATFORMS
|
125
|
+
ruby
|
126
|
+
|
127
|
+
DEPENDENCIES
|
128
|
+
aruba
|
129
|
+
bundler (~> 1.16)
|
130
|
+
jsonapi-resources
|
131
|
+
jsonapi-swagger-blocks-generator!
|
132
|
+
rake (~> 10.0)
|
133
|
+
rspec (~> 3.0)
|
134
|
+
simplecov
|
135
|
+
|
136
|
+
BUNDLED WITH
|
137
|
+
1.16.1
|