Created
May 4, 2016 10:30
-
-
Save rjcoelho/9e7e16cf3ac9ab8845aa8a2cca2718f1 to your computer and use it in GitHub Desktop.
kiex homebrew formula
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 Kiex < Formula | |
desc "Elixir version manager" | |
homepage "https://taylor.github.io/kiex/" | |
head "https://github.com/taylor/kiex.git" | |
bottle :unneeded | |
def install | |
bin.install "kiex" | |
end | |
def post_install | |
system "#{bin}/kiex", "install_kiex" | |
end | |
test do | |
system "#{bin}/kiex", "list", "releases" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment