Oleg Yakovenko
Oleg Yakovenko
hey, check the discussion [here](https://github.com/caxlsx/caxlsx/pull/82)
@timriley please have a look - https://github.com/dry-rb/dry-view/pull/153
The issue duplicates https://github.com/rswag/rswag/issues/325 - you can find a workaround there
Here is my adaptation of the @gsar snippet to make it work with MS SQL server: ```ruby module Scenic module SchemaDumperDecorator private def get_dependencies(view_name) Scenic.database.send(:connection).select_all( 'SELECT DISTINCT referenced_entity_name FROM '\...
This is how it works for me, mixed with @tylerj 's snippet ```ruby module RespectDoubleQuotedCookieValue def self.prepended(klass) klass.singleton_class.prepend(ClassMethods) end module ClassMethods def quote(str) return str unless str.match(HTTP::Cookie::Scanner::RE_BAD_CHAR) # Because double...
@Filosiq I had the same issue and I resolved it by disabling `Experimental QUIC protocol` in Chrome (here - `chrome://flags/`) With the `Default` value my network requests were hanging with...
@Filosiq what OS do you use? I think in my case the issue started after upgrading to `macOS Sequoia 15.1`
@Filosiq what exactly helped? This might be useful for everyone else with the same trouble