Skip to content

Commit 64b7bea

Browse files
committed
chore: Update rubocop to ~> 1
1 parent a018854 commit 64b7bea

File tree

4 files changed

+30
-30
lines changed

4 files changed

+30
-30
lines changed

Gemfile.lock

+28-26
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PATH
22
remote: .
33
specs:
4-
boost-styles (0.1.2)
4+
boost-styles (1.0.0)
55
haml_lint (~> 0.33)
6-
rubocop (~> 0.85.1)
6+
rubocop (~> 1)
77
rubocop-performance (~> 1)
88
rubocop-rails (~> 2)
99
rubocop-rspec (~> 1)
@@ -66,19 +66,20 @@ GEM
6666
minitest (~> 5.1)
6767
tzinfo (~> 1.1)
6868
zeitwerk (~> 2.2, >= 2.2.2)
69-
ast (2.4.1)
69+
ast (2.4.2)
7070
builder (3.2.4)
7171
concurrent-ruby (1.1.6)
7272
crass (1.0.6)
7373
diff-lcs (1.3)
7474
erubi (1.9.0)
7575
globalid (0.4.2)
7676
activesupport (>= 4.2.0)
77-
haml (5.1.2)
77+
haml (5.2.2)
7878
temple (>= 0.8.0)
7979
tilt
80-
haml_lint (0.35.0)
81-
haml (>= 4.0, < 5.2)
80+
haml_lint (0.37.1)
81+
haml (>= 4.0, < 5.3)
82+
parallel (~> 1.10)
8283
rainbow
8384
rubocop (>= 0.50.0)
8485
sysexits (~> 1.1)
@@ -99,9 +100,9 @@ GEM
99100
nio4r (2.5.2)
100101
nokogiri (1.10.9)
101102
mini_portile2 (~> 2.4.0)
102-
parallel (1.19.1)
103-
parser (2.7.1.3)
104-
ast (~> 2.4.0)
103+
parallel (1.21.0)
104+
parser (3.0.3.1)
105+
ast (~> 2.4.1)
105106
rack (2.2.2)
106107
rack-test (1.1.0)
107108
rack (>= 1.0, < 3)
@@ -133,8 +134,8 @@ GEM
133134
thor (>= 0.20.3, < 2.0)
134135
rainbow (3.0.0)
135136
rake (13.0.1)
136-
regexp_parser (1.7.1)
137-
rexml (3.2.4)
137+
regexp_parser (2.2.0)
138+
rexml (3.2.5)
138139
rspec (3.9.0)
139140
rspec-core (~> 3.9.0)
140141
rspec-expectations (~> 3.9.0)
@@ -148,26 +149,27 @@ GEM
148149
diff-lcs (>= 1.2.0, < 2.0)
149150
rspec-support (~> 3.9.0)
150151
rspec-support (3.9.3)
151-
rubocop (0.85.1)
152+
rubocop (1.23.0)
152153
parallel (~> 1.10)
153-
parser (>= 2.7.0.1)
154+
parser (>= 3.0.0.0)
154155
rainbow (>= 2.2.2, < 4.0)
155-
regexp_parser (>= 1.7)
156+
regexp_parser (>= 1.8, < 3.0)
156157
rexml
157-
rubocop-ast (>= 0.0.3)
158+
rubocop-ast (>= 1.12.0, < 2.0)
158159
ruby-progressbar (~> 1.7)
159-
unicode-display_width (>= 1.4.0, < 2.0)
160-
rubocop-ast (0.0.3)
161-
parser (>= 2.7.0.1)
162-
rubocop-performance (1.6.1)
163-
rubocop (>= 0.71.0)
164-
rubocop-rails (2.6.0)
160+
unicode-display_width (>= 1.4.0, < 3.0)
161+
rubocop-ast (1.14.0)
162+
parser (>= 3.0.1.1)
163+
rubocop-performance (1.12.0)
164+
rubocop (>= 1.7.0, < 2.0)
165+
rubocop-ast (>= 0.4.0)
166+
rubocop-rails (2.12.4)
165167
activesupport (>= 4.2.0)
166168
rack (>= 1.1)
167-
rubocop (>= 0.82.0)
168-
rubocop-rspec (1.40.0)
169-
rubocop (>= 0.68.1)
170-
ruby-progressbar (1.10.1)
169+
rubocop (>= 1.7.0, < 2.0)
170+
rubocop-rspec (1.42.0)
171+
rubocop (>= 0.87.0)
172+
ruby-progressbar (1.11.0)
171173
sprockets (4.0.2)
172174
concurrent-ruby (~> 1.0)
173175
rack (> 1, < 3)
@@ -182,7 +184,7 @@ GEM
182184
tilt (2.0.10)
183185
tzinfo (1.2.7)
184186
thread_safe (~> 0.1)
185-
unicode-display_width (1.7.0)
187+
unicode-display_width (2.1.0)
186188
websocket-driver (0.7.2)
187189
websocket-extensions (>= 0.1.0)
188190
websocket-extensions (0.1.5)

boost-styles.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Gem::Specification.new do |spec|
4343
spec.add_development_dependency 'rspec', '~> 3.0'
4444

4545
spec.add_dependency 'haml_lint', '~> 0.33'
46-
spec.add_dependency 'rubocop', '~> 0.85.1'
46+
spec.add_dependency 'rubocop', '~> 1'
4747
spec.add_dependency 'rubocop-performance', '~> 1'
4848
spec.add_dependency 'rubocop-rails', '~> 2'
4949
spec.add_dependency 'rubocop-rspec', '~> 1'

lib/boost/styles/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Boost
44
module Styles
5-
VERSION = '0.1.2'
5+
VERSION = '1.0.0'
66
end
77
end

rubocop_rails.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
Rails:
2-
Enabled: true

0 commit comments

Comments
 (0)