Hey Yusuke, thanks for checking this out. I have tried this out on my friends machines and one of them has exactly the same results as I, but other has the results that are matching yours. All three of us are using MacBooks (although dif...zogash (Milovan Zogovic)
I have an issue where Net/HTTP library is causing very high memory usage when requesting for medium to large sized content. Here is the script to reproduce the issue: ``` gem 'excon' require 'uri' require 'net/http' require ...zogash (Milovan Zogovic)
Actually, this has nothing to do with inheritance. Here is simplified example: ~~~ class Bug def initialize(a:, b: nil, **others) puts("a: #{a.inspect}, b: #{b.inspect}, others: #{others}") end end require "yaml" Bu...zogash (Milovan Zogovic)
Here is the example: ~~~ class Parent def initialize(a: nil, b: nil, **properties) puts("parent: { a: #{a.inspect}, b: #{b.inspect}, properties: #{properties}") end end class Child < Parent def initialize(args={})...zogash (Milovan Zogovic)