Skip to content

Commit a934b5f

Browse files
committed
Add Ruby 3.2
1 parent 7e77ac9 commit a934b5f

File tree

7 files changed

+7
-1
lines changed

7 files changed

+7
-1
lines changed

Rakefile

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ require 'rdoc/task'
22

33
versions = {
44
"master" => "master",
5+
"3.2" => "ruby_3_2",
56
"3.1" => "ruby_3_1",
67
"3.0" => "ruby_3_0",
78
"2.7.0" => "ruby_2_7",

config/deploy.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
'PATH' => '/snap/bin:$PATH',
77
'DEBIAN_DISABLE_RUBYGEMS_INTEGRATION' => 'true',
88
}
9-
versions = %w[1.8.7 1.9.3 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 2.6.0 2.7.0 3.0 3.1 master]
9+
versions = %w[1.8.7 1.9.3 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 2.6.0 2.7.0 3.0 3.1 3.2 master]
1010
set :linked_dirs, ["sources", "public/ja/latest"] + versions.map{|v| ["public/en/#{v}", "public/ja/#{v}"]}.flatten

public/en/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ <h1>Documentation for Ruby</h1>
2121
</div>
2222
<div class="list-group">
2323
<a class="list-group-item" href="./master/">Ruby master</a>
24+
<a class="list-group-item" href="./3.2/">Ruby 3.2</a>
2425
<a class="list-group-item" href="./3.1/">Ruby 3.1</a>
2526
<a class="list-group-item" href="./3.0/">Ruby 3.0</a>
2627
<a class="list-group-item" href="./2.7.0/">Ruby 2.7.0</a>

public/ja/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ <h1>プログラミング言語 Ruby リファレンスマニュアル</h1>
2424
<div class="list-group-item list-group-item-info">
2525
常に最新のバージョンのドキュメントを参照したい場合は上のリンク先が使えます。
2626
</div>
27+
<a class="list-group-item" href="./3.2/doc/index.html">Ruby 3.2</a>
2728
<a class="list-group-item" href="./3.1/doc/index.html">Ruby 3.1</a>
2829
<a class="list-group-item" href="./3.0/doc/index.html">Ruby 3.0</a>
2930
<a class="list-group-item" href="./2.7.0/doc/index.html">Ruby 2.7</a>

system/bc-setup-all

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ VERSIONS = %w[
77
3.0
88
3.1
99
3.2
10+
3.3
1011
]
1112

1213
RUBY = "ruby"

system/bc-static-all

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ VERSIONS = %w[
55
3.0
66
3.1
77
3.2
8+
3.3
89
]
910

1011
RUBY = "ruby"

system/rdoc-static-all

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ VERSIONS = %w[
44
2.7.0
55
3.0
66
3.1
7+
3.2
78
master
89
]
910

0 commit comments

Comments
 (0)