Hi, Some people have been wondering what happened to the nightly builds... and this reminded me that I forgot to announce that the nightly build process migrated from Claudio's server to Mac OS forge, which has more bandwidth. Nightly builds are now available at the following address: http://www.macruby.org/files/nightlies/ The latest nightly build is always available from this shortcut: http://www.macruby.org/files/nightlies/macruby_nightly-latest.pkg Let us know if anything doesn't work, and sorry for the disturbance! Laurent
Hi all, On Apr 13, 2010, at 8:25 PM, Laurent Sansonetti wrote:
Nightly builds are now available at the following address:
http://www.macruby.org/files/nightlies/
The latest nightly build is always available from this shortcut:
http://www.macruby.org/files/nightlies/macruby_nightly-latest.pkg
I've updated my auto-install script to use the new location: http://svn.macosforge.org/repository/ruby/MacRuby/trunk/tool/macruby_get_nig... --- #!/bin/sh # Download and install the latest version of MacRuby URL=http://www.macruby.org/files/nightlies/ PKG=macruby_nightly-latest.pkg DOWNLOAD_DIR=~/Downloads DESTROOT=/ cd ${DOWNLOAD_DIR} rm -f ${PKG} echo "Downloading ${URL}/${PKG} into ${DOWNLOAD_DIR}" curl -O ${URL}/${PKG} sudo installer -pkg ${PKG} -target ${DESTROOT} --- To install the script, you can do: --- cd ~/Downloads curl -O http://svn.macosforge.org/repository/ruby/MacRuby/trunk/tool/macruby_get_nig... chmod a+x !$:t # Then run it open !$ --- Hope this helps! -- Ernie P.
Cool, thanks Ernie, - Matt On Wed, Apr 21, 2010 at 10:41 AM, Ernest N. Prabhakar, Ph.D. < prabhaka@apple.com> wrote:
Hi all,
On Apr 13, 2010, at 8:25 PM, Laurent Sansonetti wrote:
Nightly builds are now available at the following address:
http://www.macruby.org/files/nightlies/
The latest nightly build is always available from this shortcut:
http://www.macruby.org/files/nightlies/macruby_nightly-latest.pkg
I've updated my auto-install script to use the new location:
http://svn.macosforge.org/repository/ruby/MacRuby/trunk/tool/macruby_get_nig...
--- #!/bin/sh # Download and install the latest version of MacRuby URL=http://www.macruby.org/files/nightlies/ PKG=macruby_nightly-latest.pkg DOWNLOAD_DIR=~/Downloads DESTROOT=/
cd ${DOWNLOAD_DIR} rm -f ${PKG} echo "Downloading ${URL}/${PKG} into ${DOWNLOAD_DIR}" curl -O ${URL}/${PKG} sudo installer -pkg ${PKG} -target ${DESTROOT} ---
To install the script, you can do: --- cd ~/Downloads curl -O http://svn.macosforge.org/repository/ruby/MacRuby/trunk/tool/macruby_get_nig... chmod a+x !$:t # Then run it open !$ ---
Hope this helps!
-- Ernie P.
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
participants (3)
-
Ernest N. Prabhakar, Ph.D.
-
Laurent Sansonetti
-
Matt Aimonetti