Bryan Powell
Bryan Powell
Eh, that's what I was afraid of. I may work on a solution for easy cases. If so I'll be sure to send a PR along.
Tried sourcify before method_source. It failed anytime a string was defined with double quotes. Simple is better, I think.
I'm interested in contributing timeout handling and backoff. Since you have an approach in mind, is this something you'd be able to hand off? Realistically, it would involve some knowledge...
@akzhan Unfortunately the adapter interface is incredibly tied to Nokogiri (or libraries like Nokogumbo that follow its interface). We made it work in pakyow, but it's not something I'd want...
Interesting! I may steal this for Pakyow 😁 We have something called view versions that this would fit right into. For example: ``` html First First First ``` When running...
Hmm maybe I misunderstood the purpose of this feature. In Pakyow, the `innerContent` of the node is overridden when the data is presented. What I thought you were getting at...
Yep, got it. In Pakyow, this is a non-issue. When you look for a prop by name, it returns an object that represents every matching view prop at that level....
FWIW I did find a workaround: ```ruby where("key = :key", key: PG::TextEncoder::Bytea.new.encode(SecureRandom.bytes(32))) ``` Curious if you think this should have better built-in support. If so, I'd be happy to brainstorm...