Benjamin Fagin
Benjamin Fagin
While the compiled tests are good for execution, it would be nice to perform some static analysis as well. For example, annotation values, parameter types, return types, etc. can all...
There is already the readme paragraph, the wiki page, and the docs. Unify these and then either use the wiki or elsewhere create a legit high quality Getting Started guide/tutorial....
Move away from the test scope, and instead mark the flapi dependency as provided only, but allowing the compiled descriptor to pass along anyway. Reduces complexity of the build process...
Since `DescriptorMaker` classes only have one descriptor inside of them, we can retrieve the name from the implementing class itself.
When creating a new `JavaType` using `JavaType#from(Class)`, infer the generic types and add them to the type parameters. Probably the spring generics support can handle this.
It would be nice to move to a gradle build... Must also keep working with maven builds though! --- Imported from JIRA Originally reported by: [UnquietCode](https://github.com/UnquietCode)
When writing to streams, if runtime classes should be output then these should also be written to the stream, just as they are for directories. However, matching the CodeWriter file...
adds content type info to setup.py
#38 ensure that headers and status code get written, even if nothing was ever written. This better aligns with the golang http package's own behavior to write on close.
The golang http server will write out on close, just in case nothing was written. Could the `End()` method be changed to call `Write([]byte{})` so that it will trigger the...