Files
homebrew-tap/Gemfile
Ismo Vuorinen 6de65bca11 Initial Homebrew tap setup with automated documentation
- Add formula parser with Ruby AST parsing
- Add GitHub Actions CI/CD workflows
- Add Jekyll-based documentation site
- Add RuboCop and Dependabot configuration
- Add example formula for demonstration
2025-09-02 02:22:26 +03:00

14 lines
246 B
Ruby

source "https://rubygems.org"
ruby "3.4.5"
gem "parser", "~> 3.3"
gem "json", "~> 2.7"
group :development, :test do
gem "rubocop", "~> 1.69"
gem "rubocop-rspec", "~> 3.6"
gem "rubocop-performance", "~> 1.25"
gem "rspec", "~> 3.13"
end