Joe Lauer
Joe Lauer
In the main project directory, you should be able to just run `mvn test` and it'll compile and test everything. Are you running a recent version of maven? `mvn -v`?...
Maybe the Gradle issue is simply windows-related since Rocker builds & tests in Travis-CI (clean room). I can take a look later, but glad to hear otherwise its working. On...
This PR won't compile for me locally -- did you get "mvn test" to pass on your box? Also, in your example, have you tried this: ```java @args(FooList
Rocker doesn't support raw bytes for output. I suspect it would be output by getting cast as an Object and then have its .toString() method called for output in the...
I thought about your question and the only way to make it elegant would be to modify Rocker's parser and template generator. For example, all static text between tags/dynamic parts...
@jknack With Kotlin being interopable w/ Java, you should already be able to call Rocker templates from Kotlin. However, adding support for Kotlin syntax after the magic `@` symbol would...
Can you expand on your idea with some examples of what they would look like?
By default Rocker throws an error during a render on an expression that evaluates to null. Plus, Rocker has a number of null-safety operators itself that help swap in replacements...
@albert-kam I'd certainly be open to making the multi-with statement version work as well if you were interested in creating a PR and the unit tests. As you point out,...
Only risk is the usual JVM + class reloading issues that many other apps & platforms have as well. Obviously also some small performance drawbacks to reflection-based property settings, etc.,...