diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/rebar.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/rebar.rb b/Library/Formula/rebar.rb index a24d05ecd..27715fa2a 100644 --- a/Library/Formula/rebar.rb +++ b/Library/Formula/rebar.rb @@ -1,20 +1,20 @@ -require 'formula' +require "formula" class Rebar < Formula - homepage 'https://github.com/rebar/rebar' - url 'https://github.com/rebar/rebar/archive/2.2.0.tar.gz' - sha1 '8b246586383d8809c7681f3e56bfc8d8c3b3757e' + homepage "https://github.com/rebar/rebar" + url "https://github.com/rebar/rebar/archive/2.3.0.tar.gz" + sha1 "4fc7eed4f3210c1547ba5ddfb5d3dc54a6422c37" head "https://github.com/rebar/rebar.git", :branch => "master" - depends_on 'erlang' + depends_on "erlang" def install - system './bootstrap' - bin.install 'rebar' + system "./bootstrap" + bin.install "rebar" end test do - system 'rebar', '--version' + system "rebar", "--version" end end |
