Tomer Gabel
Tomer Gabel
The 6.0.0 release downloads successfully but fails to start (I tried both replacing and clean reinstall, as well as re-downloading. Same result): I'm not sure how to even start debugging...
This was disabled as part of the Scala.js work in 0.5 (see comments in #19) and should be re-enabled, or else removed entirely.
Followup to #19; need to beef up example project to showcase a simple web application, where the front-end is based on Scala.js and the back-end on Scalatra or Akka HTTP...
Basically, `CollectionDslContext` needs to be extended with `map`, `flatMap`, `filter` etc. to support syntax such as: ``` scala case class Element(value: Int) case class Container(elements: Seq[Element]) val containerValidator = Validator[Container]...
Accord should not only be simple, it should be _fast_. Runtime performance has always been desirable but never a first-class design goal; proper benchmarking should be put in place to...
* Pick a community coding convention (whichever one) * Reformat all code in a "big bang" commit * Enact the coding style going forward via appropriate sbt plugin
Currently `accord-core` contains both the matcher library (required at runtime) and the definition DSL (strictly _not_ required at runtime). Better modularization, to e.g. `accord-matchers` and `accord-dsl` (with `accord-core` aggregating both...
The Accord testkit (for both Specs2 and ScalaTest) is both woefully underpowered and fails the DRY principle. Specifically, it makes it very hard to use native matchers, and impossible to...
When validation fails on a delegated object, the error details (from the group violation) aren't persisted to the `Errors` object. For example, for the following domain model: ``` scala case...