Revisions
-
lukesutton revised this gist
May 28, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ class Elixir < Formula homepage 'http://elixir-lang.org/' head 'https://github.com/elixir-lang/elixir.git', :tag => '0.5.0' depends_on 'erlang' -
lukesutton revised this gist
May 28, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ # Install this recipe with: # brew install --HEAD https://gist.github.com/raw/2816905/daafa0d7e3c5da694401fac138aae340a9ead157/elixir.rb require 'formula' -
lukesutton revised this gist
May 28, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ class Elixir < Formula homepage 'http://elixir-lang.org/' head 'https://github.com/elixir-lang/elixir.git', :tag => '6052352b6281752b905b30eb5b08fac0f51f68cd' depends_on 'erlang' -
huffman revised this gist
Mar 3, 2012 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,6 @@ # Install this recipe with: # brew install --HEAD https://raw.github.com/gist/1955470/c58bda92f07147afff64a86d0c2d8ef65adb9cd6/elixir.rb require 'formula' class Elixir < Formula @@ -18,4 +21,4 @@ def test system "elixirc" system "iex" end end -
huffman revised this gist
Mar 3, 2012 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -15,5 +15,7 @@ def install def test system "elixir" system "elixirc" system "iex" end end -
huffman created this gist
Mar 2, 2012 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ require 'formula' class Elixir < Formula homepage 'http://elixir-lang.org/' head 'https://github.com/elixir-lang/elixir.git' depends_on 'erlang' def install system "make" bin.install Dir['bin/*'] prefix.install Dir['ebin/', 'exbin/'] end def test system "elixir" end end