From bb94bdd6e34fafe331b32ef67962d7bbe2c27cd3 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Thu, 26 Feb 2026 19:30:47 +0900 Subject: [PATCH] Add `*.gem` to .gitignore `gem build mcp.gemspec` outputs the built gem into the working directory (e.g. mcp-0.7.1.gem) rather than pkg/, which is already ignored. Without this entry, the file shows up as an untracked file and risks being accidentally staged and committed during release preparation or local development. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 750a5a97..9053d965 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .ruby-version +/*.gem /.bundle/ /.yardoc /_yardoc/