diff options
| -rw-r--r-- | Library/Formula/clojurescript.rb | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/Library/Formula/clojurescript.rb b/Library/Formula/clojurescript.rb index 780f8a229..8bfafbe15 100644 --- a/Library/Formula/clojurescript.rb +++ b/Library/Formula/clojurescript.rb @@ -1,17 +1,17 @@ -require 'formula' +require "formula"  class Clojurescript < Formula -  homepage 'https://github.com/clojure/clojurescript' -  head 'https://github.com/clojure/clojurescript.git' -  url 'https://github.com/clojure/clojurescript/archive/r2202.tar.gz' -  sha1 'a205d9a21a16e8052995485c30925b6828d1259a' +  homepage "https://github.com/clojure/clojurescript" +  head "https://github.com/clojure/clojurescript.git" +  url "https://github.com/clojure/clojurescript/archive/r2234.tar.gz" +  sha1 "18d7ea5c389747b2d6b97f24027e2153a3a28ba5"    def install      system "./script/bootstrap"      inreplace %w(bin/cljsc script/repl script/repljs script/browser-repl),        "#!/bin/sh", "#!/bin/sh\nCLOJURESCRIPT_HOME=#{libexec}" -    libexec.install Dir['*'] -    bin.write_exec_script libexec/'bin/cljsc' +    libexec.install Dir["*"] +    bin.write_exec_script libexec/"bin/cljsc"    end    def caveats; <<-EOS.undent | 
