auxiliary_rails 0.1.6 → 0.3.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 +4 -4
- data/.gitlab-ci.yml +26 -0
- data/.rubocop.yml +27 -2
- data/.rubocop_todo.yml +5 -15
- data/.yardopts +5 -0
- data/CHANGELOG.md +39 -3
- data/CONTRIBUTING.md +0 -6
- data/Gemfile.lock +116 -92
- data/README.md +213 -6
- data/auxiliary_rails.gemspec +13 -12
- data/bin/rubocop +29 -0
- data/bitbucket-pipelines.yml +35 -0
- data/lib/auxiliary_rails.rb +5 -3
- data/lib/auxiliary_rails/application/command.rb +56 -0
- data/lib/auxiliary_rails/application/error.rb +10 -0
- data/lib/auxiliary_rails/application/form.rb +30 -0
- data/lib/auxiliary_rails/application/query.rb +71 -0
- data/lib/auxiliary_rails/cli.rb +18 -5
- data/lib/auxiliary_rails/concerns/errorable.rb +22 -0
- data/lib/auxiliary_rails/concerns/performable.rb +128 -0
- data/lib/auxiliary_rails/version.rb +1 -1
- data/lib/generators/auxiliary_rails/api_resource_generator.rb +10 -1
- data/lib/generators/auxiliary_rails/command_generator.rb +44 -0
- data/lib/generators/auxiliary_rails/install_commands_generator.rb +6 -1
- data/lib/generators/auxiliary_rails/install_generator.rb +0 -1
- data/lib/generators/auxiliary_rails/templates/apis/api_entity_template.rb.erb +2 -1
- data/lib/generators/auxiliary_rails/templates/apis/api_resource_spec_template.rb.erb +36 -9
- data/lib/generators/auxiliary_rails/templates/apis/api_resource_template.rb.erb +12 -6
- data/lib/generators/auxiliary_rails/templates/application_error_template.rb +1 -1
- data/lib/generators/auxiliary_rails/templates/commands/application_command_template.rb +2 -0
- data/lib/generators/auxiliary_rails/templates/commands/command_spec_template.rb +11 -0
- data/lib/generators/auxiliary_rails/templates/commands/command_template.rb +6 -0
- data/lib/generators/auxiliary_rails/templates/commands/commands.en_template.yml +5 -0
- data/templates/rails/elementary.rb +40 -10
- metadata +81 -24
- data/lib/auxiliary_rails/abstract_command.rb +0 -96
- data/lib/auxiliary_rails/abstract_error.rb +0 -7
- data/lib/generators/auxiliary_rails/install_rubocop_generator.rb +0 -29
- data/lib/generators/auxiliary_rails/templates/application_command_template.rb +0 -2
- data/lib/generators/auxiliary_rails/templates/rubocop/rubocop_auxiliary_rails_template.yml +0 -51
- data/lib/generators/auxiliary_rails/templates/rubocop/rubocop_template.yml +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96acec32159316a20cb54c5f2e456fb7c87b6e1f058f6944df4fb1bdeeca2517
|
4
|
+
data.tar.gz: 3ca5ea02af552fb200555f1ab40160b86394b255ecbe2550aebb50e1ac0571b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6c230d4ceadb59c9ad3260c575d571ddb6b190ff7bac76e597cf6334fdcec2a033e8a467893336ad9c1dc21efbc9c2c1c17823861ac4f954d51856066465461
|
7
|
+
data.tar.gz: 05c3be9386e85591ed4afbcd6f178d41a460dd20348580fa443393d736196fca7affa1db32a5ee6eca3b33d52f62e27a55e896620c26c14feca7b63799920438
|
data/.gitlab-ci.yml
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
image: ruby:2.6
|
2
|
+
|
3
|
+
cache:
|
4
|
+
paths:
|
5
|
+
- vendor/bundle
|
6
|
+
- vendor/ruby
|
7
|
+
|
8
|
+
before_script:
|
9
|
+
- ruby -v
|
10
|
+
- gem install bundler --no-document
|
11
|
+
- bundle config set path 'vendor'
|
12
|
+
- bundle install --jobs $(nproc)
|
13
|
+
|
14
|
+
rspec:
|
15
|
+
stage: test
|
16
|
+
script:
|
17
|
+
- bundle exec rspec
|
18
|
+
|
19
|
+
rubocop:
|
20
|
+
stage: test
|
21
|
+
allow_failure: true
|
22
|
+
script:
|
23
|
+
- bundle exec rubocop
|
24
|
+
|
25
|
+
stages:
|
26
|
+
- test
|
data/.rubocop.yml
CHANGED
@@ -7,19 +7,32 @@ require:
|
|
7
7
|
|
8
8
|
AllCops:
|
9
9
|
Exclude:
|
10
|
-
-
|
10
|
+
- bin/rubocop
|
11
|
+
- lib/generators/auxiliary_rails/templates/**/*
|
12
|
+
- vendor/**/* # fix for CI
|
11
13
|
|
12
14
|
#################### Layout ##############################
|
13
15
|
|
14
|
-
Layout/
|
16
|
+
Layout/ArgumentAlignment:
|
15
17
|
EnforcedStyle: with_fixed_indentation
|
16
18
|
|
19
|
+
Layout/MultilineMethodCallIndentation:
|
20
|
+
EnforcedStyle: indented
|
21
|
+
|
17
22
|
#################### Metrics ##############################
|
18
23
|
|
19
24
|
Metrics/BlockLength:
|
20
25
|
ExcludedMethods:
|
21
26
|
- describe
|
22
27
|
|
28
|
+
#################### RSpec ################################
|
29
|
+
|
30
|
+
RSpec/ExampleLength:
|
31
|
+
Max: 10
|
32
|
+
|
33
|
+
RSpec/MultipleExpectations:
|
34
|
+
Max: 3
|
35
|
+
|
23
36
|
#################### Style ###############################
|
24
37
|
|
25
38
|
Style/Documentation:
|
@@ -27,3 +40,15 @@ Style/Documentation:
|
|
27
40
|
|
28
41
|
Style/FrozenStringLiteralComment:
|
29
42
|
Enabled: false
|
43
|
+
|
44
|
+
Style/HashEachMethods:
|
45
|
+
Enabled: true
|
46
|
+
|
47
|
+
Style/HashTransformKeys:
|
48
|
+
Enabled: true
|
49
|
+
|
50
|
+
Style/HashTransformValues:
|
51
|
+
Enabled: true
|
52
|
+
|
53
|
+
Style/NegatedIf:
|
54
|
+
EnforcedStyle: postfix
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2020-03-13 22:32:38 +0200 using RuboCop version 0.80.1.
|
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
|
@@ -8,20 +8,10 @@
|
|
8
8
|
|
9
9
|
# Offense count: 1
|
10
10
|
# Cop supports --auto-correct.
|
11
|
-
|
12
|
-
Layout/ExtraSpacing:
|
11
|
+
Lint/SendWithMixinArgument:
|
13
12
|
Exclude:
|
14
|
-
- 'auxiliary_rails.
|
13
|
+
- 'lib/auxiliary_rails/railtie.rb'
|
15
14
|
|
16
15
|
# Offense count: 1
|
17
|
-
|
18
|
-
|
19
|
-
Layout/SpaceAroundOperators:
|
20
|
-
Exclude:
|
21
|
-
- 'auxiliary_rails.gemspec'
|
22
|
-
|
23
|
-
# Offense count: 1
|
24
|
-
# Configuration parameters: MinBodyLength.
|
25
|
-
Style/GuardClause:
|
26
|
-
Exclude:
|
27
|
-
- 'auxiliary_rails.gemspec'
|
16
|
+
RSpec/NestedGroups:
|
17
|
+
Max: 4
|
data/.yardopts
ADDED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,41 @@
|
|
1
1
|
# AuxiliaryRails Changelog
|
2
2
|
|
3
|
+
## [Unreleased]
|
4
|
+
|
5
|
+
## v0.3.1
|
6
|
+
|
7
|
+
### Added
|
8
|
+
- Errorable concern
|
9
|
+
|
10
|
+
### Changed
|
11
|
+
- Remove validation failed default error #25
|
12
|
+
|
13
|
+
## v0.3.0
|
14
|
+
|
15
|
+
### Added
|
16
|
+
- Form Objects
|
17
|
+
- Query Objects
|
18
|
+
- Performable concern
|
19
|
+
- YARD docs and link to API documentation
|
20
|
+
- Commands usage examples
|
21
|
+
- Commands: `arguments` helper to get hash of all `param`s
|
22
|
+
|
23
|
+
### Changed
|
24
|
+
- Namespace `Application` instead of `Abstract` prefixes for classes
|
25
|
+
- Commands migrate from `#call` to `#perform` method
|
26
|
+
- Commands: force validations
|
27
|
+
|
28
|
+
### Removed
|
29
|
+
- RuboCop generator replaced with `rubocop-ergoserv` gem
|
30
|
+
|
31
|
+
## v0.2.0
|
32
|
+
|
33
|
+
* Commands migration to `dry-initializer`
|
34
|
+
|
35
|
+
## v0.1.7
|
36
|
+
|
37
|
+
* Bundle update (nokogiri 1.10.4, rake 12)
|
38
|
+
|
3
39
|
## v0.1.6
|
4
40
|
|
5
41
|
* API Resource generator
|
@@ -7,7 +43,7 @@
|
|
7
43
|
|
8
44
|
## v0.1.5
|
9
45
|
|
10
|
-
* Fix Gemfile.lock
|
46
|
+
* Fix `Gemfile.lock`
|
11
47
|
|
12
48
|
## v0.1.4
|
13
49
|
|
@@ -17,14 +53,14 @@
|
|
17
53
|
|
18
54
|
## v0.1.3
|
19
55
|
|
20
|
-
*
|
56
|
+
* Upgrade `rubocop` gem and its configs
|
21
57
|
* `rubocop-rspec` and `rubocop-performance` gem iteration
|
22
58
|
* Added basic Rails application template
|
23
59
|
* CLI with `create_rails_app` command
|
24
60
|
|
25
61
|
## v0.1.2
|
26
62
|
|
27
|
-
* Fix Gemfile.lock
|
63
|
+
* Fix `Gemfile.lock`
|
28
64
|
|
29
65
|
## v0.1.1
|
30
66
|
|
data/CONTRIBUTING.md
CHANGED
@@ -1,7 +1 @@
|
|
1
1
|
# Contributing to AuxiliaryRails
|
2
|
-
|
3
|
-
## Rubocop Templates
|
4
|
-
|
5
|
-
### Versioning
|
6
|
-
|
7
|
-
File `rubocop_auxiliary_rails_template.yml` contains a basic template of Rubocop config. After making any changes to this file the line `Version: N` should be updated and `N` (version number) should be incremented by one.
|
data/Gemfile.lock
CHANGED
@@ -1,67 +1,90 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
auxiliary_rails (0.1
|
4
|
+
auxiliary_rails (0.3.1)
|
5
|
+
dry-core
|
6
|
+
dry-initializer
|
7
|
+
dry-initializer-rails
|
8
|
+
rails (>= 5.2, < 7)
|
5
9
|
thor
|
6
10
|
|
7
11
|
GEM
|
8
12
|
remote: https://rubygems.org/
|
9
13
|
specs:
|
10
|
-
actioncable (
|
11
|
-
actionpack (=
|
14
|
+
actioncable (6.0.2.1)
|
15
|
+
actionpack (= 6.0.2.1)
|
12
16
|
nio4r (~> 2.0)
|
13
17
|
websocket-driver (>= 0.6.1)
|
14
|
-
|
15
|
-
actionpack (=
|
16
|
-
|
17
|
-
|
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)
|
24
|
+
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)
|
18
29
|
mail (~> 2.5, >= 2.5.4)
|
19
30
|
rails-dom-testing (~> 2.0)
|
20
|
-
actionpack (
|
21
|
-
actionview (=
|
22
|
-
activesupport (=
|
23
|
-
rack (~> 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)
|
24
35
|
rack-test (>= 0.6.3)
|
25
36
|
rails-dom-testing (~> 2.0)
|
26
|
-
rails-html-sanitizer (~> 1.0, >= 1.0
|
27
|
-
|
28
|
-
|
37
|
+
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)
|
43
|
+
nokogiri (>= 1.8.5)
|
44
|
+
actionview (6.0.2.1)
|
45
|
+
activesupport (= 6.0.2.1)
|
29
46
|
builder (~> 3.1)
|
30
47
|
erubi (~> 1.4)
|
31
48
|
rails-dom-testing (~> 2.0)
|
32
|
-
rails-html-sanitizer (~> 1.
|
33
|
-
activejob (
|
34
|
-
activesupport (=
|
49
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
50
|
+
activejob (6.0.2.1)
|
51
|
+
activesupport (= 6.0.2.1)
|
35
52
|
globalid (>= 0.3.6)
|
36
|
-
activemodel (
|
37
|
-
activesupport (=
|
38
|
-
activerecord (
|
39
|
-
activemodel (=
|
40
|
-
activesupport (=
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
activerecord (=
|
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)
|
45
62
|
marcel (~> 0.3.1)
|
46
|
-
activesupport (
|
63
|
+
activesupport (6.0.2.1)
|
47
64
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
48
65
|
i18n (>= 0.7, < 2)
|
49
66
|
minitest (~> 5.1)
|
50
67
|
tzinfo (~> 1.1)
|
51
|
-
|
68
|
+
zeitwerk (~> 2.2)
|
52
69
|
ast (2.4.0)
|
53
|
-
builder (3.2.
|
70
|
+
builder (3.2.4)
|
54
71
|
coderay (1.1.2)
|
55
|
-
concurrent-ruby (1.1.
|
56
|
-
crass (1.0.
|
72
|
+
concurrent-ruby (1.1.6)
|
73
|
+
crass (1.0.6)
|
57
74
|
diff-lcs (1.3)
|
58
|
-
|
75
|
+
dry-core (0.4.9)
|
76
|
+
concurrent-ruby (~> 1.0)
|
77
|
+
dry-initializer (3.0.3)
|
78
|
+
dry-initializer-rails (3.1.1)
|
79
|
+
dry-initializer (>= 2.4, < 4)
|
80
|
+
rails (> 3.0)
|
81
|
+
erubi (1.9.0)
|
59
82
|
globalid (0.4.2)
|
60
83
|
activesupport (>= 4.2.0)
|
61
|
-
i18n (1.
|
84
|
+
i18n (1.8.2)
|
62
85
|
concurrent-ruby (~> 1.0)
|
63
|
-
jaro_winkler (1.5.
|
64
|
-
loofah (2.
|
86
|
+
jaro_winkler (1.5.4)
|
87
|
+
loofah (2.4.0)
|
65
88
|
crass (~> 1.0.2)
|
66
89
|
nokogiri (>= 1.5.9)
|
67
90
|
mail (2.7.1)
|
@@ -69,91 +92,93 @@ GEM
|
|
69
92
|
marcel (0.3.3)
|
70
93
|
mimemagic (~> 0.3.2)
|
71
94
|
method_source (0.9.2)
|
72
|
-
|
73
|
-
mimemagic (0.3.3)
|
95
|
+
mimemagic (0.3.4)
|
74
96
|
mini_mime (1.0.2)
|
75
97
|
mini_portile2 (2.4.0)
|
76
|
-
minitest (5.
|
77
|
-
nio4r (2.
|
78
|
-
nokogiri (1.10.
|
98
|
+
minitest (5.14.0)
|
99
|
+
nio4r (2.5.2)
|
100
|
+
nokogiri (1.10.9)
|
79
101
|
mini_portile2 (~> 2.4.0)
|
80
|
-
parallel (1.
|
81
|
-
parser (2.
|
102
|
+
parallel (1.19.1)
|
103
|
+
parser (2.7.0.4)
|
82
104
|
ast (~> 2.4.0)
|
83
105
|
pry (0.12.2)
|
84
106
|
coderay (~> 1.1.0)
|
85
107
|
method_source (~> 0.9.0)
|
86
|
-
|
87
|
-
rack (2.0.7)
|
108
|
+
rack (2.2.3)
|
88
109
|
rack-test (1.1.0)
|
89
110
|
rack (>= 1.0, < 3)
|
90
|
-
rails (
|
91
|
-
actioncable (=
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
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)
|
100
123
|
bundler (>= 1.3.0)
|
101
|
-
railties (=
|
124
|
+
railties (= 6.0.2.1)
|
102
125
|
sprockets-rails (>= 2.0.0)
|
103
126
|
rails-dom-testing (2.0.3)
|
104
127
|
activesupport (>= 4.2.0)
|
105
128
|
nokogiri (>= 1.6)
|
106
|
-
rails-html-sanitizer (1.0
|
107
|
-
loofah (~> 2.
|
108
|
-
railties (
|
109
|
-
actionpack (=
|
110
|
-
activesupport (=
|
129
|
+
rails-html-sanitizer (1.3.0)
|
130
|
+
loofah (~> 2.3)
|
131
|
+
railties (6.0.2.1)
|
132
|
+
actionpack (= 6.0.2.1)
|
133
|
+
activesupport (= 6.0.2.1)
|
111
134
|
method_source
|
112
135
|
rake (>= 0.8.7)
|
113
|
-
thor (>= 0.
|
136
|
+
thor (>= 0.20.3, < 2.0)
|
114
137
|
rainbow (3.0.0)
|
115
|
-
rake (
|
116
|
-
|
117
|
-
|
118
|
-
rspec-
|
119
|
-
rspec-
|
120
|
-
|
121
|
-
|
122
|
-
|
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)
|
123
147
|
diff-lcs (>= 1.2.0, < 2.0)
|
124
|
-
rspec-support (~> 3.
|
125
|
-
rspec-mocks (3.
|
148
|
+
rspec-support (~> 3.9.0)
|
149
|
+
rspec-mocks (3.9.1)
|
126
150
|
diff-lcs (>= 1.2.0, < 2.0)
|
127
|
-
rspec-support (~> 3.
|
128
|
-
rspec-support (3.
|
129
|
-
rubocop (0.
|
151
|
+
rspec-support (~> 3.9.0)
|
152
|
+
rspec-support (3.9.2)
|
153
|
+
rubocop (0.80.1)
|
130
154
|
jaro_winkler (~> 1.5.1)
|
131
155
|
parallel (~> 1.10)
|
132
|
-
parser (>= 2.
|
133
|
-
psych (>= 3.1.0)
|
156
|
+
parser (>= 2.7.0.1)
|
134
157
|
rainbow (>= 2.2.2, < 4.0)
|
158
|
+
rexml
|
135
159
|
ruby-progressbar (~> 1.7)
|
136
|
-
unicode-display_width (>= 1.4.0, < 1.
|
137
|
-
rubocop-performance (1.2
|
138
|
-
rubocop (>= 0.
|
139
|
-
rubocop-rspec (1.
|
140
|
-
rubocop (>= 0.
|
141
|
-
ruby-progressbar (1.10.
|
142
|
-
sprockets (
|
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)
|
143
167
|
concurrent-ruby (~> 1.0)
|
144
168
|
rack (> 1, < 3)
|
145
169
|
sprockets-rails (3.2.1)
|
146
170
|
actionpack (>= 4.0)
|
147
171
|
activesupport (>= 4.0)
|
148
172
|
sprockets (>= 3.0.0)
|
149
|
-
thor (0.
|
173
|
+
thor (1.0.1)
|
150
174
|
thread_safe (0.3.6)
|
151
|
-
tzinfo (1.2.
|
175
|
+
tzinfo (1.2.6)
|
152
176
|
thread_safe (~> 0.1)
|
153
|
-
unicode-display_width (1.
|
177
|
+
unicode-display_width (1.6.1)
|
154
178
|
websocket-driver (0.7.1)
|
155
179
|
websocket-extensions (>= 0.1.0)
|
156
|
-
websocket-extensions (0.1.
|
180
|
+
websocket-extensions (0.1.5)
|
181
|
+
zeitwerk (2.3.0)
|
157
182
|
|
158
183
|
PLATFORMS
|
159
184
|
ruby
|
@@ -162,12 +187,11 @@ DEPENDENCIES
|
|
162
187
|
auxiliary_rails!
|
163
188
|
bundler (~> 2.0)
|
164
189
|
pry
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
rubocop
|
190
|
+
rake
|
191
|
+
rspec (~> 3.8)
|
192
|
+
rubocop (~> 0.80)
|
169
193
|
rubocop-performance
|
170
194
|
rubocop-rspec
|
171
195
|
|
172
196
|
BUNDLED WITH
|
173
|
-
2.
|
197
|
+
2.1.4
|