implicit.ly

Scala software, hot off the presses

conscript 0.4.1

This release adds github OAuth support and restores access to private repositories, which was non-functional in the last release.

To authenticate and store a permanent token, use the --auth parameter:

cs --auth yourname:yourpass

This stores an access token in ~/.conscript/config which is used for all future cs invocations. You can revoke tokens at any time in your github account settings.

conscript installs and updates Scala software.

via herald

Filed under  //   conscript  

conscript 0.4.0

Obligatory Upgrade

Because github is terminating its v2 APIs on May 1, 2012 and these are used by all earlier versions of conscript, you must upgrade in order to continue using the software.

Luckily, upgrading conscript is easy:

cs n8han/conscript

Do it now while your copy still works!

Improvements

  • Uses Dispatch reboot to retrieve templates, concurrently
  • Added --no-exec switch to bypass command execution after install { n8han }
  • Use BuildInfo to display current version { eed3si9n }
  • Use something called git.exe on Windows { eed3si9n }
  • Will still work after May 1, 2012

conscript installs and updates Scala software.

via herald

Filed under  //   conscript  

conscript 0.3.4

  • Fixes problem with github credential storage. { eed3si9n }
  • Fetches sbt 0.11.2 launcher from installer jar or cs --setup

Run cs n8han/conscript to upgrade.

conscript installs and updates Scala software.

Filed under  //   Scala 2.9.1   conscript   net.databinder  

conscript 0.3.3

New Features

  • Lookup private repo credentials using git properties, as is the github convention. { eed3si9n }
  • --local and --no-local options to include or exclude local repositories from launch configurations. { eed3si9n }

Upgrading

$ cs n8han/conscript
$ cs --setup # updates to sbt 0.11.1 launcher

conscript installs and updates Scala software.

Filed under  //   Scala 2.9.1   conscript   net.databinder  

conscript 0.3.2

New Features

  • Installs sbt 0.11.0 launcher
  • Add $CONSCRIPT_OPTS to the generated launcher, gseitz
  • Private repository support for conscript avalade

Upgrading

To upgrade conscript and the sbt launcher stored in ~/.conscript, run the installation jar.

Plugin

For application authors, the conscript plugin has also been updated for sbt 0.11.0. Use the new way of specify plugin dependencies:

addSbtPlugin("net.databinder" % "conscript-plugin" % "0.3.2")

And in your build.sbt or other build definition, you will now need to explicitly apply conscript settings:

seq(conscriptSettings :_*)

For new applications, the giter8 template is up-to-date.

conscript installs and updates Scala software.

Filed under  //   Scala 2.9.1   conscript   net.databinder