Skip to content

Commit 0c57418

Browse files
authored
Bumped Ruby to 3.3.0 (#121)
1 parent d64b60f commit 0c57418

File tree

7 files changed

+26
-25
lines changed

7 files changed

+26
-25
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
- uses: ruby/setup-ruby@v1
1414
with:
1515
bundler-cache: true
16-
ruby-version: "3.2.2"
16+
ruby-version: "3.3.0"
1717
- run: bundle exec rubocop
1818
- run: bundle exec rake test

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ require:
66
- rubocop-rspec
77

88
AllCops:
9-
TargetRubyVersion: 2.7
9+
TargetRubyVersion: 3.0

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.2
1+
3.3.0

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
ruby "3.2.2"
3+
ruby "3.3.0"
44

55
source "https://rubygems.org"
66

Gemfile.lock

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ GEM
8888
tzinfo (~> 2.0)
8989
ast (2.4.2)
9090
base64 (0.1.1)
91-
bigdecimal (3.1.4)
91+
bigdecimal (3.1.5)
9292
builder (3.2.4)
9393
concurrent-ruby (1.2.2)
9494
connection_pool (2.4.1)
@@ -105,8 +105,8 @@ GEM
105105
activesupport (>= 6.1)
106106
i18n (1.14.1)
107107
concurrent-ruby (~> 1.0)
108-
io-console (0.6.0)
109-
irb (1.10.1)
108+
io-console (0.7.1)
109+
irb (1.11.0)
110110
rdoc
111111
reline (>= 0.3.8)
112112
json (2.7.1)
@@ -123,7 +123,7 @@ GEM
123123
mini_mime (1.1.5)
124124
minitest (5.20.0)
125125
mutex_m (0.2.0)
126-
net-imap (0.4.7)
126+
net-imap (0.4.9)
127127
date
128128
net-protocol
129129
net-pop (0.1.2)
@@ -133,17 +133,17 @@ GEM
133133
net-smtp (0.4.0)
134134
net-protocol
135135
nio4r (2.7.0)
136-
nokogiri (1.15.5-arm64-darwin)
136+
nokogiri (1.16.0-arm64-darwin)
137137
racc (~> 1.4)
138-
nokogiri (1.15.5-x86_64-darwin)
138+
nokogiri (1.16.0-x86_64-darwin)
139139
racc (~> 1.4)
140-
nokogiri (1.15.5-x86_64-linux)
140+
nokogiri (1.16.0-x86_64-linux)
141141
racc (~> 1.4)
142-
parallel (1.23.0)
142+
parallel (1.24.0)
143143
parser (3.2.2.4)
144144
ast (~> 2.4.1)
145145
racc
146-
psych (5.1.1.1)
146+
psych (5.1.2)
147147
stringio
148148
racc (1.7.3)
149149
rack (3.0.8)
@@ -185,7 +185,7 @@ GEM
185185
zeitwerk (~> 2.6)
186186
rainbow (3.1.1)
187187
rake (13.1.0)
188-
rdoc (6.6.1)
188+
rdoc (6.6.2)
189189
psych (>= 4.0.0)
190190
regexp_parser (2.8.3)
191191
reline (0.4.1)
@@ -262,6 +262,7 @@ PLATFORMS
262262
arm64-darwin-20
263263
arm64-darwin-21
264264
arm64-darwin-22
265+
arm64-darwin-23
265266
x86_64-darwin-19
266267
x86_64-darwin-20
267268
x86_64-darwin-21
@@ -275,7 +276,7 @@ DEPENDENCIES
275276
simplecov (~> 0.22)
276277

277278
RUBY VERSION
278-
ruby 3.2.2p53
279+
ruby 3.3.0p0
279280

280281
BUNDLED WITH
281-
2.4.10
282+
2.5.3

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Base [Rubocop](https://rubocop.org) settings for all Boxt Ruby projects.
77

88
## Requirements
99

10-
* Ruby >= 2.7
10+
- Ruby >= 3.0
1111

1212
## Installation
1313

@@ -32,8 +32,8 @@ Put this into your .rubocop.yml.
3232

3333
```yml
3434
require:
35-
- boxt_rubocop
36-
```
35+
- boxt_rubocop
36+
```
3737
3838
To enable additional configuration for `rubocop-rails` and `rubocop-rspec`, add the following to your .rubocop.yml:
3939

@@ -67,11 +67,11 @@ Documentation on creating a new cop can be found [here](https://docs.rubocop.org
6767

6868
The following Rubocop gems are also installed with this gem:
6969

70-
* [rubocop-faker](https://github.com/koic/rubocop-faker)
71-
* [rubocop-performance](https://github.com/rubocop/rubocop-performance)
72-
* [rubocop-rails](https://github.com/rubocop-hq/rubocop-rails)
73-
* [rubocop-rake](https://github.com/rubocop-hq/rubocop-rake)
74-
* [rubocop-rspec](https://github.com/rubocop-hq/rubocop-rspec)
70+
- [rubocop-faker](https://github.com/koic/rubocop-faker)
71+
- [rubocop-performance](https://github.com/rubocop/rubocop-performance)
72+
- [rubocop-rails](https://github.com/rubocop-hq/rubocop-rails)
73+
- [rubocop-rake](https://github.com/rubocop-hq/rubocop-rake)
74+
- [rubocop-rspec](https://github.com/rubocop-hq/rubocop-rspec)
7575

7676
To enable these add the following to your `.rubocop.yml` file.
7777

boxt_rubocop.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require_relative "lib/rubocop/boxt/version"
44

55
Gem::Specification.new do |spec|
6-
spec.required_ruby_version = ">= 2.7"
6+
spec.required_ruby_version = ">= 3.0"
77
spec.authors = ["Boxt"]
88
spec.description = "Base Rubocop settings for all Boxt Ruby projects"
99
spec.email = ["[email protected]"]

0 commit comments

Comments
 (0)