From 32497ae4316892979cc6846b449fe652fb970ce3 Mon Sep 17 00:00:00 2001 From: Gabe Berke-Williams Date: Sat, 31 Aug 2019 19:29:09 -0700 Subject: [PATCH] Move Homebrew formulae to gabebew/homebrew-formulae --- README.md | 2 +- homebrew/candle.rb | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 homebrew/candle.rb diff --git a/README.md b/README.md index 8d00969..de775da 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ arbitrarily-complex CSS selectors, just like you'd write in real CSS. On a Mac using Homebrew (Rust not required): - brew install https://raw.githubusercontent.com/gabebw/candle/master/homebrew/candle.rb + brew install gabebw/formulae/candle Or to build from source (requires the Rust package manager, [Cargo](https://doc.rust-lang.org/cargo/getting-started/installation.html)): diff --git a/homebrew/candle.rb b/homebrew/candle.rb deleted file mode 100644 index f6c34c3..0000000 --- a/homebrew/candle.rb +++ /dev/null @@ -1,12 +0,0 @@ -class Candle < Formula - version "0.3.0" - desc "Shine a little light on your HTML using the command line" - homepage "https://github.com/gabebw/candle" - - url "https://github.com/gabebw/candle/releases/download/v#{version}/candle-#{version}.tar.gz" - sha256 "cc0e7aa2bb5600992da87d65ea1c39b20d2d7fa1b5cf8bfb2b5f558ba531ae56" - - def install - bin.install "candle" - end -end