Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions flutter_bunny.rb
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
class FlutterBunny < Formula
desc "Flutter Bunny: A CLI tool for Flutter development"
homepage "https://github.com/demola234/flutter_bunny_cli"
license "MIT"
version "1.0.6"

on_macos do
on_arm do
url "https://github.com/demola234/flutter_bunny_cli/releases/download/v1.0.0/flutter_bunny-v1.0.0-macos-arm64.tar.gz"
sha256 "0019dfc4b32d63c1392aa264aed2253c1e0c2fb09216f8e2cc269bbfb8bb49b5"
end
on_intel do
url "https://github.com/demola234/flutter_bunny_cli/releases/download/v1.0.0/flutter_bunny-v1.0.0-macos-x64.tar.gz"
sha256 "0019dfc4b32d63c1392aa264aed2253c1e0c2fb09216f8e2cc269bbfb8bb49b5"
end
desc "Flutter Bunny: A CLI tool for Flutter development"
homepage "https://github.com/demola234/flutter_bunny_cli"
license "MIT"
version "1.0.2"

on_macos do
on_arm do
url "https://github.com/demola234/flutter_bunny_cli/archive/refs/tags/v1.0.2.tar.gz"
sha256 "UPDATE_WITH_ACTUAL_HASH"
end

def install
bin.install "flutter_bunny"
on_intel do
url "https://github.com/demola234/flutter_bunny_cli/archive/refs/tags/v1.0.2.tar.gz"
sha256 "UPDATE_WITH_ACTUAL_HASH"
end

test do
# Test by showing help
system "#{bin}/flutter_bunny", "--help"
end
end
end

def install
bin.install "flutter_bunny"
end

test do
# Test by showing help
system "#{bin}/flutter_bunny", "--help"
end
end