aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorStephane Epardaud2014-10-09 21:15:38 +0200
committerTim D. Smith2014-10-11 00:05:47 -0700
commite19ad0f9323113c4a4e6985b08a93eb10444b602 (patch)
tree71128ff49c2433621ef28f009adf336acb7fe339 /Library
parent6ac98532081dcb9c56e7a3870b17defd776aa300 (diff)
downloadhomebrew-e19ad0f9323113c4a4e6985b08a93eb10444b602.tar.bz2
ceylon 1.1
Closes #33064. Signed-off-by: Tim D. Smith <git@tim-smith.us>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ceylon.rb10
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