File tree Expand file tree Collapse file tree 3 files changed +70
-2
lines changed Expand file tree Collapse file tree 3 files changed +70
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : page
3
+ title : " Ruby 维护分支"
4
+ lang : zh_cn
5
+ ---
6
+
7
+ 本页面列出了当前各个 Ruby 分支的维护情况。
8
+ {: .summary}
9
+
10
+ 对于特定版本的详细信息,可以参考
11
+ [ 版本页面] ( ../releases/ ) .
12
+
13
+ 这是 Ruby 分支及其维护状态的初步列表。
14
+ 显示的日期基于 版本发布 或 EOL声明 新闻的发布时间。
15
+
16
+ Ruby 分支或版本 分为以下集中状态:
17
+
18
+ * ** 正常维护** (错误修复):
19
+ 能得到一般错误修复和安全修复。
20
+ * ** 安全维护** (security fix):
21
+ 只有安全修复会向后移植。
22
+ * ** eol** (生命周期终止):
23
+ Ruby 核心团队不再进行支持,不会得到任何修复。也不会发布新的补丁版本。
24
+
25
+ {% include branches-timeline.html %}
26
+
27
+ {% for branch in site.data.branches %}
28
+ ### Ruby {{ branch.name }}
29
+
30
+ 状态: {{ branch.status }}<br >
31
+ 发布日期: {{ branch.date }}<br >
32
+ 正常维护期至: {% if branch.security_maintenance_date %}{{ branch.security_maintenance_date }}{% else %}未定{% endif %}<br >
33
+ 生命周期终止: {% if branch.eol_date %}{{ branch.eol_date }}{% else %}{% if branch.expected_eol_date %}{{ branch.expected_eol_date }} (预计){% else %}未定{% endif %}{% endif %}
34
+
35
+ {% endfor %}
Original file line number Diff line number Diff line change @@ -63,8 +63,8 @@ Ruby 源代码可从世界各地的[镜像站][mirrors]获得。请尝试离您
63
63
64
64
[ license] : {{ site.license.url }}
65
65
[ installation ] : /zh_cn/documentation/installation/
66
- [ releases ] : /en /downloads/releases/
67
- [ branches ] : /en /downloads/branches/
66
+ [ releases ] : /zh_cn /downloads/releases/
67
+ [ branches ] : /zh_cn /downloads/branches/
68
68
[ mirrors ] : /en/downloads/mirrors/
69
69
[ rvm ] : http://rvm.io/
70
70
[ rbenv ] : https://github.com/rbenv/rbenv
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : page
3
+ title : " Ruby 版本"
4
+ lang : zh_cn
5
+ ---
6
+
7
+ 本页面列出了各个 Ruby 发布版本。
8
+ {: .summary}
9
+
10
+ 如需了解 Ruby 各版本的当前维护状态,可以参见
11
+ [ 分支页面] ( ../branches/ ) .
12
+
13
+ ### Ruby 版本列表
14
+
15
+ 下表列出了各 Ruby 发布版本。
16
+ 其中显示的日期基于对应新闻的发布日期,可能与源代码包的实际创建时间有所差别。
17
+
18
+ <table class =" release-list " >
19
+ <tr >
20
+ <th >发布版本</th >
21
+ <th >发布日期</th >
22
+ <th >下载地址</th >
23
+ <th >发布文档</th >
24
+ </tr >
25
+ {% assign releases = site.data.releases | reverse | sort: "date" | reverse %}
26
+ {% for release in releases %}
27
+ <tr >
28
+ <td >Ruby {{ release.version }}</td >
29
+ <td >{{ release.date }}</td >
30
+ <td ><a href =" {{ release.url.gz }} " >下载</a ></td >
31
+ <td ><a href =" {{ release.post }} " >查看…</a ></td >
32
+ </tr >{% endfor %}
33
+ </table >
You can’t perform that action at this time.
0 commit comments