Skip to content

Instantly share code, notes, and snippets.

@rjcoelho
Created May 4, 2016 10:30
Show Gist options
  • Save rjcoelho/9e7e16cf3ac9ab8845aa8a2cca2718f1 to your computer and use it in GitHub Desktop.
Save rjcoelho/9e7e16cf3ac9ab8845aa8a2cca2718f1 to your computer and use it in GitHub Desktop.
kiex homebrew formula
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