Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumped Ruby to 3.3.0 #121

Merged
merged 2 commits into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: "3.2.2"
ruby-version: "3.3.0"
- run: bundle exec rubocop
- run: bundle exec rake test
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ require:
- rubocop-rspec

AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.3.0
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

ruby "3.2.2"
ruby "3.3.0"

source "https://rubygems.org"

Expand Down
25 changes: 13 additions & 12 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ GEM
tzinfo (~> 2.0)
ast (2.4.2)
base64 (0.1.1)
bigdecimal (3.1.4)
bigdecimal (3.1.5)
builder (3.2.4)
concurrent-ruby (1.2.2)
connection_pool (2.4.1)
Expand All @@ -105,8 +105,8 @@ GEM
activesupport (>= 6.1)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
io-console (0.6.0)
irb (1.10.1)
io-console (0.7.1)
irb (1.11.0)
rdoc
reline (>= 0.3.8)
json (2.7.1)
Expand All @@ -123,7 +123,7 @@ GEM
mini_mime (1.1.5)
minitest (5.20.0)
mutex_m (0.2.0)
net-imap (0.4.7)
net-imap (0.4.9)
date
net-protocol
net-pop (0.1.2)
Expand All @@ -133,17 +133,17 @@ GEM
net-smtp (0.4.0)
net-protocol
nio4r (2.7.0)
nokogiri (1.15.5-arm64-darwin)
nokogiri (1.16.0-arm64-darwin)
racc (~> 1.4)
nokogiri (1.15.5-x86_64-darwin)
nokogiri (1.16.0-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.15.5-x86_64-linux)
nokogiri (1.16.0-x86_64-linux)
racc (~> 1.4)
parallel (1.23.0)
parallel (1.24.0)
parser (3.2.2.4)
ast (~> 2.4.1)
racc
psych (5.1.1.1)
psych (5.1.2)
stringio
racc (1.7.3)
rack (3.0.8)
Expand Down Expand Up @@ -185,7 +185,7 @@ GEM
zeitwerk (~> 2.6)
rainbow (3.1.1)
rake (13.1.0)
rdoc (6.6.1)
rdoc (6.6.2)
psych (>= 4.0.0)
regexp_parser (2.8.3)
reline (0.4.1)
Expand Down Expand Up @@ -262,6 +262,7 @@ PLATFORMS
arm64-darwin-20
arm64-darwin-21
arm64-darwin-22
arm64-darwin-23
x86_64-darwin-19
x86_64-darwin-20
x86_64-darwin-21
Expand All @@ -275,7 +276,7 @@ DEPENDENCIES
simplecov (~> 0.22)

RUBY VERSION
ruby 3.2.2p53
ruby 3.3.0p0

BUNDLED WITH
2.4.10
2.5.3
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Base [Rubocop](https://rubocop.org) settings for all Boxt Ruby projects.

## Requirements

* Ruby >= 2.7
- Ruby >= 3.0

## Installation

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

```yml
require:
- boxt_rubocop
```
- boxt_rubocop
```

To enable additional configuration for `rubocop-rails` and `rubocop-rspec`, add the following to your .rubocop.yml:

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

The following Rubocop gems are also installed with this gem:

* [rubocop-faker](https://github.com/koic/rubocop-faker)
* [rubocop-performance](https://github.com/rubocop/rubocop-performance)
* [rubocop-rails](https://github.com/rubocop-hq/rubocop-rails)
* [rubocop-rake](https://github.com/rubocop-hq/rubocop-rake)
* [rubocop-rspec](https://github.com/rubocop-hq/rubocop-rspec)
- [rubocop-faker](https://github.com/koic/rubocop-faker)
- [rubocop-performance](https://github.com/rubocop/rubocop-performance)
- [rubocop-rails](https://github.com/rubocop-hq/rubocop-rails)
- [rubocop-rake](https://github.com/rubocop-hq/rubocop-rake)
- [rubocop-rspec](https://github.com/rubocop-hq/rubocop-rspec)

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

Expand Down
2 changes: 1 addition & 1 deletion boxt_rubocop.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require_relative "lib/rubocop/boxt/version"

Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 2.7"
spec.required_ruby_version = ">= 3.0"
spec.authors = ["Boxt"]
spec.description = "Base Rubocop settings for all Boxt Ruby projects"
spec.email = ["[email protected]"]
Expand Down