-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrewfile
More file actions
44 lines (34 loc) · 1.28 KB
/
Brewfile
File metadata and controls
44 lines (34 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Brewfile - System dependencies for ModularHomeInventory
# Taps
tap "homebrew/bundle"
tap "homebrew/cask"
# Build Tools
brew "xcodegen" # Generate Xcode projects
brew "xcbeautify" # Better xcodebuild output
brew "xcodes" # Manage multiple Xcode versions
# Code Quality
brew "swiftlint" # Swift linter
brew "swiftformat" # Swift formatter
brew "sourcery" # Code generation
# Testing & Coverage
brew "xcov" # Code coverage reports
brew "slather" # Alternative coverage tool
# Documentation
brew "jazzy" # Swift documentation generator
brew "graphviz" # For dependency graphs
# Performance & Analysis
brew "instruments-cli" # Command-line Instruments
brew "ccache" # Build caching
# Utilities
brew "jq" # JSON processing
brew "yq" # YAML processing
brew "gh" # GitHub CLI
brew "git-lfs" # Large file storage
# Security
brew "gitleaks" # Detect secrets in code
# Ruby (for Fastlane)
brew "rbenv" # Ruby version management
brew "ruby-build" # Install Ruby versions
# Optional: Additional developer tools
# cask "proxyman" # HTTP debugging
# cask "reveal" # Runtime view debugging