steel_wheel 0.5.2 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +0 -0
  3. data/.github/workflows/ruby.yml +21 -26
  4. data/.gitignore +0 -0
  5. data/.rspec +0 -0
  6. data/.rubocop.yml +188 -0
  7. data/.ruby-version +1 -1
  8. data/.travis.yml +0 -0
  9. data/CODE_OF_CONDUCT.md +0 -0
  10. data/Gemfile +10 -0
  11. data/Gemfile.lock +103 -81
  12. data/LICENSE.txt +0 -0
  13. data/README.md +307 -4
  14. data/Rakefile +7 -1
  15. data/assets/action_diagram.png +0 -0
  16. data/bin/console +1 -0
  17. data/lib/generators/steel_wheel/application_handler/USAGE +0 -0
  18. data/lib/generators/steel_wheel/application_handler/application_handler_generator.rb +4 -2
  19. data/lib/generators/steel_wheel/application_handler/templates/handler_template.rb +2 -1
  20. data/lib/generators/steel_wheel/command/USAGE +0 -0
  21. data/lib/generators/steel_wheel/command/command_generator.rb +5 -3
  22. data/lib/generators/steel_wheel/command/templates/command_template.rb +3 -1
  23. data/lib/generators/steel_wheel/handler/USAGE +0 -0
  24. data/lib/generators/steel_wheel/handler/handler_generator.rb +3 -2
  25. data/lib/generators/steel_wheel/handler/templates/handler_template.rb +11 -9
  26. data/lib/generators/steel_wheel/params/USAGE +0 -0
  27. data/lib/generators/steel_wheel/params/params_generator.rb +5 -3
  28. data/lib/generators/steel_wheel/params/templates/params_template.rb +3 -1
  29. data/lib/generators/steel_wheel/query/USAGE +0 -0
  30. data/lib/generators/steel_wheel/query/query_generator.rb +5 -3
  31. data/lib/generators/steel_wheel/query/templates/query_template.rb +3 -1
  32. data/lib/steel_wheel/command.rb +8 -2
  33. data/lib/steel_wheel/handler.rb +86 -29
  34. data/lib/steel_wheel/params.rb +10 -1
  35. data/lib/steel_wheel/query.rb +7 -1
  36. data/lib/steel_wheel/response.rb +10 -5
  37. data/lib/steel_wheel/skip_active_model_errors_keys.rb +12 -1
  38. data/lib/steel_wheel/version.rb +3 -1
  39. data/lib/steel_wheel.rb +3 -1
  40. data/steel_wheel.gemspec +6 -11
  41. metadata +17 -100
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 13785609cbd9084917cbe11c267122a95e4bcb03578d5c1e67d4bb72b18ab5a3
4
- data.tar.gz: 42b38f64b7fc05ebd6b9a03ae529342147b21a218777921b61fb46730e6e3fe4
3
+ metadata.gz: e208342260c8707a41b8f87529f9aa24e35e446572dfbc24ad48adc69309fcbc
4
+ data.tar.gz: 0d275d64e89a1a30db07e8b42a6a7d9f1913f99fca08f0d3a0f5778a003c8a21
5
5
  SHA512:
6
- metadata.gz: e97bc94a9f5aff72400db8ea1a23a2303a92855aacdae79f595ee132eea820ffe551a1d870df373e79cbb91ae4ded83403e01a651d3219877b82ddb48942bbc0
7
- data.tar.gz: 41dfc695129fa36a886ba8666222cf2d62c244ab00ca516198b9e4f3f94512c810417b01484090909a7a1ff680bca8a814838511e41468246155c0948d58e7b3
6
+ metadata.gz: 345e4ea37ec4748e76813c5840c8c9815db3bcc11774712fb1bf32112595c4a254b1961e1eafad73f3ecdcf0bf9e7894ae1db7d6182db9552b71ae251fd8ad0e
7
+ data.tar.gz: 8e9dc28dccd1f97dd552c119442ce20aa8b36458c33a9401ea31bd45b5067456e89ffcce8dddf84d7c2a66b084f332ebf72a6cd4f9b25c78fb5a8e65cffe87f5
data/.codeclimate.yml CHANGED
File without changes
@@ -1,48 +1,43 @@
1
1
  name: Ruby
2
2
 
3
- on: [push]
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
4
7
 
5
- jobs:
6
- test:
8
+ pull_request:
7
9
 
10
+ jobs:
11
+ build:
8
12
  runs-on: ubuntu-latest
13
+ name: Ruby ${{ matrix.ruby }}
14
+ strategy:
15
+ matrix:
16
+ ruby:
17
+ - '3.1.3'
9
18
 
10
19
  steps:
11
20
  - uses: actions/checkout@v2
12
21
  - name: Set up Ruby
13
- # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
14
- # change this to (see https://github.com/ruby/setup-ruby#versioning):
15
- # uses: ruby/setup-ruby@v1
16
- uses: ruby/setup-ruby@21351ecc0a7c196081abca5dc55b08f085efe09a
17
- with:
18
- ruby-version: 2.6
19
- - name: Install dependencies
20
- run: bundle install
21
- - name: Run tests
22
- run: bundle exec rake
23
-
24
- coverage:
25
- needs: [ test ]
26
- name: coverage
27
- runs-on: ubuntu-latest
28
- steps:
29
- - uses: actions/checkout@v2
30
- - name: Set up Ruby
31
- uses: ruby/setup-ruby@21351ecc0a7c196081abca5dc55b08f085efe09a
22
+ uses: ruby/setup-ruby@v1
32
23
  with:
33
- ruby-version: 2.6
24
+ ruby-version: 3.0.0
34
25
  - name: Install dependencies
35
- run: bundle install
26
+ run: |
27
+ gem install bundler -v 2.2.3
28
+ bundle install
36
29
  - name: Setup Code Climate test-reporter
37
30
  run: |
38
31
  curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
39
32
  chmod +x ./cc-test-reporter
40
33
  ./cc-test-reporter before-build
41
- - name: Build and test with RSpec
34
+ - name: Run the default task
42
35
  env:
43
36
  CC_TEST_REPORTER_ID: 4bb114295e4e80ad0f42b2f30b7611f0459c1cbdc7a74a0fe6fa437a543796d9
44
37
  run: bundle exec rake
45
38
  - name: Publish code coverage
46
39
  run: |
47
40
  export GIT_BRANCH="master"
48
- ./cc-test-reporter after-build -r 4bb114295e4e80ad0f42b2f30b7611f0459c1cbdc7a74a0fe6fa437a543796d9
41
+ pwd
42
+ ls -l coverage
43
+ ./cc-test-reporter after-build -d -t simplecov -r 4bb114295e4e80ad0f42b2f30b7611f0459c1cbdc7a74a0fe6fa437a543796d9
data/.gitignore CHANGED
File without changes
data/.rspec CHANGED
File without changes
data/.rubocop.yml ADDED
@@ -0,0 +1,188 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+ NewCops: enable
4
+ Exclude:
5
+ - ./spec/spec_helper.rb
6
+ - ./spec/**/*.rb
7
+ - ./lib/generators/**/*.rb
8
+
9
+ Layout/LineLength:
10
+ Max: 120
11
+
12
+ Metrics/BlockLength:
13
+ Exclude:
14
+ - ./spec/**/*.rb
15
+ - ./steel_wheel.gemspec
16
+
17
+ Gemspec/DeprecatedAttributeAssignment: # new in 1.30
18
+ Enabled: true
19
+ Gemspec/DevelopmentDependencies: # new in 1.44
20
+ Enabled: true
21
+ Gemspec/RequireMFA: # new in 1.23
22
+ Enabled: false
23
+ Layout/LineContinuationLeadingSpace: # new in 1.31
24
+ Enabled: true
25
+ Layout/LineContinuationSpacing: # new in 1.31
26
+ Enabled: true
27
+ Layout/LineEndStringConcatenationIndentation: # new in 1.18
28
+ Enabled: true
29
+ Layout/SpaceBeforeBrackets: # new in 1.7
30
+ Enabled: true
31
+ Lint/AmbiguousAssignment: # new in 1.7
32
+ Enabled: true
33
+ Lint/AmbiguousOperatorPrecedence: # new in 1.21
34
+ Enabled: true
35
+ Lint/AmbiguousRange: # new in 1.19
36
+ Enabled: true
37
+ Lint/ConstantOverwrittenInRescue: # new in 1.31
38
+ Enabled: true
39
+ Lint/DeprecatedConstants: # new in 1.8
40
+ Enabled: true
41
+ Lint/DuplicateBranch: # new in 1.3
42
+ Enabled: true
43
+ Lint/DuplicateMagicComment: # new in 1.37
44
+ Enabled: true
45
+ Lint/DuplicateMatchPattern: # new in 1.50
46
+ Enabled: true
47
+ Lint/DuplicateRegexpCharacterClassElement: # new in 1.1
48
+ Enabled: true
49
+ Lint/EmptyBlock: # new in 1.1
50
+ Enabled: true
51
+ Lint/EmptyClass: # new in 1.3
52
+ Enabled: true
53
+ Lint/EmptyInPattern: # new in 1.16
54
+ Enabled: true
55
+ Lint/IncompatibleIoSelectWithFiberScheduler: # new in 1.21
56
+ Enabled: true
57
+ Lint/LambdaWithoutLiteralBlock: # new in 1.8
58
+ Enabled: true
59
+ Lint/NoReturnInBeginEndBlocks: # new in 1.2
60
+ Enabled: true
61
+ Lint/NonAtomicFileOperation: # new in 1.31
62
+ Enabled: true
63
+ Lint/NumberedParameterAssignment: # new in 1.9
64
+ Enabled: true
65
+ Lint/OrAssignmentToConstant: # new in 1.9
66
+ Enabled: true
67
+ Lint/RedundantDirGlobSort: # new in 1.8
68
+ Enabled: true
69
+ Lint/RefinementImportMethods: # new in 1.27
70
+ Enabled: true
71
+ Lint/RequireRangeParentheses: # new in 1.32
72
+ Enabled: true
73
+ Lint/RequireRelativeSelfPath: # new in 1.22
74
+ Enabled: true
75
+ Lint/SymbolConversion: # new in 1.9
76
+ Enabled: true
77
+ Lint/ToEnumArguments: # new in 1.1
78
+ Enabled: true
79
+ Lint/TripleQuotes: # new in 1.9
80
+ Enabled: true
81
+ Lint/UnexpectedBlockArity: # new in 1.5
82
+ Enabled: true
83
+ Lint/UnmodifiedReduceAccumulator: # new in 1.1
84
+ Enabled: true
85
+ Lint/UselessRescue: # new in 1.43
86
+ Enabled: true
87
+ Lint/UselessRuby2Keywords: # new in 1.23
88
+ Enabled: true
89
+ Metrics/CollectionLiteralLength: # new in 1.47
90
+ Enabled: true
91
+ Naming/BlockForwarding: # new in 1.24
92
+ Enabled: true
93
+ Security/CompoundHash: # new in 1.28
94
+ Enabled: true
95
+ Security/IoMethods: # new in 1.22
96
+ Enabled: true
97
+ Style/ArgumentsForwarding: # new in 1.1
98
+ Enabled: true
99
+ Style/ArrayIntersect: # new in 1.40
100
+ Enabled: true
101
+ Style/CollectionCompact: # new in 1.2
102
+ Enabled: true
103
+ Style/ComparableClamp: # new in 1.44
104
+ Enabled: true
105
+ Style/ConcatArrayLiterals: # new in 1.41
106
+ Enabled: true
107
+ Style/DataInheritance: # new in 1.49
108
+ Enabled: true
109
+ Style/DirEmpty: # new in 1.48
110
+ Enabled: true
111
+ Style/DocumentDynamicEvalDefinition: # new in 1.1
112
+ Enabled: true
113
+ Style/EmptyHeredoc: # new in 1.32
114
+ Enabled: true
115
+ Style/EndlessMethod: # new in 1.8
116
+ Enabled: true
117
+ Style/EnvHome: # new in 1.29
118
+ Enabled: true
119
+ Style/FetchEnvVar: # new in 1.28
120
+ Enabled: true
121
+ Style/FileEmpty: # new in 1.48
122
+ Enabled: true
123
+ Style/FileRead: # new in 1.24
124
+ Enabled: true
125
+ Style/FileWrite: # new in 1.24
126
+ Enabled: true
127
+ Style/HashConversion: # new in 1.10
128
+ Enabled: true
129
+ Style/HashExcept: # new in 1.7
130
+ Enabled: true
131
+ Style/IfWithBooleanLiteralBranches: # new in 1.9
132
+ Enabled: true
133
+ Style/InPatternThen: # new in 1.16
134
+ Enabled: true
135
+ Style/MagicCommentFormat: # new in 1.35
136
+ Enabled: true
137
+ Style/MapCompactWithConditionalBlock: # new in 1.30
138
+ Enabled: true
139
+ Style/MapToHash: # new in 1.24
140
+ Enabled: true
141
+ Style/MapToSet: # new in 1.42
142
+ Enabled: true
143
+ Style/MinMaxComparison: # new in 1.42
144
+ Enabled: true
145
+ Style/MultilineInPatternThen: # new in 1.16
146
+ Enabled: true
147
+ Style/NegatedIfElseCondition: # new in 1.2
148
+ Enabled: true
149
+ Style/NestedFileDirname: # new in 1.26
150
+ Enabled: true
151
+ Style/NilLambda: # new in 1.3
152
+ Enabled: true
153
+ Style/NumberedParameters: # new in 1.22
154
+ Enabled: true
155
+ Style/NumberedParametersLimit: # new in 1.22
156
+ Enabled: true
157
+ Style/ObjectThen: # new in 1.28
158
+ Enabled: true
159
+ Style/OpenStructUse: # new in 1.23
160
+ Enabled: true
161
+ Style/OperatorMethodCall: # new in 1.37
162
+ Enabled: true
163
+ Style/QuotedSymbols: # new in 1.16
164
+ Enabled: true
165
+ Style/RedundantArgument: # new in 1.4
166
+ Enabled: true
167
+ Style/RedundantConstantBase: # new in 1.40
168
+ Enabled: true
169
+ Style/RedundantDoubleSplatHashBraces: # new in 1.41
170
+ Enabled: true
171
+ Style/RedundantEach: # new in 1.38
172
+ Enabled: true
173
+ Style/RedundantHeredocDelimiterQuotes: # new in 1.45
174
+ Enabled: true
175
+ Style/RedundantInitialize: # new in 1.27
176
+ Enabled: true
177
+ Style/RedundantLineContinuation: # new in 1.49
178
+ Enabled: true
179
+ Style/RedundantSelfAssignmentBranch: # new in 1.19
180
+ Enabled: true
181
+ Style/RedundantStringEscape: # new in 1.37
182
+ Enabled: true
183
+ Style/SelectByRegexp: # new in 1.22
184
+ Enabled: true
185
+ Style/StringChars: # new in 1.12
186
+ Enabled: true
187
+ Style/SwapValues: # new in 1.1
188
+ Enabled: true
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.4.0
1
+ 3.0.2
data/.travis.yml CHANGED
File without changes
data/CODE_OF_CONDUCT.md CHANGED
File without changes
data/Gemfile CHANGED
@@ -1,6 +1,16 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
4
6
 
5
7
  # Specify your gem's dependencies in steel_wheel.gemspec
6
8
  gemspec
9
+
10
+ gem 'bundler'
11
+ gem 'pry', '~> 0.10'
12
+ gem 'rake', '>= 12.3.3'
13
+ gem 'rspec', '~> 3.0'
14
+ gem 'rspec_vars_helper', '~> 0.1'
15
+ gem 'rubocop'
16
+ gem 'simplecov', '0.17'
data/Gemfile.lock CHANGED
@@ -1,143 +1,165 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- steel_wheel (0.5.2)
5
- easy_params (~> 0.1.2)
6
- flow_object (~> 0.3.1)
4
+ steel_wheel (0.6.0)
5
+ easy_params (~> 0.3)
7
6
  memery (~> 1)
7
+ nina (~> 0.1.2)
8
8
  railties (>= 3.2, < 8)
9
9
 
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actionpack (7.0.3.1)
14
- actionview (= 7.0.3.1)
15
- activesupport (= 7.0.3.1)
16
- rack (~> 2.0, >= 2.2.0)
13
+ actionpack (7.0.6)
14
+ actionview (= 7.0.6)
15
+ activesupport (= 7.0.6)
16
+ rack (~> 2.0, >= 2.2.4)
17
17
  rack-test (>= 0.6.3)
18
18
  rails-dom-testing (~> 2.0)
19
19
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
20
- actionview (7.0.3.1)
21
- activesupport (= 7.0.3.1)
20
+ actionview (7.0.6)
21
+ activesupport (= 7.0.6)
22
22
  builder (~> 3.1)
23
23
  erubi (~> 1.4)
24
24
  rails-dom-testing (~> 2.0)
25
25
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
26
- activemodel (7.0.3.1)
27
- activesupport (= 7.0.3.1)
28
- activesupport (7.0.3.1)
26
+ activemodel (7.0.6)
27
+ activesupport (= 7.0.6)
28
+ activesupport (7.0.6)
29
29
  concurrent-ruby (~> 1.0, >= 1.0.2)
30
30
  i18n (>= 1.6, < 2)
31
31
  minitest (>= 5.1)
32
32
  tzinfo (~> 2.0)
33
+ ast (2.4.2)
33
34
  builder (3.2.4)
34
- coderay (1.1.2)
35
- concurrent-ruby (1.1.10)
35
+ coderay (1.1.3)
36
+ concurrent-ruby (1.2.2)
36
37
  crass (1.0.6)
37
- diff-lcs (1.3)
38
- docile (1.3.5)
39
- dry-container (0.10.1)
38
+ diff-lcs (1.5.0)
39
+ docile (1.4.0)
40
+ dry-core (1.0.0)
40
41
  concurrent-ruby (~> 1.0)
41
- dry-core (0.8.1)
42
+ zeitwerk (~> 2.6)
43
+ dry-inflector (1.0.0)
44
+ dry-logic (1.5.0)
42
45
  concurrent-ruby (~> 1.0)
43
- dry-equalizer (0.3.0)
44
- dry-inflector (0.3.0)
45
- dry-logic (1.2.0)
46
- concurrent-ruby (~> 1.0)
47
- dry-core (~> 0.5, >= 0.5)
48
- dry-struct (1.3.0)
49
- dry-core (~> 0.4, >= 0.4.4)
50
- dry-equalizer (~> 0.3)
51
- dry-types (~> 1.3)
46
+ dry-core (~> 1.0, < 2)
47
+ zeitwerk (~> 2.6)
48
+ dry-struct (1.6.0)
49
+ dry-core (~> 1.0, < 2)
50
+ dry-types (>= 1.7, < 2)
52
51
  ice_nine (~> 0.11)
53
- dry-types (1.4.0)
52
+ zeitwerk (~> 2.6)
53
+ dry-types (1.7.1)
54
54
  concurrent-ruby (~> 1.0)
55
- dry-container (~> 0.3)
56
- dry-core (~> 0.4, >= 0.4.4)
57
- dry-equalizer (~> 0.3)
58
- dry-inflector (~> 0.1, >= 0.1.2)
59
- dry-logic (~> 1.0, >= 1.0.2)
60
- easy_params (0.1.2)
55
+ dry-core (~> 1.0)
56
+ dry-inflector (~> 1.0)
57
+ dry-logic (~> 1.4)
58
+ zeitwerk (~> 2.6)
59
+ easy_params (0.3.1)
61
60
  activemodel (>= 3.2, < 8)
62
- dry-struct (~> 1.3.0)
63
- dry-types (~> 1.4.0)
64
- erubi (1.11.0)
65
- flow_object (0.3.1)
66
- hospodar (~> 1)
67
- hospodar (1.0.1)
68
- dry-inflector (~> 0.1)
69
- i18n (1.12.0)
61
+ dry-struct (~> 1.4)
62
+ dry-types (~> 1.5)
63
+ erubi (1.12.0)
64
+ i18n (1.14.1)
70
65
  concurrent-ruby (~> 1.0)
71
66
  ice_nine (0.11.2)
72
- json (2.5.1)
73
- loofah (2.18.0)
67
+ json (2.6.3)
68
+ loofah (2.21.3)
74
69
  crass (~> 1.0.2)
75
- nokogiri (>= 1.5.9)
76
- memery (1.4.1)
70
+ nokogiri (>= 1.12.0)
71
+ memery (1.5.0)
77
72
  ruby2_keywords (~> 0.0.2)
78
- method_source (0.9.2)
79
- mini_portile2 (2.8.0)
80
- minitest (5.16.3)
81
- nokogiri (1.13.8)
82
- mini_portile2 (~> 2.8.0)
73
+ method_source (1.0.0)
74
+ minitest (5.19.0)
75
+ nina (0.1.2)
76
+ toritori (= 0.1.0)
77
+ nokogiri (1.15.3-arm64-darwin)
83
78
  racc (~> 1.4)
84
- pry (0.12.2)
85
- coderay (~> 1.1.0)
86
- method_source (~> 0.9.0)
87
- racc (1.6.0)
88
- rack (2.2.4)
89
- rack-test (2.0.2)
79
+ parallel (1.23.0)
80
+ parser (3.2.2.3)
81
+ ast (~> 2.4.1)
82
+ racc
83
+ pry (0.14.2)
84
+ coderay (~> 1.1)
85
+ method_source (~> 1.0)
86
+ racc (1.7.0)
87
+ rack (2.2.7)
88
+ rack-test (2.1.0)
90
89
  rack (>= 1.3)
91
- rails-dom-testing (2.0.3)
92
- activesupport (>= 4.2.0)
90
+ rails-dom-testing (2.1.1)
91
+ activesupport (>= 5.0.0)
92
+ minitest
93
93
  nokogiri (>= 1.6)
94
- rails-html-sanitizer (1.4.3)
95
- loofah (~> 2.3)
96
- railties (7.0.3.1)
97
- actionpack (= 7.0.3.1)
98
- activesupport (= 7.0.3.1)
94
+ rails-html-sanitizer (1.6.0)
95
+ loofah (~> 2.21)
96
+ nokogiri (~> 1.14)
97
+ railties (7.0.6)
98
+ actionpack (= 7.0.6)
99
+ activesupport (= 7.0.6)
99
100
  method_source
100
101
  rake (>= 12.2)
101
102
  thor (~> 1.0)
102
103
  zeitwerk (~> 2.5)
103
- rake (13.0.3)
104
- rspec (3.9.0)
105
- rspec-core (~> 3.9.0)
106
- rspec-expectations (~> 3.9.0)
107
- rspec-mocks (~> 3.9.0)
108
- rspec-core (3.9.0)
109
- rspec-support (~> 3.9.0)
110
- rspec-expectations (3.9.0)
104
+ rainbow (3.1.1)
105
+ rake (13.0.6)
106
+ regexp_parser (2.8.1)
107
+ rexml (3.2.5)
108
+ rspec (3.12.0)
109
+ rspec-core (~> 3.12.0)
110
+ rspec-expectations (~> 3.12.0)
111
+ rspec-mocks (~> 3.12.0)
112
+ rspec-core (3.12.2)
113
+ rspec-support (~> 3.12.0)
114
+ rspec-expectations (3.12.3)
111
115
  diff-lcs (>= 1.2.0, < 2.0)
112
- rspec-support (~> 3.9.0)
113
- rspec-mocks (3.9.0)
116
+ rspec-support (~> 3.12.0)
117
+ rspec-mocks (3.12.5)
114
118
  diff-lcs (>= 1.2.0, < 2.0)
115
- rspec-support (~> 3.9.0)
116
- rspec-support (3.9.0)
119
+ rspec-support (~> 3.12.0)
120
+ rspec-support (3.12.0)
117
121
  rspec_vars_helper (0.1.0)
118
122
  rspec (>= 2.4)
123
+ rubocop (1.52.1)
124
+ json (~> 2.3)
125
+ parallel (~> 1.10)
126
+ parser (>= 3.2.2.3)
127
+ rainbow (>= 2.2.2, < 4.0)
128
+ regexp_parser (>= 1.8, < 3.0)
129
+ rexml (>= 3.2.5, < 4.0)
130
+ rubocop-ast (>= 1.28.0, < 2.0)
131
+ ruby-progressbar (~> 1.7)
132
+ unicode-display_width (>= 2.4.0, < 3.0)
133
+ rubocop-ast (1.29.0)
134
+ parser (>= 3.2.1.0)
135
+ ruby-progressbar (1.13.0)
119
136
  ruby2_keywords (0.0.5)
120
137
  simplecov (0.17.0)
121
138
  docile (~> 1.1)
122
139
  json (>= 1.8, < 3)
123
140
  simplecov-html (~> 0.10.0)
124
141
  simplecov-html (0.10.2)
125
- thor (1.2.1)
126
- tzinfo (2.0.5)
142
+ thor (1.2.2)
143
+ toritori (0.1.0)
144
+ tzinfo (2.0.6)
127
145
  concurrent-ruby (~> 1.0)
128
- zeitwerk (2.6.0)
146
+ unicode-display_width (2.4.2)
147
+ zeitwerk (2.6.9)
129
148
 
130
149
  PLATFORMS
150
+ arm64-darwin
131
151
  ruby
152
+ x86_64-linux
132
153
 
133
154
  DEPENDENCIES
134
- bundler (~> 1.17)
155
+ bundler
135
156
  pry (~> 0.10)
136
157
  rake (>= 12.3.3)
137
158
  rspec (~> 3.0)
138
159
  rspec_vars_helper (~> 0.1)
160
+ rubocop
139
161
  simplecov (= 0.17)
140
162
  steel_wheel!
141
163
 
142
164
  BUNDLED WITH
143
- 1.17.0
165
+ 2.2.22
data/LICENSE.txt CHANGED
File without changes