Joe Lauer

Results 135 comments of Joe Lauer

Merging the runtime & compiler together isn't an option IMHO. The compiler has a couple dependencies (e.g. ANTLR) that I don't want to force on users who simply use Rocker...

You can pull in the `rocker-compiler` dependency and execute the https://github.com/fizzed/rocker/blob/master/rocker-compiler/src/main/java/com/fizzed/rocker/compiler/JavaGeneratorMain.java class directly. That's all the maven and gradle plugins do as well.

There may be IDE-specific ways of re-running Maven goals on code changes. If you figure this out, a quick write up we could share with others in the README could...

Sounds like a reasonable enhancement. Couldn't JavaGenerator build a nice toString() method w/o requiring a Map though?

I originally did think about exposing the arguments via a getter method, but Java's standard reflection utilities accomplish the same result. `https://github.com/fizzed/rocker/blob/master/runtime/src/main/java/com/fizzed/rocker/BindableRockerModel.java` needs to access a model's arguments and it...

@iceant I'm open to ideas on allowing additional file extensions or conventions. For example, allowing '.js' in the build process to be processed by Rocker. However, the replacing of dots...

Hi Edgar, Can you elaborate more on what's not working? Copy-n-paste errors, logs, etc. I'd love to help, but I don't use Eclipse much so w/o more detailed info, I...

Oh, sweet, so that was all you need to do? Looks like you actually run an M2E plugin which in turn runs the rocker plugin? On Fri, Mar 17, 2017...

I believe you can configure touchFile to be an empty string and that'll disable it. Or you could always set to something non-existent like /dev/null On Fri, Mar 17, 2017...

Happy to link to your jooby.org module if/when you publish it. On Fri, Mar 17, 2017 at 11:30 AM, Joe Lauer wrote: > I believe you can configure touchFile to...