generated from Justintime50/python-template
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add new input to allow include statements at the top of formula…
… class (#46) * feat: add new input FORMULA_INCLUDES * build: add INPUT_FORMULA_INCLUDES to docker-compose * docs: update README with new parameter * style: lint-fix files * style: lint-fix files * refactor: move include above the metadata per Homebrew docs * test: add test scenario for formula_includes * style: rebuild test formulas * fix: strict typing on formula_includes param * fix: remove whitespace if no formula_includes * style: rebuild test formulas * chore: cleanup new test --------- Co-authored-by: Justintime50 <[email protected]>
- Loading branch information
1 parent
c7fd0ac
commit 250a479
Showing
8 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# typed: true | ||
# frozen_string_literal: true | ||
|
||
# This file was generated by Homebrew Releaser. DO NOT EDIT. | ||
class TestGenerateFormulaFormulaIncludes < Formula | ||
include Language::Python::Virtualenv | ||
|
||
desc "Release scripts, binaries, and executables to github" | ||
homepage "https://github.com/Justintime50/test-generate-formula-formula-includes" | ||
url "https://github.com/Justintime50/test-generate-formula-formula-includes/archive/refs/tags/v0.1.0.tar.gz" | ||
sha256 "0000000000000000000000000000000000000000000000000000000000000000" | ||
license "MIT" | ||
|
||
def install | ||
bin.install "src/secure-browser-kiosk.sh" => "secure-browser-kiosk" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters