warder 0.3.2 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/warder/version.rb +1 -1
- metadata +26 -214
- data/.gitignore +0 -20
- data/.travis.yml +0 -15
- data/Gemfile +0 -4
- data/LICENSE.txt +0 -22
- data/README.md +0 -130
- data/Rakefile +0 -53
- data/cucumber.yml +0 -4
- data/features/checks_for_all_issues.feature +0 -36
- data/features/checks_for_rails_best_practices.feature +0 -25
- data/features/checks_for_rails_related_issues.feature +0 -27
- data/features/checks_for_rails_security_issues.feature +0 -25
- data/features/checks_for_sandi_metz_rules.feature +0 -25
- data/features/checks_for_vulnerable_gems.feature +0 -25
- data/features/detects_code_complexity.feature +0 -29
- data/features/detects_code_duplication.feature +0 -32
- data/features/detects_code_smell.feature +0 -29
- data/features/detects_magick_numbers.feature +0 -29
- data/features/quiet.feature +0 -10
- data/features/run.feature +0 -9
- data/features/show_version.feature +0 -8
- data/features/statistics.feature +0 -22
- data/features/step_definitions/checks_for_rails_best_practices_steps.rb +0 -14
- data/features/step_definitions/checks_for_rails_security_issues_steps.rb +0 -24
- data/features/step_definitions/checks_for_sandi_metz_rules_step.rb +0 -7
- data/features/step_definitions/checks_for_vulnerable_gems_steps.rb +0 -15
- data/features/step_definitions/detects_code_complexity_steps.rb +0 -11
- data/features/step_definitions/detects_code_duplication_steps.rb +0 -7
- data/features/step_definitions/detects_code_smell_steps.rb +0 -7
- data/features/step_definitions/detects_magick_numbers_steps.rb +0 -7
- data/features/step_definitions/run_steps.rb +0 -38
- data/features/step_definitions/show_version_steps.rb +0 -3
- data/features/step_definitions/statistics_steps.rb +0 -4
- data/features/step_definitions/validates_coffeescript_style_guide_steps.rb +0 -12
- data/features/step_definitions/validates_ruby_style_guide_steps.rb +0 -7
- data/features/support/env.rb +0 -23
- data/features/validates_coffeescript_style_guide.feature +0 -29
- data/features/validates_ruby_style_guide.feature +0 -29
- data/spec/fixtures/invalid_code_complexity.rb +0 -13
- data/spec/fixtures/invalid_code_duplication.rb +0 -40
- data/spec/fixtures/invalid_code_smell.rb +0 -4
- data/spec/fixtures/invalid_coffee_lint.coffee +0 -6
- data/spec/fixtures/invalid_magick_numbers.rb +0 -1
- data/spec/fixtures/invalid_rails_app/Gemfile +0 -4
- data/spec/fixtures/invalid_rails_app/Gemfile_lock +0 -82
- data/spec/fixtures/invalid_rails_app/Rakefile +0 -6
- data/spec/fixtures/invalid_rails_app/app/assets/javascripts/invalid_coffee_lint.coffee +0 -6
- data/spec/fixtures/invalid_rails_app/app/controllers/application_controller.rb +0 -19
- data/spec/fixtures/invalid_rails_app/app/models/user.rb +0 -5
- data/spec/fixtures/invalid_rails_app/app/views/layouts/application.html.erb +0 -14
- data/spec/fixtures/invalid_rails_app/config.ru +0 -4
- data/spec/fixtures/invalid_rails_app/config/application.rb +0 -24
- data/spec/fixtures/invalid_rails_app/config/boot.rb +0 -4
- data/spec/fixtures/invalid_rails_app/config/database.yml +0 -25
- data/spec/fixtures/invalid_rails_app/config/environment.rb +0 -5
- data/spec/fixtures/invalid_rails_app/config/environments/development.rb +0 -29
- data/spec/fixtures/invalid_rails_app/config/environments/production.rb +0 -80
- data/spec/fixtures/invalid_rails_app/config/environments/test.rb +0 -36
- data/spec/fixtures/invalid_rails_app/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/fixtures/invalid_rails_app/config/initializers/filter_parameter_logging.rb +0 -4
- data/spec/fixtures/invalid_rails_app/config/initializers/inflections.rb +0 -16
- data/spec/fixtures/invalid_rails_app/config/initializers/mime_types.rb +0 -5
- data/spec/fixtures/invalid_rails_app/config/initializers/secret_token.rb +0 -12
- data/spec/fixtures/invalid_rails_app/config/initializers/session_store.rb +0 -3
- data/spec/fixtures/invalid_rails_app/config/initializers/wrap_parameters.rb +0 -14
- data/spec/fixtures/invalid_rails_app/config/locales/en.yml +0 -23
- data/spec/fixtures/invalid_rails_app/config/routes.rb +0 -5
- data/spec/fixtures/invalid_rails_app/lib/invalid_code_complexity.rb +0 -13
- data/spec/fixtures/invalid_rails_app/lib/invalid_code_duplication.rb +0 -40
- data/spec/fixtures/invalid_style_guide.rb +0 -3
- data/spec/fixtures/strictly_invalid_style_guide.rb +0 -3
- data/spec/fixtures/valid.rb +0 -1
- data/spec/fixtures/valid_coffee_lint.coffee +0 -6
- data/spec/fixtures/valid_rails_app/Gemfile +0 -5
- data/spec/fixtures/valid_rails_app/Gemfile_lock +0 -105
- data/spec/fixtures/valid_rails_app/Rakefile +0 -7
- data/spec/fixtures/valid_rails_app/app/assets/javascripts/valid.coffee +0 -6
- data/spec/fixtures/valid_rails_app/app/controllers/application_controller.rb +0 -6
- data/spec/fixtures/valid_rails_app/app/views/layouts/application.html.erb +0 -14
- data/spec/fixtures/valid_rails_app/config.ru +0 -4
- data/spec/fixtures/valid_rails_app/config/application.rb +0 -29
- data/spec/fixtures/valid_rails_app/config/boot.rb +0 -4
- data/spec/fixtures/valid_rails_app/config/database.yml +0 -25
- data/spec/fixtures/valid_rails_app/config/environment.rb +0 -5
- data/spec/fixtures/valid_rails_app/config/environments/development.rb +0 -30
- data/spec/fixtures/valid_rails_app/config/environments/production.rb +0 -86
- data/spec/fixtures/valid_rails_app/config/environments/test.rb +0 -37
- data/spec/fixtures/valid_rails_app/config/initializers/filter_parameter_logging.rb +0 -4
- data/spec/fixtures/valid_rails_app/config/initializers/mime_types.rb +0 -5
- data/spec/fixtures/valid_rails_app/config/initializers/secret_token.rb +0 -13
- data/spec/fixtures/valid_rails_app/config/initializers/session_store.rb +0 -3
- data/spec/fixtures/valid_rails_app/config/initializers/wrap_parameters.rb +0 -15
- data/spec/fixtures/valid_rails_app/config/locales/en.yml +0 -23
- data/spec/fixtures/valid_rails_app/config/routes.rb +0 -2
- data/spec/spec_helper.rb +0 -8
- data/warder.gemspec +0 -38
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79218731f382de0fa00b857025fc34b2c7c4211b
|
4
|
+
data.tar.gz: 503e636b99458256ec151e4d04a06ccff11b176b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6fc42935c60796a8b51227b5e29a6986e78a92540d45f7f20c561b1c43a74b96b01d1decc0bbfaad89e5624943be0610b7aadd054486a1404679208cf89ca192
|
7
|
+
data.tar.gz: 9d0c0faa580fd776aada6fbc903aec3a84b6ac97ba320a0b62c5c229433e53561d590e6317b7788893aabb31f383db350b184cf4d6b69ed85dab352e9c55edb1
|
data/lib/warder/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: warder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yura Tolstik
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -16,62 +16,56 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.40'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '0.
|
26
|
+
version: '0.40'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: reek
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '4.0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '4.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: flay
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '2.
|
48
|
-
- - ">="
|
49
|
-
- !ruby/object:Gem::Version
|
50
|
-
version: 2.6.1
|
47
|
+
version: '2.8'
|
51
48
|
type: :runtime
|
52
49
|
prerelease: false
|
53
50
|
version_requirements: !ruby/object:Gem::Requirement
|
54
51
|
requirements:
|
55
52
|
- - "~>"
|
56
53
|
- !ruby/object:Gem::Version
|
57
|
-
version: '2.
|
58
|
-
- - ">="
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
version: 2.6.1
|
54
|
+
version: '2.8'
|
61
55
|
- !ruby/object:Gem::Dependency
|
62
56
|
name: flog
|
63
57
|
requirement: !ruby/object:Gem::Requirement
|
64
58
|
requirements:
|
65
59
|
- - "~>"
|
66
60
|
- !ruby/object:Gem::Version
|
67
|
-
version: '4.
|
61
|
+
version: '4.4'
|
68
62
|
type: :runtime
|
69
63
|
prerelease: false
|
70
64
|
version_requirements: !ruby/object:Gem::Requirement
|
71
65
|
requirements:
|
72
66
|
- - "~>"
|
73
67
|
- !ruby/object:Gem::Version
|
74
|
-
version: '4.
|
68
|
+
version: '4.4'
|
75
69
|
- !ruby/object:Gem::Dependency
|
76
70
|
name: mago
|
77
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -92,28 +86,28 @@ dependencies:
|
|
92
86
|
requirements:
|
93
87
|
- - "~>"
|
94
88
|
- !ruby/object:Gem::Version
|
95
|
-
version: '3.
|
89
|
+
version: '3.3'
|
96
90
|
type: :runtime
|
97
91
|
prerelease: false
|
98
92
|
version_requirements: !ruby/object:Gem::Requirement
|
99
93
|
requirements:
|
100
94
|
- - "~>"
|
101
95
|
- !ruby/object:Gem::Version
|
102
|
-
version: '3.
|
96
|
+
version: '3.3'
|
103
97
|
- !ruby/object:Gem::Dependency
|
104
98
|
name: rails_best_practices
|
105
99
|
requirement: !ruby/object:Gem::Requirement
|
106
100
|
requirements:
|
107
101
|
- - "~>"
|
108
102
|
- !ruby/object:Gem::Version
|
109
|
-
version: '1.
|
103
|
+
version: '1.16'
|
110
104
|
type: :runtime
|
111
105
|
prerelease: false
|
112
106
|
version_requirements: !ruby/object:Gem::Requirement
|
113
107
|
requirements:
|
114
108
|
- - "~>"
|
115
109
|
- !ruby/object:Gem::Version
|
116
|
-
version: '1.
|
110
|
+
version: '1.16'
|
117
111
|
- !ruby/object:Gem::Dependency
|
118
112
|
name: sandi_meter
|
119
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -134,14 +128,14 @@ dependencies:
|
|
134
128
|
requirements:
|
135
129
|
- - "~>"
|
136
130
|
- !ruby/object:Gem::Version
|
137
|
-
version: '0.
|
131
|
+
version: '0.5'
|
138
132
|
type: :runtime
|
139
133
|
prerelease: false
|
140
134
|
version_requirements: !ruby/object:Gem::Requirement
|
141
135
|
requirements:
|
142
136
|
- - "~>"
|
143
137
|
- !ruby/object:Gem::Version
|
144
|
-
version: '0.
|
138
|
+
version: '0.5'
|
145
139
|
- !ruby/object:Gem::Dependency
|
146
140
|
name: coffeelint
|
147
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -162,28 +156,28 @@ dependencies:
|
|
162
156
|
requirements:
|
163
157
|
- - "~>"
|
164
158
|
- !ruby/object:Gem::Version
|
165
|
-
version: '1.
|
159
|
+
version: '1.7'
|
166
160
|
type: :development
|
167
161
|
prerelease: false
|
168
162
|
version_requirements: !ruby/object:Gem::Requirement
|
169
163
|
requirements:
|
170
164
|
- - "~>"
|
171
165
|
- !ruby/object:Gem::Version
|
172
|
-
version: '1.
|
166
|
+
version: '1.7'
|
173
167
|
- !ruby/object:Gem::Dependency
|
174
168
|
name: rake
|
175
169
|
requirement: !ruby/object:Gem::Requirement
|
176
170
|
requirements:
|
177
171
|
- - "~>"
|
178
172
|
- !ruby/object:Gem::Version
|
179
|
-
version: '
|
173
|
+
version: '11.1'
|
180
174
|
type: :development
|
181
175
|
prerelease: false
|
182
176
|
version_requirements: !ruby/object:Gem::Requirement
|
183
177
|
requirements:
|
184
178
|
- - "~>"
|
185
179
|
- !ruby/object:Gem::Version
|
186
|
-
version: '
|
180
|
+
version: '11.1'
|
187
181
|
- !ruby/object:Gem::Dependency
|
188
182
|
name: rspec
|
189
183
|
requirement: !ruby/object:Gem::Requirement
|
@@ -204,28 +198,28 @@ dependencies:
|
|
204
198
|
requirements:
|
205
199
|
- - "~>"
|
206
200
|
- !ruby/object:Gem::Version
|
207
|
-
version: '2.
|
201
|
+
version: '2.3'
|
208
202
|
type: :development
|
209
203
|
prerelease: false
|
210
204
|
version_requirements: !ruby/object:Gem::Requirement
|
211
205
|
requirements:
|
212
206
|
- - "~>"
|
213
207
|
- !ruby/object:Gem::Version
|
214
|
-
version: '2.
|
208
|
+
version: '2.3'
|
215
209
|
- !ruby/object:Gem::Dependency
|
216
210
|
name: aruba
|
217
211
|
requirement: !ruby/object:Gem::Requirement
|
218
212
|
requirements:
|
219
213
|
- - "~>"
|
220
214
|
- !ruby/object:Gem::Version
|
221
|
-
version: '0.
|
215
|
+
version: '0.14'
|
222
216
|
type: :development
|
223
217
|
prerelease: false
|
224
218
|
version_requirements: !ruby/object:Gem::Requirement
|
225
219
|
requirements:
|
226
220
|
- - "~>"
|
227
221
|
- !ruby/object:Gem::Version
|
228
|
-
version: '0.
|
222
|
+
version: '0.14'
|
229
223
|
- !ruby/object:Gem::Dependency
|
230
224
|
name: simplecov
|
231
225
|
requirement: !ruby/object:Gem::Requirement
|
@@ -248,44 +242,7 @@ executables:
|
|
248
242
|
extensions: []
|
249
243
|
extra_rdoc_files: []
|
250
244
|
files:
|
251
|
-
- ".gitignore"
|
252
|
-
- ".travis.yml"
|
253
|
-
- Gemfile
|
254
|
-
- LICENSE.txt
|
255
|
-
- README.md
|
256
|
-
- Rakefile
|
257
245
|
- bin/warder
|
258
|
-
- cucumber.yml
|
259
|
-
- features/checks_for_all_issues.feature
|
260
|
-
- features/checks_for_rails_best_practices.feature
|
261
|
-
- features/checks_for_rails_related_issues.feature
|
262
|
-
- features/checks_for_rails_security_issues.feature
|
263
|
-
- features/checks_for_sandi_metz_rules.feature
|
264
|
-
- features/checks_for_vulnerable_gems.feature
|
265
|
-
- features/detects_code_complexity.feature
|
266
|
-
- features/detects_code_duplication.feature
|
267
|
-
- features/detects_code_smell.feature
|
268
|
-
- features/detects_magick_numbers.feature
|
269
|
-
- features/quiet.feature
|
270
|
-
- features/run.feature
|
271
|
-
- features/show_version.feature
|
272
|
-
- features/statistics.feature
|
273
|
-
- features/step_definitions/checks_for_rails_best_practices_steps.rb
|
274
|
-
- features/step_definitions/checks_for_rails_security_issues_steps.rb
|
275
|
-
- features/step_definitions/checks_for_sandi_metz_rules_step.rb
|
276
|
-
- features/step_definitions/checks_for_vulnerable_gems_steps.rb
|
277
|
-
- features/step_definitions/detects_code_complexity_steps.rb
|
278
|
-
- features/step_definitions/detects_code_duplication_steps.rb
|
279
|
-
- features/step_definitions/detects_code_smell_steps.rb
|
280
|
-
- features/step_definitions/detects_magick_numbers_steps.rb
|
281
|
-
- features/step_definitions/run_steps.rb
|
282
|
-
- features/step_definitions/show_version_steps.rb
|
283
|
-
- features/step_definitions/statistics_steps.rb
|
284
|
-
- features/step_definitions/validates_coffeescript_style_guide_steps.rb
|
285
|
-
- features/step_definitions/validates_ruby_style_guide_steps.rb
|
286
|
-
- features/support/env.rb
|
287
|
-
- features/validates_coffeescript_style_guide.feature
|
288
|
-
- features/validates_ruby_style_guide.feature
|
289
246
|
- lib/warder.rb
|
290
247
|
- lib/warder/arguments.rb
|
291
248
|
- lib/warder/aruba_app.rb
|
@@ -305,64 +262,6 @@ files:
|
|
305
262
|
- lib/warder/sandi_rules_runner.rb
|
306
263
|
- lib/warder/style_guide_runner.rb
|
307
264
|
- lib/warder/version.rb
|
308
|
-
- spec/fixtures/invalid_code_complexity.rb
|
309
|
-
- spec/fixtures/invalid_code_duplication.rb
|
310
|
-
- spec/fixtures/invalid_code_smell.rb
|
311
|
-
- spec/fixtures/invalid_coffee_lint.coffee
|
312
|
-
- spec/fixtures/invalid_magick_numbers.rb
|
313
|
-
- spec/fixtures/invalid_rails_app/Gemfile
|
314
|
-
- spec/fixtures/invalid_rails_app/Gemfile_lock
|
315
|
-
- spec/fixtures/invalid_rails_app/Rakefile
|
316
|
-
- spec/fixtures/invalid_rails_app/app/assets/javascripts/invalid_coffee_lint.coffee
|
317
|
-
- spec/fixtures/invalid_rails_app/app/controllers/application_controller.rb
|
318
|
-
- spec/fixtures/invalid_rails_app/app/models/user.rb
|
319
|
-
- spec/fixtures/invalid_rails_app/app/views/layouts/application.html.erb
|
320
|
-
- spec/fixtures/invalid_rails_app/config.ru
|
321
|
-
- spec/fixtures/invalid_rails_app/config/application.rb
|
322
|
-
- spec/fixtures/invalid_rails_app/config/boot.rb
|
323
|
-
- spec/fixtures/invalid_rails_app/config/database.yml
|
324
|
-
- spec/fixtures/invalid_rails_app/config/environment.rb
|
325
|
-
- spec/fixtures/invalid_rails_app/config/environments/development.rb
|
326
|
-
- spec/fixtures/invalid_rails_app/config/environments/production.rb
|
327
|
-
- spec/fixtures/invalid_rails_app/config/environments/test.rb
|
328
|
-
- spec/fixtures/invalid_rails_app/config/initializers/backtrace_silencers.rb
|
329
|
-
- spec/fixtures/invalid_rails_app/config/initializers/filter_parameter_logging.rb
|
330
|
-
- spec/fixtures/invalid_rails_app/config/initializers/inflections.rb
|
331
|
-
- spec/fixtures/invalid_rails_app/config/initializers/mime_types.rb
|
332
|
-
- spec/fixtures/invalid_rails_app/config/initializers/secret_token.rb
|
333
|
-
- spec/fixtures/invalid_rails_app/config/initializers/session_store.rb
|
334
|
-
- spec/fixtures/invalid_rails_app/config/initializers/wrap_parameters.rb
|
335
|
-
- spec/fixtures/invalid_rails_app/config/locales/en.yml
|
336
|
-
- spec/fixtures/invalid_rails_app/config/routes.rb
|
337
|
-
- spec/fixtures/invalid_rails_app/lib/invalid_code_complexity.rb
|
338
|
-
- spec/fixtures/invalid_rails_app/lib/invalid_code_duplication.rb
|
339
|
-
- spec/fixtures/invalid_style_guide.rb
|
340
|
-
- spec/fixtures/strictly_invalid_style_guide.rb
|
341
|
-
- spec/fixtures/valid.rb
|
342
|
-
- spec/fixtures/valid_coffee_lint.coffee
|
343
|
-
- spec/fixtures/valid_rails_app/Gemfile
|
344
|
-
- spec/fixtures/valid_rails_app/Gemfile_lock
|
345
|
-
- spec/fixtures/valid_rails_app/Rakefile
|
346
|
-
- spec/fixtures/valid_rails_app/app/assets/javascripts/valid.coffee
|
347
|
-
- spec/fixtures/valid_rails_app/app/controllers/application_controller.rb
|
348
|
-
- spec/fixtures/valid_rails_app/app/views/layouts/application.html.erb
|
349
|
-
- spec/fixtures/valid_rails_app/config.ru
|
350
|
-
- spec/fixtures/valid_rails_app/config/application.rb
|
351
|
-
- spec/fixtures/valid_rails_app/config/boot.rb
|
352
|
-
- spec/fixtures/valid_rails_app/config/database.yml
|
353
|
-
- spec/fixtures/valid_rails_app/config/environment.rb
|
354
|
-
- spec/fixtures/valid_rails_app/config/environments/development.rb
|
355
|
-
- spec/fixtures/valid_rails_app/config/environments/production.rb
|
356
|
-
- spec/fixtures/valid_rails_app/config/environments/test.rb
|
357
|
-
- spec/fixtures/valid_rails_app/config/initializers/filter_parameter_logging.rb
|
358
|
-
- spec/fixtures/valid_rails_app/config/initializers/mime_types.rb
|
359
|
-
- spec/fixtures/valid_rails_app/config/initializers/secret_token.rb
|
360
|
-
- spec/fixtures/valid_rails_app/config/initializers/session_store.rb
|
361
|
-
- spec/fixtures/valid_rails_app/config/initializers/wrap_parameters.rb
|
362
|
-
- spec/fixtures/valid_rails_app/config/locales/en.yml
|
363
|
-
- spec/fixtures/valid_rails_app/config/routes.rb
|
364
|
-
- spec/spec_helper.rb
|
365
|
-
- warder.gemspec
|
366
265
|
homepage: https://github.com/yltsrc/warder
|
367
266
|
licenses:
|
368
267
|
- MIT
|
@@ -383,95 +282,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
383
282
|
version: '0'
|
384
283
|
requirements: []
|
385
284
|
rubyforge_project:
|
386
|
-
rubygems_version: 2.
|
285
|
+
rubygems_version: 2.5.1
|
387
286
|
signing_key:
|
388
287
|
specification_version: 4
|
389
288
|
summary: Tool to help improve the quality of ruby code
|
390
|
-
test_files:
|
391
|
-
- features/checks_for_all_issues.feature
|
392
|
-
- features/checks_for_rails_best_practices.feature
|
393
|
-
- features/checks_for_rails_related_issues.feature
|
394
|
-
- features/checks_for_rails_security_issues.feature
|
395
|
-
- features/checks_for_sandi_metz_rules.feature
|
396
|
-
- features/checks_for_vulnerable_gems.feature
|
397
|
-
- features/detects_code_complexity.feature
|
398
|
-
- features/detects_code_duplication.feature
|
399
|
-
- features/detects_code_smell.feature
|
400
|
-
- features/detects_magick_numbers.feature
|
401
|
-
- features/quiet.feature
|
402
|
-
- features/run.feature
|
403
|
-
- features/show_version.feature
|
404
|
-
- features/statistics.feature
|
405
|
-
- features/step_definitions/checks_for_rails_best_practices_steps.rb
|
406
|
-
- features/step_definitions/checks_for_rails_security_issues_steps.rb
|
407
|
-
- features/step_definitions/checks_for_sandi_metz_rules_step.rb
|
408
|
-
- features/step_definitions/checks_for_vulnerable_gems_steps.rb
|
409
|
-
- features/step_definitions/detects_code_complexity_steps.rb
|
410
|
-
- features/step_definitions/detects_code_duplication_steps.rb
|
411
|
-
- features/step_definitions/detects_code_smell_steps.rb
|
412
|
-
- features/step_definitions/detects_magick_numbers_steps.rb
|
413
|
-
- features/step_definitions/run_steps.rb
|
414
|
-
- features/step_definitions/show_version_steps.rb
|
415
|
-
- features/step_definitions/statistics_steps.rb
|
416
|
-
- features/step_definitions/validates_coffeescript_style_guide_steps.rb
|
417
|
-
- features/step_definitions/validates_ruby_style_guide_steps.rb
|
418
|
-
- features/support/env.rb
|
419
|
-
- features/validates_coffeescript_style_guide.feature
|
420
|
-
- features/validates_ruby_style_guide.feature
|
421
|
-
- spec/fixtures/invalid_code_complexity.rb
|
422
|
-
- spec/fixtures/invalid_code_duplication.rb
|
423
|
-
- spec/fixtures/invalid_code_smell.rb
|
424
|
-
- spec/fixtures/invalid_coffee_lint.coffee
|
425
|
-
- spec/fixtures/invalid_magick_numbers.rb
|
426
|
-
- spec/fixtures/invalid_rails_app/Gemfile
|
427
|
-
- spec/fixtures/invalid_rails_app/Gemfile_lock
|
428
|
-
- spec/fixtures/invalid_rails_app/Rakefile
|
429
|
-
- spec/fixtures/invalid_rails_app/app/assets/javascripts/invalid_coffee_lint.coffee
|
430
|
-
- spec/fixtures/invalid_rails_app/app/controllers/application_controller.rb
|
431
|
-
- spec/fixtures/invalid_rails_app/app/models/user.rb
|
432
|
-
- spec/fixtures/invalid_rails_app/app/views/layouts/application.html.erb
|
433
|
-
- spec/fixtures/invalid_rails_app/config.ru
|
434
|
-
- spec/fixtures/invalid_rails_app/config/application.rb
|
435
|
-
- spec/fixtures/invalid_rails_app/config/boot.rb
|
436
|
-
- spec/fixtures/invalid_rails_app/config/database.yml
|
437
|
-
- spec/fixtures/invalid_rails_app/config/environment.rb
|
438
|
-
- spec/fixtures/invalid_rails_app/config/environments/development.rb
|
439
|
-
- spec/fixtures/invalid_rails_app/config/environments/production.rb
|
440
|
-
- spec/fixtures/invalid_rails_app/config/environments/test.rb
|
441
|
-
- spec/fixtures/invalid_rails_app/config/initializers/backtrace_silencers.rb
|
442
|
-
- spec/fixtures/invalid_rails_app/config/initializers/filter_parameter_logging.rb
|
443
|
-
- spec/fixtures/invalid_rails_app/config/initializers/inflections.rb
|
444
|
-
- spec/fixtures/invalid_rails_app/config/initializers/mime_types.rb
|
445
|
-
- spec/fixtures/invalid_rails_app/config/initializers/secret_token.rb
|
446
|
-
- spec/fixtures/invalid_rails_app/config/initializers/session_store.rb
|
447
|
-
- spec/fixtures/invalid_rails_app/config/initializers/wrap_parameters.rb
|
448
|
-
- spec/fixtures/invalid_rails_app/config/locales/en.yml
|
449
|
-
- spec/fixtures/invalid_rails_app/config/routes.rb
|
450
|
-
- spec/fixtures/invalid_rails_app/lib/invalid_code_complexity.rb
|
451
|
-
- spec/fixtures/invalid_rails_app/lib/invalid_code_duplication.rb
|
452
|
-
- spec/fixtures/invalid_style_guide.rb
|
453
|
-
- spec/fixtures/strictly_invalid_style_guide.rb
|
454
|
-
- spec/fixtures/valid.rb
|
455
|
-
- spec/fixtures/valid_coffee_lint.coffee
|
456
|
-
- spec/fixtures/valid_rails_app/Gemfile
|
457
|
-
- spec/fixtures/valid_rails_app/Gemfile_lock
|
458
|
-
- spec/fixtures/valid_rails_app/Rakefile
|
459
|
-
- spec/fixtures/valid_rails_app/app/assets/javascripts/valid.coffee
|
460
|
-
- spec/fixtures/valid_rails_app/app/controllers/application_controller.rb
|
461
|
-
- spec/fixtures/valid_rails_app/app/views/layouts/application.html.erb
|
462
|
-
- spec/fixtures/valid_rails_app/config.ru
|
463
|
-
- spec/fixtures/valid_rails_app/config/application.rb
|
464
|
-
- spec/fixtures/valid_rails_app/config/boot.rb
|
465
|
-
- spec/fixtures/valid_rails_app/config/database.yml
|
466
|
-
- spec/fixtures/valid_rails_app/config/environment.rb
|
467
|
-
- spec/fixtures/valid_rails_app/config/environments/development.rb
|
468
|
-
- spec/fixtures/valid_rails_app/config/environments/production.rb
|
469
|
-
- spec/fixtures/valid_rails_app/config/environments/test.rb
|
470
|
-
- spec/fixtures/valid_rails_app/config/initializers/filter_parameter_logging.rb
|
471
|
-
- spec/fixtures/valid_rails_app/config/initializers/mime_types.rb
|
472
|
-
- spec/fixtures/valid_rails_app/config/initializers/secret_token.rb
|
473
|
-
- spec/fixtures/valid_rails_app/config/initializers/session_store.rb
|
474
|
-
- spec/fixtures/valid_rails_app/config/initializers/wrap_parameters.rb
|
475
|
-
- spec/fixtures/valid_rails_app/config/locales/en.yml
|
476
|
-
- spec/fixtures/valid_rails_app/config/routes.rb
|
477
|
-
- spec/spec_helper.rb
|
289
|
+
test_files: []
|
data/.gitignore
DELETED
data/.travis.yml
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
rvm:
|
3
|
-
- 2.0
|
4
|
-
- 2.1
|
5
|
-
- 2.2
|
6
|
-
gemfile:
|
7
|
-
- Gemfile
|
8
|
-
script:
|
9
|
-
- bundle exec rake
|
10
|
-
- bundle exec warder --style-guide Gemfile Rakefile warder.gemspec bin/ lib/ features/
|
11
|
-
- bundle exec warder --magick-numbers Gemfile Rakefile warder.gemspec bin/ lib/ features/
|
12
|
-
- bundle exec warder --code-complexity Gemfile Rakefile warder.gemspec bin/ lib/ features/
|
13
|
-
- bundle exec warder --code-smell Gemfile Rakefile warder.gemspec bin/ lib/ features/
|
14
|
-
- bundle exec warder --code-duplication Gemfile Rakefile bin/ lib/ features/
|
15
|
-
- bundle exec warder --bundle-audit
|