Skip to content

Instantly share code, notes, and snippets.

@lukesutton
Forked from huffman/elixir.rb
Created May 28, 2012 02:33

Revisions

  1. lukesutton revised this gist May 28, 2012. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion elixir.rb
    Original 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'
    head 'https://github.com/elixir-lang/elixir.git', :tag => '0.5.0'

    depends_on 'erlang'

  2. lukesutton revised this gist May 28, 2012. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion elixir.rb
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    # Install this recipe with:
    # brew install --HEAD https://raw.github.com/gist/1955470/c58bda92f07147afff64a86d0c2d8ef65adb9cd6/elixir.rb
    # brew install --HEAD https://gist.github.com/raw/2816905/daafa0d7e3c5da694401fac138aae340a9ead157/elixir.rb

    require 'formula'

  3. lukesutton revised this gist May 28, 2012. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion elixir.rb
    Original 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'
    head 'https://github.com/elixir-lang/elixir.git', :tag => '6052352b6281752b905b30eb5b08fac0f51f68cd'

    depends_on 'erlang'

  4. @huffman huffman revised this gist Mar 3, 2012. 1 changed file with 4 additions and 1 deletion.
    5 changes: 4 additions & 1 deletion elixir.rb
    Original 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
    end
  5. @huffman huffman revised this gist Mar 3, 2012. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion elixir.rb
    Original 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
    end
  6. @huffman huffman created this gist Mar 2, 2012.
    19 changes: 19 additions & 0 deletions elixir.rb
    Original 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