codeclimate 0.67.0 → 0.68.0
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/bin/codeclimate +15 -0
- data/config/engines.yml +13 -15
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a2798b54eec3b29e419dbf3cfcb6cbcb4879f601
|
|
4
|
+
data.tar.gz: ef45498c63c696324e6ac665eed4e73997c63b74
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 687ed3715898f767ad33c15a17614800ff8002fc09b045c820cc148636ed0b0210b54eb03dfd978b844e7946f0e23e3c9e5b200d2466ed214d2a6d7503b30aac
|
|
7
|
+
data.tar.gz: ab78adfaca08f6ff9cd0470ebf2379c2a6c1a66e42293a60480346fb5d90689394efbadeefe5f65088865e15382121aac70d04a1668d532632761515377f96ad
|
data/bin/codeclimate
CHANGED
|
@@ -3,4 +3,19 @@ $LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(__FILE__), "../lib"))
|
|
|
3
3
|
|
|
4
4
|
require "cc/cli"
|
|
5
5
|
|
|
6
|
+
if ENV["CODECLIMATE_PROFILE"]
|
|
7
|
+
require "stackprof"
|
|
8
|
+
|
|
9
|
+
StackProf.start mode: :wall, out: "profile.bin"
|
|
10
|
+
end
|
|
11
|
+
|
|
6
12
|
CC::CLI::Runner.run(ARGV)
|
|
13
|
+
|
|
14
|
+
if ENV["CODECLIMATE_PROFILE"]
|
|
15
|
+
StackProf.stop
|
|
16
|
+
StackProf.results
|
|
17
|
+
|
|
18
|
+
system "stackprof profile.bin"
|
|
19
|
+
puts
|
|
20
|
+
system "stackprof --graphviz profile.bin"
|
|
21
|
+
end
|
data/config/engines.yml
CHANGED
|
@@ -41,22 +41,9 @@ bundler-audit:
|
|
|
41
41
|
- ^Gemfile\.lock$
|
|
42
42
|
default_ratings_paths:
|
|
43
43
|
- Gemfile.lock
|
|
44
|
-
checks:
|
|
45
|
-
channels:
|
|
46
|
-
beta: codeclimate/codeclimate-checks:beta
|
|
47
|
-
description: Maintainability and reliability checks for PHP, Python, JS, and more.
|
|
48
|
-
community: false
|
|
49
|
-
default_ratings_paths:
|
|
50
|
-
- "**.js"
|
|
51
|
-
- "**.py"
|
|
52
|
-
- "**.php"
|
|
53
|
-
default_config:
|
|
54
|
-
languages:
|
|
55
|
-
- javascript
|
|
56
|
-
- python
|
|
57
|
-
- php
|
|
58
44
|
checkstyle:
|
|
59
45
|
channels:
|
|
46
|
+
stable: codeclimate/codeclimate-checkstyle
|
|
60
47
|
beta: codeclimate/codeclimate-checkstyle:beta
|
|
61
48
|
description: Helps programmers write Java that adheres to a coding standard.
|
|
62
49
|
community: false
|
|
@@ -230,7 +217,6 @@ govet:
|
|
|
230
217
|
- "**.go"
|
|
231
218
|
grep:
|
|
232
219
|
channels:
|
|
233
|
-
beta: codeclimate/codeclimate-grep
|
|
234
220
|
stable: codeclimate/codeclimate-grep
|
|
235
221
|
description: Detects specified patterns in files
|
|
236
222
|
community: false
|
|
@@ -377,6 +363,7 @@ proselint:
|
|
|
377
363
|
- "**.md"
|
|
378
364
|
pmd:
|
|
379
365
|
channels:
|
|
366
|
+
stable: codeclimate/codeclimate-pmd
|
|
380
367
|
beta: codeclimate/codeclimate-pmd:beta
|
|
381
368
|
description: Source code analyzer for Java.
|
|
382
369
|
community: false
|
|
@@ -421,6 +408,7 @@ rubocop:
|
|
|
421
408
|
rubocop-0-46: codeclimate/codeclimate-rubocop:rubocop-0-46
|
|
422
409
|
rubocop-0-48: codeclimate/codeclimate-rubocop:rubocop-0-48
|
|
423
410
|
rubocop-0-49: codeclimate/codeclimate-rubocop:rubocop-0-49
|
|
411
|
+
rubocop-0-50: codeclimate/codeclimate-rubocop:rubocop-0-50
|
|
424
412
|
description: A Ruby static code analyzer, based on the community Ruby style guide.
|
|
425
413
|
community: false
|
|
426
414
|
upgrade_languages:
|
|
@@ -471,6 +459,16 @@ shellcheck:
|
|
|
471
459
|
- \.sh$
|
|
472
460
|
default_ratings_paths:
|
|
473
461
|
- "**.sh"
|
|
462
|
+
sonar-java:
|
|
463
|
+
channels:
|
|
464
|
+
beta: codeclimate/codeclimate-sonar-java:beta
|
|
465
|
+
description: SonarLint for Java.
|
|
466
|
+
community: false
|
|
467
|
+
default_ratings_paths:
|
|
468
|
+
- "**.java"
|
|
469
|
+
default_config:
|
|
470
|
+
languages:
|
|
471
|
+
- java
|
|
474
472
|
stylelint:
|
|
475
473
|
channels:
|
|
476
474
|
beta: codeclimate/codeclimate-stylelint:beta
|
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.
|
|
4
|
+
version: 0.68.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Code Climate
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-10-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -290,7 +290,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
290
290
|
version: '0'
|
|
291
291
|
requirements: []
|
|
292
292
|
rubyforge_project:
|
|
293
|
-
rubygems_version: 2.
|
|
293
|
+
rubygems_version: 2.6.13
|
|
294
294
|
signing_key:
|
|
295
295
|
specification_version: 4
|
|
296
296
|
summary: Code Climate CLI
|