From 92ef9e4b63a106a6a439c921f5a34cdfb7b30351 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Fri, 23 May 2025 15:44:17 +0900 Subject: [PATCH] Remove .ruby-version for development RubyGems may be used across a wide range of Ruby versions, from the minimum supported version to development versions. To allow local development with any Ruby version, the Ruby version is not locked using a `.ruby-version` file. This enables developers to work with their preferred Ruby version and frees repository maintainers from the need to update `.ruby-version`. Additionally, because testing against supported Ruby versions is performed in CI before release, the version in `.ruby-version` is not important. --- .gitignore | 1 + .ruby-version | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 .ruby-version diff --git a/.gitignore b/.gitignore index 4ea57987..750a5a97 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.ruby-version /.bundle/ /.yardoc /_yardoc/ diff --git a/.ruby-version b/.ruby-version deleted file mode 100644 index 15a27998..00000000 --- a/.ruby-version +++ /dev/null @@ -1 +0,0 @@ -3.3.0