David Dossot
David Dossot
Be careful with limiting to `application/json` only as it will prevent people to use media types to version their APIs. In this case, RAML files will typically have a root...
Yes, it's widely used in hypermedia-enabled REST APIs. RAML supports it out of the box so please do not put an arbitrary limitation on this feature. And it's not Grape-specific...
All these media types are sub-types of `application/json` so they can be validated with a standard JSON Schema validator. So basically, to reuse my previous example, there should be nothing...
The latter would be perfect! On 2014-11-21 10:50 PM, "Quanlong" [email protected] wrote: > Thank you for your explain. > > So in the implementation, it should be > > if...
@seebi The `+` (and `.` for that matter) is per spec: http://tools.ietf.org/html/rfc6838#section-4.2
I was about to open an issue for this :wink: A big :+1: then!
Same here with: - Eclipse Indigo SR2 - Xtext SDK 2.0.1.v201108020636 - Coffeescript Runtime and UI Features 0.2.2.201203211152
Don't generate Java by appending Strings: use a code generation library. Until this morning, I would have told you: use [CodeModel](https://codemodel.java.net/), but today Square has released [JavaPoet](http://corner.squareup.com/2015/01/javapoet.html)... so be a...
Considering the synchronization concerns @weissi mentions it seems that `Lifecycle` should (optionally?) provide a way to safely assemble started/stopped states as it progresses through the up/down steps. `Lifecycle` sounds like...
@Califax Yes, but the OP reports the job runs "almost once a second" in case of failure, and despite the fact `retries` is set to `0`.