Simon Hildebrandt
Simon Hildebrandt
Basically the same way as SQL - since the DB itself doesn't support it you'd build it into the ORM layer. The problem is that the ORM layer I'm using...
I just got bitten by this bug, but in a different way - trying to use Object#tap on a response object yields the parsed_response instead, which was a spectacularly confusing...
I seem to be getting this as well...
I'm having a similar error, for this minimal Rack app: ``` app = Rack::Builder.new do use Rack::Cors do allow do origins '*' resource '*', headers: :any, methods: [:put, :get, :post,...
I strongly suspect that my problem was caused by bailing out without returning anything, further down in the stack (there's an `if` inside that lambda that I edited out for...