From 5ef738d2b3e8aa4087c451b0d11b0ec372a4a7c0 Mon Sep 17 00:00:00 2001 From: Vishal Sadriya Date: Wed, 4 Feb 2026 21:42:20 +0530 Subject: [PATCH 1/2] chore: add .worktrees to gitignore for parallel development --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 0d3fea3..3e30ded 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,6 @@ .rspec_status *.gem + +# Git worktrees for parallel development +.worktrees/ From bcd4a5ced956f2e595a233c24c0b1d0f37110c76 Mon Sep 17 00:00:00 2001 From: Vishal Sadriya Date: Wed, 4 Feb 2026 23:19:32 +0530 Subject: [PATCH 2/2] chore: add Ruby version and ignore personal Claude workflows - Set Ruby 3.3.6 via .ruby-version (fixes native gem ABI issues) - Ignore .claude/ and CLAUDE.md (personal workflows stay local) --- .gitignore | 4 ++++ .ruby-version | 1 + 2 files changed, 5 insertions(+) create mode 100644 .ruby-version diff --git a/.gitignore b/.gitignore index 3e30ded..01684a8 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,7 @@ # Git worktrees for parallel development .worktrees/ + +# Claude Code personal workflows (local only) +.claude/ +CLAUDE.md diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..9c25013 --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +3.3.6