Skip to content

Commit aad77ce

Browse files
Replace Rubocop with standard
Following an [update to the thoughtbot guide][guides PR], this commit removes Rubocop and replaces it with [standard]. [guides PR]: thoughtbot/guides#606 [standard]: https://github.com/testdouble/standard
1 parent a80044c commit aad77ce

7 files changed

+21
-23
lines changed

.rubocop.yml

-11
This file was deleted.

Gemfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,4 @@ gem "aruba"
77
gem "cucumber", "1.3.19"
88
gem "rake"
99
gem "rspec-rails"
10-
11-
gem "rubocop", "0.54", require: false
10+
gem "standard"

Gemfile.lock

+16-6
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ GEM
7676
parallel (1.19.1)
7777
parser (2.7.1.3)
7878
ast (~> 2.4.0)
79-
powerpack (0.1.2)
8079
rack (2.2.2)
8180
rack-test (1.1.0)
8281
rack (>= 1.0, < 3)
@@ -93,6 +92,8 @@ GEM
9392
thor (>= 0.20.3, < 2.0)
9493
rainbow (3.0.0)
9594
rake (13.0.1)
95+
regexp_parser (1.7.0)
96+
rexml (3.2.4)
9697
rspec-core (3.9.2)
9798
rspec-support (~> 3.9.3)
9899
rspec-expectations (3.9.2)
@@ -110,14 +111,23 @@ GEM
110111
rspec-mocks (~> 3.9)
111112
rspec-support (~> 3.9)
112113
rspec-support (3.9.3)
113-
rubocop (0.54.0)
114+
rubocop (0.85.0)
114115
parallel (~> 1.10)
115-
parser (>= 2.5)
116-
powerpack (~> 0.1)
116+
parser (>= 2.7.0.1)
117117
rainbow (>= 2.2.2, < 4.0)
118+
regexp_parser (>= 1.7)
119+
rexml
120+
rubocop-ast (>= 0.0.3)
118121
ruby-progressbar (~> 1.7)
119-
unicode-display_width (~> 1.0, >= 1.0.1)
122+
unicode-display_width (>= 1.4.0, < 2.0)
123+
rubocop-ast (0.0.3)
124+
parser (>= 2.7.0.1)
125+
rubocop-performance (1.6.1)
126+
rubocop (>= 0.71.0)
120127
ruby-progressbar (1.10.1)
128+
standard (0.4.7)
129+
rubocop (~> 0.85.0)
130+
rubocop-performance (~> 1.6.0)
121131
thor (1.0.1)
122132
thread_safe (0.3.6)
123133
thread_safe (0.3.6-java)
@@ -137,7 +147,7 @@ DEPENDENCIES
137147
factory_bot_rails!
138148
rake
139149
rspec-rails
140-
rubocop (= 0.54)
150+
standard
141151

142152
BUNDLED WITH
143153
2.1.4

gemfiles/rails5.0.gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ gem "aruba"
77
gem "cucumber", "1.3.19"
88
gem "rake"
99
gem "rspec-rails"
10-
gem "rubocop", "0.54", require: false
10+
gem "standard"
1111
gem "byebug"
1212
gem "listen", "~> 3.0.5"
1313
gem "puma", "~> 3.0"

gemfiles/rails5.1.gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ gem "aruba"
77
gem "cucumber", "1.3.19"
88
gem "rake"
99
gem "rspec-rails"
10-
gem "rubocop", "0.54", require: false
10+
gem "standard"
1111
gem "byebug"
1212
gem "listen", ">= 3.0.5", "< 3.2"
1313
gem "puma", "~> 3.7"

gemfiles/rails5.2.gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ gem "aruba"
77
gem "cucumber", "1.3.19"
88
gem "rake"
99
gem "rspec-rails"
10-
gem "rubocop", "0.54", require: false
10+
gem "standard"
1111
gem "byebug"
1212
gem "listen", ">= 3.0.5", "< 3.2"
1313
gem "puma", "~> 3.11"

gemfiles/rails6.0.gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ gem "aruba"
77
gem "cucumber", "1.3.19"
88
gem "rake"
99
gem "rspec-rails"
10-
gem "rubocop", "0.54", require: false
10+
gem "standard"
1111
gem "byebug"
1212
gem "listen", "~> 3.2"
1313
gem "puma", "~> 4.1"

0 commit comments

Comments
 (0)