Stefan Zeiger
Stefan Zeiger
The only situation where you really need multiple argument lists is for path-dependent argument types but this breaks Twirl's translation scheme because argument lists have to merged to implement `play.twirl.api.TemplateX`....
Menu.param allows you to define a parser and an encoder for a URI parameter. The parser is a good place to retrieve an item from a database and automatically get...
Currently any non-option parameter is treated as a glob pattern which can lead to surprising bugs. For example, see https://gist.github.com/ktoso/baba2cacad58bddd4235 which is caused by "testOptions in Test += Tests.Argument("-oDF")" (parameters...
When you cancel a benchmark job with Ctrl-C, sbt prints the usual `[warn] Canceling execution...` message and then drops back into interactive mode, but the actual benchmarking process that was...
Scala has done quite well so far without any preprocessor but in some situations it would be quite handy to just drop an `#ifdef` or `#include` into the source code....
_[Migrated from Assembla ticket [125](https://www.assembla.com/spaces/typesafe-slick/tickets/125) - reported by @cvogt on 2013-03-14 17:15:35]_ we should investigate if or how we want to support optimistic locking. apparently Squeryl has an implementation for...
_[Migrated from Assembla ticket [298](https://www.assembla.com/spaces/typesafe-slick/tickets/298) - reported by @cvogt on 2013-07-19 23:38:51]_ lifted embedding could support this https://groups.google.com/forum/#!topic/scalaquery/TbrIVuyqXzE
I haven't found any way to prevent sbt from putting the containing project's `scalaVersion` artifacts on the benchdb classpath. This needs to be resolved before the sbt plugin will be...
After running the REPL in an sbt project, there are some artifacts like `$_repl_$init` (in the default package) and packages like `$line1$` left on the classpath. It would be nice...
Currently genjavadoc creates an illegal package declaration `package ;` for the top-level package. This declaration should be omitted.