iCoreTech Research Labs Just a placeholder

15Sep/098

MacRuby Nightlies

As you may have noticed I got a Snow Leopard server, therefore some days ago I built a Sinatra application to manage MacRuby nightly builds.

You can reach the service here: macruby.icoretech.org.

The source is on github here.

Related posts:

  1. Having fun with MacRuby on Snow Leopard

Comments (8) Trackbacks (0)
  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. hi there, the latest package url is already implemented, check out http://macruby.icoretech.org/latest :)

    btw I see your point, I might implement a symlink soonish.

  3. @Jim Lindley
    you should be able to do now

    curl -O http://macruby.icoretech.org/latest

    I modified the code to make /latest actually download the file directly without redirecting to another action.

  4. Thanks a lot !!

  5. 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 comment


No trackbacks yet.

Additional comments powered by BackType