add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

25
pages.zh/common/rake.md Normal file
View File

@@ -0,0 +1,25 @@
# rake
> 一款类似于 Make 的 Ruby 程序。
> `rake` 的任务在 Rakefile 中指定。
> 更多信息:<https://ruby.github.io/rake>。
- 运行 `default` Rakefile 任务:
`rake`
- 运行特定任务:
`rake {{task}}`
- 并行执行 `n` 个任务(默认情况下为 CPU 核心数 + 4
`rake --jobs {{n}}`
- 使用特定的 Rakefile
`rake --rakefile {{path/to/Rakefile}}`
- 从另一个目录执行 `rake`
`rake --directory {{path/to/directory}}`