[#100689] [Ruby master Feature#17303] Make webrick to bundled gems or remove from stdlib — hsbt@...
Issue #17303 has been reported by hsbt (Hiroshi SHIBATA).
11 messages
2020/11/02
[#100852] [Ruby master Feature#17326] Add Kernel#must! to the standard library — zimmerman.jake@...
SXNzdWUgIzE3MzI2IGhhcyBiZWVuIHJlcG9ydGVkIGJ5IGpleiAoSmFrZSBaaW1tZXJtYW4pLg0K
24 messages
2020/11/14
[#100930] [Ruby master Feature#17333] Enumerable#many? — masafumi.o1988@...
Issue #17333 has been reported by okuramasafumi (Masafumi OKURA).
10 messages
2020/11/18
[#101071] [Ruby master Feature#17342] Hash#fetch_set — hunter_spawn@...
Issue #17342 has been reported by MaxLap (Maxime Lapointe).
26 messages
2020/11/25
[ruby-core:101027] [Ruby master Bug#17335] load gem in ruby 2.6.6 extremely slow
From:
merch-redmine@...
Date:
2020-11-23 16:53:36 UTC
List:
ruby-core #101027
Issue #17335 has been updated by jeremyevans0 (Jeremy Evans). Status changed from Open to Feedback Can you please time each of the requires separately to see how much time each is taking, so we can see where the problem is? ---------------------------------------- Bug #17335: load gem in ruby 2.6.6 extremely slow https://bugs.ruby-lang.org/issues/17335#change-88700 * Author: paulHu (paul hu) * Status: Feedback * Priority: Normal * ruby -v: ruby 2.6.6p146 (2020-03-31 revision 67876) [x64-mingw32] * Backport: 2.5: UNKNOWN, 2.6: UNKNOWN, 2.7: UNKNOWN ---------------------------------------- my ruby app starts up extremely slow after I upgrade from ruby version 2.3.1 to 2.7.2. My app does load quite some gems (using "require") at startup. Following code would take 29 secs on my windows 10 PC. puts Time.now.to_s + ' require starts' require 'net/ssh' require 'tk' require 'tkextlib/tile' require 'thread' require 'json' require 'io/console' require 'csv' require 'tkextlib/tcllib/plotchart' require 'tkextlib/tktable' require 'socket' require 'tkextlib/tcllib.rb' require 'rubyXL' require 'rubyXL/convenience_methods' puts Time.now.to_s + ' require ends' -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>