Michael Baldry

Results 19 comments of Michael Baldry

Its not ideal but I had the same issue, I fixed it (temporarily with) ``` ruby class NoCompressor def compress(string) string end end ``` at the top of production.rb then...

Ive just found this after installing, full screen mode _sometimes_ just displays white - if you keep closing and opening it does display eventually and works as expected OS X...

In my mind, the simplest and most obvious way to achieve this is to just not use snake_case in your serializers. No other code should be referencing the attribute methods...

Sure, I see your points :) Happy to implement like the example above and we can go from there?

I've had a little first attempt working.. https://github.com/yosiat/panko_serializer/commit/9d352a45aab5e0fce5091d7b7b267c4436059fc5 I have a few things: - I just added `upcase` and `downcase` as they were simplest to write and test with, probably...

@xchi I don't know yet. Waiting on @yosiat for guidance :)

possibly, but as that is a built in feature, it should work properly?

@ejfinneran I did it in a specific way that allows that, you could do this: ``` ruby redis_pool = ConnectionPool.new(size: 5, timeout: 5) { Redis::Client.new } Ratelimit.new("blah", checkout_redis_with: &redis_pool.method(:with)) ```...

I realise this is old, but I have solved this in an almost nice way with the following, using this gem https://github.com/danabr/multipart-parser ```ruby require "multipart_parser/reader" MultipartPart = Struct.new(:filename, :name, :content_type,...

I was surprised there was no way to set a base path for a persistent connection and found this. Seems like a simple use case, creating a pool of persistent...