Skip to content

Commit 65609b0

Browse files
oschwaldclaude
andcommitted
Add Claude Code documentation and expand .gitignore
Added CLAUDE.md with comprehensive guidance for Claude Code when working in this repository, including architecture patterns, testing conventions, and development workflows. Expanded .gitignore to cover Ruby development artifacts (bundler, gems, coverage, RuboCop cache) and Claude Code user-specific files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 42c37b9 commit 65609b0

File tree

2 files changed

+420
-0
lines changed

2 files changed

+420
-0
lines changed

.gitignore

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
# Editor files
12
*.swp
3+
*~
4+
.DS_Store
5+
6+
# YARD documentation
27
/doc
38
/.yardoc
9+
10+
# Bundler
11+
/.bundle
12+
/vendor/bundle
13+
14+
# Gem build artifacts
15+
*.gem
16+
/pkg
17+
18+
# Test coverage
19+
/coverage
20+
21+
# RuboCop cache
22+
/.rubocop-*
23+
24+
# IDE/Editor specific
25+
/.idea
26+
/.vscode
27+
*.iml
28+
29+
# Temporary files
30+
/tmp
31+
32+
# Claude Code
33+
.claude

0 commit comments

Comments
 (0)