codeclimate 0.85.13 → 0.85.19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/engines.yml +12 -0
- data/lib/cc/engine_registry.rb +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7067bf175a3265a09a65fb9b72f94454cca5800e847a197079931744619903f9
|
4
|
+
data.tar.gz: 918082801b4bfc14ce717b455826d5d0b12582c8e825650c3a7c890c2c6e8f7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cab9d389d447a26372bfb28bb7cd6d09d46c60d741b298a3c3155b670c50056ebbe30a36bef53804b7cddf6c402fcdb1370c67718c2aded29b5d6b542969c7cc
|
7
|
+
data.tar.gz: b7d583cf0b849e77a07b09166caca5ea8d9b0aa90ceb49e65079e4230f727e8363e5dc6429fb34b45e51c2578243ba9113f65c914dd8beaefb6d2486ca0aacd4
|
data/config/engines.yml
CHANGED
@@ -71,6 +71,7 @@ eslint:
|
|
71
71
|
eslint-4: codeclimate/codeclimate-eslint:eslint-4
|
72
72
|
eslint-5: codeclimate/codeclimate-eslint:eslint-5
|
73
73
|
eslint-6: codeclimate/codeclimate-eslint:eslint-6
|
74
|
+
eslint-7: codeclimate/codeclimate-eslint:eslint-7
|
74
75
|
description: A JavaScript/JSX linting utility.
|
75
76
|
flog:
|
76
77
|
channels:
|
@@ -148,10 +149,12 @@ pep8:
|
|
148
149
|
phan:
|
149
150
|
channels:
|
150
151
|
stable: codeclimate/codeclimate-phan
|
152
|
+
beta: codeclimate/codeclimate-phan:beta
|
151
153
|
description: Phan is a static analyzer for PHP.
|
152
154
|
phpcodesniffer:
|
153
155
|
channels:
|
154
156
|
stable: codeclimate/codeclimate-phpcodesniffer
|
157
|
+
beta: codeclimate/codeclimate-phpcodesniffer:beta
|
155
158
|
description: Detects violations of a defined set of coding standards in PHP.
|
156
159
|
phpmd:
|
157
160
|
channels:
|
@@ -215,6 +218,7 @@ rubocop:
|
|
215
218
|
rubocop-0-74: codeclimate/codeclimate-rubocop:rubocop-0-74
|
216
219
|
rubocop-0-75: codeclimate/codeclimate-rubocop:rubocop-0-75
|
217
220
|
rubocop-0-76: codeclimate/codeclimate-rubocop:rubocop-0-76
|
221
|
+
rubocop-0-76-airbnb: codeclimate/codeclimate-rubocop:rubocop-0-76-airbnb
|
218
222
|
rubocop-0-77: codeclimate/codeclimate-rubocop:rubocop-0-77
|
219
223
|
rubocop-0-78: codeclimate/codeclimate-rubocop:rubocop-0-78
|
220
224
|
rubocop-0-79: codeclimate/codeclimate-rubocop:rubocop-0-79
|
@@ -227,6 +231,9 @@ rubocop:
|
|
227
231
|
rubocop-0-86: codeclimate/codeclimate-rubocop:rubocop-0-86
|
228
232
|
rubocop-0-87: codeclimate/codeclimate-rubocop:rubocop-0-87
|
229
233
|
rubocop-0-88: codeclimate/codeclimate-rubocop:rubocop-0-88
|
234
|
+
rubocop-0-89: codeclimate/codeclimate-rubocop:rubocop-0-89
|
235
|
+
rubocop-0-90: codeclimate/codeclimate-rubocop:rubocop-0-90
|
236
|
+
rubocop-0-92: codeclimate/codeclimate-rubocop:rubocop-0-92
|
230
237
|
description: A Ruby static code analyzer, based on the community Ruby style guide.
|
231
238
|
rubymotion:
|
232
239
|
channels:
|
@@ -267,6 +274,11 @@ sonar-python:
|
|
267
274
|
stable: codeclimate/codeclimate-sonar-python
|
268
275
|
description: SonarLint for Python.
|
269
276
|
minimum_memory_limit: 2_048_000_000
|
277
|
+
standard:
|
278
|
+
channels:
|
279
|
+
stable: codeclimate/codeclimate-standard
|
280
|
+
beta: codeclimate/codeclimate-standard
|
281
|
+
description: Standard static analysis tool.
|
270
282
|
structure:
|
271
283
|
channels:
|
272
284
|
stable: codeclimate/codeclimate-structure
|
data/lib/cc/engine_registry.rb
CHANGED
@@ -9,9 +9,9 @@ module CC
|
|
9
9
|
EngineDetails = Struct.new(:image, :command, :description, :memory)
|
10
10
|
EngineDetailsNotFoundError = Class.new(StandardError)
|
11
11
|
|
12
|
-
def initialize(path = DEFAULT_MANIFEST_PATH, prefix =
|
12
|
+
def initialize(path = DEFAULT_MANIFEST_PATH, prefix = nil)
|
13
13
|
@yaml = YAML.safe_load(File.read(path))
|
14
|
-
@prefix = prefix
|
14
|
+
@prefix = prefix || ENV["CODECLIMATE_PREFIX"] || ""
|
15
15
|
end
|
16
16
|
|
17
17
|
def each
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: codeclimate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.85.
|
4
|
+
version: 0.85.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code Climate
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -255,7 +255,7 @@ homepage: https://codeclimate.com
|
|
255
255
|
licenses:
|
256
256
|
- AGPL
|
257
257
|
metadata: {}
|
258
|
-
post_install_message:
|
258
|
+
post_install_message:
|
259
259
|
rdoc_options: []
|
260
260
|
require_paths:
|
261
261
|
- lib
|
@@ -271,7 +271,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
271
271
|
version: '0'
|
272
272
|
requirements: []
|
273
273
|
rubygems_version: 3.0.3
|
274
|
-
signing_key:
|
274
|
+
signing_key:
|
275
275
|
specification_version: 4
|
276
276
|
summary: Code Climate CLI
|
277
277
|
test_files: []
|