Skip to content

Commit ab2f1ee

Browse files
author
graham jenson
committed
removing rubocop issues because build failure
1 parent 77a3922 commit ab2f1ee

File tree

4 files changed

+0
-36
lines changed

4 files changed

+0
-36
lines changed

examples/simple_script/BUILD

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,3 @@ ruby_test(
3030
"@bundle//:rspec",
3131
],
3232
)
33-
34-
# TODO: not the best way of defining this, should make `rubocop` rule like `buildifier`
35-
ruby_binary(
36-
name = "rubocop",
37-
srcs = [
38-
"@bundle//:bin/rubocop",
39-
],
40-
main = "@bundle//:bin/rubocop",
41-
deps = [
42-
"@bundle//:rubocop",
43-
],
44-
)

examples/simple_script/Gemfile

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

55
gem 'awesome_print'
66
gem 'rspec', '~> 3.7.0'
7-
gem 'rubocop'
Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
ast (2.4.0)
54
awesome_print (1.8.0)
65
diff-lcs (1.3)
7-
jaro_winkler (1.5.4)
8-
parallel (1.19.1)
9-
parser (2.6.5.0)
10-
ast (~> 2.4.0)
11-
rainbow (3.0.0)
126
rspec (3.7.0)
137
rspec-core (~> 3.7.0)
148
rspec-expectations (~> 3.7.0)
@@ -22,23 +16,13 @@ GEM
2216
diff-lcs (>= 1.2.0, < 2.0)
2317
rspec-support (~> 3.7.0)
2418
rspec-support (3.7.1)
25-
rubocop (0.77.0)
26-
jaro_winkler (~> 1.5.1)
27-
parallel (~> 1.10)
28-
parser (>= 2.6)
29-
rainbow (>= 2.2.2, < 4.0)
30-
ruby-progressbar (~> 1.7)
31-
unicode-display_width (>= 1.4.0, < 1.7)
32-
ruby-progressbar (1.10.1)
33-
unicode-display_width (1.6.0)
3419

3520
PLATFORMS
3621
ruby
3722

3823
DEPENDENCIES
3924
awesome_print
4025
rspec (~> 3.7.0)
41-
rubocop
4226

4327
BUNDLED WITH
4428
1.17.3

examples/simple_script/README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,3 @@ Update gemfile using
1010
```
1111
bundle lock --update
1212
```
13-
14-
### Rubocop
15-
Run rubocop with:
16-
17-
```
18-
bazel run :rubocop -- $(pwd)/* -a
19-
```

0 commit comments

Comments
 (0)