8 thoughts on “MacRuby Nightlies

  1. Hey – this is great. One thing though, the maintainer of rvm, Wayne Seguin, ( http://rvm.beginrescueend.com/ ) is my co-worker, and I’ve been bugging him to add macruby support. He said he’ll add it once nightly builds are up.

    If you set up a url that always hits the latest successful build, something like:

    http://macruby.icoretech.org/download/macruby-latest.pkg

    He can have a way to always know where to grab it from.

    Thanks, awesome service to the community, hope you don’t mind my request :)

  2. Here’s a small script that does the auto-install:

    URL=http://macruby.icoretech.org/latest
    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}

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">