codeclimate 0.85.15 → 0.85.17
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 +4 -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
@@ -149,10 +149,12 @@ pep8:
|
|
149
149
|
phan:
|
150
150
|
channels:
|
151
151
|
stable: codeclimate/codeclimate-phan
|
152
|
+
beta: codeclimate/codeclimate-phan:beta
|
152
153
|
description: Phan is a static analyzer for PHP.
|
153
154
|
phpcodesniffer:
|
154
155
|
channels:
|
155
156
|
stable: codeclimate/codeclimate-phpcodesniffer
|
157
|
+
beta: codeclimate/codeclimate-phpcodesniffer:beta
|
156
158
|
description: Detects violations of a defined set of coding standards in PHP.
|
157
159
|
phpmd:
|
158
160
|
channels:
|
@@ -228,6 +230,8 @@ rubocop:
|
|
228
230
|
rubocop-0-86: codeclimate/codeclimate-rubocop:rubocop-0-86
|
229
231
|
rubocop-0-87: codeclimate/codeclimate-rubocop:rubocop-0-87
|
230
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
|
231
235
|
description: A Ruby static code analyzer, based on the community Ruby style guide.
|
232
236
|
rubymotion:
|
233
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: []
|