Skip to content

Commit 274b59e

Browse files
authored
Merge pull request #46 from Koki07/feature/bump-ruby-to-3-4-1
Bump Ruby to 3.4.1
2 parents 785ede8 + 42a133e commit 274b59e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG RUBY_VERSION=3.3.4
1+
ARG RUBY_VERSION=3.4.1
22
FROM ruby:${RUBY_VERSION}
33
ARG RAILS_VERSION
44
# Install Rails based on the version specified but if not specified, install the latest version.

Dockerfile.unix

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG RUBY_VERSION=3.3.4
1+
ARG RUBY_VERSION=3.4.1
22
FROM ruby:${RUBY_VERSION}
33
ARG USER_ID=1000
44
ARG GROUP_ID=1000

src/rails_new.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pub struct Cli {
66
#[clap(trailing_var_arg = true, required = true)]
77
/// arguments passed to `rails new`
88
pub args: Vec<String>,
9-
#[clap(long, short = 'u', default_value = "3.3.4")]
9+
#[clap(long, short = 'u', default_value = "3.4.1")]
1010
pub ruby_version: String,
1111
#[clap(long, short = 'r', default_value = "7.2.0")]
1212
pub rails_version: String,
@@ -54,7 +54,7 @@ mod tests {
5454
let ruby_version = m.get_one::<String>("ruby_version").unwrap();
5555
let rails_version = m.get_one::<String>("rails_version").unwrap();
5656

57-
assert_eq!(ruby_version, "3.3.4");
57+
assert_eq!(ruby_version, "3.4.1");
5858
assert_eq!(rails_version, "7.2.0");
5959

6060
Ok(())

0 commit comments

Comments
 (0)