Fotos Georgiadis
Fotos Georgiadis
I needed this recently and what I did was [override `#present`](https://github.com/ruby-grape/grape/blob/v1.2.1/lib/grape/dsl/inside_route.rb#L307-L333). Here is the hack 🤖 (as a simplified example): ```Ruby module API class Base < Grape::API helpers do def...
👋 @pisaq and thanks for the mention. I'm not really sure how my branch fixes the problem mentioned here. Nevertheless I'll certainly have a look tomorrow. 👀 If this is...
@swistaczek I'm using a similar workaround: ```ruby params do requires :contacts, type: Array[API::V2::Entities::Contact], documentation: { desc: 'Contacts', is_array: true, in: 'body' } optional :hack, documentation: { in: 'body', desc: 'Hack...
⚠️ this PR may not be correct after all, please do not merge yet 😢 Although no specs are broken by the change, I think I might have triggered a...
@dblock I traced the problem with arrays in `grape-swagger` and proposed a fix in ruby-grape/grape-swagger#742 (previous code included a nasty trick). I'm not 100% sure about the implications. What do...
I was having the same problem and I was looking into the issues to figure out if it's broken or if I was doing anything wrong. Basically it works correctly...
We still have this issue on `react-native` version `0.70.9`. If there is no intention to fix this issue – maybe we should at least document the workaround?
Thank you @matinzd for working on this library. 🙏 No worries – the workaround works reliably so far. I just wanted to make sure we document this (README?) so at...
@matinzd now that the CI/CD pipeline has been fixed, this needs a rebase. @cortinico if this is still useful feel free to merge. 🚀
@andreialecu I can't find recent documentation but in older versions of React Native there was a recommendation to bundle (manually) before building the app. Nowadays all I [found was this...