rubocop-rubycw 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +6 -0
- data/lib/rubocop/rubycw/version.rb +1 -1
- data/lib/rubocop/rubycw/warning_capturer.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 267e9277fc92afe3b044dcc764e15313316387553c4343b18bdddc61a70c82ce
|
4
|
+
data.tar.gz: 9b0e4621f503b1163dc2be5f7bd593250a7f1ff95cff6008d0cb898ee3a162dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0819b989df9b8d331f67d76872a9c7239e045fd1a32e4dd57b2ae508c6b388af1d88bc4a0d10786e0662d36b9701613771d660bdb0d657e436835d181952ef19'
|
7
|
+
data.tar.gz: 19916ad772aa2cb71089d537d205b2c18e6fabbcaa51ce6214965f912b48edc7193527d9430073fdc15fa6f876b1ecae67f9693fcf4494e078da19320676d281
|
data/.circleci/config.yml
CHANGED
@@ -28,6 +28,11 @@ jobs:
|
|
28
28
|
- image: circleci/ruby:2.6
|
29
29
|
<<: *steps
|
30
30
|
|
31
|
+
ruby-2.7:
|
32
|
+
docker:
|
33
|
+
- image: circleci/ruby:2.7
|
34
|
+
<<: *steps
|
35
|
+
|
31
36
|
ruby-head:
|
32
37
|
docker:
|
33
38
|
- image: rubocophq/circleci-ruby-snapshot:latest
|
@@ -41,4 +46,5 @@ workflows:
|
|
41
46
|
- ruby-2.4
|
42
47
|
- ruby-2.5
|
43
48
|
- ruby-2.6
|
49
|
+
- ruby-2.7
|
44
50
|
- ruby-head
|
@@ -43,7 +43,7 @@ module RuboCop
|
|
43
43
|
require 'open3'
|
44
44
|
|
45
45
|
def self.capture(source)
|
46
|
-
_stdout, stderr, _status = Open3.capture3(RbConfig.ruby, '-cw',
|
46
|
+
_stdout, stderr, _status = Open3.capture3(RbConfig.ruby, '-cw', stdin_data: source)
|
47
47
|
stderr.lines.map(&:chomp)
|
48
48
|
end
|
49
49
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-rubycw
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Masataka Pocke Kuwabara
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -71,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
- !ruby/object:Gem::Version
|
72
72
|
version: '0'
|
73
73
|
requirements: []
|
74
|
-
rubygems_version: 3.
|
74
|
+
rubygems_version: 3.1.2
|
75
75
|
signing_key:
|
76
76
|
specification_version: 4
|
77
77
|
summary: Integrate RuboCop and ruby -cw
|