Skip to content

Commit 48c03df

Browse files
author
Cannon Moyer
committed
Bump Rails to version 8.0.0
1 parent 785ede8 commit 48c03df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rails_new.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pub struct Cli {
88
pub args: Vec<String>,
99
#[clap(long, short = 'u', default_value = "3.3.4")]
1010
pub ruby_version: String,
11-
#[clap(long, short = 'r', default_value = "7.2.0")]
11+
#[clap(long, short = 'r', default_value = "8.0.0")]
1212
pub rails_version: String,
1313

1414
#[command(subcommand)]
@@ -55,7 +55,7 @@ mod tests {
5555
let rails_version = m.get_one::<String>("rails_version").unwrap();
5656

5757
assert_eq!(ruby_version, "3.3.4");
58-
assert_eq!(rails_version, "7.2.0");
58+
assert_eq!(rails_version, "8.0.0");
5959

6060
Ok(())
6161
}

0 commit comments

Comments
 (0)