Skip to content

Commit a85a32a

Browse files
committed
Remove rubocop from Ruby test
Signed-off-by: Takuya Noguchi <[email protected]>
1 parent 2dfa78c commit a85a32a

File tree

6 files changed

+2
-103
lines changed

6 files changed

+2
-103
lines changed

.codeclimate.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@ engines:
99
- ruby
1010
fixme:
1111
enabled: true
12-
rubocop:
13-
enabled: true
1412
exclude_paths:
15-
- spec/
16-
- lib/vendor/
17-
- go/vendor/
1813
- tmp/
1914
- coverage/

.rubocop.yml

Lines changed: 0 additions & 73 deletions
This file was deleted.

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ source 'https://rubygems.org'
22

33
group :development, :test do
44
gem 'rspec', '~> 3.8.0'
5-
gem 'rubocop', '0.49.1', require: false
65
end

Gemfile.lock

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
ast (2.4.0)
54
diff-lcs (1.3)
6-
parallel (1.12.1)
7-
parser (2.5.1.2)
8-
ast (~> 2.4.0)
9-
powerpack (0.1.2)
10-
rainbow (2.2.2)
11-
rake
12-
rake (12.3.3)
135
rspec (3.8.0)
146
rspec-core (~> 3.8.0)
157
rspec-expectations (~> 3.8.0)
@@ -23,22 +15,12 @@ GEM
2315
diff-lcs (>= 1.2.0, < 2.0)
2416
rspec-support (~> 3.8.0)
2517
rspec-support (3.8.0)
26-
rubocop (0.49.1)
27-
parallel (~> 1.10)
28-
parser (>= 2.3.3.1, < 3.0)
29-
powerpack (~> 0.1)
30-
rainbow (>= 1.99.1, < 3.0)
31-
ruby-progressbar (~> 1.7)
32-
unicode-display_width (~> 1.0, >= 1.0.1)
33-
ruby-progressbar (1.9.0)
34-
unicode-display_width (1.4.0)
3518

3619
PLATFORMS
3720
ruby
3821

3922
DEPENDENCIES
4023
rspec (~> 3.8.0)
41-
rubocop (= 0.49.1)
4224

4325
BUNDLED WITH
4426
2.1.4

Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ GOBUILD_FLAGS := -ldflags "-X main.Version=$(VERSION_STRING) -X main.BuildTime=$
77

88
validate: verify test
99

10-
verify: verify_ruby verify_golang
11-
12-
verify_ruby:
13-
bundle exec rubocop
10+
verify: verify_golang
1411

1512
verify_golang:
1613
gofmt -s -l $(GO_SOURCES)

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,8 @@ Run tests:
4848
bundle install
4949
make test
5050

51-
Run gofmt and rubocop:
51+
Run gofmt:
5252

53-
bundle install
5453
make verify
5554

5655
Run both test and verify (the default Makefile target):

0 commit comments

Comments
 (0)