My homebrew tap - storing the formulas i make
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add Boxcar

+15
+15
Formula/boxcar.rb
··· 1 + class Boxcar < Formula 2 + desc "Rails app generator with opinionated defaults" 3 + homepage "https://github.com/jaspermayone/boxcar" 4 + url "https://github.com/jaspermayone/boxcar/archive/refs/tags/v1.0.0.tar.gz" 5 + sha256 "5a799e632270a0707fd72a6c628f4ece3855751ad3db9a0926336220743d9c26" 6 + license "MIT" 7 + 8 + def install 9 + bin.install "boxcar" 10 + end 11 + 12 + test do 13 + assert_match "Usage: boxcar", shell_output("#{bin}/boxcar") 14 + end 15 + end