WorryFree Computers   »   [go: up one dir, main page]

Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Long journey of Ruby standard library RubyKaigi 2024

Long journey of Ruby standard library RubyKaigi 2024

Hiroshi Shibata @hsbt
2025 年 5 月 15 日
RubyKaigi 2024
Ruby has a lot of standard libraries from Ruby 1.8. I promote them democratically with GitHub today via default and bundled gems. So, I'm working to extract them for Ruby 3.4 continuously and future versions. It's long journey for me.

After that, some versions may suddenly happen LoadError at require when running bundle exec or bin/rails, for example matrix or net-smtp. We need to learn what's difference default/bundled gems with standard libraries.

In this presentation, I will introduce what's the difficult to extract bundled gems from default gems and the details of the functionality that Ruby's require and bundle exec with default/bundled gems. You can learn how handle your issue about standard libraries.

ANDPAD inc

May 15, 2024
Tweet

More Decks by ANDPAD inc

Other Decks in Programming

Transcript

  1. Copyright © 2020 Present ANDPAD Inc. This information is confidential

    and was prepared by ANDPAD Inc. for the use of our client. It is not to be relied on by and 3rd party. Proprietary & Confidential ແஅసࡌɾແஅෳ੡ͷېࢭ
  2. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ History for rubygems and related services • 2003: Launch

    raa.ruby-lang.org and rubyforge.org • 2004: RubyGems is released • 2007: Ruby 1.9.0 is released with RubyGems 1.3 • 2009: Closed gems.github.com • 2009: Transition gemcutter.org and gems.rubyforge.org to rubygems.org • 2012-13: gemcutter utility has been merged into rubygems • 2013: Closed raa.ruby-lang.org • 2014: Closed rubyforge.org • 2014-: rubygems.org is canonical library repository for the Ruby language
  3. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ Classification of Standard library in 2024 Embedded Class •

    String • Time • ... Standard Library • URI • JSON • RSS • ... Ruby C extension • RbConfig • ... Pure Ruby Library • mkmf • ... Default Gems • JSON • URI • ... Bundled Gems • Racc • RSS • ...
  4. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ What's Default gems • The Ruby core team released

    "Default gems" to the rubygems.org. • You can install standard libraries of Ruby via RubyGems. • Default gems are openssl, psych, json, etc… You can see all of default gems at https://stdgems.org/ • Rubygems have a detection method for default gems. >> require 'rss' => true >> Gem.loaded_specs["rss"].default_gem? => false >> require 'openssl' => true >> Gem.loaded_specs["openssl"].default_gem? => true
  5. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ The major problem for the bundled gems If you

    use Bundler, you need to add the bundled gems into your Gem fi le. source "https://rubygems.org" gem “rss” # You need to this because rss is bundled gems # gem "openssl" # You can load openssl without this line gem "bigdecimal" # You need to this always after Ruby 3.4 … I need to consider to transition and migration plan for this. But I have no idea yet. Maybe, I will add the some mechanism to Bundler internal to care about this.
  6. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ Warning feature of bundled gems • I added warning

    feature about bundled gems. • You can see how handle bundled gems like this. module Gem::BUNDLED_GEMS SINCE = { "rexml" => "3.0.0", "rss" => "3.0.0", "webrick" => "3.0.0", "matrix" => "3.1.0", "net-ftp" => "3.1.0", "net-imap" => "3.1.0", "net-pop" => "3.1.0", "net-smtp" => "3.1.0", "prime" => "3.1.0", "abbrev" => "3.4.0", "base64" => "3.4.0", "bigdecimal" => "3.4.0", "csv" => "3.4.0", "drb" => "3.4.0", "getoptlong" => "3.4.0", "mutex_m" => "3.4.0", "nkf" => "3.4.0", "observer" => "3.4.0", "racc" => "3.4.0", "resolv-replace" => "3.4.0", "rinda" => "3.4.0", "syslog" => "3.4.0", }.freeze $ cat -p Gemfile source "https://rubygems.org" gem "rss" $ bundle exec irb >> require "csv" (irb):1: warning: csv which will no longer be part of the default gems since Ruby 3.4.0. Add csv to your Gemfile or gemspec. => true
  7. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ How extend require in your use case? We easily

    extend `require` like this. I only enabled this extension under the bundler. I added this to monkey patch collection of bundler. def replace_require(specs) return if [::Kernel.singleton_class, ::Kernel].any? {|klass| klass.respond_to?(:no_warning_require) } [::Kernel.singleton_class, ::Kernel].each do |kernel_class| kernel_class.send(:alias_method, :no_warning_require, :require) kernel_class.send(:define_method, :require) do |name| if message = ::Gem::BUNDLED_GEMS.warning?(name, specs: specs) warn message, :uplevel => 1 end kernel_class.send(:no_warning_require, name) end if kernel_class == ::Kernel kernel_class.send(:private, :require) else kernel_class.send(:public, :require) end end end
  8. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ Example case require "bundler/inline" gemfile do source "https://rubygems.org" end

    require "mutex_m" require "rss" test_warn_bundled_gems.rb:7: warning: mutex_m was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.4.0. Add mutex_m to your Gemfile or gemspec. test_warn_bundled_gems.rb:8: warning: rss was loaded from the standard library, but is not part of the default gems since Ruby 3.0.0. Add rss to your Gemfile or gemspec. /Users/hsbt/.local/share/rbenv/versions/3.3.0-dev/lib/ruby/3.3.0/ bundled_gems.rb:74:in `require': cannot load such file -- rss (LoadError) You can see these warning with this example Gemfile.
  9. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ Example case require "bundler/inline" gemfile do source "https://rubygems.org" gem

    "activesupport", "7.0.7.2" end require "active_support/all" /Users/hsbt/.local/share/gem/gems/activesupport-7.0.7.2/lib/ active_support/core_ext/big_decimal/conversions.rb:3: warning: bigdecimal was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.4.0. Add bigdecimal to your Gemfile or gemspec. Also contact author of activesupport-7.0.7.2 to add bigdecimal into its gemspec. We also care dependencies from gems like rails.
  10. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ Issue with bootsnap and Zeitwerk • Bootsnap and Zeitwerk

    also extend `require` • We can't detect that because `caller_locations` is difference. .../lib/ruby/3.3.0+0/bundled_gems.rb:90:in `warning?' .../lib/ruby/3.3.0+0/bundler/rubygems_integration.rb:247:in `block (2 levels) in replace_require' .../gem/gems/activesupport-7.0.7.2/lib/active_support/core_ext/big_decimal/conversions.rb • I detect caller by `caller_locations` like this. .../lib/ruby/3.3.0+0/bundled_gems.rb:90:in `warning?' .../lib/ruby/3.3.0+0/bundler/rubygems_integration.rb:247:in `block (2 levels) in replace_require' .../gems/bootsnap-1.17.0/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:32:in `require'" .../gem/gems/activesupport-7.0.7.2/lib/active_support/core_ext/big_decimal/conversions.rb
  11. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ Issue with bootsnap and Zeitwerk • I and byroot,

    fxn fixed these issues at ruby master. • We will backport them to Ruby 3.3.2. Stay tuned 🙏 require "csv" • Bootsnap expand require path to full path. require "/Users/hsbt/.local/share/rbenv/versions/3.3.0-dev/lib/ruby/3.3.0/csv" require "syslog" require "/Users/hsbt/.local/share/rbenv/versions/3.3.0-dev/lib/ruby/3.3.0/ arm64-darwin23/syslog"
  12. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ How extract default gems • Drop dependencies across default

    gems • We need to consider C extension like bigdecimal. • After extracting bigdecimal as bundled gems, you need to compile that in any place. • Some of poeple don't have build toolchain in their prod environment...
  13. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ What are notable features from 2023 • Changes of

    Standard libraries • readline-ext is retired • racc is now bundled gems • Changes of RubyGems and Bundler • Generate checksums • You can see them with `CHECKSUMS` section into your lockfile manually. • Bugfix! 🐛 Gemfile.lock
  14. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ Introduction of RBS • `bundle gem` introduced `sig` directory

    for rbs • We migrate rbs files to bundled gems from rbs gem class Prime include Enumerable include Singleton (snip) def each(ubound = nil, generator = EratosthenesGenerator.new, &block) generator.upper_bound = ubound generator.each(&block) end class Prime include Singleton include Enumerable[Integer] extend Enumerable[Integer] (...) def each: (?Integer? ubound, ? PseudoPrimeGenerator generator) { (Integer) -> void } -> void | (?Integer? ubound, ? PseudoPrimeGenerator generator) -> PseudoPrimeGenerator
  15. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ What's happend in RubyGems with C extension? RubyGems 3.4

    and 3.5 * GEM_HOME/extensions/arm64-darwin-23/3.2.0-static/bigdecimal-3.1.6/bigdecimal.bundle * GEM_HOME/gems/bigdecimal-3.1.6/lib/bigdecimal.bundle < RubyGems 3.4 * GEM_HOME/gems/bigdecimal-3.1.6/ext/bigdecimal/bigdecimal.bundle RubyGems will install C extension into the following directories. RubyGems added extension and lib directories to require_paths both. This means we can avoid to install C extension to under lib directory. >> Gem.loaded_specs["bigdecimal"].require_paths => ["/Users/hsbt/.local/share/gem/extensions/arm64-darwin-23/3.3.0-static/bigdecimal-3.1.6", "lib"]
  16. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ We considered namespace feature with RubyGems and Bundler I

    already make it with opt-in configuration for RubyGems 3.6. You can skip to install C extension Under the `lib` directory like this. gem: "--no-document" :install_extension_in_lib: false gemsrc_use_ghq: true
  17. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ Activation issue of default gems We still have a

    activation issue with RubyGems and the default gems like `json`. How handle this problem? You have already activated timeout 0.3.1, but your Gemfile requires timeout 0.3.2. Since timeout is a default gem, you can either remove your dependency on it or try updating to a newer version of bundler that supports timeout as a default gem.
  18. $PQZSJHIU˜1SFTFOU"/%1"%*OD5IJTJOGPSNBUJPOJTDPOGJEFOUJBMBOEXBTQSFQBSFECZ"/%1"%*ODGPSUIFVTFPGPVSDMJFOU*UJTOPUUPCFSFMJFEPOCZBOESEQBSUZ1SPQSJFUBSZ$POGJEFOUJBMແஅసࡌɾແஅෳ੡ͷېࢭ We considered namespace feature with RubyGems and Bundler tagomoris-san

    proposed namespace feature for package system of Ruby. It may help our activation problem. Ex. RubyGems and Bundler will use JSON under only their namespace. You can activate any version of JSON on your application.