codeclimate 0.85.12 → 0.85.18
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/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: efd813ac1adcc71dc19527140f7b3eea9f4ce214aecd0744c20525cbcb27c1c0
|
4
|
+
data.tar.gz: 416a9c524f94e3c8a3c8bb4ada06e29483a3f9397e274fa09b72def9a4cc4996
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68c1e053d3d5fa4a0aafeb412d7e2fc30163262d6efc34c2dd4959f4851aa5fc61914d7b6c5705cb6d8fdb957cf38cc0feb6ffeb7f4fc63808ae05857cf1ce0f
|
7
|
+
data.tar.gz: 8bfda7a1a87abf35118dbae0e38cfaaa1615806521669fb286abfdcd5cdf6af6f46ac759674241568a1e95faa11bed1d9c7757fc3de67a59ac96af6b60ed5165
|
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:
|
@@ -226,6 +229,10 @@ rubocop:
|
|
226
229
|
rubocop-0-85: codeclimate/codeclimate-rubocop:rubocop-0-85
|
227
230
|
rubocop-0-86: codeclimate/codeclimate-rubocop:rubocop-0-86
|
228
231
|
rubocop-0-87: codeclimate/codeclimate-rubocop:rubocop-0-87
|
232
|
+
rubocop-0-88: codeclimate/codeclimate-rubocop:rubocop-0-88
|
233
|
+
rubocop-0-89: codeclimate/codeclimate-rubocop:rubocop-0-89
|
234
|
+
rubocop-0-90: codeclimate/codeclimate-rubocop:rubocop-0-90
|
235
|
+
rubocop-0-92: codeclimate/codeclimate-rubocop:rubocop-0-92
|
229
236
|
description: A Ruby static code analyzer, based on the community Ruby style guide.
|
230
237
|
rubymotion:
|
231
238
|
channels:
|
@@ -266,6 +273,11 @@ sonar-python:
|
|
266
273
|
stable: codeclimate/codeclimate-sonar-python
|
267
274
|
description: SonarLint for Python.
|
268
275
|
minimum_memory_limit: 2_048_000_000
|
276
|
+
standard:
|
277
|
+
channels:
|
278
|
+
stable: codeclimate/codeclimate-standard
|
279
|
+
beta: codeclimate/codeclimate-standard
|
280
|
+
description: Standard static analysis tool.
|
269
281
|
structure:
|
270
282
|
channels:
|
271
283
|
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.18
|
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-10-14 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: []
|