Vladimir Dementyev

Results 297 comments of Vladimir Dementyev

Thanks for the patch! Fixed the problem for me. Any chance we can get this draft finished and merged? I'd be glad to help with this. /cc @dokterbob @boyan-soubachov

The fix is coming in Rails 7.1. For older versions (5+), there is a backport gem: https://github.com/anycable/action-cable-redis-backport

Just caught this one, too. > Should I downgrade puma? That's what I did, downgraded to Puma =' for nil:NilClass`: https://github.com/puma/puma/blob/3bace01d3009dabc6a7ea269b97bdfea455128cb/lib/puma/server.rb#L187 (And JRuby 9.3.9.0)

Finally merged and released (see 0.7.1, it also includes some other minor things we discussed a while ago). I changed the final API for Minitest: similarly to RSpec, I extended...

Surprisingly, it's not safe even for Active Record: ```ruby users = User.where(admin: true).each(&:itself) #=> [, ...] users = User.where(admin: true).find_each(&:itself) #=> nil ```

> How would this help? This way, we will only check if the `#with` is defined in this class, not its ancestors: ```ruby class Object def with; end end class...

Oops, the snippet in the previous message was incorrect. Fixed.