auxiliary_rails 0.3.1 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +10 -1
  3. data/.rubocop_todo.yml +1 -7
  4. data/.ruby-version +1 -1
  5. data/CHANGELOG.md +11 -1
  6. data/CODE_OF_CONDUCT.md +128 -0
  7. data/Gemfile.lock +157 -131
  8. data/README.md +76 -15
  9. data/auxiliary_rails.gemspec +10 -5
  10. data/bin/rspec +29 -0
  11. data/lib/auxiliary_rails/application/command.rb +3 -6
  12. data/lib/auxiliary_rails/application/error.rb +44 -4
  13. data/lib/auxiliary_rails/application/form.rb +1 -0
  14. data/lib/auxiliary_rails/application/query.rb +11 -7
  15. data/lib/auxiliary_rails/application/service.rb +42 -0
  16. data/lib/auxiliary_rails/concerns/callable.rb +23 -0
  17. data/lib/auxiliary_rails/concerns/errorable.rb +12 -12
  18. data/lib/auxiliary_rails/concerns/performable.rb +11 -19
  19. data/lib/auxiliary_rails/railtie.rb +2 -1
  20. data/lib/auxiliary_rails/version.rb +1 -1
  21. data/lib/auxiliary_rails/view_helpers/display_helper.rb +30 -0
  22. data/lib/auxiliary_rails/view_helpers.rb +4 -0
  23. data/lib/auxiliary_rails.rb +3 -1
  24. data/lib/generators/auxiliary_rails/install_errors_controller_generator.rb +31 -0
  25. data/lib/generators/auxiliary_rails/install_generator.rb +1 -0
  26. data/lib/generators/auxiliary_rails/service_generator.rb +48 -0
  27. data/lib/generators/auxiliary_rails/templates/commands/command_spec_template.rb +1 -1
  28. data/lib/generators/auxiliary_rails/templates/errors_controller/errors_controller_template.rb +15 -0
  29. data/lib/generators/auxiliary_rails/templates/errors_controller/not_found_template.html.erb +2 -0
  30. data/lib/generators/auxiliary_rails/templates/errors_controller/show_template.html.erb +1 -0
  31. data/lib/generators/auxiliary_rails/templates/errors_controller/unacceptable_template.html.erb +2 -0
  32. data/lib/generators/auxiliary_rails/templates/services/service_spec_template.rb +5 -0
  33. data/lib/generators/auxiliary_rails/templates/services/service_template.rb +10 -0
  34. metadata +38 -17
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 96acec32159316a20cb54c5f2e456fb7c87b6e1f058f6944df4fb1bdeeca2517
4
- data.tar.gz: 3ca5ea02af552fb200555f1ab40160b86394b255ecbe2550aebb50e1ac0571b1
3
+ metadata.gz: d9da4081f14b301b1f3afaf5583089107f0874f7393b2586fe5db91323a9f783
4
+ data.tar.gz: 11b3e55c61f19b8a0fcc0581147f7dccdd869602ab8fb72f479450ebcf5086d0
5
5
  SHA512:
6
- metadata.gz: b6c230d4ceadb59c9ad3260c575d571ddb6b190ff7bac76e597cf6334fdcec2a033e8a467893336ad9c1dc21efbc9c2c1c17823861ac4f954d51856066465461
7
- data.tar.gz: 05c3be9386e85591ed4afbcd6f178d41a460dd20348580fa443393d736196fca7affa1db32a5ee6eca3b33d52f62e27a55e896620c26c14feca7b63799920438
6
+ metadata.gz: 809eef68d020df68ebb2909d6a3ad648cf31eefeda9206d25d663ba886d81360fd8f9622a9a83a109b3960362a76ec0d59a758def6fa95dccb53ae8d91c57f85
7
+ data.tar.gz: 6a03196d6b77686fb9e4b3c606d2939ed0b3b583f34f764c0d1117f779c33585aee862a8c3a90a2868fd602f187ed17059b896c1378f20f40d1d2645fe19123f
data/.rubocop.yml CHANGED
@@ -7,22 +7,28 @@ require:
7
7
 
8
8
  AllCops:
9
9
  Exclude:
10
+ - bin/rspec
10
11
  - bin/rubocop
11
12
  - lib/generators/auxiliary_rails/templates/**/*
12
13
  - vendor/**/* # fix for CI
14
+ NewCops: enable
15
+ TargetRubyVersion: 2.5
13
16
 
14
17
  #################### Layout ##############################
15
18
 
16
19
  Layout/ArgumentAlignment:
17
20
  EnforcedStyle: with_fixed_indentation
18
21
 
22
+ Layout/LineEndStringConcatenationIndentation:
23
+ EnforcedStyle: indented
24
+
19
25
  Layout/MultilineMethodCallIndentation:
20
26
  EnforcedStyle: indented
21
27
 
22
28
  #################### Metrics ##############################
23
29
 
24
30
  Metrics/BlockLength:
25
- ExcludedMethods:
31
+ IgnoredMethods:
26
32
  - describe
27
33
 
28
34
  #################### RSpec ################################
@@ -38,6 +44,9 @@ RSpec/MultipleExpectations:
38
44
  Style/Documentation:
39
45
  Enabled: false
40
46
 
47
+ Style/IfUnlessModifier:
48
+ Enabled: false
49
+
41
50
  Style/FrozenStringLiteralComment:
42
51
  Enabled: false
43
52
 
data/.rubocop_todo.yml CHANGED
@@ -1,17 +1,11 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2020-03-13 22:32:38 +0200 using RuboCop version 0.80.1.
3
+ # on 2021-11-19 20:08:00 UTC using RuboCop version 1.20.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
- # Offense count: 1
10
- # Cop supports --auto-correct.
11
- Lint/SendWithMixinArgument:
12
- Exclude:
13
- - 'lib/auxiliary_rails/railtie.rb'
14
-
15
9
  # Offense count: 1
16
10
  RSpec/NestedGroups:
17
11
  Max: 4
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.6.3
1
+ 2.7.4
data/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.4.0] - 2022-08-28
6
+
7
+ ### Added
8
+
9
+ - `AuxiliaryRails::Application::Error` significantly extended
10
+ - `AuxiliaryRails::Application::Service` added
11
+ - `AuxiliaryRails::Concerns::Callable` added
12
+ - `ErrorsController` template (custom error pages)
13
+ - View helper: `display_name`
14
+
5
15
  ## v0.3.1
6
16
 
7
17
  ### Added
@@ -26,7 +36,7 @@
26
36
  - Commands: force validations
27
37
 
28
38
  ### Removed
29
- - RuboCop generator replaced with `rubocop-ergoserv` gem
39
+ - RuboCop generator moved to [rubocop-ergoserv](https://github.com/ergoserv/rubocop-ergoserv) gem
30
40
 
31
41
  ## v0.2.0
32
42
 
@@ -0,0 +1,128 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at
63
+ hello@ergoserv.com.
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series
86
+ of actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or
93
+ permanent ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within
113
+ the community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.0, available at
119
+ https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120
+
121
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct
122
+ enforcement ladder](https://github.com/mozilla/diversity).
123
+
124
+ [homepage]: https://www.contributor-covenant.org
125
+
126
+ For answers to common questions about this code of conduct, see the FAQ at
127
+ https://www.contributor-covenant.org/faq. Translations are available at
128
+ https://www.contributor-covenant.org/translations.
data/Gemfile.lock CHANGED
@@ -1,184 +1,209 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- auxiliary_rails (0.3.1)
4
+ auxiliary_rails (0.4.0)
5
5
  dry-core
6
6
  dry-initializer
7
7
  dry-initializer-rails
8
- rails (>= 5.2, < 7)
8
+ rails (>= 5.2)
9
9
  thor
10
10
 
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- actioncable (6.0.2.1)
15
- actionpack (= 6.0.2.1)
14
+ actioncable (7.0.3.1)
15
+ actionpack (= 7.0.3.1)
16
+ activesupport (= 7.0.3.1)
16
17
  nio4r (~> 2.0)
17
18
  websocket-driver (>= 0.6.1)
18
- actionmailbox (6.0.2.1)
19
- actionpack (= 6.0.2.1)
20
- activejob (= 6.0.2.1)
21
- activerecord (= 6.0.2.1)
22
- activestorage (= 6.0.2.1)
23
- activesupport (= 6.0.2.1)
19
+ actionmailbox (7.0.3.1)
20
+ actionpack (= 7.0.3.1)
21
+ activejob (= 7.0.3.1)
22
+ activerecord (= 7.0.3.1)
23
+ activestorage (= 7.0.3.1)
24
+ activesupport (= 7.0.3.1)
24
25
  mail (>= 2.7.1)
25
- actionmailer (6.0.2.1)
26
- actionpack (= 6.0.2.1)
27
- actionview (= 6.0.2.1)
28
- activejob (= 6.0.2.1)
26
+ net-imap
27
+ net-pop
28
+ net-smtp
29
+ actionmailer (7.0.3.1)
30
+ actionpack (= 7.0.3.1)
31
+ actionview (= 7.0.3.1)
32
+ activejob (= 7.0.3.1)
33
+ activesupport (= 7.0.3.1)
29
34
  mail (~> 2.5, >= 2.5.4)
35
+ net-imap
36
+ net-pop
37
+ net-smtp
30
38
  rails-dom-testing (~> 2.0)
31
- actionpack (6.0.2.1)
32
- actionview (= 6.0.2.1)
33
- activesupport (= 6.0.2.1)
34
- rack (~> 2.0, >= 2.0.8)
39
+ actionpack (7.0.3.1)
40
+ actionview (= 7.0.3.1)
41
+ activesupport (= 7.0.3.1)
42
+ rack (~> 2.0, >= 2.2.0)
35
43
  rack-test (>= 0.6.3)
36
44
  rails-dom-testing (~> 2.0)
37
45
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
38
- actiontext (6.0.2.1)
39
- actionpack (= 6.0.2.1)
40
- activerecord (= 6.0.2.1)
41
- activestorage (= 6.0.2.1)
42
- activesupport (= 6.0.2.1)
46
+ actiontext (7.0.3.1)
47
+ actionpack (= 7.0.3.1)
48
+ activerecord (= 7.0.3.1)
49
+ activestorage (= 7.0.3.1)
50
+ activesupport (= 7.0.3.1)
51
+ globalid (>= 0.6.0)
43
52
  nokogiri (>= 1.8.5)
44
- actionview (6.0.2.1)
45
- activesupport (= 6.0.2.1)
53
+ actionview (7.0.3.1)
54
+ activesupport (= 7.0.3.1)
46
55
  builder (~> 3.1)
47
56
  erubi (~> 1.4)
48
57
  rails-dom-testing (~> 2.0)
49
58
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
50
- activejob (6.0.2.1)
51
- activesupport (= 6.0.2.1)
59
+ activejob (7.0.3.1)
60
+ activesupport (= 7.0.3.1)
52
61
  globalid (>= 0.3.6)
53
- activemodel (6.0.2.1)
54
- activesupport (= 6.0.2.1)
55
- activerecord (6.0.2.1)
56
- activemodel (= 6.0.2.1)
57
- activesupport (= 6.0.2.1)
58
- activestorage (6.0.2.1)
59
- actionpack (= 6.0.2.1)
60
- activejob (= 6.0.2.1)
61
- activerecord (= 6.0.2.1)
62
- marcel (~> 0.3.1)
63
- activesupport (6.0.2.1)
62
+ activemodel (7.0.3.1)
63
+ activesupport (= 7.0.3.1)
64
+ activerecord (7.0.3.1)
65
+ activemodel (= 7.0.3.1)
66
+ activesupport (= 7.0.3.1)
67
+ activestorage (7.0.3.1)
68
+ actionpack (= 7.0.3.1)
69
+ activejob (= 7.0.3.1)
70
+ activerecord (= 7.0.3.1)
71
+ activesupport (= 7.0.3.1)
72
+ marcel (~> 1.0)
73
+ mini_mime (>= 1.1.0)
74
+ activesupport (7.0.3.1)
64
75
  concurrent-ruby (~> 1.0, >= 1.0.2)
65
- i18n (>= 0.7, < 2)
66
- minitest (~> 5.1)
67
- tzinfo (~> 1.1)
68
- zeitwerk (~> 2.2)
69
- ast (2.4.0)
76
+ i18n (>= 1.6, < 2)
77
+ minitest (>= 5.1)
78
+ tzinfo (~> 2.0)
79
+ ast (2.4.2)
70
80
  builder (3.2.4)
71
- coderay (1.1.2)
72
- concurrent-ruby (1.1.6)
81
+ coderay (1.1.3)
82
+ concurrent-ruby (1.1.10)
73
83
  crass (1.0.6)
74
- diff-lcs (1.3)
75
- dry-core (0.4.9)
84
+ diff-lcs (1.5.0)
85
+ digest (3.1.0)
86
+ dry-core (0.8.1)
76
87
  concurrent-ruby (~> 1.0)
77
- dry-initializer (3.0.3)
88
+ dry-initializer (3.1.1)
78
89
  dry-initializer-rails (3.1.1)
79
90
  dry-initializer (>= 2.4, < 4)
80
91
  rails (> 3.0)
81
- erubi (1.9.0)
82
- globalid (0.4.2)
83
- activesupport (>= 4.2.0)
84
- i18n (1.8.2)
92
+ erubi (1.11.0)
93
+ globalid (1.0.0)
94
+ activesupport (>= 5.0)
95
+ i18n (1.12.0)
85
96
  concurrent-ruby (~> 1.0)
86
- jaro_winkler (1.5.4)
87
- loofah (2.4.0)
97
+ loofah (2.18.0)
88
98
  crass (~> 1.0.2)
89
99
  nokogiri (>= 1.5.9)
90
100
  mail (2.7.1)
91
101
  mini_mime (>= 0.1.1)
92
- marcel (0.3.3)
93
- mimemagic (~> 0.3.2)
94
- method_source (0.9.2)
95
- mimemagic (0.3.4)
96
- mini_mime (1.0.2)
97
- mini_portile2 (2.4.0)
98
- minitest (5.14.0)
99
- nio4r (2.5.2)
100
- nokogiri (1.10.9)
101
- mini_portile2 (~> 2.4.0)
102
- parallel (1.19.1)
103
- parser (2.7.0.4)
104
- ast (~> 2.4.0)
105
- pry (0.12.2)
106
- coderay (~> 1.1.0)
107
- method_source (~> 0.9.0)
108
- rack (2.2.3)
109
- rack-test (1.1.0)
110
- rack (>= 1.0, < 3)
111
- rails (6.0.2.1)
112
- actioncable (= 6.0.2.1)
113
- actionmailbox (= 6.0.2.1)
114
- actionmailer (= 6.0.2.1)
115
- actionpack (= 6.0.2.1)
116
- actiontext (= 6.0.2.1)
117
- actionview (= 6.0.2.1)
118
- activejob (= 6.0.2.1)
119
- activemodel (= 6.0.2.1)
120
- activerecord (= 6.0.2.1)
121
- activestorage (= 6.0.2.1)
122
- activesupport (= 6.0.2.1)
123
- bundler (>= 1.3.0)
124
- railties (= 6.0.2.1)
125
- sprockets-rails (>= 2.0.0)
102
+ marcel (1.0.2)
103
+ method_source (1.0.0)
104
+ mini_mime (1.1.2)
105
+ mini_portile2 (2.8.0)
106
+ minitest (5.16.3)
107
+ net-imap (0.2.3)
108
+ digest
109
+ net-protocol
110
+ strscan
111
+ net-pop (0.1.1)
112
+ digest
113
+ net-protocol
114
+ timeout
115
+ net-protocol (0.1.3)
116
+ timeout
117
+ net-smtp (0.3.1)
118
+ digest
119
+ net-protocol
120
+ timeout
121
+ nio4r (2.5.8)
122
+ nokogiri (1.13.8)
123
+ mini_portile2 (~> 2.8.0)
124
+ racc (~> 1.4)
125
+ parallel (1.22.1)
126
+ parser (3.1.2.1)
127
+ ast (~> 2.4.1)
128
+ pry (0.14.1)
129
+ coderay (~> 1.1)
130
+ method_source (~> 1.0)
131
+ racc (1.6.0)
132
+ rack (2.2.4)
133
+ rack-test (2.0.2)
134
+ rack (>= 1.3)
135
+ rails (7.0.3.1)
136
+ actioncable (= 7.0.3.1)
137
+ actionmailbox (= 7.0.3.1)
138
+ actionmailer (= 7.0.3.1)
139
+ actionpack (= 7.0.3.1)
140
+ actiontext (= 7.0.3.1)
141
+ actionview (= 7.0.3.1)
142
+ activejob (= 7.0.3.1)
143
+ activemodel (= 7.0.3.1)
144
+ activerecord (= 7.0.3.1)
145
+ activestorage (= 7.0.3.1)
146
+ activesupport (= 7.0.3.1)
147
+ bundler (>= 1.15.0)
148
+ railties (= 7.0.3.1)
126
149
  rails-dom-testing (2.0.3)
127
150
  activesupport (>= 4.2.0)
128
151
  nokogiri (>= 1.6)
129
- rails-html-sanitizer (1.3.0)
152
+ rails-html-sanitizer (1.4.3)
130
153
  loofah (~> 2.3)
131
- railties (6.0.2.1)
132
- actionpack (= 6.0.2.1)
133
- activesupport (= 6.0.2.1)
154
+ railties (7.0.3.1)
155
+ actionpack (= 7.0.3.1)
156
+ activesupport (= 7.0.3.1)
134
157
  method_source
135
- rake (>= 0.8.7)
136
- thor (>= 0.20.3, < 2.0)
137
- rainbow (3.0.0)
138
- rake (13.0.1)
139
- rexml (3.2.4)
140
- rspec (3.9.0)
141
- rspec-core (~> 3.9.0)
142
- rspec-expectations (~> 3.9.0)
143
- rspec-mocks (~> 3.9.0)
144
- rspec-core (3.9.1)
145
- rspec-support (~> 3.9.1)
146
- rspec-expectations (3.9.0)
158
+ rake (>= 12.2)
159
+ thor (~> 1.0)
160
+ zeitwerk (~> 2.5)
161
+ rainbow (3.1.1)
162
+ rake (13.0.6)
163
+ regexp_parser (2.5.0)
164
+ rexml (3.2.5)
165
+ rspec (3.11.0)
166
+ rspec-core (~> 3.11.0)
167
+ rspec-expectations (~> 3.11.0)
168
+ rspec-mocks (~> 3.11.0)
169
+ rspec-core (3.11.0)
170
+ rspec-support (~> 3.11.0)
171
+ rspec-expectations (3.11.0)
147
172
  diff-lcs (>= 1.2.0, < 2.0)
148
- rspec-support (~> 3.9.0)
149
- rspec-mocks (3.9.1)
173
+ rspec-support (~> 3.11.0)
174
+ rspec-mocks (3.11.1)
150
175
  diff-lcs (>= 1.2.0, < 2.0)
151
- rspec-support (~> 3.9.0)
152
- rspec-support (3.9.2)
153
- rubocop (0.80.1)
154
- jaro_winkler (~> 1.5.1)
176
+ rspec-support (~> 3.11.0)
177
+ rspec-support (3.11.0)
178
+ rubocop (1.20.0)
155
179
  parallel (~> 1.10)
156
- parser (>= 2.7.0.1)
180
+ parser (>= 3.0.0.0)
157
181
  rainbow (>= 2.2.2, < 4.0)
182
+ regexp_parser (>= 1.8, < 3.0)
158
183
  rexml
184
+ rubocop-ast (>= 1.9.1, < 2.0)
159
185
  ruby-progressbar (~> 1.7)
160
- unicode-display_width (>= 1.4.0, < 1.7)
161
- rubocop-performance (1.5.2)
162
- rubocop (>= 0.71.0)
163
- rubocop-rspec (1.38.1)
164
- rubocop (>= 0.68.1)
165
- ruby-progressbar (1.10.1)
166
- sprockets (4.0.0)
186
+ unicode-display_width (>= 1.4.0, < 3.0)
187
+ rubocop-ast (1.21.0)
188
+ parser (>= 3.1.1.0)
189
+ rubocop-performance (1.14.3)
190
+ rubocop (>= 1.7.0, < 2.0)
191
+ rubocop-ast (>= 0.4.0)
192
+ rubocop-rake (0.6.0)
193
+ rubocop (~> 1.0)
194
+ rubocop-rspec (2.11.1)
195
+ rubocop (~> 1.19)
196
+ ruby-progressbar (1.11.0)
197
+ strscan (3.0.4)
198
+ thor (1.2.1)
199
+ timeout (0.3.0)
200
+ tzinfo (2.0.5)
167
201
  concurrent-ruby (~> 1.0)
168
- rack (> 1, < 3)
169
- sprockets-rails (3.2.1)
170
- actionpack (>= 4.0)
171
- activesupport (>= 4.0)
172
- sprockets (>= 3.0.0)
173
- thor (1.0.1)
174
- thread_safe (0.3.6)
175
- tzinfo (1.2.6)
176
- thread_safe (~> 0.1)
177
- unicode-display_width (1.6.1)
178
- websocket-driver (0.7.1)
202
+ unicode-display_width (2.2.0)
203
+ websocket-driver (0.7.5)
179
204
  websocket-extensions (>= 0.1.0)
180
205
  websocket-extensions (0.1.5)
181
- zeitwerk (2.3.0)
206
+ zeitwerk (2.6.0)
182
207
 
183
208
  PLATFORMS
184
209
  ruby
@@ -189,8 +214,9 @@ DEPENDENCIES
189
214
  pry
190
215
  rake
191
216
  rspec (~> 3.8)
192
- rubocop (~> 0.80)
217
+ rubocop (= 1.20.0)
193
218
  rubocop-performance
219
+ rubocop-rake
194
220
  rubocop-rspec
195
221
 
196
222
  BUNDLED WITH