File tree Expand file tree Collapse file tree 4 files changed +126
-0
lines changed Expand file tree Collapse file tree 4 files changed +126
-0
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,4 @@ spec/reports
21
21
/test_app /.sass-cache
22
22
/test_app /config /mongoid.yml
23
23
/spec /rails
24
+ .ruby-version
Original file line number Diff line number Diff line change
1
+ AllCops :
2
+ DisabledByDefault : true
3
+ TargetRubyVersion : 2.4
4
+
5
+ DisplayCopNames : true
6
+
7
+ StyleGuideCopsOnly : false
8
+
9
+ Layout/EndAlignment :
10
+ Enabled : true
11
+
12
+ Lint/ParenthesesAsGroupedExpression :
13
+ Enabled : true
14
+
15
+ Layout/AccessModifierIndentation :
16
+ Enabled : true
17
+
18
+ Layout/CaseIndentation :
19
+ Enabled : true
20
+
21
+ Layout/CommentIndentation :
22
+ Enabled : true
23
+
24
+ Layout/ElseAlignment :
25
+ Enabled : true
26
+
27
+ Layout/EmptyLines :
28
+ Enabled : true
29
+
30
+ Layout/EmptyLinesAroundBlockBody :
31
+ Enabled : true
32
+
33
+ Layout/EndOfLine :
34
+ Enabled : true
35
+
36
+ Layout/ExtraSpacing :
37
+ Enabled : true
38
+
39
+ Style/Dir :
40
+ Enabled : true
41
+
42
+ Style/Encoding :
43
+ Enabled : true
44
+
45
+ Style/ExpandPathArguments :
46
+ Enabled : true
47
+
48
+ Style/FrozenStringLiteralComment :
49
+ Enabled : true
50
+ EnforcedStyle : never
51
+
52
+ Style/HashSyntax :
53
+ Enabled : true
54
+
55
+ Style/ParallelAssignment :
56
+ Enabled : true
57
+
58
+ Layout/IndentationConsistency :
59
+ Enabled : true
60
+
61
+ Layout/IndentationWidth :
62
+ Enabled : true
63
+
64
+ Naming/PredicateName :
65
+ Enabled : true
66
+
67
+ ForbiddenPrefixes :
68
+ - is_
69
+ - have_
70
+
71
+ AllowedMethods :
72
+ - has_many
73
+ - has_many_actions
74
+
75
+ Style/TrailingCommaInArguments :
76
+ Enabled : true
77
+
78
+ Layout/TrailingEmptyLines :
79
+ Enabled : true
80
+
81
+ Layout/TrailingWhitespace :
82
+ Enabled : true
83
+
84
+ Layout/SpaceAfterComma :
85
+ Enabled : true
86
+
87
+ Layout/SpaceAroundEqualsInParameterDefault :
88
+ Enabled : true
89
+
90
+ Layout/SpaceAroundOperators :
91
+ Enabled : true
92
+
93
+ Layout/SpaceBeforeBlockBraces :
94
+ Enabled : true
95
+
96
+ Layout/SpaceInsideBlockBraces :
97
+ Enabled : true
98
+
99
+ Layout/SpaceInsideHashLiteralBraces :
100
+ Enabled : true
101
+
102
+ Layout/SpaceInsideParens :
103
+ Enabled : true
Original file line number Diff line number Diff line change @@ -20,3 +20,7 @@ group :test do
20
20
gem 'launchy'
21
21
gem 'simplecov' , require : false
22
22
end
23
+
24
+ group :lint do
25
+ gem 'rubocop' , '0.80.0'
26
+ end
Original file line number Diff line number Diff line change 74
74
arbre (1.2.1 )
75
75
activesupport (>= 3.0.0 )
76
76
arel (9.0.0 )
77
+ ast (2.4.0 )
77
78
bcrypt (3.1.13 )
78
79
bson (4.7.1 )
79
80
builder (3.2.3 )
114
115
has_scope (~> 0.6 )
115
116
railties (>= 5.0 , < 6.1 )
116
117
responders (>= 2 , < 4 )
118
+ jaro_winkler (1.5.4 )
117
119
jquery-rails (4.3.3 )
118
120
rails-dom-testing (>= 1 , < 3 )
119
121
railties (>= 4.2.0 )
161
163
nokogiri (1.10.5 )
162
164
mini_portile2 (~> 2.4.0 )
163
165
orm_adapter (0.5.0 )
166
+ parallel (1.19.1 )
167
+ parser (2.7.0.2 )
168
+ ast (~> 2.4.0 )
164
169
poltergeist (1.18.1 )
165
170
capybara (>= 2.1 , < 4 )
166
171
cliver (~> 0.3.1 )
200
205
method_source
201
206
rake (>= 0.8.7 )
202
207
thor (>= 0.19.0 , < 2.0 )
208
+ rainbow (3.0.0 )
203
209
rake (12.3.3 )
204
210
ransack (2.3.2 )
205
211
activerecord (>= 5.2.1 )
210
216
responders (2.4.1 )
211
217
actionpack (>= 4.2.0 , < 6.0 )
212
218
railties (>= 4.2.0 , < 6.0 )
219
+ rexml (3.2.4 )
213
220
rspec-core (3.8.0 )
214
221
rspec-support (~> 3.8.0 )
215
222
rspec-expectations (3.8.2 )
227
234
rspec-mocks (~> 3.8.0 )
228
235
rspec-support (~> 3.8.0 )
229
236
rspec-support (3.8.0 )
237
+ rubocop (0.80.0 )
238
+ jaro_winkler (~> 1.5.1 )
239
+ parallel (~> 1.10 )
240
+ parser (>= 2.7.0.1 )
241
+ rainbow (>= 2.2.2 , < 4.0 )
242
+ rexml
243
+ ruby-progressbar (~> 1.7 )
244
+ unicode-display_width (>= 1.4.0 , < 1.7 )
245
+ ruby-progressbar (1.10.1 )
230
246
sass-rails (6.0.0 )
231
247
sassc-rails (~> 2.1 , >= 2.1.1 )
232
248
sassc (2.2.1 )
254
270
tilt (2.0.10 )
255
271
tzinfo (1.2.5 )
256
272
thread_safe (~> 0.1 )
273
+ unicode-display_width (1.6.1 )
257
274
warden (1.2.8 )
258
275
rack (>= 2.0.6 )
259
276
websocket-driver (0.7.0 )
@@ -278,6 +295,7 @@ DEPENDENCIES
278
295
rails (>= 5.2 , < 6.1 )
279
296
ransack-mongoid !
280
297
rspec-rails (~> 3.6 )
298
+ rubocop (= 0.80.0 )
281
299
simplecov
282
300
283
301
BUNDLED WITH
You can’t perform that action at this time.
0 commit comments