From c3f7a2be1964292cdf0f7440006ca445f1e47d43 Mon Sep 17 00:00:00 2001 From: Jack Programs <52725440+jackprogramsjp@users.noreply.github.com> Date: Fri, 4 Aug 2023 10:35:26 -0700 Subject: [PATCH] Updated lune.rb to latest formula on Homebrew --- Formula/lune.rb | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Formula/lune.rb b/Formula/lune.rb index 23b419f..206c954 100644 --- a/Formula/lune.rb +++ b/Formula/lune.rb @@ -5,20 +5,14 @@ class Lune < Formula sha256 "e8191df5d6844026772cc7afab1083235a265c506474c4c4dee0a7724b04f775" license "MPL-2.0" - livecheck do - url :stable - regex(/^v?(\d+(?:\.\d+)+)$/i) - end - depends_on "rust" => :build def install - system "cargo", "install", *std_cargo_args + system "cargo", "install", "--all-features", *std_cargo_args end test do (testpath/"test.lua").write("print(2 + 2)") - output = shell_output("#{bin}/lune test.lua") - assert_equal "4", output.chomp + assert_equal "4", shell_output("#{bin}/lune test.lua").chomp end end