steel_wheel 0.5.1 → 0.6.0

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.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +2 -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 +114 -95
  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 +8 -0
  18. data/lib/generators/steel_wheel/application_handler/application_handler_generator.rb +12 -0
  19. data/lib/generators/steel_wheel/application_handler/templates/handler_template.rb +4 -0
  20. data/lib/generators/steel_wheel/command/USAGE +0 -0
  21. data/lib/generators/steel_wheel/command/command_generator.rb +10 -10
  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 +10 -10
  25. data/lib/generators/steel_wheel/handler/templates/handler_template.rb +13 -7
  26. data/lib/generators/steel_wheel/params/USAGE +0 -0
  27. data/lib/generators/steel_wheel/params/params_generator.rb +10 -10
  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 +10 -10
  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 +21 -101
  42. data/lib/generators/steel_wheel/generic_generator.rb +0 -23
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e464b8495907b093719e2c6c87f21cf8049813b764541e71351690fffea92137
4
- data.tar.gz: 9094321c43e3fb7e8e68a10a0e4b31460c8b8e28f9f2fade4c6f74b9e33dc317
3
+ metadata.gz: e208342260c8707a41b8f87529f9aa24e35e446572dfbc24ad48adc69309fcbc
4
+ data.tar.gz: 0d275d64e89a1a30db07e8b42a6a7d9f1913f99fca08f0d3a0f5778a003c8a21
5
5
  SHA512:
6
- metadata.gz: fbb09cc404c5dc67ce885503f1b5650b66ef8cda1bc3a2b3b3fc7ff217effdc687f1ec6b9fdcba9aff3a34573d8893472d38d02b85d62d950d5749a11f6bfbc3
7
- data.tar.gz: b243e60f6e1e55707d9b319c2cc865f5612892a8286c508ffada5f2f85f233d642955082500040531ecb779f379c2105baf0b827baf381f71d19e88ccd6ed188
6
+ metadata.gz: 345e4ea37ec4748e76813c5840c8c9815db3bcc11774712fb1bf32112595c4a254b1961e1eafad73f3ecdcf0bf9e7894ae1db7d6182db9552b71ae251fd8ad0e
7
+ data.tar.gz: 8e9dc28dccd1f97dd552c119442ce20aa8b36458c33a9401ea31bd45b5067456e89ffcce8dddf84d7c2a66b084f332ebf72a6cd4f9b25c78fb5a8e65cffe87f5
data/.codeclimate.yml ADDED
@@ -0,0 +1,2 @@
1
+ exclude_patterns:
2
+ - 'lib/generators'
@@ -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,146 +1,165 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- steel_wheel (0.5.1)
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 (5.2.6)
14
- actionview (= 5.2.6)
15
- activesupport (= 5.2.6)
16
- rack (~> 2.0, >= 2.0.8)
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
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
20
- actionview (5.2.6)
21
- activesupport (= 5.2.6)
19
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
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
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
26
- activemodel (5.2.6)
27
- activesupport (= 5.2.6)
28
- activesupport (5.2.6)
25
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
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
- i18n (>= 0.7, < 2)
31
- minitest (~> 5.1)
32
- tzinfo (~> 1.1)
30
+ i18n (>= 1.6, < 2)
31
+ minitest (>= 5.1)
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.9)
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-configurable (0.11.6)
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.4, >= 0.4.7)
42
- dry-equalizer (~> 0.2)
43
- dry-container (0.7.2)
42
+ zeitwerk (~> 2.6)
43
+ dry-inflector (1.0.0)
44
+ dry-logic (1.5.0)
44
45
  concurrent-ruby (~> 1.0)
45
- dry-configurable (~> 0.1, >= 0.1.3)
46
- dry-core (0.4.9)
47
- concurrent-ruby (~> 1.0)
48
- dry-equalizer (0.3.0)
49
- dry-inflector (0.2.0)
50
- dry-logic (1.0.8)
51
- concurrent-ruby (~> 1.0)
52
- dry-core (~> 0.2)
53
- dry-equalizer (~> 0.2)
54
- dry-struct (1.3.0)
55
- dry-core (~> 0.4, >= 0.4.4)
56
- dry-equalizer (~> 0.3)
57
- 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)
58
51
  ice_nine (~> 0.11)
59
- dry-types (1.4.0)
52
+ zeitwerk (~> 2.6)
53
+ dry-types (1.7.1)
60
54
  concurrent-ruby (~> 1.0)
61
- dry-container (~> 0.3)
62
- dry-core (~> 0.4, >= 0.4.4)
63
- dry-equalizer (~> 0.3)
64
- dry-inflector (~> 0.1, >= 0.1.2)
65
- dry-logic (~> 1.0, >= 1.0.2)
66
- 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)
67
60
  activemodel (>= 3.2, < 8)
68
- dry-struct (~> 1.3.0)
69
- dry-types (~> 1.4.0)
70
- erubi (1.10.0)
71
- flow_object (0.3.1)
72
- hospodar (~> 1)
73
- hospodar (1.0.1)
74
- dry-inflector (~> 0.1)
75
- i18n (1.9.1)
61
+ dry-struct (~> 1.4)
62
+ dry-types (~> 1.5)
63
+ erubi (1.12.0)
64
+ i18n (1.14.1)
76
65
  concurrent-ruby (~> 1.0)
77
66
  ice_nine (0.11.2)
78
- json (2.5.1)
79
- loofah (2.13.0)
67
+ json (2.6.3)
68
+ loofah (2.21.3)
80
69
  crass (~> 1.0.2)
81
- nokogiri (>= 1.5.9)
82
- memery (1.3.0)
70
+ nokogiri (>= 1.12.0)
71
+ memery (1.5.0)
83
72
  ruby2_keywords (~> 0.0.2)
84
- method_source (0.9.2)
85
- mini_portile2 (2.4.0)
86
- minitest (5.15.0)
87
- nokogiri (1.10.10)
88
- mini_portile2 (~> 2.4.0)
89
- pry (0.12.2)
90
- coderay (~> 1.1.0)
91
- method_source (~> 0.9.0)
92
- rack (2.2.3)
93
- rack-test (1.1.0)
94
- rack (>= 1.0, < 3)
95
- rails-dom-testing (2.0.3)
96
- activesupport (>= 4.2.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)
78
+ racc (~> 1.4)
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)
89
+ rack (>= 1.3)
90
+ rails-dom-testing (2.1.1)
91
+ activesupport (>= 5.0.0)
92
+ minitest
97
93
  nokogiri (>= 1.6)
98
- rails-html-sanitizer (1.4.2)
99
- loofah (~> 2.3)
100
- railties (5.2.6)
101
- actionpack (= 5.2.6)
102
- activesupport (= 5.2.6)
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)
103
100
  method_source
104
- rake (>= 0.8.7)
105
- thor (>= 0.19.0, < 2.0)
106
- rake (13.0.3)
107
- rspec (3.9.0)
108
- rspec-core (~> 3.9.0)
109
- rspec-expectations (~> 3.9.0)
110
- rspec-mocks (~> 3.9.0)
111
- rspec-core (3.9.0)
112
- rspec-support (~> 3.9.0)
113
- rspec-expectations (3.9.0)
101
+ rake (>= 12.2)
102
+ thor (~> 1.0)
103
+ zeitwerk (~> 2.5)
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)
114
115
  diff-lcs (>= 1.2.0, < 2.0)
115
- rspec-support (~> 3.9.0)
116
- rspec-mocks (3.9.0)
116
+ rspec-support (~> 3.12.0)
117
+ rspec-mocks (3.12.5)
117
118
  diff-lcs (>= 1.2.0, < 2.0)
118
- rspec-support (~> 3.9.0)
119
- rspec-support (3.9.0)
119
+ rspec-support (~> 3.12.0)
120
+ rspec-support (3.12.0)
120
121
  rspec_vars_helper (0.1.0)
121
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)
122
136
  ruby2_keywords (0.0.5)
123
137
  simplecov (0.17.0)
124
138
  docile (~> 1.1)
125
139
  json (>= 1.8, < 3)
126
140
  simplecov-html (~> 0.10.0)
127
141
  simplecov-html (0.10.2)
128
- thor (1.2.1)
129
- thread_safe (0.3.6)
130
- tzinfo (1.2.9)
131
- thread_safe (~> 0.1)
142
+ thor (1.2.2)
143
+ toritori (0.1.0)
144
+ tzinfo (2.0.6)
145
+ concurrent-ruby (~> 1.0)
146
+ unicode-display_width (2.4.2)
147
+ zeitwerk (2.6.9)
132
148
 
133
149
  PLATFORMS
150
+ arm64-darwin
134
151
  ruby
152
+ x86_64-linux
135
153
 
136
154
  DEPENDENCIES
137
- bundler (~> 1.17)
155
+ bundler
138
156
  pry (~> 0.10)
139
157
  rake (>= 12.3.3)
140
158
  rspec (~> 3.0)
141
159
  rspec_vars_helper (~> 0.1)
160
+ rubocop
142
161
  simplecov (= 0.17)
143
162
  steel_wheel!
144
163
 
145
164
  BUNDLED WITH
146
- 1.17.0
165
+ 2.2.22
data/LICENSE.txt CHANGED
File without changes