Skip to content

Commit

Permalink
Brew formula update for indev version v0.3.3-5
Browse files Browse the repository at this point in the history
  • Loading branch information
goreleaserbot committed Nov 5, 2024
1 parent ed20a9a commit 088c441
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions Formula/indev.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# typed: false
# frozen_string_literal: true

# This file was generated by GoReleaser. DO NOT EDIT.
class Indev < Formula
desc "A CLI for managing developer platform resources."

Check failure on line 6 in Formula/indev.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

FormulaAudit/Desc: Description shouldn't start with an article.

Check failure on line 6 in Formula/indev.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

FormulaAudit/Desc: Description shouldn't end with a full stop.

Check failure on line 6 in Formula/indev.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

FormulaAudit/Desc: Description shouldn't start with an article.

Check failure on line 6 in Formula/indev.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

FormulaAudit/Desc: Description shouldn't end with a full stop.
homepage "https://developers.intility.com"
version "0.3.3-5"

on_macos do
on_intel do
url "https://github.com/intility/indev/releases/download/v0.3.3-5/indev_darwin_x86_64.tar.gz",
headers: [
"Accept: application/octet-stream",
"Authorization: bearer #{ENV["DOWNLOADER_GITHUB_TOKEN"]}"

Check failure on line 15 in Formula/indev.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

Style/TrailingCommaInArrayLiteral: Put a comma after the last item of a multiline array.

Check failure on line 15 in Formula/indev.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

Style/TrailingCommaInArrayLiteral: Put a comma after the last item of a multiline array.
]
sha256 "8040498b4fc3cb2f2902775c8e632ba719701cf99926410e6da0270f0254b056"

def install
bin.install "indev"
bash_completion.install "completions/indev.bash" => "indev"
zsh_completion.install "completions/indev.zsh" => "_indev"
fish_completion.install "completions/indev.fish"
end
end
on_arm do
url "https://github.com/intility/indev/releases/download/v0.3.3-5/indev_darwin_arm64.tar.gz",
headers: [
"Accept: application/octet-stream",
"Authorization: bearer #{ENV["DOWNLOADER_GITHUB_TOKEN"]}"

Check failure on line 30 in Formula/indev.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

Style/TrailingCommaInArrayLiteral: Put a comma after the last item of a multiline array.

Check failure on line 30 in Formula/indev.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

Style/TrailingCommaInArrayLiteral: Put a comma after the last item of a multiline array.
]
sha256 "b0dac12404847f1ed4427d10a3078ace8b7c4a88988a11ef45cdfe22cec44292"

def install
bin.install "indev"
bash_completion.install "completions/indev.bash" => "indev"
zsh_completion.install "completions/indev.zsh" => "_indev"
fish_completion.install "completions/indev.fish"
end
end
end

on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/intility/indev/releases/download/v0.3.3-5/indev_linux_x86_64.tar.gz",
headers: [
"Accept: application/octet-stream",
"Authorization: bearer #{ENV["DOWNLOADER_GITHUB_TOKEN"]}"

Check failure on line 49 in Formula/indev.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

Style/TrailingCommaInArrayLiteral: Put a comma after the last item of a multiline array.

Check failure on line 49 in Formula/indev.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

Style/TrailingCommaInArrayLiteral: Put a comma after the last item of a multiline array.
]
sha256 "dd3602577980244ede9c654f463ecc7cc27fddacc224ac107b935f7b4ec148da"

def install
bin.install "indev"
bash_completion.install "completions/indev.bash" => "indev"
zsh_completion.install "completions/indev.zsh" => "_indev"
fish_completion.install "completions/indev.fish"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/intility/indev/releases/download/v0.3.3-5/indev_linux_arm64.tar.gz",
headers: [
"Accept: application/octet-stream",
"Authorization: bearer #{ENV["DOWNLOADER_GITHUB_TOKEN"]}"

Check failure on line 66 in Formula/indev.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

Style/TrailingCommaInArrayLiteral: Put a comma after the last item of a multiline array.

Check failure on line 66 in Formula/indev.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

Style/TrailingCommaInArrayLiteral: Put a comma after the last item of a multiline array.
]
sha256 "3793bfaffca3089003c79bc6c6349436f660b230aef6162e6d584734fc79596c"

def install
bin.install "indev"
bash_completion.install "completions/indev.bash" => "indev"
zsh_completion.install "completions/indev.zsh" => "_indev"
fish_completion.install "completions/indev.fish"
end
end
end
end
end

0 comments on commit 088c441

Please sign in to comment.