diff options
| author | Stephane Epardaud | 2014-10-09 21:15:38 +0200 |
|---|---|---|
| committer | Tim D. Smith | 2014-10-11 00:05:47 -0700 |
| commit | e19ad0f9323113c4a4e6985b08a93eb10444b602 (patch) | |
| tree | 71128ff49c2433621ef28f009adf336acb7fe339 | |
| parent | 6ac98532081dcb9c56e7a3870b17defd776aa300 (diff) | |
| download | homebrew-e19ad0f9323113c4a4e6985b08a93eb10444b602.tar.bz2 | |
ceylon 1.1
Closes #33064.
Signed-off-by: Tim D. Smith <git@tim-smith.us>
| -rw-r--r-- | Library/Formula/ceylon.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/ceylon.rb b/Library/Formula/ceylon.rb index 0bf8b7883..43f4870a1 100644 --- a/Library/Formula/ceylon.rb +++ b/Library/Formula/ceylon.rb @@ -2,8 +2,8 @@ require 'formula' class Ceylon < Formula homepage 'http://ceylon-lang.org/' - url 'http://ceylon-lang.org/download/dist/1_0_0' - sha1 '24737e1816c16497cb4b504d857530e1a171c2bf' + url 'http://ceylon-lang.org/download/dist/1_1_0' + sha1 '91d84e96f3a4468cc2e7de5a4003d5e945bd7c20' def install rm_f Dir["bin/*.bat"] @@ -22,9 +22,9 @@ class Ceylon < Formula test do cd "#{libexec}/samples/helloworld" do - system "#{bin}/ceylon", "compile", "com.acme.helloworld" - system "#{bin}/ceylon", "doc", "--non-shared", "com.acme.helloworld" - system "#{bin}/ceylon", "run", "com.acme.helloworld/1.0.0", "John" + system "#{bin}/ceylon", "compile", "--encoding", "UTF-8", "com.example.helloworld" + system "#{bin}/ceylon", "doc", "--encoding", "UTF-8", "--non-shared", "com.example.helloworld" + system "#{bin}/ceylon", "run", "com.example.helloworld/1.1.0", "John" end end end |
