Last active
April 30, 2018 16:51
-
-
Save phillbaker/27d18bfd964748b76a80a5fea1f8a41a to your computer and use it in GitHub Desktop.
narmi brew tap
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
class ComplianceMasonry < Formula | |
desc "Compliance Masonry is a command-line interface (CLI) that allows users to construct certification documentation using the OpenControl Schema." | |
homepage "https://github.com/opencontrol/compliance-masonry/" | |
url "https://github.com/opencontrol/compliance-masonry/releases/download/v1.1.2/compliance-masonry_1.1.2_darwin_amd64.zip" | |
sha256 "a0504ad0c9ad5a1249e65856f14d470b2a0c82f968ddfcbb1abb750060ab6a6e" | |
bottle :unneeded | |
def install | |
bin.install "compliance-masonry" => "compliance-masonry" | |
end | |
test do | |
system "which #{bin}/compliance" | |
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
class TerraformProviderElasticsearch < Formula | |
desc "elasticsearch index and kinbana object provider for terraform" | |
homepage "https://github.com/phillbaker/terraform-provider-elasticsearch" | |
url "https://github.com/phillbaker/terraform-provider-elasticsearch/releases/download/v0.1.0/terraform-provider-elasticsearch-darwin" | |
sha256 "06c014db12cffaca3631b1e1a9efaaeb01404ad9295e78d5bbea74770f2ad6fa" | |
bottle :unneeded | |
def install | |
bin.install "terraform-provider-elasticsearch-darwin" => "terraform-provider-elasticsearch" | |
end | |
test do | |
system "which #{bin}/terraform-provider-elasticsearch" | |
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
class TerraformProviderMailgunv3 < Formula | |
desc " mailgun provider for terraform based on v3 of the api" | |
homepage "https://github.com/phillbaker/terraform-provider-mailgunv3" | |
url "https://github.com/phillbaker/terraform-provider-mailgunv3/releases/download/v0.1.1/terraform-provider-mailgunv3-darwin" | |
sha256 "8e2513147e87b408372f1b6dedd4fdde0e48ffc6dfc86f705766b6f1a1d13871" | |
bottle :unneeded | |
def install | |
bin.install "terraform-provider-mailgunv3-darwin" => "terraform-provider-mailgunv3" | |
end | |
test do | |
system "which #{bin}/terraform-provider-mailgunv3" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment