Pierpaolo Frasa

Results 13 comments of Pierpaolo Frasa

Well there's at least one person who didn't find it clear (me) ;) "Save this Ember Twiddle to Github as a Gist" means the exact same thing as the current...

I just mounted a mini-sinatra app on an /apidoc route in my config.ru and had it handle the whole swagger UI. I did this, so I could be somewhat more...

IMHO declared(params) should be the default. Otherwise, it's just too easy to inject a mass assignment vulnerability in a Grape API. This lesson has been learned by Rails, that's why...

Thanks @dmitry. I believe you also have to wrap that call, since `del` fails on an empty array: ``` ruby if redis.keys.any? redis.del(redis.keys) end ```

Shouldn't `> /dev/null` take care of that? I believe, errors will still be reported, since they will be sent to STDERR

I have also run into this issue, it's also a problem for e.g. boolean values.

A "workaround" is to instead supply a JSON dictionary for the parent key with the property to override as a single key. I believe, the library will then merge this...

I second the request, I had to use multipart/mixed recently and had to roll my own custom solution. Ideally it would also be possible to add custom headers (like Content-Type...

Yes. But if you have quite complicated structures (even after shrinking) with very custom `description` strings, it can be very hard to take that output and translate it back to...