Mike Fotinakis
Mike Fotinakis
Perhaps @green-arrow or @mwpastore can comment on this, I believe they use Sequel with this library.
Is there a way to write our error handling to support sequel-rails ActiveModel errors as well as Rails ActiveModel errors at the same time? If not, I'm fine with a...
@bgentry ActiveModelSerializers is unrelated to this project, I think your hack might be unrelated? I might be crazy.
Gotcha, thanks!
It's curious that AMS had a similar issue.
@biow0lf that sounds pretty great, sorry I'm don't have tons of time to help guide this but if you wanted to make a PR I could take a look. The...
Just to steal some thunder and offer an alternative here, this is supported by my [swagger-blocks](https://github.com/fotinakis/swagger-blocks) gem if you're interested (bearing in mind that it's an unrelated project and a...
Thanks for the report. This makes sense, we de-dupe everything in the `included` section, but not between included and primary (so if there is a circular reference back to the...
I also needed this, was able to get it to work with a custom fwd RoundTripper: ```go fwd, _ := forward.New(forward.RoundTripper(&CustomRoundTripper{})) fwd.ServeHTTP(w, req) ``` And something like: ```go type CustomRoundTripper...
Yup that looks right, we need to add that. If you need a workaround right now you can specify arbitrary properties with `key`, like: ``` ruby key :additionalProperties, { '$ref'...