mirror of
https://github.com/ivuorinen/homebrew-tap.git
synced 2026-01-26 11:24:02 +00:00
- 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
14 lines
246 B
Ruby
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
|