Petr Kaleta
Petr Kaleta
I believe it's a show stopper for most non-rails projects...
You can test this issue even with sinatra example in your repository, just add `enable :logging` But when you remove `use Rack::FiberPool` logging works as expected.
``` NoMethodError: undefined method `hex_to_color' for # from /Users/Petr/.rbenv/versions/jruby-1.7.20/lib/ruby/gems/shared/gems/image_voodoo-0.8.8/lib/image_voodoo/awt.rb:34:in `add_border' ``` hex_to_color is defined as class method...
For some reason `database_cleaner-sequel` stopped working after migrating to v `2.0.0`. ENV: `ruby 3.1.2`, `sequel 5.58.0`, `minitest 5.16.2` Working configuration for `1.8.0` was: ```ruby before :each do DatabaseCleaner[:sequel, connection: DEFAULT_DB].start...