Skip to content

Commit

Permalink
Merge pull request #2859 from znz/ruby-3.3
Browse files Browse the repository at this point in the history
Ruby 3.3 リリース対応
  • Loading branch information
znz committed Dec 26, 2023
2 parents 29a970a + cfff92e commit 5ba48b7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
9 changes: 6 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# coding: utf-8
OLD_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]
SUPPORTED_VERSIONS = %w[2.7.0 3.0 3.1 3.2]
UNRELEASED_VERSIONS = %w[3.3]
OLD_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
]
SUPPORTED_VERSIONS = %w[3.0 3.1 3.2 3.3]
UNRELEASED_VERSIONS = %w[3.4]
ALL_VERSIONS = [*OLD_VERSIONS, *SUPPORTED_VERSIONS, *UNRELEASED_VERSIONS]
CI_VERSIONS = [*SUPPORTED_VERSIONS, *UNRELEASED_VERSIONS]
HTML_DIRECTORY_BASE = ENV.fetch("HTML_DIRECTORY_BASE", "/tmp/html/")
Expand Down
5 changes: 4 additions & 1 deletion refm/doc/index.rd
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
= オブジェクト指向スクリプト言語 Ruby リファレンスマニュアル

* Ruby オフィシャルサイト [[url:https://www.ruby-lang.org/ja/]]
#@since 3.3
#@since 3.4
* 開発版対応リファレンス
#@end
#@if("3.3" <= version and version < "3.4")
* version 3.3 対応リファレンス
#@end
#@if("3.2" <= version and version < "3.3")
* version 3.2 対応リファレンス
#@end
Expand Down

0 comments on commit 5ba48b7

Please sign in to comment.