File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- ARG RUBY_VERSION=3.3.4
1
+ ARG RUBY_VERSION=3.4.1
2
2
FROM ruby:${RUBY_VERSION}
3
3
ARG RAILS_VERSION
4
4
# Install Rails based on the version specified but if not specified, install the latest version.
Original file line number Diff line number Diff line change 1
- ARG RUBY_VERSION=3.3.4
1
+ ARG RUBY_VERSION=3.4.1
2
2
FROM ruby:${RUBY_VERSION}
3
3
ARG USER_ID=1000
4
4
ARG GROUP_ID=1000
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ pub struct Cli {
6
6
#[ clap( trailing_var_arg = true , required = true ) ]
7
7
/// arguments passed to `rails new`
8
8
pub args : Vec < String > ,
9
- #[ clap( long, short = 'u' , default_value = "3.3.4 " ) ]
9
+ #[ clap( long, short = 'u' , default_value = "3.4.1 " ) ]
10
10
pub ruby_version : String ,
11
11
#[ clap( long, short = 'r' , default_value = "7.2.0" ) ]
12
12
pub rails_version : String ,
@@ -54,7 +54,7 @@ mod tests {
54
54
let ruby_version = m. get_one :: < String > ( "ruby_version" ) . unwrap ( ) ;
55
55
let rails_version = m. get_one :: < String > ( "rails_version" ) . unwrap ( ) ;
56
56
57
- assert_eq ! ( ruby_version, "3.3.4 " ) ;
57
+ assert_eq ! ( ruby_version, "3.4.1 " ) ;
58
58
assert_eq ! ( rails_version, "7.2.0" ) ;
59
59
60
60
Ok ( ( ) )
You can’t perform that action at this time.
0 commit comments