File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- ARG RUBY_VERSION=3.3.3
1+ ARG RUBY_VERSION=3.3.4
22FROM ruby:${RUBY_VERSION}
33ARG RAILS_VERSION
44# 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.3
1+ ARG RUBY_VERSION=3.3.4
22FROM ruby:${RUBY_VERSION}
33ARG USER_ID=1000
44ARG GROUP_ID=1000
Original file line number Diff line number Diff 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.3 " ) ]
9+ #[ clap( long, short = 'u' , default_value = "3.3.4 " ) ]
1010 pub ruby_version : String ,
1111 #[ clap( long, short = 'r' , default_value = "7.1.3" ) ]
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.3 " ) ;
57+ assert_eq ! ( ruby_version, "3.3.4 " ) ;
5858 assert_eq ! ( rails_version, "7.1.3" ) ;
5959
6060 Ok ( ( ) )
You can’t perform that action at this time.
0 commit comments