diff options
author | Teddy Wing | 2021-02-28 01:15:30 +0100 |
---|---|---|
committer | Teddy Wing | 2021-02-28 01:16:02 +0100 |
commit | 23106b114e6224f3e11038df7fc0008e47ea5755 (patch) | |
tree | 294f9a9d40959024ddfa890e1c84f8d931966aee | |
parent | 37869659191fa1329fe420992535f553c9148399 (diff) | |
download | homebrew-formulae-23106b114e6224f3e11038df7fc0008e47ea5755.tar.bz2 |
extreload 0.0.1
-rw-r--r-- | HomebrewFormula/extreload.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/HomebrewFormula/extreload.rb b/HomebrewFormula/extreload.rb new file mode 100644 index 0000000..8d31047 --- /dev/null +++ b/HomebrewFormula/extreload.rb @@ -0,0 +1,20 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + +class Extreload < Formula + desc "Reload Chrome extensions" + homepage "https://github.com/teddywing/extreload" + url "https://github.com/teddywing/extreload/releases/download/v0.0.1/extreload_0.0.1_darwin-x86_64.tar.bz2" + version "0.0.1" + sha256 "5f169ac81274b255273e9ff942a79ccbdf09d1cebcb7b6e29905559f38d19a65" + + def install + bin.install Dir["bin/*"] + man1.install Dir["share/man/man1/*"] + end + + test do + assert_equal version, shell_output("extreload --version").strip + end +end |