codeclimate 0.85.11 → 0.85.17
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 +7 -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: 64f745f5df84a775c2be3d8b253358515d3f82dd7e6a3eca9ad9a7010ca73f63
|
4
|
+
data.tar.gz: e5cf14221c727b028da255dcb470f7c7f2aefa9c86f86bf1df33f67504d78804
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 788f42db691da29491ee019fa6100b9fc3f8ced43101d48ae693c311ff9b991b17b546b7b5d6ef7472dee19649aa0e6ac634e798f8cf15300ca1dfd2db4319ad
|
7
|
+
data.tar.gz: 50a7024595e6ad12bbbc8bceb8e3e1abf801d6de2d375a983957e9ba2f0eb569f9fa58c8b1f7ef60efc915da301000c9445227dfd21083a41cf745a9241ac0d8
|
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:
|
@@ -225,6 +228,10 @@ rubocop:
|
|
225
228
|
rubocop-0-84: codeclimate/codeclimate-rubocop:rubocop-0-84
|
226
229
|
rubocop-0-85: codeclimate/codeclimate-rubocop:rubocop-0-85
|
227
230
|
rubocop-0-86: codeclimate/codeclimate-rubocop:rubocop-0-86
|
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
|
228
235
|
description: A Ruby static code analyzer, based on the community Ruby style guide.
|
229
236
|
rubymotion:
|
230
237
|
channels:
|
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.17
|
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-05 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: []
|