diff options
| author | Stephane Epardaud | 2012-10-29 17:22:24 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-29 10:02:10 -0700 |
| commit | 38859f7f2514a9af249040025e646bf96d738142 (patch) | |
| tree | a2a29b079bb454ab3c66d88927f6d12a57e9a872 /Library/Formula | |
| parent | b6babb34d005fb184242556217f3f12686021ae7 (diff) | |
| download | homebrew-38859f7f2514a9af249040025e646bf96d738142.tar.bz2 | |
Ceylon M4
Closes #15733.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ceylon.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/ceylon.rb b/Library/Formula/ceylon.rb index 9cc86628e..4757c88f1 100644 --- a/Library/Formula/ceylon.rb +++ b/Library/Formula/ceylon.rb @@ -2,9 +2,9 @@ require 'formula' class Ceylon < Formula homepage 'http://ceylon-lang.org/' - url 'http://ceylon-lang.org/download/dist/1_0_Milestone3_1' - version '1.0M3.1' - sha1 'f9c267b567358bfab6387a329b3e540715850c47' + url 'http://ceylon-lang.org/download/dist/1_0_Milestone4' + version '1.0M4' + sha1 '0d4bb339759d9f0d55da1a89d87a13b160e51163' def install rm_f Dir["bin/*.bat"] @@ -22,9 +22,9 @@ class Ceylon < Formula def test cd "#{libexec}/samples/helloworld" do - system "#{bin}/ceylonc", "com.acme.helloworld" - system "#{bin}/ceylond", "-non-shared", "com.acme.helloworld" - system "#{bin}/ceylon", "com.acme.helloworld/1.0.0", "John" + 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" end end end |
