Skip to content

Commit

Permalink
Bump ruby to 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chvp committed Feb 24, 2024
1 parent be537e0 commit e08b5cd
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ AllCops:
- "vendor/**/*"
- "db/**/*"
- "node_modules/**/*"
TargetRubyVersion: 3.2
TargetRubyVersion: 3.3
NewCops: enable

Layout/FirstArrayElementIndentation:
Expand Down
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,7 +1,7 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '~> 3.2.2'
ruby '~> 3.3.0'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.1'
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ DEPENDENCIES
will_paginate (~> 4.0)

RUBY VERSION
ruby 3.2.2p53
ruby 3.3.0p0

BUNDLED WITH
2.4.10
2.5.3
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
pkgs = import nixpkgs { inherit system; overlays = [ devshell.overlays.default ]; };
gems = pkgs.bundlerEnv rec {
name = "accentor-api-env";
ruby = pkgs.ruby_3_2;
ruby = pkgs.ruby_3_3;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
Expand Down Expand Up @@ -112,7 +112,7 @@
category = "dependencies";
help = "Update the `Gemfile.lock` and `gemset.nix` files";
command = ''
${pkgs.ruby_3_2}/bin/bundle lock
${pkgs.ruby_3_3}/bin/bundle lock
${pkgs.bundix}/bin/bundix
'';
}
Expand Down

0 comments on commit e08b5cd

Please sign in to comment.