Skip to content

Commit

Permalink
Add Ruby 3.4 as a possible Ruby version (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
stanhu authored Dec 28, 2024
1 parent 455dda4 commit ab44516
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/rb-sys-env/src/ruby_version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::collections::HashMap;

const COMPARABLE_RUBY_MAJORS: [u8; 4] = [1, 2, 3, 4];

const COMPARABLE_RUBY_MINORS: [(u8, u8); 10] = [
const COMPARABLE_RUBY_MINORS: [(u8, u8); 11] = [
(2, 2),
(2, 3),
(2, 4),
Expand All @@ -13,6 +13,7 @@ const COMPARABLE_RUBY_MINORS: [(u8, u8); 10] = [
(3, 1),
(3, 2),
(3, 3),
(3, 4),
];

/// The current Ruby version.
Expand Down

0 comments on commit ab44516

Please sign in to comment.