Skip to content

Instantly share code, notes, and snippets.

@taketo1113
Last active September 18, 2024 15:18
Show Gist options
  • Save taketo1113/b2dc7b06233f9f40fad1d5af5a80f29b to your computer and use it in GitHub Desktop.
Save taketo1113/b2dc7b06233f9f40fad1d5af5a80f29b to your computer and use it in GitHub Desktop.
ERROR: Failed to build gem native extension (macOS 14.7 / ruby-build 20240917)

ERROR: Failed to build gem native extension

Environment

  • Mac mini (Apple M1)
  • OS: macOS 14.7
  • ruby: ruby 3.3.4 (2024-07-09 revision be1089c8ec) [arm64-darwin23]
  • ruby-build: ruby-build 20240917 (homebrew)

Error Details: gem install

# Gemfile
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

gem "unf_ext"
$ bundle install --path tmp
[DEPRECATED] The `--path` flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please use `bundle config set path 'tmp'`, and stop using this flag
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching unf_ext 0.0.9.1
Installing unf_ext 0.0.9.1 with native extensions
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

    current directory: /Users/taketo/tmp/hoge/tmp/ruby/3.3.0/gems/unf_ext-0.0.9.1/ext/unf_ext
/Users/taketo/.rbenv/versions/3.3.4/bin/ruby extconf.rb
checking for -lstdc++... yes
creating Makefile

current directory: /Users/taketo/tmp/hoge/tmp/ruby/3.3.0/gems/unf_ext-0.0.9.1/ext/unf_ext
make DESTDIR\= sitearchdir\=./.gem.20240918-54275-bc6g24 sitelibdir\=./.gem.20240918-54275-bc6g24 clean

current directory: /Users/taketo/tmp/hoge/tmp/ruby/3.3.0/gems/unf_ext-0.0.9.1/ext/unf_ext
make DESTDIR\= sitearchdir\=./.gem.20240918-54275-bc6g24 sitelibdir\=./.gem.20240918-54275-bc6g24
compiling unf.cc
make: *** [unf.o] Error 1

make failed, exit code 2

Gem files will remain installed in /Users/taketo/tmp/hoge/tmp/ruby/3.3.0/gems/unf_ext-0.0.9.1 for inspection.
Results logged to /Users/taketo/tmp/hoge/tmp/ruby/3.3.0/extensions/arm64-darwin-23/3.3.0/unf_ext-0.0.9.1/gem_make.out

  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/rubygems/ext/builder.rb:125:in `run'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/rubygems/ext/builder.rb:51:in `block in make'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/rubygems/ext/builder.rb:43:in `each'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/rubygems/ext/builder.rb:43:in `make'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/rubygems/ext/ext_conf_builder.rb:42:in `build'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/rubygems/ext/builder.rb:193:in `build_extension'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/rubygems/ext/builder.rb:227:in `block in build_extensions'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/rubygems/ext/builder.rb:224:in `each'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/rubygems/ext/builder.rb:224:in `build_extensions'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/rubygems/installer.rb:852:in `build_extensions'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/bundler/rubygems_gem_installer.rb:76:in `build_extensions'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/bundler/rubygems_gem_installer.rb:28:in `install'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/bundler/source/rubygems.rb:206:in `install'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/bundler/installer/gem_installer.rb:54:in `install'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/bundler/installer/gem_installer.rb:16:in `install_from_spec'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/bundler/installer/parallel_installer.rb:132:in `do_install'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/bundler/installer/parallel_installer.rb:123:in `block in worker_pool'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/bundler/worker.rb:62:in `apply_func'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/bundler/worker.rb:57:in `block in process_queue'
  <internal:kernel>:187:in `loop'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/bundler/worker.rb:54:in `process_queue'
  /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/bundler/worker.rb:90:in `block (2 levels) in create_threads'

An error occurred while installing unf_ext (0.0.9.1), and Bundler cannot continue.

In Gemfile:
  unf_ext

Steps to reproduce

$ ruby-build --version
ruby-build 20240917

$ openssl version
OpenSSL 3.3.2 3 Sep 2024 (Library: OpenSSL 3.3.2 3 Sep 2024)

$ rbenv install -f 3.3.4
$ ruby -v
ruby 3.3.4 (2024-07-09 revision be1089c8ec) [arm64-darwin23]

ruby build option

CONFIG['CXX'] returns false when fail to build gem native extension.

It returns clang++ when success to build .

$ irb
irb(main):001> require 'mkmf'
=> true
irb(main):002> CONFIG['CXX']
=> "false"

ruby-build

ruby-build occurs CXXFLAGS is not valid, when fail to build gem native extension.

$ rbenv install -f -v 3.3.4
...
checking whether CXXFLAGS is valid... no
configure: WARNING: something wrong with CXXFLAGS="-fdeclspec"
cd /var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU
==> Downloading ruby-3.3.4.tar.gz...
-> curl -q -fL -o ruby-3.3.4.tar.gz https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.4.tar.gz
-> tar xzf ruby-3.3.4.tar.gz
cd /var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4
==> Installing ruby-3.3.4...
-> ./configure "--prefix=$HOME/.rbenv/versions/3.3.4" --with-openssl-dir=/opt/homebrew/opt/openssl@3 --enable-shared --with-libyaml-dir=/opt/homebrew/opt/libyaml --with-gmp-dir=/opt/homebrew/opt/gmp --with-ext=openssl,psych,+
checking for ruby... /Users/taketo/.rbenv/shims/ruby
tool/config.guess already exists
tool/config.sub already exists
checking build system type... aarch64-apple-darwin23.6.0
checking host system type... aarch64-apple-darwin23.6.0
checking target system type... aarch64-apple-darwin23.6.0
checking for ld... ld
checking for ar... ar
checking for clang++... clang++
checking for nm... nm
checking for objcopy... no
checking for objdump... objdump
checking for ranlib... ranlib
checking for strip... strip
checking for gcc... clang
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether clang accepts -g... yes
checking for clang option to enable C11 features... none needed
checking whether the compiler supports GNU C++... yes
checking whether clang++ accepts -g... yes
checking for clang++ option to enable C++11 features... none needed
checking how to run the C preprocessor... clang -E
checking for gas... no
checking for as... as
checking for gobjcopy... (cached) :
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for wchar.h... yes
checking for minix/config.h... no
checking for vfork.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking if minimum required OS X version is supported... yes
checking whether the linker is GNU ld... no
checking whether clang -E accepts -o... yes
checking for real target cpu... arm64
checking arch option... -arch arm64
checking for ar flags... rcu
checking whether ln -s works... yes
checking whether make sets $(MAKE)... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for a race-free mkdir -p... mkdir -p
checking for dtrace... dtrace
checking for dot... dot
checking for doxygen... no
checking for pkg-config... pkg-config
checking whether it is Android... no
checking for cd using physical directory... cd -P
checking whether CFLAGS is valid... yes
checking whether LDFLAGS is valid... yes
checking whether ELF binaries are produced... no
checking whether -Wl,-rpath,. is accepted as LDFLAGS... yes
checking whether -fdeclspec is accepted as LDFLAGS... yes
checking whether -fdeclspec is accepted as CXXFLAGS... yes
checking whether -Wextra-tokens is accepted as CFLAGS... yes
checking whether -Wdeprecated-declarations is accepted as CFLAGS... yes
checking whether -Wdivision-by-zero is accepted as CFLAGS... yes
checking whether -Wdiv-by-zero is accepted as CFLAGS... yes
checking whether -Wduplicated-cond is accepted as CFLAGS... no
checking whether -Wimplicit-function-declaration is accepted as CFLAGS... yes
checking whether -Wimplicit-int is accepted as CFLAGS... yes
checking whether -Wpointer-arith is accepted as CFLAGS... yes
checking whether -Wshorten-64-to-32 is accepted as CFLAGS... yes
checking whether -Wwrite-strings is accepted as CFLAGS... yes
checking whether -Wold-style-definition is accepted as CFLAGS... yes
checking whether -Wimplicit-fallthrough=0 is accepted as CFLAGS... no
checking whether -Wmissing-noreturn is accepted as CFLAGS... yes
checking whether -Wno-cast-function-type is accepted as CFLAGS... yes
checking whether -Wno-constant-logical-operand is accepted as CFLAGS... yes
checking whether -Wno-long-long is accepted as CFLAGS... yes
checking whether -Wno-missing-field-initializers is accepted as CFLAGS... yes
checking whether -Wno-overlength-strings is accepted as CFLAGS... yes
checking whether -Wno-packed-bitfield-compat is accepted as CFLAGS... no
checking whether -Wno-parentheses-equality is accepted as CFLAGS... yes
checking whether -Wno-self-assign is accepted as CFLAGS... yes
checking whether -Wno-tautological-compare is accepted as CFLAGS... yes
checking whether -Wno-unused-parameter is accepted as CFLAGS... yes
checking whether -Wno-unused-value is accepted as CFLAGS... yes
checking whether -Wsuggest-attribute=format is accepted as CFLAGS... no
checking whether -Wsuggest-attribute=noreturn is accepted as CFLAGS... no
checking whether -Wunused-variable is accepted as CFLAGS... yes
checking whether -diag-disable=175,188,1684,2259,2312 is accepted as CFLAGS... no
checking whether -Wno-maybe-uninitialized is accepted as CFLAGS... no
checking whether -Wmisleading-indentation is accepted as CFLAGS... yes
checking whether -Wundef is accepted as CFLAGS... yes
checking whether -Wall -Wextra is accepted as CFLAGS... yes
checking whether -Qunused-arguments is accepted as CFLAGS... yes
checking whether -O3 -D_FORTIFY_SOURCE=2 is accepted as CFLAGS... yes
checking whether -fstack-protector-strong is accepted as CFLAGS... yes
checking whether -fstack-protector-strong is accepted as LDFLAGS... yes
checking for -fstack-protector... -fstack-protector-strong
checking whether -Wl,--compress-debug-sections=zlib is accepted as LDFLAGS... no
checking whether -fno-strict-overflow is accepted as CFLAGS... yes
checking whether -ggdb3 is accepted as CFLAGS... yes
checking whether -fvisibility=hidden is accepted as CFLAGS... yes
checking whether -fno-fast-math is accepted as CFLAGS... yes
checking whether -fexcess-precision=standard is accepted as CFLAGS... yes
checking whether -fp-model precise is accepted as CFLAGS... no
checking whether compiler has statement and declarations in expressions... yes
checking for pthread.h... yes
checking for pthread_create in -lthr... no
checking for pthread_create in -lpthread... yes
checking for pthread_np.h... no
checking thread model... pthread
checking whether syscall(2) is deprecated... yes
checking for broken crypt with 8bit chars... yes
checking for codesign... codesign
checking for dsymutil... dsymutil
checking for crt_externs.h... yes
checking whether CXXFLAGS is valid... no
configure: WARNING: something wrong with CXXFLAGS="-fdeclspec"
checking for crypt in -lcrypt... (cached) no
checking for dlopen in -ldl... yes
checking for shutdown in -lsocket... no
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for _Bool... yes
checking for stdbool.h that conforms to C99... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for afunix.h... no
checking for atomic.h... no
checking for copyfile.h... yes
checking for direct.h... no
checking for grp.h... yes
checking for fcntl.h... yes
checking for float.h... yes
checking for ieeefp.h... no
checking for intrinsics.h... no
checking for langinfo.h... yes
checking for limits.h... yes
checking for locale.h... yes
checking for malloc.h... no
checking for malloc/malloc.h... yes
checking for malloc_np.h... no
checking for net/socket.h... no
checking for process.h... no
checking for pwd.h... yes
checking for sanitizer/asan_interface.h... yes
checking for sanitizer/msan_interface.h... yes
checking for setjmpex.h... no
checking for stdalign.h... yes
checking for stdio.h... (cached) yes
checking for sys/attr.h... yes
checking for sys/eventfd.h... no
checking for sys/fcntl.h... yes
checking for sys/file.h... yes
checking for sys/id.h... no
checking for sys/ioctl.h... yes
checking for sys/mkdev.h... no
checking for sys/param.h... yes
checking for sys/prctl.h... no
checking for sys/random.h... yes
checking for sys/resource.h... yes
checking for sys/select.h... yes
checking for sys/sendfile.h... no
checking for sys/socket.h... yes
checking for sys/syscall.h... (cached) no
checking for sys/sysmacros.h... no
checking for sys/time.h... yes
checking for sys/times.h... yes
checking for sys/uio.h... yes
checking for sys/utime.h... no
checking for syscall.h... (cached) no
checking for time.h... yes
checking for ucontext.h... yes
checking for utime.h... yes
checking for sys/epoll.h... no
checking for sys/event.h... yes
checking for stdatomic.h... yes
checking for gmp.h... yes
checking for library containing __gmpz_init... -lgmp
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking whether byte ordering is bigendian... no
checking for an ANSI C-conforming const... yes
checking whether char is unsigned... no
checking for inline... inline
checking for working volatile... yes
checking for typeof syntax and keyword spelling... typeof
checking for C/C++ restrict keyword... __restrict__
checking for long long... yes
checking for off_t... yes
checking char bit... 8
checking size of int... 4
checking size of short... 2
checking size of long... 8
checking size of long long... 8
checking size of __int64... 0
checking size of __int128... 16
checking size of off_t... 8
checking size of void*... 8
checking size of float... 4
checking size of double... 8
checking size of time_t... 8
checking size of clock_t... 8
checking word size... 8
checking packed struct attribute... x __attribute__((packed))
checking whether -Wno-address-of-packed-member is accepted as CFLAGS... yes
checking for printf prefix for long long... ll
checking for pid_t... yes
checking for convertible type of pid_t... INT
checking for uid_t... yes
checking for convertible type of uid_t... UINT
checking for gid_t... yes
checking for convertible type of gid_t... UINT
checking for time_t... yes
checking for convertible type of time_t... LONG
checking for dev_t... yes
checking for convertible type of dev_t... INT
checking for mode_t... yes
checking for convertible type of mode_t... USHORT
checking for rlim_t... yes
checking for convertible type of rlim_t... ULL
checking for off_t... (cached) yes
checking for convertible type of off_t... LL
checking for clockid_t... yes
checking for convertible type of clockid_t... UINT
checking for variable length macro... yes
checking if _Alignof() works... yes
checking for CONSTFUNC function attribute... __attribute__ ((__const__)) x
checking for PUREFUNC function attribute... __attribute__ ((__pure__)) x
checking for NORETURN function attribute... __attribute__ ((__noreturn__)) x
checking for DEPRECATED function attribute... __attribute__ ((__deprecated__)) x
checking for DEPRECATED_BY function attribute... __attribute__ ((__deprecated__("by "#n))) x
checking for NOINLINE function attribute... __attribute__ ((__noinline__)) x
checking for ALWAYS_INLINE function attribute... __attribute__ ((__always_inline__)) x
checking for NO_SANITIZE function attribute... __attribute__ ((__no_sanitize__(san))) x
checking for NO_SANITIZE_ADDRESS function attribute... __attribute__ ((__no_sanitize_address__)) x
checking for NO_ADDRESS_SAFETY_ANALYSIS function attribute... __attribute__ ((__no_address_safety_analysis__)) x
checking for WARN_UNUSED_RESULT function attribute... __attribute__ ((__warn_unused_result__)) x
checking for MAYBE_UNUSED function attribute... __attribute__ ((__unused__)) x
checking for ERRORFUNC function attribute... __attribute__ ((__error__ mesg)) x
checking for WARNINGFUNC function attribute... __attribute__ ((__warning__ mesg)) x
checking for WEAK function attribute... __attribute__ ((__weak__)) x
checking for __attribute__((__depreacted__(msg))) in C++... no
checking for std::nullptr_t... no
checking for FUNC_STDCALL function attribute... x
checking for FUNC_CDECL function attribute... __attribute__ ((__cdecl__)) x
checking for FUNC_FASTCALL function attribute... x
checking for FUNC_UNOPTIMIZED function attribute... x
checking for FUNC_MINIMIZED function attribute... x
checking for function alias... no
checking for __atomic builtins... yes
checking for __sync builtins... yes
checking for __builtin_unreachable... yes
checking for __assume... no
checking for exported function attribute... __attribute__ ((__visibility__("default")))
checking for RUBY_FUNC_NONNULL function attribute... __attribute__ ((__nonnull__(n))) x
checking for function name string predefined identifier... __func__
checking if enum over int is allowed... yes
checking for clang options needed to detect all undeclared functions... none needed
checking whether sys_nerr is declared... yes
checking whether getenv is declared... yes
checking for size_t... yes
checking size of size_t... 8
checking size of ptrdiff_t... 8
checking size of dev_t... 4
checking for printf prefix for size_t... z
checking for printf prefix for ptrdiff_t... t
checking for struct stat.st_blksize... yes
checking for struct stat.st_blocks... yes
checking for struct stat.st_rdev... yes
checking size of struct stat.st_size... SIZEOF_OFF_T
checking size of struct stat.st_blocks... SIZEOF_OFF_T
checking size of struct stat.st_ino... SIZEOF_LONG
checking size of struct stat.st_dev... SIZEOF_DEV_T
checking size of struct stat.st_rdev... SIZEOF_DEV_T
checking for struct stat.st_atim... no
checking for struct stat.st_atimespec... yes
checking for struct stat.st_atimensec... no
checking for struct stat.st_mtim... no
checking for struct stat.st_mtimespec... yes
checking for struct stat.st_mtimensec... no
checking for struct stat.st_ctim... no
checking for struct stat.st_ctimespec... yes
checking for struct stat.st_ctimensec... no
checking for struct stat.st_birthtimespec... yes
checking for struct timeval... yes
checking size of struct timeval.tv_sec... SIZEOF_TIME_T
checking for struct timespec... yes
checking for struct timezone... yes
checking for fd_mask... yes
checking for int8_t... yes
checking size of int8_t... 1
checking for uint8_t... yes
checking size of uint8_t... 1
checking for int16_t... yes
checking size of int16_t... 2
checking for uint16_t... yes
checking size of uint16_t... 2
checking for int32_t... yes
checking size of int32_t... 4
checking for uint32_t... yes
checking size of uint32_t... 4
checking for int64_t... yes
checking size of int64_t... 8
checking for uint64_t... yes
checking size of uint64_t... 8
checking for int128_t... __int128
checking for uint128_t... unsigned __int128
checking for intptr_t... yes
checking size of intptr_t... 8
checking for uintptr_t... yes
checking size of uintptr_t... 8
checking for printf prefix for intptr_t... l
checking for ssize_t... yes
checking size of ssize_t... 8
checking for printf prefix for int64_t... ll
checking for stack end address... no
checking for grep that handles long lines and -e... /opt/homebrew/bin/ggrep
checking for egrep... /opt/homebrew/bin/ggrep -E
checking for uid_t in sys/types.h... (cached) yes
checking type of array argument to getgroups... (cached) gid_t
checking for working alloca.h... yes
checking for alloca... yes
checking for dynamic size alloca... ok
checking for working memcmp... yes
checking for dup... yes
checking for dup2... yes
checking for acosh... yes
checking for cbrt... yes
checking for crypt... yes
checking for erf... yes
checking for explicit_bzero... no
checking for ffs... yes
checking for flock... yes
checking for hypot... yes
checking for lgamma_r... yes
checking for memmove... yes
checking for nan... yes
checking for nextafter... yes
checking for setproctitle... no
checking for strchr... yes
checking for strerror... yes
checking for strlcat... yes
checking for strlcpy... yes
checking for strstr... yes
checking for tgamma... yes
checking for sys/pstat.h... no
checking for pid_t... (cached) yes
checking for fork... yes
checking for vfork... (cached) no
checking for working fork... yes
checking for __syscall... (cached) no
checking for _longjmp... yes
checking for arc4random_buf... yes
checking for atan2l... yes
checking for atan2f... yes
checking whether atomic_signal_fence is declared... yes
checking for chmod... yes
checking for chown... yes
checking for chroot... yes
checking for chsize... no
checking for clock_gettime... yes
checking for copy_file_range... no
checking for cosh... yes
checking for crypt_r... no
checking for daemon... (cached) no
checking for dirfd... yes
checking for dl_iterate_phdr... no
checking for dlopen... yes
checking for dladdr... yes
checking for dup3... no
checking for eaccess... no
checking for endgrent... yes
checking for eventfd... no
checking for execl... yes
checking for execle... yes
checking for execv... yes
checking for execve... yes
checking for explicit_memset... no
checking for fcopyfile... yes
checking for fchdir... yes
checking for fchmod... yes
checking for fchown... yes
checking for fcntl... yes
checking for fdatasync... (cached) no
checking for fdopendir... yes
checking for fgetattrlist... yes
checking for fmod... yes
checking for fstatat... yes
checking for fsync... yes
checking for ftruncate... yes
checking for ftruncate64... no
checking for getattrlist... yes
checking for getcwd... yes
checking for getegid... yes
checking for getentropy... yes
checking for geteuid... yes
checking for getgid... yes
checking for getgidx... no
checking for getgrnam... yes
checking for getgrnam_r... yes
checking for getgroups... yes
checking for getlogin... yes
checking for getlogin_r... yes
checking for getpgid... yes
checking for getpgrp... yes
checking for getppid... yes
checking for getpriority... yes
checking for getpwnam... yes
checking for getpwnam_r... yes
checking for getpwuid... yes
checking for getpwuid_r... yes
checking for getrandom... no
checking for getresgid... no
checking for getresuid... no
checking for getrlimit... yes
checking for getsid... yes
checking for gettimeofday... yes
checking for getuid... yes
checking for getuidx... no
checking for gmtime_r... yes
checking for grantpt... yes
checking for initgroups... yes
checking for ioctl... yes
checking for isfinite... no
checking for issetugid... yes
checking for kill... yes
checking for killpg... yes
checking for lchmod... yes
checking for lchown... yes
checking for link... yes
checking for llabs... yes
checking for lockf... yes
checking for log2... yes
checking for lstat... yes
checking for lutimes... yes
checking for malloc_usable_size... no
checking for malloc_size... yes
checking for malloc_trim... no
checking for mblen... yes
checking for memalign... no
checking for memset_s... yes
checking for writev... yes
checking for memrchr... no
checking for memmem... yes
checking for mkfifo... yes
checking for mknod... yes
checking for mktime... yes
checking for mmap... yes
checking for mremap... no
checking for openat... yes
checking for pclose... yes
checking for pipe... yes
checking for pipe2... no
checking for poll... yes
checking for popen... yes
checking for posix_fadvise... no
checking for posix_madvise... yes
checking for posix_memalign... yes
checking for ppoll... no
checking for pread... yes
checking for pwrite... yes
checking for qsort_r... yes
checking for qsort_s... no
checking for readlink... yes
checking for realpath... yes
checking for round... yes
checking for sched_getaffinity... no
checking for seekdir... yes
checking for select_large_fdset... no
checking for sendfile... yes
checking for setegid... yes
checking for setenv... yes
checking for seteuid... yes
checking for setgid... yes
checking for setgroups... yes
checking for setpgid... yes
checking for setpgrp... yes
checking for setregid... yes
checking for setresgid... no
checking for setresuid... no
checking for setreuid... yes
checking for setrgid... yes
checking for setrlimit... yes
checking for setruid... yes
checking for setsid... yes
checking for setuid... yes
checking for shutdown... yes
checking for sigaction... yes
checking for sigaltstack... yes
checking for sigprocmask... yes
checking for sinh... yes
checking for snprintf... yes
checking for spawnv... no
checking for symlink... yes
checking for syscall... (cached) no
checking for sysconf... yes
checking for system... yes
checking for tanh... yes
checking for telldir... yes
checking for timegm... yes
checking for times... yes
checking for truncate... yes
checking for truncate64... no
checking for tzset... yes
checking for umask... yes
checking for unsetenv... yes
checking for utimensat... yes
checking for utimes... yes
checking for wait4... yes
checking for waitpid... yes
checking for __cospi... yes
checking for __sinpi... yes
checking if getcwd allocates buffer if NULL is given... yes
checking for __builtin_alloca_with_align... yes
checking for __builtin_assume_aligned... yes
checking for __builtin_bswap16... yes
checking for __builtin_bswap32... yes
checking for __builtin_bswap64... yes
checking for __builtin_popcount... yes
checking for __builtin_popcountll... yes
checking for __builtin_clz... yes
checking for __builtin_clzl... yes
checking for __builtin_clzll... yes
checking for __builtin_ctz... yes
checking for __builtin_ctzll... yes
checking for __builtin_add_overflow... yes
checking for __builtin_sub_overflow... yes
checking for __builtin_mul_overflow... yes
checking for __builtin_mul_overflow_p... no
checking for __builtin_constant_p... yes
checking for __builtin_choose_expr... yes
checking for __builtin_choose_expr_constant_p... yes
checking for __builtin_types_compatible_p... yes
checking for __builtin_trap... yes
checking for __builtin_expect... yes
checking for __builtin_mul_overflow with long long arguments... yes
checking whether qsort_r is GNU version... no
checking whether qsort_r is BSD version... yes
checking whether atan2 handles Inf as C99... yes
checking for clock_getres... yes
checking for timer_create in -lrt... no
checking for timer_settime in -lrt... no
checking for unsetenv returns a value... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for struct tm.tm_gmtoff... yes
checking for external int daylight... yes
checking for negative time_t for gmtime(3)... yes
checking for localtime(3) overflow correctly... yes
checking for sig_t... yes
checking whether right shift preserve sign bit... yes
checking for copy_file_range... no
checking whether _SC_CLK_TCK is supported... yes
checking stack growing direction on arm64... -1
checking native coroutine implementation for arm64-darwin23... arm64
checking whether pthread_t is scalar type... yes
checking for sched_yield... yes
checking for pthread_attr_setinheritsched... yes
checking for pthread_attr_get_np... no
checking for pthread_attr_getstack... yes
checking for pthread_attr_getguardsize... yes
checking for pthread_get_stackaddr_np... yes
checking for pthread_get_stacksize_np... yes
checking for thr_stksegment... no
checking for pthread_stackseg_np... no
checking for pthread_getthrds_np... no
checking for pthread_condattr_setclock... no
checking for pthread_setname_np... yes
checking for pthread_set_name_np... no
checking for pthread_sigmask... yes
checking for pthread_getattr_np... no
checking arguments of pthread_setname_np... (name)
checking for thread-local storage sepcifier... _Thread_local
checking if mcontext_t is a pointer... yes
checking for getcontext... (cached) no
checking for setcontext... (cached) no
checking if fork works with pthread... yes
checking for sys/user.h... yes
checking whether PAGE_SIZE is compile-time const... no
checking ioctl request type... unsigned long
checking for mach-o/loader.h... yes
checking whether OS depend dynamic link works... yes
checking whether -Wl,-multiply_defined,suppress is accepted as LDFLAGS... no
checking whether -Wl,-undefined,dynamic_lookup is accepted as LDFLAGS... yes
checking whether -Wl,-undefined,dynamic_lookup is accepted for bundle... yes
checking for libproc.h... yes
checking for execinfo.h... yes
checking for backtrace in -lexecinfo... no
checking for libunwind.h... yes
checking for mach/task.h... yes
checking for mach/mach_init.h... yes
checking for mach/mach_port.h... yes
checking for backtrace... yes
checking for broken backtrace... yes
checking for valgrind/memcheck.h... no
checking for strip flags... -A -n
checking whether -Wl,--no-as-needed is accepted as LDFLAGS... no
checking whether -Wl,--no-undefined is accepted as LDFLAGS... no
checking whether wrapper for DYLD_LIBRARY_PATH is needed... yes
checking whether dtrace USDT is available... yes(-xnolibs)
checking whether dtrace needs post processing... no
checking for __builtin_setjmp... (cached) no
checking for _setjmpex as a macro or function... no
checking for _setjmp as a macro or function... yes
checking for sigsetjmp as a macro or function... yes
checking for setjmp type... sigsetjmp,0
checking for rustc... rustc
checking whether rustc works for YJIT... yes
checking for prefix of external symbols... _
checking for default symbols in empty shared library...
checking whether Security framework is needed... no
checking if make is GNU make... yes
.ext/include/arm64-darwin23/ruby/config.h updated
configure: ruby library version = 3.3.0
configure: creating ./config.status
config.status: creating GNUmakefile
config.status: creating Makefile
---
Configuration summary for ruby version 3.3.4
* Installation prefix: /Users/taketo/.rbenv/versions/3.3.4
* exec prefix: ${prefix}
* arch: arm64-darwin23
* site arch: ${arch}
* RUBY_BASE_NAME: ruby
* enable shared: yes
* ruby lib prefix: ${libdir}/${RUBY_BASE_NAME}
* site libraries path: ${rubylibprefix}/${sitearch}
* vendor path: ${rubylibprefix}/vendor_ruby
* target OS: darwin23
* compiler: clang
* with thread: pthread
* with coroutine: arm64
* enable shared libs: yes
* dynamic library ext: bundle
* CFLAGS: -fdeclspec ${optflags} ${debugflags} ${warnflags}
* LDFLAGS: -L. -fstack-protector-strong \
-L/opt/homebrew/opt/gmp/lib
* DLDFLAGS: -L/opt/homebrew/opt/gmp/lib \
-Wl,-undefined,dynamic_lookup
* optflags: -O3 -fno-fast-math
* debugflags: -ggdb3
* warnflags: -Wall -Wextra -Wextra-tokens \
-Wdeprecated-declarations -Wdivision-by-zero \
-Wdiv-by-zero -Wimplicit-function-declaration \
-Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 \
-Wwrite-strings -Wold-style-definition \
-Wmissing-noreturn -Wno-cast-function-type \
-Wno-constant-logical-operand -Wno-long-long \
-Wno-missing-field-initializers \
-Wno-overlength-strings -Wno-parentheses-equality \
-Wno-self-assign -Wno-tautological-compare \
-Wno-unused-parameter -Wno-unused-value \
-Wunused-variable -Wmisleading-indentation -Wundef
* strip command: strip -A -n
* install doc: rdoc
* YJIT support: yes
* RJIT support: yes
* man page type: doc
* BASERUBY -v: ruby 2.6.10p210 (2022-04-12 revision 67958) \
[universal.arm64e-darwin23]
---
-> make -j 8
file2lastrev.rb: does not seem to be under a vcs: .
BASERUBY = /Users/taketo/.rbenv/shims/ruby --disable=gems
CC = clang
LD = ld
LDSHARED = clang -dynamiclib
CFLAGS = -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wextra-tokens -Wdeprecated-declarations -Wdivision-by-zero -Wdiv-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wmisleading-indentation -Wundef -fno-common -pipe -arch arm64
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/arm64-darwin23 -I./include -I. -I./prism -I./enc/unicode/15.0.0 -I/opt/homebrew/opt/gmp/include
CPPFLAGS = -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT
DLDFLAGS = -L/opt/homebrew/opt/gmp/lib -Wl,-undefined,dynamic_lookup -install_name /Users/taketo/.rbenv/versions/3.3.4/lib/libruby.3.3.dylib -compatibility_version 3.3 -current_version 3.3.4 -fstack-protector-strong -framework CoreFoundation -fstack-protector-strong -framework CoreFoundation -arch arm64
SOLIBS = -lgmp -ldl -lobjc -lpthread
LANG = ja_JP.UTF-8
LC_ALL =
LC_CTYPE =
MFLAGS = - --jobserver-fds=5,6 -j
RUSTC = rustc
YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/yjit/target/release/' ./yjit/src/lib.rs
Apple clang version 16.0.0 (clang-1600.0.26.3)
Target: arm64-apple-darwin23.6.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
compiling ./main.c
compiling dmydln.c
compiling miniinit.c
compiling dmyext.c
translating probes probes.d
compiling ast.c
compiling bignum.c
compiling class.c
compiling compar.c
. ./vm_opts.h
compiling compile.c
compiling complex.c
compiling cont.c
compiling debug.c
compiling debug_counter.c
compiling dir.c
compiling dln_find.c
compiling encoding.c
compiling enum.c
compiling enumerator.c
compiling error.c
compiling eval.c
compiling file.c
compiling gc.c
compiling hash.c
compiling inits.c
compiling io.c
compiling io_buffer.c
compiling iseq.c
compiling load.c
compiling marshal.c
compiling math.c
compiling memory_view.c
compiling rjit.c
compiling rjit_c.c
compiling node.c
compiling node_dump.c
compiling numeric.c
compiling object.c
compiling pack.c
compiling parse.c
compiling parser_st.c
compiling proc.c
compiling process.c
compiling ractor.c
compiling random.c
compiling range.c
compiling rational.c
compiling re.c
compiling regcomp.c
compiling regenc.c
compiling regerror.c
compiling regexec.c
compiling regparse.c
compiling regsyntax.c
compiling ruby.c
compiling ruby_parser.c
compiling scheduler.c
compiling shape.c
compiling signal.c
compiling sprintf.c
compiling st.c
compiling strftime.c
compiling string.c
compiling struct.c
compiling symbol.c
compiling thread.c
compiling time.c
compiling transcode.c
compiling util.c
compiling variable.c
compiling vm.c
compiling vm_backtrace.c
revision.h unchanged
compiling vm_dump.c
compiling vm_sync.c
compiling vm_trace.c
compiling weakmap.c
compiling yjit.c
building Rust YJIT (release mode)
compiling ./missing/explicit_bzero.c
compiling ./missing/setproctitle.c
compiling addr2line.c
compiling dmyenc.c
compiling dln.c
compiling localeinit.c
compiling array.c
compiling version.c
compiling prism/api_node.c
compiling prism/api_pack.c
compiling prism/diagnostic.c
/bin/sh ./tool/ifchange "--timestamp=.rbconfig.time" rbconfig.rb rbconfig.tmp
rbconfig.rb updated
compiling prism/encoding.c
compiling prism/extension.c
compiling prism/node.c
compiling prism/options.c
compiling prism/pack.c
compiling prism/prettyprint.c
compiling prism/regexp.c
compiling prism/serialize.c
compiling prism/token_type.c
compiling prism/util/pm_buffer.c
compiling prism/util/pm_char.c
compiling prism/util/pm_constant_pool.c
compiling prism/util/pm_list.c
compiling prism/util/pm_memchr.c
compiling prism/util/pm_newline_list.c
compiling prism/util/pm_state_stack.c
compiling prism/util/pm_string.c
compiling prism/util/pm_string_list.c
compiling prism/util/pm_strncasecmp.c
compiling prism/util/pm_strpbrk.c
compiling prism/prism.c
compiling prism_init.c
assembling coroutine/arm64/Context.S
compiling enc/ascii.c
compiling enc/us_ascii.c
compiling enc/unicode.c
compiling enc/utf_8.c
compiling enc/trans/newline.c
generating encdb.h
generating arm64-darwin23-fake.rb
creating verconf.h
encdb.h updated
warning: this method call resolves to `<&Box<[T]> as IntoIterator>::into_iter` (due to backwards compatibility), but will resolve to `<Box<[T]> as IntoIterator>::into_iter` in Rust 2024
--> ./yjit/src/core.rs:982:49
|
982 | formatter.debug_list().entries(branches.into_iter()).finish()
| ^^^^^^^^^
|
= warning: this changes meaning in Rust 2024
= note: `#[warn(boxed_slice_into_iter)]` on by default
help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
|
982 | formatter.debug_list().entries(branches.iter()).finish()
| ~~~~
help: or use `IntoIterator::into_iter(..)` instead of `.into_iter()` to explicitly iterate by value
|
982 | formatter.debug_list().entries(IntoIterator::into_iter(branches)).finish()
| ++++++++++++++++++++++++ ~
arm64-darwin23-fake.rb updated
generating enc.mk
verconf.h updated
compiling loadpath.c
making srcs under enc
make[1]: Nothing to be done for `srcs'.
generating transdb.h
transdb.h updated
warning: 1 warning emitted
touch yjit/target/release/libyjit.a
partial linking yjit/target/release/libyjit.a into yjit/target/release/libyjit.o
linking miniruby
builtin_binary.inc updated
compiling builtin.c
linking static-library libruby.3.3-static.a
linking shared-library libruby.3.3.dylib
generating makefiles ext/configure-ext.mk
building spec/ruby/optional/capi/ext/array_spec.bundle
building spec/ruby/optional/capi/ext/basic_object_spec.bundle
building spec/ruby/optional/capi/ext/bignum_spec.bundle
building spec/ruby/optional/capi/ext/binding_spec.bundle
building spec/ruby/optional/capi/ext/boolean_spec.bundle
building spec/ruby/optional/capi/ext/class_id_under_autoload_spec.bundle
building spec/ruby/optional/capi/ext/class_spec.bundle
ext/configure-ext.mk updated
building spec/ruby/optional/capi/ext/class_under_autoload_spec.bundle
building spec/ruby/optional/capi/ext/complex_spec.bundle
building spec/ruby/optional/capi/ext/constants_spec.bundle
building spec/ruby/optional/capi/ext/data_spec.bundle
building spec/ruby/optional/capi/ext/debug_spec.bundle
building spec/ruby/optional/capi/ext/encoding_spec.bundle
building spec/ruby/optional/capi/ext/enumerator_spec.bundle
building spec/ruby/optional/capi/ext/exception_spec.bundle
building spec/ruby/optional/capi/ext/fiber_spec.bundle
building spec/ruby/optional/capi/ext/file_spec.bundle
building spec/ruby/optional/capi/ext/fixnum_spec.bundle
building spec/ruby/optional/capi/ext/float_spec.bundle
building spec/ruby/optional/capi/ext/gc_spec.bundle
building spec/ruby/optional/capi/ext/globals_spec.bundle
building spec/ruby/optional/capi/ext/hash_spec.bundle
building spec/ruby/optional/capi/ext/integer_spec.bundle
building spec/ruby/optional/capi/ext/io_spec.bundle
building spec/ruby/optional/capi/ext/kernel_spec.bundle
building spec/ruby/optional/capi/ext/language_spec.bundle
building spec/ruby/optional/capi/ext/marshal_spec.bundle
building spec/ruby/optional/capi/ext/module_spec.bundle
building spec/ruby/optional/capi/ext/module_under_autoload_spec.bundle
building spec/ruby/optional/capi/ext/mutex_spec.bundle
building spec/ruby/optional/capi/ext/numeric_spec.bundle
building spec/ruby/optional/capi/ext/object_spec.bundle
building spec/ruby/optional/capi/ext/proc_spec.bundle
building spec/ruby/optional/capi/ext/range_spec.bundle
building spec/ruby/optional/capi/ext/rational_spec.bundle
building spec/ruby/optional/capi/ext/rbasic_spec.bundle
building spec/ruby/optional/capi/ext/regexp_spec.bundle
building spec/ruby/optional/capi/ext/st_spec.bundle
building spec/ruby/optional/capi/ext/string_spec.bundle
building spec/ruby/optional/capi/ext/struct_spec.bundle
building spec/ruby/optional/capi/ext/symbol_spec.bundle
building spec/ruby/optional/capi/ext/thread_spec.bundle
building spec/ruby/optional/capi/ext/time_spec.bundle
building spec/ruby/optional/capi/ext/tracepoint_spec.bundle
building spec/ruby/optional/capi/ext/typed_data_spec.bundle
building spec/ruby/optional/capi/ext/util_spec.bundle
making enc
making trans
compiling ./enc/encdb.c
compiling ./enc/trans/transdb.c
configuring coverage
configuring bigdecimal
configuring -test-/RUBY_ALIGNOF
configuring cgi/escape
configuring continuation
configuring -test-/abi
configuring -test-/arith_seq/beg_len_step
configuring -test-/arith_seq/extract
configuring -test-/array/concat
configuring -test-/array/resize
compiling ./enc/trans/big5.c
configuring -test-/bignum
configuring -test-/bug-14834
configuring -test-/bug-3571
configuring -test-/bug-5832
configuring -test-/bug_reporter
configuring -test-/class
configuring -test-/cxxanyargs
configuring -test-/debug
configuring -test-/dln/empty
configuring date
configuring -test-/econv
configuring -test-/enumerator_kw
configuring digest
configuring -test-/eval
configuring erb/escape
configuring -test-/exception
configuring -test-/fatal
configuring digest/bubblebabble
configuring -test-/file
configuring digest/md5
compiling ./enc/trans/cesu_8.c
compiling ./enc/big5.c
configuring etc
compiling ./enc/trans/chinese.c
compiling ./enc/cesu_8.c
compiling ./enc/cp949.c
compiling ./enc/emacs_mule.c
configuring digest/rmd160
compiling ./enc/euc_jp.c
configuring digest/sha1
compiling ./enc/euc_kr.c
compiling ./enc/trans/ebcdic.c
compiling ./enc/euc_tw.c
configuring digest/sha2
configuring fcntl
compiling ./enc/gb2312.c
configuring fiddle
compiling ./enc/gb18030.c
compiling ./enc/trans/emoji.c
compiling ./enc/gbk.c
compiling ./enc/iso_8859_1.c
compiling ./enc/iso_8859_2.c
configuring -test-/float
configuring -test-/funcall
configuring -test-/gvl/call_without_gvl
configuring -test-/hash
configuring -test-/integer
configuring -test-/iseq_load
configuring -test-/iter
configuring -test-/load/dot.dot
configuring -test-/load/protect
configuring io/console
configuring -test-/load/resolve_symbol_resolver
configuring -test-/load/resolve_symbol_target
configuring -test-/load/stringify_symbols
configuring -test-/load/stringify_target
configuring -test-/marshal/compat
configuring -test-/marshal/internal_ivar
configuring -test-/marshal/usr
configuring -test-/memory_status
configuring -test-/memory_view
configuring -test-/method
configuring -test-/notimplement
configuring -test-/num2int
configuring -test-/path_to_class
configuring -test-/popen_deadlock
configuring -test-/postponed_job
configuring -test-/printf
configuring -test-/proc
configuring -test-/random
configuring -test-/rational
configuring -test-/rb_call_super_kw
configuring -test-/recursion
configuring -test-/regexp
configuring -test-/scan_args
configuring -test-/st/foreach
configuring -test-/st/numhash
configuring -test-/st/update
configuring -test-/string
compiling ./enc/iso_8859_3.c
configuring -test-/struct
configuring -test-/symbol
compiling ./enc/iso_8859_4.c
compiling ./enc/trans/emoji_iso2022_kddi.c
compiling ./enc/iso_8859_5.c
configuring -test-/thread/instrumentation
configuring -test-/thread_fd
configuring -test-/time
configuring -test-/tracepoint
configuring -test-/typeddata
configuring -test-/vm
configuring -test-/wait
compiling ./enc/trans/emoji_sjis_docomo.c
compiling ./enc/iso_8859_6.c
libffi_version: 3.3.0
compiling ./enc/iso_8859_7.c
compiling ./enc/iso_8859_8.c
compiling ./enc/trans/emoji_sjis_kddi.c
compiling ./enc/iso_8859_9.c
compiling ./enc/trans/emoji_sjis_softbank.c
configuring json
configuring json/generator
configuring json/parser
compiling ./enc/iso_8859_10.c
compiling ./enc/iso_8859_11.c
compiling ./enc/trans/escape.c
compiling ./enc/iso_8859_13.c
compiling ./enc/trans/gb18030.c
compiling ./enc/trans/gbk.c
compiling ./enc/iso_8859_14.c
compiling ./enc/iso_8859_15.c
compiling ./enc/iso_8859_16.c
compiling ./enc/trans/iso2022.c
compiling ./enc/koi8_r.c
configuring monitor
compiling ./enc/koi8_u.c
configuring nkf
compiling ./enc/trans/japanese.c
compiling ./enc/shift_jis.c
compiling ./enc/trans/japanese_euc.c
compiling ./enc/trans/japanese_sjis.c
compiling ./enc/utf_16be.c
compiling ./enc/utf_16le.c
compiling ./enc/utf_32be.c
compiling ./enc/trans/korean.c
compiling ./enc/utf_32le.c
compiling ./enc/windows_31j.c
compiling ./enc/windows_1250.c
compiling ./enc/trans/single_byte.c
compiling ./enc/windows_1251.c
compiling ./enc/windows_1252.c
compiling ./enc/trans/utf8_mac.c
compiling ./enc/windows_1253.c
configuring objspace
compiling ./enc/windows_1254.c
configuring openssl
compiling ./enc/trans/utf_16_32.c
compiling ./enc/windows_1257.c
configuring pathname
linking encoding encdb.bundle
linking encoding big5.bundle
linking encoding cesu_8.bundle
linking transcoder transdb.bundle
linking encoding cp949.bundle
linking transcoder big5.bundle
linking encoding emacs_mule.bundle
linking transcoder cesu_8.bundle
linking encoding euc_jp.bundle
linking transcoder chinese.bundle
linking encoding euc_kr.bundle
linking transcoder ebcdic.bundle
linking transcoder emoji.bundle
linking encoding euc_tw.bundle
linking encoding gb2312.bundle
linking transcoder emoji_iso2022_kddi.bundle
linking transcoder emoji_sjis_docomo.bundle
linking encoding gb18030.bundle
linking transcoder emoji_sjis_kddi.bundle
linking encoding gbk.bundle
linking transcoder emoji_sjis_softbank.bundle
linking transcoder escape.bundle
linking encoding iso_8859_1.bundle
configuring psych
linking encoding iso_8859_2.bundle
linking transcoder gb18030.bundle
configuring pty
linking transcoder gbk.bundle
linking encoding iso_8859_3.bundle
linking encoding iso_8859_4.bundle
linking transcoder iso2022.bundle
linking transcoder japanese.bundle
linking encoding iso_8859_5.bundle
linking transcoder japanese_euc.bundle
linking encoding iso_8859_6.bundle
linking encoding iso_8859_7.bundle
linking transcoder japanese_sjis.bundle
linking encoding iso_8859_8.bundle
linking transcoder korean.bundle
configuring rbconfig/sizeof
linking encoding iso_8859_9.bundle
linking transcoder single_byte.bundle
linking encoding iso_8859_10.bundle
linking transcoder utf8_mac.bundle
linking encoding iso_8859_11.bundle
configuring ripper
linking transcoder utf_16_32.bundle
linking encoding iso_8859_13.bundle
configuring rubyvm
linking encoding iso_8859_14.bundle
configuring socket
linking encoding iso_8859_15.bundle
linking encoding iso_8859_16.bundle
linking encoding koi8_r.bundle
linking encoding koi8_u.bundle
configuring stringio
linking encoding shift_jis.bundle
linking encoding utf_16be.bundle
configuring strscan
linking encoding utf_16le.bundle
configuring syslog
linking encoding utf_32be.bundle
linking encoding utf_32le.bundle
linking encoding windows_31j.bundle
linking encoding windows_1250.bundle
linking encoding windows_1251.bundle
linking encoding windows_1252.bundle
linking encoding windows_1253.bundle
linking encoding windows_1254.bundle
linking encoding windows_1257.bundle
making encs
make[1]: Nothing to be done for `encs'.
configuring zlib
configuring debug-1.9.1/ext/debug
configuring racc-1.7.3/ext/racc/cparse
configuring rbs-3.4.0/ext/rbs_extension
configuring io/nonblock
configuring io/wait
generating makefile exts.mk
exts.mk updated
compiling c.c
compiling beg_len_step.c
compiling extract.c
compiling to_ary_concat.c
compiling resize.c
compiling bug-14384.c
compiling bug.c
compiling big2str.c
linking shared-object -test-/arith_seq/extract.bundle
linking shared-object -test-/array/resize.bundle
linking shared-object -test-/RUBY_ALIGNOF.bundle
linking shared-object -test-/array/to_ary_concat.bundle
linking shared-object -test-/arith_seq/beg_len_step.bundle
linking shared-object -test-/bug_3571.bundle
linking shared-object -test-/bug_14834.bundle
compiling bigzero.c
compiling div.c
compiling bug.c
compiling bug_reporter.c
compiling class2name.c
compiling init.c
compiling init.c
compiling intpack.c
compiling mul.c
compiling str2big.c
linking shared-object -test-/bug_reporter.bundle
linking shared-object -test-/bug_5832.bundle
compiling init.c
linking shared-object -test-/class.bundle
compiling empty.c
compiling inspector.c
compiling append.c
compiling profile_frames.c
linking shared-object -test-/bignum.bundle
compiling init.c
compiling enumerator_kw.c
compiling eval.c
linking shared-object -test-/dln/empty.bundle
compiling dataerror.c
linking shared-object -test-/econv.bundle
compiling enc_raise.c
linking shared-object -test-/debug.bundle
linking shared-object -test-/enumerator_kw.bundle
compiling rb_fatal.c
compiling ensured.c
linking shared-object -test-/eval.bundle
compiling init.c
compiling fs.c
compiling init.c
compiling init.c
compiling funcall.c
linking shared-object -test-/fatal/rb_fatal.bundle
compiling stat.c
compiling call_without_gvl.c
linking shared-object -test-/exception.bundle
compiling nextafter.c
compiling delete.c
linking shared-object -test-/funcall.bundle
compiling iseq_load.c
compiling core_ext.c
compiling init.c
linking shared-object -test-/file.bundle
linking shared-object -test-/gvl/call_without_gvl.bundle
linking shared-object -test-/float.bundle
compiling break.c
compiling init.c
compiling dot.dot.c
linking shared-object -test-/iseq_load.bundle
compiling resolve_symbol_resolver.c
compiling protect.c
linking shared-object -test-/hash.bundle
compiling resolve_symbol_target.c
compiling init.c
compiling my_integer.c
linking shared-object -test-/load/dot.dot.bundle
linking shared-object -test-/load/resolve_symbol_resolver.bundle
linking shared-object -test-/load/protect.bundle
compiling stringify_symbols.c
compiling stringify_target.c
linking shared-object -test-/load/resolve_symbol_target.bundle
linking shared-object -test-/integer.bundle
compiling usrcompat.c
compiling internal_ivar.c
compiling usrmarshal.c
compiling yield.c
linking shared-object -test-/load/stringify_symbols.bundle
linking shared-object -test-/load/stringify_target.bundle
compiling memory_status.c
linking shared-object -test-/marshal/compat.bundle
compiling memory_view.c
compiling arity.c
linking shared-object -test-/marshal/internal_ivar.bundle
linking shared-object -test-/iter.bundle
compiling bug.c
linking shared-object -test-/marshal/usr.bundle
linking shared-object -test-/memory_status.bundle
compiling init.c
compiling num2int.c
compiling path_to_class.c
compiling postponed_job.c
linking shared-object -test-/notimplement.bundle
compiling printf.c
compiling init.c
linking shared-object -test-/path_to_class.bundle
linking shared-object -test-/method.bundle
linking shared-object -test-/memory_view.bundle
compiling bad_version.c
linking shared-object -test-/num2int.bundle
linking shared-object -test-/postponed_job.bundle
compiling receiver.c
compiling init.c
compiling rat.c
compiling rb_call_super_kw.c
compiling loop.c
linking shared-object -test-/printf.bundle
compiling recursion.c
compiling init.c
compiling super.c
compiling scan_args.c
linking shared-object -test-/rb_call_super_kw.bundle
linking shared-object -test-/random.bundle
linking shared-object -test-/rational.bundle
compiling foreach.c
linking shared-object -test-/recursion.bundle
linking shared-object -test-/proc.bundle
compiling parse_depth_limit.c
compiling numhash.c
compiling update.c
linking shared-object -test-/st/foreach.bundle
compiling data.c
linking shared-object -test-/regexp.bundle
compiling capacity.c
compiling init.c
compiling duplicate.c
linking shared-object -test-/st/update.bundle
compiling coderange.c
compiling instrumentation.c
compiling type.c
compiling thread_fd.c
linking shared-object -test-/st/numhash.bundle
linking shared-object -test-/scan_args.bundle
compiling init.c
compiling len.c
compiling cstr.c
linking shared-object -test-/thread_fd.bundle
linking shared-object -test-/symbol.bundle
linking shared-object -test-/thread/instrumentation.bundle
compiling init.c
compiling gc_hook.c
compiling ellipsize.c
compiling member.c
compiling leap_second.c
compiling new.c
compiling typeddata.c
compiling enc_associate.c
compiling tracepoint.c
compiling enc_dummy.c
compiling enc_str_buf_cat.c
linking shared-object -test-/struct.bundle
linking shared-object -test-/time.bundle
linking shared-object -test-/typeddata.bundle
compiling at_exit.c
linking shared-object -test-/tracepoint.bundle
compiling fstring.c
compiling init.c
compiling wait.c
compiling modify.c
compiling bigdecimal.c
compiling escape.c
compiling continuation.c
linking shared-object -test-/vm/at_exit.bundle
compiling new.c
compiling nofree.c
linking shared-object -test-/wait.bundle
compiling missing.c
compiling normalize.c
linking shared-object continuation.bundle
compiling coverage.c
compiling qsort.c
compiling date_core.c
linking shared-object cgi/escape.bundle
compiling rb_interned_str.c
compiling digest.c
compiling escape.c
compiling rb_str_dup.c
installing default coverage libraries
linking shared-object coverage.bundle
installing default bigdecimal libraries
compiling date_parse.c
compiling set_len.c
linking shared-object erb/escape.bundle
linking shared-object digest.bundle
compiling date_strftime.c
linking shared-object -test-/string.bundle
compiling date_strptime.c
installing digest libraries
installing default digest libraries
compiling etc.c
compiling fcntl.c
installing default date_core libraries
compiling closure.c
linking shared-object fcntl.bundle
linking shared-object etc.bundle
compiling conversions.c
compiling console.c
compiling fiddle.c
compiling nonblock.c
compiling wait.c
compiling function.c
linking shared-object io/nonblock.bundle
installing default console libraries
compiling handle.c
linking shared-object io/console.bundle
linking shared-object io/wait.bundle
compiling memory_view.c
compiling pinned.c
compiling monitor.c
compiling nkf.c
compiling pointer.c
compiling object_tracing.c
linking shared-object bigdecimal.bundle
linking shared-object monitor.bundle
installing default nkf libraries
compiling objspace.c
installing default fiddle libraries
compiling objspace_dump.c
compiling openssl_missing.c
compiling pathname.c
installing default objspace libraries
compiling ossl.c
installing default pathname libraries
linking shared-object fiddle.bundle
compiling psych.c
ld: warning: ignoring duplicate libraries: '-lffi'
compiling ossl_asn1.c
compiling psych_emitter.c
compiling pty.c
linking shared-object objspace.bundle
compiling ossl_bio.c
installing default pty libraries
linking shared-object pty.bundle
compiling psych_parser.c
compiling ossl_bn.c
linking shared-object pathname.bundle
compiling sizes.c
compiling psych_to_ruby.c
compiling eventids1.c
compiling limits.c
installing default libraries
compiling ossl_cipher.c
compiling init.c
compiling psych_yaml_tree.c
compiling eventids2.c
linking shared-object rbconfig/sizeof.bundle
linking shared-object date_core.bundle
compiling ossl_config.c
compiling constants.c
compiling basicsocket.c
compiling ripper.c
compiling stringio.c
compiling ossl_digest.c
linking shared-object psych.bundle
linking shared-object nkf.bundle
ld: warning: ignoring duplicate libraries: '-lyaml'
compiling ripper_init.c
compiling ossl_engine.c
compiling socket.c
compiling strscan.c
compiling ossl_hmac.c
compiling syslog.c
compiling ossl_kdf.c
linking shared-object stringio.bundle
checking ../.././parse.y and ../.././ext/ripper/eventids2.c
compiling ossl_ns_spki.c
linking shared-object syslog.bundle
linking shared-object strscan.bundle
compiling zlib.c
compiling ipsocket.c
installing default ripper libraries
compiling tcpsocket.c
installing default syslog libraries
compiling tcpserver.c
compiling ossl_ocsp.c
compiling debug.c
compiling ossl_pkcs12.c
compiling sockssocket.c
compiling udpsocket.c
compiling iseq_collector.c
compiling unixsocket.c
compiling unixserver.c
linking shared-object debug/debug.bundle
compiling ossl_pkcs7.c
compiling cparse.c
compiling option.c
compiling ossl_pkey.c
compiling ossl_pkey_dh.c
compiling ancdata.c
linking shared-object racc/cparse.bundle
compiling raddrinfo.c
compiling ossl_pkey_dsa.c
compiling ifaddr.c
compiling constants.c
linking shared-object zlib.bundle
compiling ossl_pkey_ec.c
compiling ossl_pkey_rsa.c
compiling lexer.c
installing default socket libraries
compiling ossl_provider.c
compiling bubblebabble.c
compiling md5init.c
compiling ossl_rand.c
linking shared-object digest/md5.bundle
linking shared-object digest/bubblebabble.bundle
compiling ossl_ssl.c
compiling ossl_ssl_session.c
compiling lexstate.c
compiling ossl_ts.c
compiling rmd160init.c
linking shared-object socket.bundle
compiling ossl_x509.c
compiling location.c
compiling rmd160.c
compiling ossl_x509attr.c
compiling sha1init.c
compiling main.c
compiling parser.c
linking shared-object digest/rmd160.bundle
compiling sha2init.c
linking shared-object digest/sha1.bundle
linking shared-object ripper.bundle
compiling parserstate.c
compiling ossl_x509cert.c
compiling ruby_objs.c
linking shared-object digest/sha2.bundle
compiling parser.c
compiling generator.c
compiling ossl_x509crl.c
installing default sha2 libraries
compiling unescape.c
compiling ossl_x509ext.c
compiling ossl_x509name.c
compiling ossl_x509req.c
compiling ossl_x509revoked.c
compiling ossl_x509store.c
linking shared-object rbs_extension.bundle
linking shared-object json/ext/parser.bundle
installing default openssl libraries
linking shared-object openssl.bundle
linking shared-object json/ext/generator.bundle
file2lastrev.rb: does not seem to be under a vcs: .
revision.h unchanged
config.status: creating ruby-runner.h
ln -sf ../../rbconfig.rb .ext/arm64-darwin23/rbconfig.rb
linking ruby
make[1]: Nothing to be done for `note'.
Generating RDoc documentation
Parsing sources...
0% [ 1/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-1.8.7
0% [ 2/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-1.9.1
0% [ 3/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-1.9.2
0% [ 4/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-1.9.3
0% [ 5/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.0.0
0% [ 6/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.1.0
0% [ 7/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.2.0
0% [ 8/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.3.0
0% [ 9/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.4.0
0% [10/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.5.0
1% [11/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.6.0
1% [12/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.7.0
1% [13/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-3.0.0.md
1% [14/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-3.1.0.md
1% [15/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-3.2.0.md
1% [16/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/bsearch.rdoc
1% [17/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/bug_triaging.rdoc
1% [18/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/case_mapping.rdoc
1% [19/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/character_selectors.rdoc
1% [20/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/command_injection.rdoc
2% [21/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing.md
2% [22/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/building_ruby.md
2% [23/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/documentation_guide.md
2% [24/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/glossary.md
2% [25/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/making_changes_to_ruby.md
2% [26/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/making_changes_to_stdlibs.md
2% [27/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/reporting_issues.md
2% [28/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/testing_ruby.md
2% [29/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/dig_methods.rdoc
2% [30/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/distribution.md
3% [31/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/dtrace_probes.rdoc
3% [32/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/encodings.rdoc
3% [33/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/extension.ja.rdoc
3% [34/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/extension.rdoc
3% [35/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/fiber.md
3% [36/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/format_specifications.rdoc
3% [37/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/globals.rdoc
3% [38/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/implicit_conversion.rdoc
3% [39/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/keywords.rdoc
3% [40/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/maintainers.md
3% [41/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/marshal.rdoc
4% [42/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/memory_view.md
4% [43/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/optparse/argument_converters.rdoc
4% [44/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/optparse/creates_option.rdoc
4% [45/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/optparse/option_params.rdoc
4% [46/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/optparse/tutorial.rdoc
4% [47/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/packed_data.rdoc
4% [48/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/ractor.md
4% [49/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/rdoc/markup_reference.rb
4% [50/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/regexp/methods.rdoc
4% [51/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/regexp/unicode_properties.rdoc
5% [52/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/rjit/rjit.md
5% [53/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/security.rdoc
5% [54/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/signals.rdoc
5% [55/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/standard_library.rdoc
5% [56/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/strftime_formatting.rdoc
5% [57/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax.rdoc
5% [58/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/assignment.rdoc
5% [59/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/calling_methods.rdoc
5% [60/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/comments.rdoc
5% [61/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/control_expressions.rdoc
6% [62/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/exceptions.rdoc
6% [63/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/literals.rdoc
6% [64/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/methods.rdoc
6% [65/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/miscellaneous.rdoc
6% [66/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/modules_and_classes.rdoc
6% [67/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/operators.rdoc
6% [68/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/pattern_matching.rdoc
6% [69/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/precedence.rdoc
6% [70/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/refinements.rdoc
6% [71/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/windows.md
7% [72/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/yjit/yjit.md
7% [73/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/yjit/yjit_hacking.md
7% [74/1026] COPYING
7% [75/1026] COPYING.ja
7% [76/1026] LEGAL
7% [77/1026] NEWS.md
7% [78/1026] README.ja.md
7% [79/1026] README.md
7% [80/1026] addr2line.c
7% [81/1026] array.c
7% [82/1026] array.rb
8% [83/1026] ast.c
8% [84/1026] ast.rb
8% [85/1026] bignum.c
8% [86/1026] builtin.c
8% [87/1026] class.c
8% [88/1026] compar.c
8% [89/1026] compile.c
8% [90/1026] complex.c
8% [91/1026] cont.c
8% [92/1026] debug.c
9% [93/1026] debug_counter.c
9% [94/1026] dir.c
9% [95/1026] dir.rb
9% [96/1026] dln.c
9% [97/1026] dln_find.c
9% [98/1026] dmydln.c
9% [99/1026] dmyenc.c
9% [100/1026] dmyext.c
9% [101/1026] doc/NEWS/NEWS-1.8.7
9% [102/1026] doc/NEWS/NEWS-1.9.1
10% [103/1026] doc/NEWS/NEWS-1.9.2
10% [104/1026] doc/NEWS/NEWS-1.9.3
10% [105/1026] doc/NEWS/NEWS-2.0.0
10% [106/1026] doc/NEWS/NEWS-2.1.0
10% [107/1026] doc/NEWS/NEWS-2.2.0
10% [108/1026] doc/NEWS/NEWS-2.3.0
10% [109/1026] doc/NEWS/NEWS-2.4.0
10% [110/1026] doc/NEWS/NEWS-2.5.0
10% [111/1026] doc/NEWS/NEWS-2.6.0
10% [112/1026] doc/NEWS/NEWS-2.7.0
11% [113/1026] doc/NEWS/NEWS-3.0.0.md
11% [114/1026] doc/NEWS/NEWS-3.1.0.md
11% [115/1026] doc/NEWS/NEWS-3.2.0.md
11% [116/1026] doc/bsearch.rdoc
11% [117/1026] doc/bug_triaging.rdoc
11% [118/1026] doc/case_mapping.rdoc
11% [119/1026] doc/character_selectors.rdoc
11% [120/1026] doc/command_injection.rdoc
11% [121/1026] doc/contributing.md
11% [122/1026] doc/contributing/building_ruby.md
11% [123/1026] doc/contributing/documentation_guide.md
12% [124/1026] doc/contributing/glossary.md
12% [125/1026] doc/contributing/making_changes_to_ruby.md
12% [126/1026] doc/contributing/making_changes_to_stdlibs.md
12% [127/1026] doc/contributing/reporting_issues.md
12% [128/1026] doc/contributing/testing_ruby.md
12% [129/1026] doc/dig_methods.rdoc
12% [130/1026] doc/distribution.md
12% [131/1026] doc/dtrace_probes.rdoc
12% [132/1026] doc/encodings.rdoc
12% [133/1026] doc/extension.ja.rdoc
13% [134/1026] doc/extension.rdoc
13% [135/1026] doc/fiber.md
13% [136/1026] doc/format_specifications.rdoc
13% [137/1026] doc/globals.rdoc
13% [138/1026] doc/implicit_conversion.rdoc
13% [139/1026] doc/keywords.rdoc
13% [140/1026] doc/maintainers.md
13% [141/1026] doc/marshal.rdoc
13% [142/1026] doc/memory_view.md
13% [143/1026] doc/optparse/argument_converters.rdoc
14% [144/1026] doc/optparse/creates_option.rdoc
14% [145/1026] doc/optparse/option_params.rdoc
14% [146/1026] doc/optparse/tutorial.rdoc
14% [147/1026] doc/packed_data.rdoc
14% [148/1026] doc/ractor.md
14% [149/1026] doc/rdoc/markup_reference.rb
14% [150/1026] doc/regexp/methods.rdoc
14% [151/1026] doc/regexp/unicode_properties.rdoc
14% [152/1026] doc/rjit/rjit.md
14% [153/1026] doc/security.rdoc
15% [154/1026] doc/signals.rdoc
15% [155/1026] doc/standard_library.rdoc
15% [156/1026] doc/strftime_formatting.rdoc
15% [157/1026] doc/syntax.rdoc
15% [158/1026] doc/syntax/assignment.rdoc
15% [159/1026] doc/syntax/calling_methods.rdoc
15% [160/1026] doc/syntax/comments.rdoc
15% [161/1026] doc/syntax/control_expressions.rdoc
15% [162/1026] doc/syntax/exceptions.rdoc
15% [163/1026] doc/syntax/literals.rdoc
15% [164/1026] doc/syntax/methods.rdoc
16% [165/1026] doc/syntax/miscellaneous.rdoc
16% [166/1026] doc/syntax/modules_and_classes.rdoc
16% [167/1026] doc/syntax/operators.rdoc
16% [168/1026] doc/syntax/pattern_matching.rdoc
16% [169/1026] doc/syntax/precedence.rdoc
16% [170/1026] doc/syntax/refinements.rdoc
16% [171/1026] doc/windows.md
16% [172/1026] doc/yjit/yjit.md
16% [173/1026] doc/yjit/yjit_hacking.md
16% [174/1026] encoding.c
17% [175/1026] enum.c
17% [176/1026] enumerator.c
17% [177/1026] error.c
17% [178/1026] eval.c
17% [179/1026] eval_error.c
17% [180/1026] eval_jump.c
17% [181/1026] ext/bigdecimal/bigdecimal.c
17% [182/1026] ext/bigdecimal/lib/bigdecimal.rb
17% [183/1026] ext/bigdecimal/lib/bigdecimal/jacobian.rb
17% [184/1026] ext/bigdecimal/lib/bigdecimal/ludcmp.rb
18% [185/1026] ext/bigdecimal/lib/bigdecimal/math.rb
18% [186/1026] ext/bigdecimal/lib/bigdecimal/newton.rb
18% [187/1026] ext/bigdecimal/lib/bigdecimal/util.rb
18% [188/1026] ext/cgi/escape/escape.c
18% [189/1026] ext/continuation/continuation.c
18% [190/1026] ext/coverage/coverage.c
18% [191/1026] ext/coverage/lib/coverage.rb
18% [192/1026] ext/date/date_core.c
18% [193/1026] ext/date/date_parse.c
18% [194/1026] ext/date/date_strftime.c
19% [195/1026] ext/date/date_strptime.c
19% [196/1026] ext/date/lib/date.rb
19% [197/1026] ext/digest/bubblebabble/bubblebabble.c
19% [198/1026] ext/digest/digest.c
19% [199/1026] ext/digest/lib/digest.rb
19% [200/1026] ext/digest/lib/digest/loader.rb
19% [201/1026] ext/digest/lib/digest/version.rb
19% [202/1026] ext/digest/md5/md5init.c
19% [203/1026] ext/digest/rmd160/rmd160init.c
19% [204/1026] ext/digest/sha1/sha1init.c
19% [205/1026] ext/digest/sha2/lib/sha2.rb
20% [206/1026] ext/digest/sha2/lib/sha2/loader.rb
20% [207/1026] ext/digest/sha2/sha2init.c
20% [208/1026] ext/etc/etc.c
20% [209/1026] ext/fcntl/fcntl.c
20% [210/1026] ext/fiddle/closure.c
20% [211/1026] ext/fiddle/conversions.c
20% [212/1026] ext/fiddle/fiddle.c
20% [213/1026] ext/fiddle/function.c
20% [214/1026] ext/fiddle/handle.c
20% [215/1026] ext/fiddle/lib/fiddle.rb
21% [216/1026] ext/fiddle/lib/fiddle/closure.rb
21% [217/1026] ext/fiddle/lib/fiddle/cparser.rb
21% [218/1026] ext/fiddle/lib/fiddle/function.rb
21% [219/1026] ext/fiddle/lib/fiddle/import.rb
21% [220/1026] ext/fiddle/lib/fiddle/pack.rb
21% [221/1026] ext/fiddle/lib/fiddle/struct.rb
21% [222/1026] ext/fiddle/lib/fiddle/types.rb
21% [223/1026] ext/fiddle/lib/fiddle/value.rb
21% [224/1026] ext/fiddle/lib/fiddle/version.rb
21% [225/1026] ext/fiddle/pinned.c
22% [226/1026] ext/fiddle/pointer.c
22% [227/1026] ext/io/console/console.c
22% [228/1026] ext/io/nonblock/nonblock.c
22% [229/1026] ext/io/wait/wait.c
22% [230/1026] ext/json/generator/generator.c
22% [231/1026] ext/json/lib/json.rb
22% [232/1026] ext/json/lib/json/add/bigdecimal.rb
22% [233/1026] ext/json/lib/json/add/complex.rb
22% [234/1026] ext/json/lib/json/add/core.rb
22% [235/1026] ext/json/lib/json/add/date.rb
23% [236/1026] ext/json/lib/json/add/date_time.rb
23% [237/1026] ext/json/lib/json/add/exception.rb
23% [238/1026] ext/json/lib/json/add/ostruct.rb
23% [239/1026] ext/json/lib/json/add/range.rb
23% [240/1026] ext/json/lib/json/add/rational.rb
23% [241/1026] ext/json/lib/json/add/regexp.rb
23% [242/1026] ext/json/lib/json/add/set.rb
23% [243/1026] ext/json/lib/json/add/struct.rb
23% [244/1026] ext/json/lib/json/add/symbol.rb
23% [245/1026] ext/json/lib/json/add/time.rb
23% [246/1026] ext/json/lib/json/common.rb
24% [247/1026] ext/json/lib/json/ext.rb
24% [248/1026] ext/json/lib/json/generic_object.rb
24% [249/1026] ext/json/lib/json/version.rb
24% [250/1026] ext/json/parser/parser.c
24% [251/1026] ext/monitor/lib/monitor.rb
24% [252/1026] ext/monitor/monitor.c
24% [253/1026] ext/nkf/lib/kconv.rb
24% [254/1026] ext/nkf/nkf.c
24% [255/1026] ext/objspace/lib/objspace.rb
24% [256/1026] ext/objspace/lib/objspace/trace.rb
25% [257/1026] ext/objspace/object_tracing.c
25% [258/1026] ext/objspace/objspace.c
25% [259/1026] ext/objspace/objspace_dump.c
25% [260/1026] ext/openssl/lib/openssl.rb
25% [261/1026] ext/openssl/lib/openssl/bn.rb
25% [262/1026] ext/openssl/lib/openssl/buffering.rb
25% [263/1026] ext/openssl/lib/openssl/cipher.rb
25% [264/1026] ext/openssl/lib/openssl/digest.rb
25% [265/1026] ext/openssl/lib/openssl/hmac.rb
25% [266/1026] ext/openssl/lib/openssl/marshal.rb
26% [267/1026] ext/openssl/lib/openssl/pkcs5.rb
26% [268/1026] ext/openssl/lib/openssl/pkey.rb
26% [269/1026] ext/openssl/lib/openssl/ssl.rb
26% [270/1026] ext/openssl/lib/openssl/version.rb
26% [271/1026] ext/openssl/lib/openssl/x509.rb
26% [272/1026] ext/openssl/ossl.c
26% [273/1026] ext/openssl/ossl_asn1.c
26% [274/1026] ext/openssl/ossl_bio.c
26% [275/1026] ext/openssl/ossl_bn.c
26% [276/1026] ext/openssl/ossl_cipher.c
26% [277/1026] ext/openssl/ossl_config.c
27% [278/1026] ext/openssl/ossl_digest.c
27% [279/1026] ext/openssl/ossl_engine.c
27% [280/1026] ext/openssl/ossl_hmac.c
27% [281/1026] ext/openssl/ossl_kdf.c
27% [282/1026] ext/openssl/ossl_ns_spki.c
27% [283/1026] ext/openssl/ossl_ocsp.c
27% [284/1026] ext/openssl/ossl_pkcs12.c
27% [285/1026] ext/openssl/ossl_pkcs7.c
27% [286/1026] ext/openssl/ossl_pkey.c
27% [287/1026] ext/openssl/ossl_pkey_dh.c
28% [288/1026] ext/openssl/ossl_pkey_dsa.c
28% [289/1026] ext/openssl/ossl_pkey_ec.c
28% [290/1026] ext/openssl/ossl_pkey_rsa.c
28% [291/1026] ext/openssl/ossl_rand.c
28% [292/1026] ext/openssl/ossl_ssl.c
28% [293/1026] ext/openssl/ossl_ssl_session.c
28% [294/1026] ext/openssl/ossl_ts.c
28% [295/1026] ext/openssl/ossl_x509.c
28% [296/1026] ext/openssl/ossl_x509attr.c
28% [297/1026] ext/openssl/ossl_x509cert.c
29% [298/1026] ext/openssl/ossl_x509crl.c
29% [299/1026] ext/openssl/ossl_x509ext.c
29% [300/1026] ext/openssl/ossl_x509name.c
29% [301/1026] ext/openssl/ossl_x509req.c
29% [302/1026] ext/openssl/ossl_x509revoked.c
29% [303/1026] ext/openssl/ossl_x509store.c
29% [304/1026] ext/pathname/lib/pathname.rb
29% [305/1026] ext/pathname/pathname.c
29% [306/1026] ext/psych/lib/psych.rb
29% [307/1026] ext/psych/lib/psych/class_loader.rb
30% [308/1026] ext/psych/lib/psych/coder.rb
30% [309/1026] ext/psych/lib/psych/core_ext.rb
30% [310/1026] ext/psych/lib/psych/exception.rb
30% [311/1026] ext/psych/lib/psych/handler.rb
30% [312/1026] ext/psych/lib/psych/handlers/document_stream.rb
30% [313/1026] ext/psych/lib/psych/handlers/recorder.rb
30% [314/1026] ext/psych/lib/psych/json/ruby_events.rb
30% [315/1026] ext/psych/lib/psych/json/stream.rb
30% [316/1026] ext/psych/lib/psych/json/tree_builder.rb
30% [317/1026] ext/psych/lib/psych/json/yaml_events.rb
30% [318/1026] ext/psych/lib/psych/nodes.rb
31% [319/1026] ext/psych/lib/psych/nodes/alias.rb
31% [320/1026] ext/psych/lib/psych/nodes/document.rb
31% [321/1026] ext/psych/lib/psych/nodes/mapping.rb
31% [322/1026] ext/psych/lib/psych/nodes/node.rb
31% [323/1026] ext/psych/lib/psych/nodes/scalar.rb
31% [324/1026] ext/psych/lib/psych/nodes/sequence.rb
31% [325/1026] ext/psych/lib/psych/nodes/stream.rb
31% [326/1026] ext/psych/lib/psych/omap.rb
31% [327/1026] ext/psych/lib/psych/parser.rb
31% [328/1026] ext/psych/lib/psych/scalar_scanner.rb
32% [329/1026] ext/psych/lib/psych/set.rb
32% [330/1026] ext/psych/lib/psych/stream.rb
32% [331/1026] ext/psych/lib/psych/streaming.rb
32% [332/1026] ext/psych/lib/psych/syntax_error.rb
32% [333/1026] ext/psych/lib/psych/tree_builder.rb
32% [334/1026] ext/psych/lib/psych/versions.rb
32% [335/1026] ext/psych/lib/psych/visitors.rb
32% [336/1026] ext/psych/lib/psych/visitors/depth_first.rb
32% [337/1026] ext/psych/lib/psych/visitors/emitter.rb
32% [338/1026] ext/psych/lib/psych/visitors/json_tree.rb
33% [339/1026] ext/psych/lib/psych/visitors/to_ruby.rb
33% [340/1026] ext/psych/lib/psych/visitors/visitor.rb
33% [341/1026] ext/psych/lib/psych/visitors/yaml_tree.rb
33% [342/1026] ext/psych/lib/psych/y.rb
33% [343/1026] ext/psych/psych.c
33% [344/1026] ext/psych/psych_emitter.c
33% [345/1026] ext/psych/psych_parser.c
33% [346/1026] ext/psych/psych_to_ruby.c
33% [347/1026] ext/psych/psych_yaml_tree.c
33% [348/1026] ext/pty/lib/expect.rb
34% [349/1026] ext/pty/pty.c
34% [350/1026] ext/rbconfig/sizeof/limits.c
34% [351/1026] ext/rbconfig/sizeof/sizes.c
34% [352/1026] ext/ripper/lib/ripper.rb
34% [353/1026] ext/ripper/lib/ripper/core.rb
34% [354/1026] ext/ripper/lib/ripper/filter.rb
34% [355/1026] ext/ripper/lib/ripper/lexer.rb
34% [356/1026] ext/ripper/lib/ripper/sexp.rb
34% [357/1026] ext/socket/ancdata.c
34% [358/1026] ext/socket/basicsocket.c
34% [359/1026] ext/socket/constants.c
35% [360/1026] ext/socket/constdefs.c
35% [361/1026] ext/socket/ifaddr.c
35% [362/1026] ext/socket/init.c
35% [363/1026] ext/socket/ipsocket.c
35% [364/1026] ext/socket/lib/socket.rb
35% [365/1026] ext/socket/option.c
35% [366/1026] ext/socket/raddrinfo.c
35% [367/1026] ext/socket/socket.c
35% [368/1026] ext/socket/sockssocket.c
35% [369/1026] ext/socket/tcpserver.c
36% [370/1026] ext/socket/tcpsocket.c
36% [371/1026] ext/socket/udpsocket.c
36% [372/1026] ext/socket/unixserver.c
36% [373/1026] ext/socket/unixsocket.c
36% [374/1026] ext/stringio/stringio.c
36% [375/1026] ext/strscan/strscan.c
36% [376/1026] ext/syslog/lib/syslog/logger.rb
36% [377/1026] ext/syslog/syslog.c
36% [378/1026] ext/win32/lib/win32/registry.rb
36% [379/1026] ext/win32/lib/win32/resolv.rb
37% [380/1026] ext/win32/lib/win32/sspi.rb
37% [381/1026] ext/win32/resolv/resolv.c
37% [382/1026] ext/win32ole/lib/win32ole.rb
37% [383/1026] ext/win32ole/lib/win32ole/property.rb
37% [384/1026] ext/win32ole/win32ole.c
37% [385/1026] ext/win32ole/win32ole_error.c
37% [386/1026] ext/win32ole/win32ole_event.c
37% [387/1026] ext/win32ole/win32ole_method.c
37% [388/1026] ext/win32ole/win32ole_param.c
37% [389/1026] ext/win32ole/win32ole_record.c
38% [390/1026] ext/win32ole/win32ole_type.c
38% [391/1026] ext/win32ole/win32ole_typelib.c
38% [392/1026] ext/win32ole/win32ole_variable.c
38% [393/1026] ext/win32ole/win32ole_variant.c
38% [394/1026] ext/win32ole/win32ole_variant_m.c
38% [395/1026] ext/zlib/zlib.c
38% [396/1026] file.c
38% [397/1026] gc.c
38% [398/1026] gc.rb
38% [399/1026] golf_prelude.c
38% [400/1026] goruby.c
39% [401/1026] hash.c
39% [402/1026] id.c
39% [403/1026] id_table.c
39% [404/1026] inits.c
39% [405/1026] io.c
39% [406/1026] io.rb
39% [407/1026] io_buffer.c
39% [408/1026] iseq.c
39% [409/1026] kernel.rb
39% [410/1026] lex.c
40% [411/1026] lib/English.rb
40% [412/1026] lib/abbrev.rb
40% [413/1026] lib/base64.rb
40% [414/1026] lib/benchmark.rb
40% [415/1026] lib/bundled_gems.rb
40% [416/1026] lib/bundler.rb
40% [417/1026] lib/cgi.rb
40% [418/1026] lib/cgi/cookie.rb
40% [419/1026] lib/cgi/core.rb
40% [420/1026] lib/cgi/html.rb
41% [421/1026] lib/cgi/session.rb
41% [422/1026] lib/cgi/session/pstore.rb
41% [423/1026] lib/cgi/util.rb
41% [424/1026] lib/csv.rb
41% [425/1026] lib/csv/core_ext/array.rb
41% [426/1026] lib/csv/core_ext/string.rb
41% [427/1026] lib/csv/fields_converter.rb
41% [428/1026] lib/csv/input_record_separator.rb
41% [429/1026] lib/csv/parser.rb
41% [430/1026] lib/csv/row.rb
42% [431/1026] lib/csv/table.rb
42% [432/1026] lib/csv/version.rb
42% [433/1026] lib/csv/writer.rb
42% [434/1026] lib/delegate.rb
42% [435/1026] lib/did_you_mean.rb
42% [436/1026] lib/did_you_mean/core_ext/name_error.rb
42% [437/1026] lib/did_you_mean/experimental.rb
42% [438/1026] lib/did_you_mean/formatter.rb
42% [439/1026] lib/did_you_mean/formatters/plain_formatter.rb
42% [440/1026] lib/did_you_mean/formatters/verbose_formatter.rb
42% [441/1026] lib/did_you_mean/jaro_winkler.rb
43% [442/1026] lib/did_you_mean/levenshtein.rb
43% [443/1026] lib/did_you_mean/spell_checker.rb
43% [444/1026] lib/did_you_mean/spell_checkers/key_error_checker.rb
43% [445/1026] lib/did_you_mean/spell_checkers/method_name_checker.rb
43% [446/1026] lib/did_you_mean/spell_checkers/name_error_checkers.rb
43% [447/1026] lib/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb
43% [448/1026] lib/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb
43% [449/1026] lib/did_you_mean/spell_checkers/null_checker.rb
43% [450/1026] lib/did_you_mean/spell_checkers/pattern_key_name_checker.rb
43% [451/1026] lib/did_you_mean/spell_checkers/require_path_checker.rb
44% [452/1026] lib/did_you_mean/tree_spell_checker.rb
44% [453/1026] lib/did_you_mean/verbose.rb
44% [454/1026] lib/did_you_mean/version.rb
44% [455/1026] lib/drb.rb
44% [456/1026] lib/drb/acl.rb
44% [457/1026] lib/drb/drb.rb
44% [458/1026] lib/drb/eq.rb
44% [459/1026] lib/drb/extserv.rb
44% [460/1026] lib/drb/extservm.rb
44% [461/1026] lib/drb/gw.rb
45% [462/1026] lib/drb/invokemethod.rb
45% [463/1026] lib/drb/observer.rb
45% [464/1026] lib/drb/ssl.rb
45% [465/1026] lib/drb/timeridconv.rb
45% [466/1026] lib/drb/unix.rb
45% [467/1026] lib/drb/version.rb
45% [468/1026] lib/drb/weakidconv.rb
45% [469/1026] lib/erb.rb
45% [470/1026] lib/erb/compiler.rb
45% [471/1026] lib/erb/def_method.rb
46% [472/1026] lib/erb/util.rb
46% [473/1026] lib/erb/version.rb
46% [474/1026] lib/error_highlight.rb
46% [475/1026] lib/error_highlight/base.rb
46% [476/1026] lib/error_highlight/core_ext.rb
46% [477/1026] lib/error_highlight/formatter.rb
46% [478/1026] lib/error_highlight/version.rb
46% [479/1026] lib/fileutils.rb
46% [480/1026] lib/find.rb
46% [481/1026] lib/forwardable.rb
46% [482/1026] lib/forwardable/impl.rb
47% [483/1026] lib/getoptlong.rb
47% [484/1026] lib/ipaddr.rb
47% [485/1026] lib/irb.rb
47% [486/1026] lib/irb/cmd/nop.rb
47% [487/1026] lib/irb/color.rb
47% [488/1026] lib/irb/color_printer.rb
47% [489/1026] lib/irb/command.rb
47% [490/1026] lib/irb/command/backtrace.rb
47% [491/1026] lib/irb/command/base.rb
47% [492/1026] lib/irb/command/break.rb
48% [493/1026] lib/irb/command/catch.rb
48% [494/1026] lib/irb/command/chws.rb
48% [495/1026] lib/irb/command/context.rb
48% [496/1026] lib/irb/command/continue.rb
48% [497/1026] lib/irb/command/debug.rb
48% [498/1026] lib/irb/command/delete.rb
48% [499/1026] lib/irb/command/disable_irb.rb
48% [500/1026] lib/irb/command/edit.rb
48% [501/1026] lib/irb/command/exit.rb
48% [502/1026] lib/irb/command/finish.rb
49% [503/1026] lib/irb/command/force_exit.rb
49% [504/1026] lib/irb/command/help.rb
49% [505/1026] lib/irb/command/history.rb
49% [506/1026] lib/irb/command/info.rb
49% [507/1026] lib/irb/command/internal_helpers.rb
49% [508/1026] lib/irb/command/irb_info.rb
49% [509/1026] lib/irb/command/load.rb
49% [510/1026] lib/irb/command/ls.rb
49% [511/1026] lib/irb/command/measure.rb
49% [512/1026] lib/irb/command/next.rb
50% [513/1026] lib/irb/command/pushws.rb
50% [514/1026] lib/irb/command/show_doc.rb
50% [515/1026] lib/irb/command/show_source.rb
50% [516/1026] lib/irb/command/step.rb
50% [517/1026] lib/irb/command/subirb.rb
50% [518/1026] lib/irb/command/whereami.rb
50% [519/1026] lib/irb/completion.rb
50% [520/1026] lib/irb/context.rb
50% [521/1026] lib/irb/debug.rb
50% [522/1026] lib/irb/debug/ui.rb
50% [523/1026] lib/irb/default_commands.rb
51% [524/1026] lib/irb/easter-egg.rb
51% [525/1026] lib/irb/ext/change-ws.rb
51% [526/1026] lib/irb/ext/eval_history.rb
51% [527/1026] lib/irb/ext/loader.rb
51% [528/1026] lib/irb/ext/multi-irb.rb
51% [529/1026] lib/irb/ext/tracer.rb
51% [530/1026] lib/irb/ext/use-loader.rb
51% [531/1026] lib/irb/ext/workspaces.rb
51% [532/1026] lib/irb/frame.rb
51% [533/1026] lib/irb/help.rb
52% [534/1026] lib/irb/helper_method.rb
52% [535/1026] lib/irb/helper_method/base.rb
52% [536/1026] lib/irb/helper_method/conf.rb
52% [537/1026] lib/irb/history.rb
52% [538/1026] lib/irb/init.rb
52% [539/1026] lib/irb/input-method.rb
52% [540/1026] lib/irb/inspector.rb
52% [541/1026] lib/irb/lc/error.rb
52% [542/1026] lib/irb/lc/ja/error.rb
52% [543/1026] lib/irb/locale.rb
53% [544/1026] lib/irb/nesting_parser.rb
53% [545/1026] lib/irb/notifier.rb
53% [546/1026] lib/irb/output-method.rb
53% [547/1026] lib/irb/pager.rb
53% [548/1026] lib/irb/ruby-lex.rb
53% [549/1026] lib/irb/source_finder.rb
53% [550/1026] lib/irb/statement.rb
53% [551/1026] lib/irb/version.rb
53% [552/1026] lib/irb/workspace.rb
53% [553/1026] lib/irb/ws-for-case-2.rb
53% [554/1026] lib/irb/xmp.rb
54% [555/1026] lib/logger.rb
54% [556/1026] lib/logger/errors.rb
54% [557/1026] lib/logger/formatter.rb
54% [558/1026] lib/logger/log_device.rb
54% [559/1026] lib/logger/period.rb
54% [560/1026] lib/logger/severity.rb
54% [561/1026] lib/logger/version.rb
54% [562/1026] lib/mkmf.rb
54% [563/1026] lib/mutex_m.rb
54% [564/1026] lib/net/http.rb
55% [565/1026] lib/net/http/backward.rb
55% [566/1026] lib/net/http/exceptions.rb
55% [567/1026] lib/net/http/generic_request.rb
55% [568/1026] lib/net/http/header.rb
55% [569/1026] lib/net/http/proxy_delta.rb
55% [570/1026] lib/net/http/request.rb
55% [571/1026] lib/net/http/requests.rb
55% [572/1026] lib/net/http/response.rb
55% [573/1026] lib/net/http/responses.rb
55% [574/1026] lib/net/http/status.rb
56% [575/1026] lib/net/https.rb
56% [576/1026] lib/net/protocol.rb
56% [577/1026] lib/observer.rb
56% [578/1026] lib/open-uri.rb
56% [579/1026] lib/open3.rb
56% [580/1026] lib/open3/version.rb
56% [581/1026] lib/optionparser.rb
56% [582/1026] lib/optparse.rb
56% [583/1026] lib/optparse/ac.rb
56% [584/1026] lib/optparse/date.rb
57% [585/1026] lib/optparse/kwargs.rb
57% [586/1026] lib/optparse/shellwords.rb
57% [587/1026] lib/optparse/time.rb
57% [588/1026] lib/optparse/uri.rb
57% [589/1026] lib/optparse/version.rb
57% [590/1026] lib/ostruct.rb
57% [591/1026] lib/pp.rb
57% [592/1026] lib/prettyprint.rb
57% [593/1026] lib/prism.rb
57% [594/1026] lib/prism/compiler.rb
57% [595/1026] lib/prism/debug.rb
58% [596/1026] lib/prism/desugar_compiler.rb
58% [597/1026] lib/prism/dispatcher.rb
58% [598/1026] lib/prism/dsl.rb
58% [599/1026] lib/prism/ffi.rb
58% [600/1026] lib/prism/lex_compat.rb
58% [601/1026] lib/prism/mutation_compiler.rb
58% [602/1026] lib/prism/node.rb
58% [603/1026] lib/prism/node_ext.rb
58% [604/1026] lib/prism/node_inspector.rb
58% [605/1026] lib/prism/pack.rb
59% [606/1026] lib/prism/parse_result.rb
59% [607/1026] lib/prism/parse_result/comments.rb
59% [608/1026] lib/prism/parse_result/newlines.rb
59% [609/1026] lib/prism/pattern.rb
59% [610/1026] lib/prism/ripper_compat.rb
59% [611/1026] lib/prism/serialize.rb
59% [612/1026] lib/prism/visitor.rb
59% [613/1026] lib/pstore.rb
59% [614/1026] lib/random/formatter.rb
59% [615/1026] lib/rdoc.rb
60% [616/1026] lib/rdoc/alias.rb
60% [617/1026] lib/rdoc/anon_class.rb
60% [618/1026] lib/rdoc/any_method.rb
60% [619/1026] lib/rdoc/attr.rb
60% [620/1026] lib/rdoc/class_module.rb
60% [621/1026] lib/rdoc/code_object.rb
60% [622/1026] lib/rdoc/code_objects.rb
60% [623/1026] lib/rdoc/comment.rb
60% [624/1026] lib/rdoc/constant.rb
60% [625/1026] lib/rdoc/context.rb
61% [626/1026] lib/rdoc/cross_reference.rb
61% [627/1026] lib/rdoc/encoding.rb
61% [628/1026] lib/rdoc/erb_partial.rb
61% [629/1026] lib/rdoc/erbio.rb
61% [630/1026] lib/rdoc/extend.rb
61% [631/1026] lib/rdoc/generator.rb
61% [632/1026] lib/rdoc/ghost_method.rb
61% [633/1026] lib/rdoc/i18n.rb
61% [634/1026] lib/rdoc/include.rb
61% [635/1026] lib/rdoc/known_classes.rb
61% [636/1026] lib/rdoc/markdown.rb
62% [637/1026] lib/rdoc/markup.rb
62% [638/1026] lib/rdoc/meta_method.rb
62% [639/1026] lib/rdoc/method_attr.rb
62% [640/1026] lib/rdoc/mixin.rb
62% [641/1026] lib/rdoc/normal_class.rb
62% [642/1026] lib/rdoc/normal_module.rb
62% [643/1026] lib/rdoc/options.rb
62% [644/1026] lib/rdoc/parser.rb
62% [645/1026] lib/rdoc/parser/c.rb
62% [646/1026] lib/rdoc/parser/changelog.rb
63% [647/1026] lib/rdoc/parser/markdown.rb
63% [648/1026] lib/rdoc/parser/rd.rb
63% [649/1026] lib/rdoc/parser/ripper_state_lex.rb
63% [650/1026] lib/rdoc/parser/ruby.rb
63% [651/1026] lib/rdoc/parser/ruby_tools.rb
63% [652/1026] lib/rdoc/parser/simple.rb
63% [653/1026] lib/rdoc/parser/text.rb
63% [654/1026] lib/rdoc/rd.rb
63% [655/1026] lib/rdoc/rdoc.rb
63% [656/1026] lib/rdoc/require.rb
64% [657/1026] lib/rdoc/ri.rb
64% [658/1026] lib/rdoc/rubygems_hook.rb
64% [659/1026] lib/rdoc/servlet.rb
64% [660/1026] lib/rdoc/single_class.rb
64% [661/1026] lib/rdoc/stats.rb
64% [662/1026] lib/rdoc/store.rb
64% [663/1026] lib/rdoc/task.rb
64% [664/1026] lib/rdoc/text.rb
64% [665/1026] lib/rdoc/token_stream.rb
64% [666/1026] lib/rdoc/tom_doc.rb
65% [667/1026] lib/rdoc/top_level.rb
65% [668/1026] lib/rdoc/version.rb
65% [669/1026] lib/readline.rb
65% [670/1026] lib/reline.rb
65% [671/1026] lib/reline/ansi.rb
65% [672/1026] lib/reline/config.rb
65% [673/1026] lib/reline/face.rb
65% [674/1026] lib/reline/general_io.rb
65% [675/1026] lib/reline/history.rb
65% [676/1026] lib/reline/key_actor.rb
65% [677/1026] lib/reline/key_actor/base.rb
66% [678/1026] lib/reline/key_actor/emacs.rb
66% [679/1026] lib/reline/key_actor/vi_command.rb
66% [680/1026] lib/reline/key_actor/vi_insert.rb
66% [681/1026] lib/reline/key_stroke.rb
66% [682/1026] lib/reline/kill_ring.rb
66% [683/1026] lib/reline/line_editor.rb
66% [684/1026] lib/reline/terminfo.rb
66% [685/1026] lib/reline/unicode.rb
66% [686/1026] lib/reline/unicode/east_asian_width.rb
66% [687/1026] lib/reline/version.rb
67% [688/1026] lib/reline/windows.rb
67% [689/1026] lib/resolv-replace.rb
67% [690/1026] lib/resolv.rb
67% [691/1026] lib/rinda/rinda.rb
67% [692/1026] lib/rinda/ring.rb
67% [693/1026] lib/rinda/tuplespace.rb
67% [694/1026] lib/ruby_vm/rjit/stats.rb
67% [695/1026] lib/rubygems.rb
67% [696/1026] lib/rubygems/available_set.rb
67% [697/1026] lib/rubygems/basic_specification.rb
68% [698/1026] lib/rubygems/bundler_version_finder.rb
68% [699/1026] lib/rubygems/ci_detector.rb
68% [700/1026] lib/rubygems/command.rb
68% [701/1026] lib/rubygems/command_manager.rb
68% [702/1026] lib/rubygems/commands/build_command.rb
68% [703/1026] lib/rubygems/commands/cert_command.rb
68% [704/1026] lib/rubygems/commands/check_command.rb
68% [705/1026] lib/rubygems/commands/cleanup_command.rb
68% [706/1026] lib/rubygems/commands/contents_command.rb
68% [707/1026] lib/rubygems/commands/dependency_command.rb
69% [708/1026] lib/rubygems/commands/environment_command.rb
69% [709/1026] lib/rubygems/commands/exec_command.rb
69% [710/1026] lib/rubygems/commands/fetch_command.rb
69% [711/1026] lib/rubygems/commands/generate_index_command.rb
69% [712/1026] lib/rubygems/commands/help_command.rb
69% [713/1026] lib/rubygems/commands/info_command.rb
69% [714/1026] lib/rubygems/commands/install_command.rb
69% [715/1026] lib/rubygems/commands/list_command.rb
69% [716/1026] lib/rubygems/commands/lock_command.rb
69% [717/1026] lib/rubygems/commands/mirror_command.rb
69% [718/1026] lib/rubygems/commands/open_command.rb
70% [719/1026] lib/rubygems/commands/outdated_command.rb
70% [720/1026] lib/rubygems/commands/owner_command.rb
70% [721/1026] lib/rubygems/commands/pristine_command.rb
70% [722/1026] lib/rubygems/commands/push_command.rb
70% [723/1026] lib/rubygems/commands/query_command.rb
70% [724/1026] lib/rubygems/commands/rdoc_command.rb
70% [725/1026] lib/rubygems/commands/rebuild_command.rb
70% [726/1026] lib/rubygems/commands/search_command.rb
70% [727/1026] lib/rubygems/commands/server_command.rb
70% [728/1026] lib/rubygems/commands/setup_command.rb
71% [729/1026] lib/rubygems/commands/signin_command.rb
71% [730/1026] lib/rubygems/commands/signout_command.rb
71% [731/1026] lib/rubygems/commands/sources_command.rb
71% [732/1026] lib/rubygems/commands/specification_command.rb
71% [733/1026] lib/rubygems/commands/stale_command.rb
71% [734/1026] lib/rubygems/commands/uninstall_command.rb
71% [735/1026] lib/rubygems/commands/unpack_command.rb
71% [736/1026] lib/rubygems/commands/update_command.rb
71% [737/1026] lib/rubygems/commands/which_command.rb
71% [738/1026] lib/rubygems/commands/yank_command.rb
72% [739/1026] lib/rubygems/compatibility.rb
72% [740/1026] lib/rubygems/config_file.rb
72% [741/1026] lib/rubygems/core_ext/kernel_gem.rb
72% [742/1026] lib/rubygems/core_ext/kernel_require.rb
72% [743/1026] lib/rubygems/core_ext/kernel_warn.rb
72% [744/1026] lib/rubygems/core_ext/tcpsocket_init.rb
72% [745/1026] lib/rubygems/defaults.rb
72% [746/1026] lib/rubygems/dependency.rb
72% [747/1026] lib/rubygems/dependency_installer.rb
72% [748/1026] lib/rubygems/dependency_list.rb
73% [749/1026] lib/rubygems/deprecate.rb
73% [750/1026] lib/rubygems/doctor.rb
73% [751/1026] lib/rubygems/errors.rb
73% [752/1026] lib/rubygems/exceptions.rb
73% [753/1026] lib/rubygems/ext.rb
73% [754/1026] lib/rubygems/ext/build_error.rb
73% [755/1026] lib/rubygems/ext/builder.rb
73% [756/1026] lib/rubygems/ext/cargo_builder.rb
73% [757/1026] lib/rubygems/ext/cargo_builder/link_flag_converter.rb
73% [758/1026] lib/rubygems/ext/cmake_builder.rb
73% [759/1026] lib/rubygems/ext/configure_builder.rb
74% [760/1026] lib/rubygems/ext/ext_conf_builder.rb
74% [761/1026] lib/rubygems/ext/rake_builder.rb
74% [762/1026] lib/rubygems/gem_runner.rb
74% [763/1026] lib/rubygems/gemcutter_utilities.rb
74% [764/1026] lib/rubygems/gemcutter_utilities/webauthn_listener.rb
74% [765/1026] lib/rubygems/gemcutter_utilities/webauthn_listener/response.rb
74% [766/1026] lib/rubygems/gemcutter_utilities/webauthn_poller.rb
74% [767/1026] lib/rubygems/gemspec_helpers.rb
74% [768/1026] lib/rubygems/install_default_message.rb
74% [769/1026] lib/rubygems/install_message.rb
75% [770/1026] lib/rubygems/install_update_options.rb
75% [771/1026] lib/rubygems/installer.rb
75% [772/1026] lib/rubygems/installer_uninstaller_utils.rb
75% [773/1026] lib/rubygems/local_remote_options.rb
75% [774/1026] lib/rubygems/name_tuple.rb
75% [775/1026] lib/rubygems/openssl.rb
75% [776/1026] lib/rubygems/package.rb
75% [777/1026] lib/rubygems/package/digest_io.rb
75% [778/1026] lib/rubygems/package/file_source.rb
75% [779/1026] lib/rubygems/package/io_source.rb
76% [780/1026] lib/rubygems/package/old.rb
76% [781/1026] lib/rubygems/package/source.rb
76% [782/1026] lib/rubygems/package/tar_header.rb
76% [783/1026] lib/rubygems/package/tar_reader.rb
76% [784/1026] lib/rubygems/package/tar_reader/entry.rb
76% [785/1026] lib/rubygems/package/tar_writer.rb
76% [786/1026] lib/rubygems/package_task.rb
76% [787/1026] lib/rubygems/path_support.rb
76% [788/1026] lib/rubygems/platform.rb
76% [789/1026] lib/rubygems/psych_tree.rb
76% [790/1026] lib/rubygems/query_utils.rb
77% [791/1026] lib/rubygems/rdoc.rb
77% [792/1026] lib/rubygems/remote_fetcher.rb
77% [793/1026] lib/rubygems/request.rb
77% [794/1026] lib/rubygems/request/connection_pools.rb
77% [795/1026] lib/rubygems/request/http_pool.rb
77% [796/1026] lib/rubygems/request/https_pool.rb
77% [797/1026] lib/rubygems/request_set.rb
77% [798/1026] lib/rubygems/request_set/gem_dependency_api.rb
77% [799/1026] lib/rubygems/request_set/lockfile.rb
77% [800/1026] lib/rubygems/request_set/lockfile/parser.rb
78% [801/1026] lib/rubygems/request_set/lockfile/tokenizer.rb
78% [802/1026] lib/rubygems/requirement.rb
78% [803/1026] lib/rubygems/resolver.rb
78% [804/1026] lib/rubygems/resolver/activation_request.rb
78% [805/1026] lib/rubygems/resolver/api_set.rb
78% [806/1026] lib/rubygems/resolver/api_set/gem_parser.rb
78% [807/1026] lib/rubygems/resolver/api_specification.rb
78% [808/1026] lib/rubygems/resolver/best_set.rb
78% [809/1026] lib/rubygems/resolver/composed_set.rb
78% [810/1026] lib/rubygems/resolver/conflict.rb
79% [811/1026] lib/rubygems/resolver/current_set.rb
79% [812/1026] lib/rubygems/resolver/dependency_request.rb
79% [813/1026] lib/rubygems/resolver/git_set.rb
79% [814/1026] lib/rubygems/resolver/git_specification.rb
79% [815/1026] lib/rubygems/resolver/index_set.rb
79% [816/1026] lib/rubygems/resolver/index_specification.rb
79% [817/1026] lib/rubygems/resolver/installed_specification.rb
79% [818/1026] lib/rubygems/resolver/installer_set.rb
79% [819/1026] lib/rubygems/resolver/local_specification.rb
79% [820/1026] lib/rubygems/resolver/lock_set.rb
80% [821/1026] lib/rubygems/resolver/lock_specification.rb
80% [822/1026] lib/rubygems/resolver/requirement_list.rb
80% [823/1026] lib/rubygems/resolver/set.rb
80% [824/1026] lib/rubygems/resolver/source_set.rb
80% [825/1026] lib/rubygems/resolver/spec_specification.rb
80% [826/1026] lib/rubygems/resolver/specification.rb
80% [827/1026] lib/rubygems/resolver/stats.rb
80% [828/1026] lib/rubygems/resolver/vendor_set.rb
80% [829/1026] lib/rubygems/resolver/vendor_specification.rb
80% [830/1026] lib/rubygems/s3_uri_signer.rb
80% [831/1026] lib/rubygems/safe_marshal.rb
81% [832/1026] lib/rubygems/safe_marshal/elements.rb
81% [833/1026] lib/rubygems/safe_marshal/reader.rb
81% [834/1026] lib/rubygems/safe_marshal/visitors/stream_printer.rb
81% [835/1026] lib/rubygems/safe_marshal/visitors/to_ruby.rb
81% [836/1026] lib/rubygems/safe_marshal/visitors/visitor.rb
81% [837/1026] lib/rubygems/safe_yaml.rb
81% [838/1026] lib/rubygems/security.rb
81% [839/1026] lib/rubygems/security/policies.rb
81% [840/1026] lib/rubygems/security/policy.rb
81% [841/1026] lib/rubygems/security/signer.rb
82% [842/1026] lib/rubygems/security/trust_dir.rb
82% [843/1026] lib/rubygems/security_option.rb
82% [844/1026] lib/rubygems/shellwords.rb
82% [845/1026] lib/rubygems/source.rb
82% [846/1026] lib/rubygems/source/git.rb
82% [847/1026] lib/rubygems/source/installed.rb
82% [848/1026] lib/rubygems/source/local.rb
82% [849/1026] lib/rubygems/source/lock.rb
82% [850/1026] lib/rubygems/source/specific_file.rb
82% [851/1026] lib/rubygems/source/vendor.rb
83% [852/1026] lib/rubygems/source_list.rb
83% [853/1026] lib/rubygems/spec_fetcher.rb
83% [854/1026] lib/rubygems/specification.rb
83% [855/1026] lib/rubygems/specification_policy.rb
83% [856/1026] lib/rubygems/specification_record.rb
83% [857/1026] lib/rubygems/stub_specification.rb
83% [858/1026] lib/rubygems/text.rb
83% [859/1026] lib/rubygems/uninstaller.rb
83% [860/1026] lib/rubygems/unknown_command_spell_checker.rb
83% [861/1026] lib/rubygems/update_suggestion.rb
84% [862/1026] lib/rubygems/uri.rb
84% [863/1026] lib/rubygems/uri_formatter.rb
84% [864/1026] lib/rubygems/user_interaction.rb
84% [865/1026] lib/rubygems/util.rb
84% [866/1026] lib/rubygems/util/licenses.rb
84% [867/1026] lib/rubygems/util/list.rb
84% [868/1026] lib/rubygems/validator.rb
84% [869/1026] lib/rubygems/vendored_molinillo.rb
84% [870/1026] lib/rubygems/vendored_net_http.rb
84% [871/1026] lib/rubygems/vendored_optparse.rb
84% [872/1026] lib/rubygems/vendored_timeout.rb
85% [873/1026] lib/rubygems/vendored_tsort.rb
85% [874/1026] lib/rubygems/version.rb
85% [875/1026] lib/rubygems/version_option.rb
85% [876/1026] lib/rubygems/yaml_serializer.rb
85% [877/1026] lib/securerandom.rb
85% [878/1026] lib/set.rb
85% [879/1026] lib/set/sorted_set.rb
85% [880/1026] lib/shellwords.rb
85% [881/1026] lib/singleton.rb
85% [882/1026] lib/syntax_suggest.rb
86% [883/1026] lib/syntax_suggest/api.rb
86% [884/1026] lib/syntax_suggest/around_block_scan.rb
86% [885/1026] lib/syntax_suggest/block_expand.rb
86% [886/1026] lib/syntax_suggest/capture/before_after_keyword_ends.rb
86% [887/1026] lib/syntax_suggest/capture/falling_indent_lines.rb
86% [888/1026] lib/syntax_suggest/capture_code_context.rb
86% [889/1026] lib/syntax_suggest/clean_document.rb
86% [890/1026] lib/syntax_suggest/cli.rb
86% [891/1026] lib/syntax_suggest/code_block.rb
86% [892/1026] lib/syntax_suggest/code_frontier.rb
87% [893/1026] lib/syntax_suggest/code_line.rb
87% [894/1026] lib/syntax_suggest/code_search.rb
87% [895/1026] lib/syntax_suggest/core_ext.rb
87% [896/1026] lib/syntax_suggest/display_code_with_line_numbers.rb
87% [897/1026] lib/syntax_suggest/display_invalid_blocks.rb
87% [898/1026] lib/syntax_suggest/explain_syntax.rb
87% [899/1026] lib/syntax_suggest/left_right_lex_count.rb
87% [900/1026] lib/syntax_suggest/lex_all.rb
87% [901/1026] lib/syntax_suggest/lex_value.rb
87% [902/1026] lib/syntax_suggest/parse_blocks_from_indent_line.rb
88% [903/1026] lib/syntax_suggest/pathname_from_message.rb
88% [904/1026] lib/syntax_suggest/priority_engulf_queue.rb
88% [905/1026] lib/syntax_suggest/priority_queue.rb
88% [906/1026] lib/syntax_suggest/ripper_errors.rb
88% [907/1026] lib/syntax_suggest/scan_history.rb
88% [908/1026] lib/syntax_suggest/unvisited_lines.rb
88% [909/1026] lib/syntax_suggest/version.rb
88% [910/1026] lib/tempfile.rb
88% [911/1026] lib/time.rb
88% [912/1026] lib/timeout.rb
88% [913/1026] lib/tmpdir.rb
89% [914/1026] lib/tsort.rb
89% [915/1026] lib/un.rb
89% [916/1026] lib/unicode_normalize/normalize.rb
89% [917/1026] lib/unicode_normalize/tables.rb
89% [918/1026] lib/uri.rb
89% [919/1026] lib/uri/common.rb
89% [920/1026] lib/uri/file.rb
89% [921/1026] lib/uri/ftp.rb
89% [922/1026] lib/uri/generic.rb
89% [923/1026] lib/uri/http.rb
90% [924/1026] lib/uri/https.rb
90% [925/1026] lib/uri/ldap.rb
90% [926/1026] lib/uri/ldaps.rb
90% [927/1026] lib/uri/mailto.rb
90% [928/1026] lib/uri/rfc2396_parser.rb
90% [929/1026] lib/uri/rfc3986_parser.rb
90% [930/1026] lib/uri/version.rb
90% [931/1026] lib/uri/ws.rb
90% [932/1026] lib/uri/wss.rb
90% [933/1026] lib/weakref.rb
91% [934/1026] lib/yaml.rb
91% [935/1026] lib/yaml/dbm.rb
91% [936/1026] lib/yaml/store.rb
91% [937/1026] load.c
91% [938/1026] loadpath.c
91% [939/1026] localeinit.c
91% [940/1026] main.c
91% [941/1026] marshal.c
91% [942/1026] marshal.rb
91% [943/1026] math.c
92% [944/1026] memory_view.c
92% [945/1026] mini_builtin.c
92% [946/1026] miniinit.c
92% [947/1026] miniprelude.c
92% [948/1026] nilclass.rb
92% [949/1026] node.c
92% [950/1026] node_dump.c
92% [951/1026] numeric.c
92% [952/1026] numeric.rb
92% [953/1026] object.c
92% [954/1026] pack.c
93% [955/1026] pack.rb
93% [956/1026] parse.c
93% [957/1026] parse.y
93% [958/1026] parser_st.c
93% [959/1026] prelude.rb
93% [960/1026] prism_compile.c
93% [961/1026] prism_init.c
93% [962/1026] proc.c
93% [963/1026] process.c
93% [964/1026] ractor.c
94% [965/1026] ractor.rb
94% [966/1026] random.c
94% [967/1026] range.c
94% [968/1026] rational.c
94% [969/1026] rbconfig.rb
94% [970/1026] re.c
94% [971/1026] regcomp.c
94% [972/1026] regenc.c
94% [973/1026] regerror.c
94% [974/1026] regexec.c
95% [975/1026] regparse.c
95% [976/1026] regsyntax.c
95% [977/1026] rjit.c
95% [978/1026] rjit.rb
95% [979/1026] rjit_c.c
95% [980/1026] ruby-runner.c
95% [981/1026] ruby.c
95% [982/1026] ruby_parser.c
95% [983/1026] rubystub.c
95% [984/1026] scheduler.c
96% [985/1026] shape.c
96% [986/1026] signal.c
96% [987/1026] siphash.c
96% [988/1026] sparc.c
96% [989/1026] sprintf.c
96% [990/1026] st.c
96% [991/1026] strftime.c
96% [992/1026] string.c
96% [993/1026] string.rb
96% [994/1026] struct.c
96% [995/1026] symbol.c
97% [996/1026] symbol.rb
97% [997/1026] thread.c
97% [998/1026] thread_none.c
97% [999/1026] thread_pthread.c
97% [1000/1026] thread_pthread_mn.c
97% [1001/1026] thread_sync.c
97% [1002/1026] thread_sync.rb
97% [1003/1026] thread_win32.c
97% [1004/1026] time.c
97% [1005/1026] timev.rb
98% [1006/1026] trace_point.rb
98% [1007/1026] transcode.c
98% [1008/1026] universal_parser.c
98% [1009/1026] util.c
98% [1010/1026] variable.c
98% [1011/1026] version.c
98% [1012/1026] vm.c
98% [1013/1026] vm_args.c
98% [1014/1026] vm_backtrace.c
98% [1015/1026] vm_dump.c
99% [1016/1026] vm_eval.c
99% [1017/1026] vm_exec.c
99% [1018/1026] vm_insnhelper.c
99% [1019/1026] vm_method.c
99% [1020/1026] vm_sync.c
99% [1021/1026] vm_trace.c
99% [1022/1026] vsnprintf.c
99% [1023/1026] warning.rb
99% [1024/1026] weakmap.c
99% [1025/1026] yjit.c
100% [1026/1026] yjit.rb
Generating RI format into /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/.ext/rdoc...
Files: 1026
Classes: 1238 ( 296 undocumented)
Modules: 229 ( 72 undocumented)
Constants: 2382 ( 649 undocumented)
Attributes: 1464 ( 249 undocumented)
Methods: 12182 (2209 undocumented)
Total: 17495 (3475 undocumented)
80.14% documented
Elapsed: 15.9s
-> make install
file2lastrev.rb: does not seem to be under a vcs: .
BASERUBY = /Users/taketo/.rbenv/shims/ruby --disable=gems
CC = clang
LD = ld
LDSHARED = clang -dynamiclib
CFLAGS = -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wextra-tokens -Wdeprecated-declarations -Wdivision-by-zero -Wdiv-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wmisleading-indentation -Wundef -fno-common -pipe -arch arm64
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/arm64-darwin23 -I./include -I. -I./prism -I./enc/unicode/15.0.0 -I/opt/homebrew/opt/gmp/include
CPPFLAGS = -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT
DLDFLAGS = -L/opt/homebrew/opt/gmp/lib -Wl,-undefined,dynamic_lookup -install_name /Users/taketo/.rbenv/versions/3.3.4/lib/libruby.3.3.dylib -compatibility_version 3.3 -current_version 3.3.4 -fstack-protector-strong -framework CoreFoundation -fstack-protector-strong -framework CoreFoundation -arch arm64
SOLIBS = -lgmp -ldl -lobjc -lpthread
LANG = ja_JP.UTF-8
LC_ALL =
LC_CTYPE =
MFLAGS =
RUSTC = rustc
YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/yjit/target/release/' ./yjit/src/lib.rs
Apple clang version 16.0.0 (clang-1600.0.26.3)
Target: arm64-apple-darwin23.6.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
revision.h unchanged
generating arm64-darwin23-fake.rb
arm64-darwin23-fake.rb updated
generating enc.mk
making srcs under enc
make[1]: Nothing to be done for `srcs'.
generating transdb.h
transdb.h unchanged
generating makefiles ext/configure-ext.mk
ext/configure-ext.mk updated
generating makefile exts.mk
exts.mk unchanged
file2lastrev.rb: does not seem to be under a vcs: .
revision.h unchanged
make[1]: Nothing to be done for `note'.
making enc
make[1]: Nothing to be done for `enc'.
making trans
make[1]: Nothing to be done for `./enc/trans'.
making encs
make[1]: Nothing to be done for `encs'.
Generating RDoc documentation
Parsing sources...
0% [ 1/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-1.8.7
0% [ 2/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-1.9.1
0% [ 3/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-1.9.2
0% [ 4/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-1.9.3
0% [ 5/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.0.0
0% [ 6/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.1.0
0% [ 7/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.2.0
0% [ 8/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.3.0
0% [ 9/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.4.0
0% [10/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.5.0
1% [11/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.6.0
1% [12/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-2.7.0
1% [13/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-3.0.0.md
1% [14/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-3.1.0.md
1% [15/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/NEWS/NEWS-3.2.0.md
1% [16/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/bsearch.rdoc
1% [17/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/bug_triaging.rdoc
1% [18/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/case_mapping.rdoc
1% [19/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/character_selectors.rdoc
1% [20/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/command_injection.rdoc
2% [21/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing.md
2% [22/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/building_ruby.md
2% [23/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/documentation_guide.md
2% [24/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/glossary.md
2% [25/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/making_changes_to_ruby.md
2% [26/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/making_changes_to_stdlibs.md
2% [27/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/reporting_issues.md
2% [28/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/contributing/testing_ruby.md
2% [29/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/dig_methods.rdoc
2% [30/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/distribution.md
3% [31/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/dtrace_probes.rdoc
3% [32/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/encodings.rdoc
3% [33/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/extension.ja.rdoc
3% [34/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/extension.rdoc
3% [35/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/fiber.md
3% [36/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/format_specifications.rdoc
3% [37/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/globals.rdoc
3% [38/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/implicit_conversion.rdoc
3% [39/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/keywords.rdoc
3% [40/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/maintainers.md
3% [41/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/marshal.rdoc
4% [42/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/memory_view.md
4% [43/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/optparse/argument_converters.rdoc
4% [44/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/optparse/creates_option.rdoc
4% [45/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/optparse/option_params.rdoc
4% [46/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/optparse/tutorial.rdoc
4% [47/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/packed_data.rdoc
4% [48/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/ractor.md
4% [49/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/rdoc/markup_reference.rb
4% [50/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/regexp/methods.rdoc
4% [51/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/regexp/unicode_properties.rdoc
5% [52/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/rjit/rjit.md
5% [53/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/security.rdoc
5% [54/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/signals.rdoc
5% [55/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/standard_library.rdoc
5% [56/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/strftime_formatting.rdoc
5% [57/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax.rdoc
5% [58/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/assignment.rdoc
5% [59/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/calling_methods.rdoc
5% [60/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/comments.rdoc
5% [61/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/control_expressions.rdoc
6% [62/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/exceptions.rdoc
6% [63/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/literals.rdoc
6% [64/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/methods.rdoc
6% [65/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/miscellaneous.rdoc
6% [66/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/modules_and_classes.rdoc
6% [67/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/operators.rdoc
6% [68/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/pattern_matching.rdoc
6% [69/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/precedence.rdoc
6% [70/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/syntax/refinements.rdoc
6% [71/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/windows.md
7% [72/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/yjit/yjit.md
7% [73/1026] /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/doc/yjit/yjit_hacking.md
7% [74/1026] COPYING
7% [75/1026] COPYING.ja
7% [76/1026] LEGAL
7% [77/1026] NEWS.md
7% [78/1026] README.ja.md
7% [79/1026] README.md
7% [80/1026] addr2line.c
7% [81/1026] array.c
7% [82/1026] array.rb
8% [83/1026] ast.c
8% [84/1026] ast.rb
8% [85/1026] bignum.c
8% [86/1026] builtin.c
8% [87/1026] class.c
8% [88/1026] compar.c
8% [89/1026] compile.c
8% [90/1026] complex.c
8% [91/1026] cont.c
8% [92/1026] debug.c
9% [93/1026] debug_counter.c
9% [94/1026] dir.c
9% [95/1026] dir.rb
9% [96/1026] dln.c
9% [97/1026] dln_find.c
9% [98/1026] dmydln.c
9% [99/1026] dmyenc.c
9% [100/1026] dmyext.c
9% [101/1026] doc/NEWS/NEWS-1.8.7
9% [102/1026] doc/NEWS/NEWS-1.9.1
10% [103/1026] doc/NEWS/NEWS-1.9.2
10% [104/1026] doc/NEWS/NEWS-1.9.3
10% [105/1026] doc/NEWS/NEWS-2.0.0
10% [106/1026] doc/NEWS/NEWS-2.1.0
10% [107/1026] doc/NEWS/NEWS-2.2.0
10% [108/1026] doc/NEWS/NEWS-2.3.0
10% [109/1026] doc/NEWS/NEWS-2.4.0
10% [110/1026] doc/NEWS/NEWS-2.5.0
10% [111/1026] doc/NEWS/NEWS-2.6.0
10% [112/1026] doc/NEWS/NEWS-2.7.0
11% [113/1026] doc/NEWS/NEWS-3.0.0.md
11% [114/1026] doc/NEWS/NEWS-3.1.0.md
11% [115/1026] doc/NEWS/NEWS-3.2.0.md
11% [116/1026] doc/bsearch.rdoc
11% [117/1026] doc/bug_triaging.rdoc
11% [118/1026] doc/case_mapping.rdoc
11% [119/1026] doc/character_selectors.rdoc
11% [120/1026] doc/command_injection.rdoc
11% [121/1026] doc/contributing.md
11% [122/1026] doc/contributing/building_ruby.md
11% [123/1026] doc/contributing/documentation_guide.md
12% [124/1026] doc/contributing/glossary.md
12% [125/1026] doc/contributing/making_changes_to_ruby.md
12% [126/1026] doc/contributing/making_changes_to_stdlibs.md
12% [127/1026] doc/contributing/reporting_issues.md
12% [128/1026] doc/contributing/testing_ruby.md
12% [129/1026] doc/dig_methods.rdoc
12% [130/1026] doc/distribution.md
12% [131/1026] doc/dtrace_probes.rdoc
12% [132/1026] doc/encodings.rdoc
12% [133/1026] doc/extension.ja.rdoc
13% [134/1026] doc/extension.rdoc
13% [135/1026] doc/fiber.md
13% [136/1026] doc/format_specifications.rdoc
13% [137/1026] doc/globals.rdoc
13% [138/1026] doc/implicit_conversion.rdoc
13% [139/1026] doc/keywords.rdoc
13% [140/1026] doc/maintainers.md
13% [141/1026] doc/marshal.rdoc
13% [142/1026] doc/memory_view.md
13% [143/1026] doc/optparse/argument_converters.rdoc
14% [144/1026] doc/optparse/creates_option.rdoc
14% [145/1026] doc/optparse/option_params.rdoc
14% [146/1026] doc/optparse/tutorial.rdoc
14% [147/1026] doc/packed_data.rdoc
14% [148/1026] doc/ractor.md
14% [149/1026] doc/rdoc/markup_reference.rb
14% [150/1026] doc/regexp/methods.rdoc
14% [151/1026] doc/regexp/unicode_properties.rdoc
14% [152/1026] doc/rjit/rjit.md
14% [153/1026] doc/security.rdoc
15% [154/1026] doc/signals.rdoc
15% [155/1026] doc/standard_library.rdoc
15% [156/1026] doc/strftime_formatting.rdoc
15% [157/1026] doc/syntax.rdoc
15% [158/1026] doc/syntax/assignment.rdoc
15% [159/1026] doc/syntax/calling_methods.rdoc
15% [160/1026] doc/syntax/comments.rdoc
15% [161/1026] doc/syntax/control_expressions.rdoc
15% [162/1026] doc/syntax/exceptions.rdoc
15% [163/1026] doc/syntax/literals.rdoc
15% [164/1026] doc/syntax/methods.rdoc
16% [165/1026] doc/syntax/miscellaneous.rdoc
16% [166/1026] doc/syntax/modules_and_classes.rdoc
16% [167/1026] doc/syntax/operators.rdoc
16% [168/1026] doc/syntax/pattern_matching.rdoc
16% [169/1026] doc/syntax/precedence.rdoc
16% [170/1026] doc/syntax/refinements.rdoc
16% [171/1026] doc/windows.md
16% [172/1026] doc/yjit/yjit.md
16% [173/1026] doc/yjit/yjit_hacking.md
16% [174/1026] encoding.c
17% [175/1026] enum.c
17% [176/1026] enumerator.c
17% [177/1026] error.c
17% [178/1026] eval.c
17% [179/1026] eval_error.c
17% [180/1026] eval_jump.c
17% [181/1026] ext/bigdecimal/bigdecimal.c
17% [182/1026] ext/bigdecimal/lib/bigdecimal.rb
17% [183/1026] ext/bigdecimal/lib/bigdecimal/jacobian.rb
17% [184/1026] ext/bigdecimal/lib/bigdecimal/ludcmp.rb
18% [185/1026] ext/bigdecimal/lib/bigdecimal/math.rb
18% [186/1026] ext/bigdecimal/lib/bigdecimal/newton.rb
18% [187/1026] ext/bigdecimal/lib/bigdecimal/util.rb
18% [188/1026] ext/cgi/escape/escape.c
18% [189/1026] ext/continuation/continuation.c
18% [190/1026] ext/coverage/coverage.c
18% [191/1026] ext/coverage/lib/coverage.rb
18% [192/1026] ext/date/date_core.c
18% [193/1026] ext/date/date_parse.c
18% [194/1026] ext/date/date_strftime.c
19% [195/1026] ext/date/date_strptime.c
19% [196/1026] ext/date/lib/date.rb
19% [197/1026] ext/digest/bubblebabble/bubblebabble.c
19% [198/1026] ext/digest/digest.c
19% [199/1026] ext/digest/lib/digest.rb
19% [200/1026] ext/digest/lib/digest/loader.rb
19% [201/1026] ext/digest/lib/digest/version.rb
19% [202/1026] ext/digest/md5/md5init.c
19% [203/1026] ext/digest/rmd160/rmd160init.c
19% [204/1026] ext/digest/sha1/sha1init.c
19% [205/1026] ext/digest/sha2/lib/sha2.rb
20% [206/1026] ext/digest/sha2/lib/sha2/loader.rb
20% [207/1026] ext/digest/sha2/sha2init.c
20% [208/1026] ext/etc/etc.c
20% [209/1026] ext/fcntl/fcntl.c
20% [210/1026] ext/fiddle/closure.c
20% [211/1026] ext/fiddle/conversions.c
20% [212/1026] ext/fiddle/fiddle.c
20% [213/1026] ext/fiddle/function.c
20% [214/1026] ext/fiddle/handle.c
20% [215/1026] ext/fiddle/lib/fiddle.rb
21% [216/1026] ext/fiddle/lib/fiddle/closure.rb
21% [217/1026] ext/fiddle/lib/fiddle/cparser.rb
21% [218/1026] ext/fiddle/lib/fiddle/function.rb
21% [219/1026] ext/fiddle/lib/fiddle/import.rb
21% [220/1026] ext/fiddle/lib/fiddle/pack.rb
21% [221/1026] ext/fiddle/lib/fiddle/struct.rb
21% [222/1026] ext/fiddle/lib/fiddle/types.rb
21% [223/1026] ext/fiddle/lib/fiddle/value.rb
21% [224/1026] ext/fiddle/lib/fiddle/version.rb
21% [225/1026] ext/fiddle/pinned.c
22% [226/1026] ext/fiddle/pointer.c
22% [227/1026] ext/io/console/console.c
22% [228/1026] ext/io/nonblock/nonblock.c
22% [229/1026] ext/io/wait/wait.c
22% [230/1026] ext/json/generator/generator.c
22% [231/1026] ext/json/lib/json.rb
22% [232/1026] ext/json/lib/json/add/bigdecimal.rb
22% [233/1026] ext/json/lib/json/add/complex.rb
22% [234/1026] ext/json/lib/json/add/core.rb
22% [235/1026] ext/json/lib/json/add/date.rb
23% [236/1026] ext/json/lib/json/add/date_time.rb
23% [237/1026] ext/json/lib/json/add/exception.rb
23% [238/1026] ext/json/lib/json/add/ostruct.rb
23% [239/1026] ext/json/lib/json/add/range.rb
23% [240/1026] ext/json/lib/json/add/rational.rb
23% [241/1026] ext/json/lib/json/add/regexp.rb
23% [242/1026] ext/json/lib/json/add/set.rb
23% [243/1026] ext/json/lib/json/add/struct.rb
23% [244/1026] ext/json/lib/json/add/symbol.rb
23% [245/1026] ext/json/lib/json/add/time.rb
23% [246/1026] ext/json/lib/json/common.rb
24% [247/1026] ext/json/lib/json/ext.rb
24% [248/1026] ext/json/lib/json/generic_object.rb
24% [249/1026] ext/json/lib/json/version.rb
24% [250/1026] ext/json/parser/parser.c
24% [251/1026] ext/monitor/lib/monitor.rb
24% [252/1026] ext/monitor/monitor.c
24% [253/1026] ext/nkf/lib/kconv.rb
24% [254/1026] ext/nkf/nkf.c
24% [255/1026] ext/objspace/lib/objspace.rb
24% [256/1026] ext/objspace/lib/objspace/trace.rb
25% [257/1026] ext/objspace/object_tracing.c
25% [258/1026] ext/objspace/objspace.c
25% [259/1026] ext/objspace/objspace_dump.c
25% [260/1026] ext/openssl/lib/openssl.rb
25% [261/1026] ext/openssl/lib/openssl/bn.rb
25% [262/1026] ext/openssl/lib/openssl/buffering.rb
25% [263/1026] ext/openssl/lib/openssl/cipher.rb
25% [264/1026] ext/openssl/lib/openssl/digest.rb
25% [265/1026] ext/openssl/lib/openssl/hmac.rb
25% [266/1026] ext/openssl/lib/openssl/marshal.rb
26% [267/1026] ext/openssl/lib/openssl/pkcs5.rb
26% [268/1026] ext/openssl/lib/openssl/pkey.rb
26% [269/1026] ext/openssl/lib/openssl/ssl.rb
26% [270/1026] ext/openssl/lib/openssl/version.rb
26% [271/1026] ext/openssl/lib/openssl/x509.rb
26% [272/1026] ext/openssl/ossl.c
26% [273/1026] ext/openssl/ossl_asn1.c
26% [274/1026] ext/openssl/ossl_bio.c
26% [275/1026] ext/openssl/ossl_bn.c
26% [276/1026] ext/openssl/ossl_cipher.c
26% [277/1026] ext/openssl/ossl_config.c
27% [278/1026] ext/openssl/ossl_digest.c
27% [279/1026] ext/openssl/ossl_engine.c
27% [280/1026] ext/openssl/ossl_hmac.c
27% [281/1026] ext/openssl/ossl_kdf.c
27% [282/1026] ext/openssl/ossl_ns_spki.c
27% [283/1026] ext/openssl/ossl_ocsp.c
27% [284/1026] ext/openssl/ossl_pkcs12.c
27% [285/1026] ext/openssl/ossl_pkcs7.c
27% [286/1026] ext/openssl/ossl_pkey.c
27% [287/1026] ext/openssl/ossl_pkey_dh.c
28% [288/1026] ext/openssl/ossl_pkey_dsa.c
28% [289/1026] ext/openssl/ossl_pkey_ec.c
28% [290/1026] ext/openssl/ossl_pkey_rsa.c
28% [291/1026] ext/openssl/ossl_rand.c
28% [292/1026] ext/openssl/ossl_ssl.c
28% [293/1026] ext/openssl/ossl_ssl_session.c
28% [294/1026] ext/openssl/ossl_ts.c
28% [295/1026] ext/openssl/ossl_x509.c
28% [296/1026] ext/openssl/ossl_x509attr.c
28% [297/1026] ext/openssl/ossl_x509cert.c
29% [298/1026] ext/openssl/ossl_x509crl.c
29% [299/1026] ext/openssl/ossl_x509ext.c
29% [300/1026] ext/openssl/ossl_x509name.c
29% [301/1026] ext/openssl/ossl_x509req.c
29% [302/1026] ext/openssl/ossl_x509revoked.c
29% [303/1026] ext/openssl/ossl_x509store.c
29% [304/1026] ext/pathname/lib/pathname.rb
29% [305/1026] ext/pathname/pathname.c
29% [306/1026] ext/psych/lib/psych.rb
29% [307/1026] ext/psych/lib/psych/class_loader.rb
30% [308/1026] ext/psych/lib/psych/coder.rb
30% [309/1026] ext/psych/lib/psych/core_ext.rb
30% [310/1026] ext/psych/lib/psych/exception.rb
30% [311/1026] ext/psych/lib/psych/handler.rb
30% [312/1026] ext/psych/lib/psych/handlers/document_stream.rb
30% [313/1026] ext/psych/lib/psych/handlers/recorder.rb
30% [314/1026] ext/psych/lib/psych/json/ruby_events.rb
30% [315/1026] ext/psych/lib/psych/json/stream.rb
30% [316/1026] ext/psych/lib/psych/json/tree_builder.rb
30% [317/1026] ext/psych/lib/psych/json/yaml_events.rb
30% [318/1026] ext/psych/lib/psych/nodes.rb
31% [319/1026] ext/psych/lib/psych/nodes/alias.rb
31% [320/1026] ext/psych/lib/psych/nodes/document.rb
31% [321/1026] ext/psych/lib/psych/nodes/mapping.rb
31% [322/1026] ext/psych/lib/psych/nodes/node.rb
31% [323/1026] ext/psych/lib/psych/nodes/scalar.rb
31% [324/1026] ext/psych/lib/psych/nodes/sequence.rb
31% [325/1026] ext/psych/lib/psych/nodes/stream.rb
31% [326/1026] ext/psych/lib/psych/omap.rb
31% [327/1026] ext/psych/lib/psych/parser.rb
31% [328/1026] ext/psych/lib/psych/scalar_scanner.rb
32% [329/1026] ext/psych/lib/psych/set.rb
32% [330/1026] ext/psych/lib/psych/stream.rb
32% [331/1026] ext/psych/lib/psych/streaming.rb
32% [332/1026] ext/psych/lib/psych/syntax_error.rb
32% [333/1026] ext/psych/lib/psych/tree_builder.rb
32% [334/1026] ext/psych/lib/psych/versions.rb
32% [335/1026] ext/psych/lib/psych/visitors.rb
32% [336/1026] ext/psych/lib/psych/visitors/depth_first.rb
32% [337/1026] ext/psych/lib/psych/visitors/emitter.rb
32% [338/1026] ext/psych/lib/psych/visitors/json_tree.rb
33% [339/1026] ext/psych/lib/psych/visitors/to_ruby.rb
33% [340/1026] ext/psych/lib/psych/visitors/visitor.rb
33% [341/1026] ext/psych/lib/psych/visitors/yaml_tree.rb
33% [342/1026] ext/psych/lib/psych/y.rb
33% [343/1026] ext/psych/psych.c
33% [344/1026] ext/psych/psych_emitter.c
33% [345/1026] ext/psych/psych_parser.c
33% [346/1026] ext/psych/psych_to_ruby.c
33% [347/1026] ext/psych/psych_yaml_tree.c
33% [348/1026] ext/pty/lib/expect.rb
34% [349/1026] ext/pty/pty.c
34% [350/1026] ext/rbconfig/sizeof/limits.c
34% [351/1026] ext/rbconfig/sizeof/sizes.c
34% [352/1026] ext/ripper/lib/ripper.rb
34% [353/1026] ext/ripper/lib/ripper/core.rb
34% [354/1026] ext/ripper/lib/ripper/filter.rb
34% [355/1026] ext/ripper/lib/ripper/lexer.rb
34% [356/1026] ext/ripper/lib/ripper/sexp.rb
34% [357/1026] ext/socket/ancdata.c
34% [358/1026] ext/socket/basicsocket.c
34% [359/1026] ext/socket/constants.c
35% [360/1026] ext/socket/constdefs.c
35% [361/1026] ext/socket/ifaddr.c
35% [362/1026] ext/socket/init.c
35% [363/1026] ext/socket/ipsocket.c
35% [364/1026] ext/socket/lib/socket.rb
35% [365/1026] ext/socket/option.c
35% [366/1026] ext/socket/raddrinfo.c
35% [367/1026] ext/socket/socket.c
35% [368/1026] ext/socket/sockssocket.c
35% [369/1026] ext/socket/tcpserver.c
36% [370/1026] ext/socket/tcpsocket.c
36% [371/1026] ext/socket/udpsocket.c
36% [372/1026] ext/socket/unixserver.c
36% [373/1026] ext/socket/unixsocket.c
36% [374/1026] ext/stringio/stringio.c
36% [375/1026] ext/strscan/strscan.c
36% [376/1026] ext/syslog/lib/syslog/logger.rb
36% [377/1026] ext/syslog/syslog.c
36% [378/1026] ext/win32/lib/win32/registry.rb
36% [379/1026] ext/win32/lib/win32/resolv.rb
37% [380/1026] ext/win32/lib/win32/sspi.rb
37% [381/1026] ext/win32/resolv/resolv.c
37% [382/1026] ext/win32ole/lib/win32ole.rb
37% [383/1026] ext/win32ole/lib/win32ole/property.rb
37% [384/1026] ext/win32ole/win32ole.c
37% [385/1026] ext/win32ole/win32ole_error.c
37% [386/1026] ext/win32ole/win32ole_event.c
37% [387/1026] ext/win32ole/win32ole_method.c
37% [388/1026] ext/win32ole/win32ole_param.c
37% [389/1026] ext/win32ole/win32ole_record.c
38% [390/1026] ext/win32ole/win32ole_type.c
38% [391/1026] ext/win32ole/win32ole_typelib.c
38% [392/1026] ext/win32ole/win32ole_variable.c
38% [393/1026] ext/win32ole/win32ole_variant.c
38% [394/1026] ext/win32ole/win32ole_variant_m.c
38% [395/1026] ext/zlib/zlib.c
38% [396/1026] file.c
38% [397/1026] gc.c
38% [398/1026] gc.rb
38% [399/1026] golf_prelude.c
38% [400/1026] goruby.c
39% [401/1026] hash.c
39% [402/1026] id.c
39% [403/1026] id_table.c
39% [404/1026] inits.c
39% [405/1026] io.c
39% [406/1026] io.rb
39% [407/1026] io_buffer.c
39% [408/1026] iseq.c
39% [409/1026] kernel.rb
39% [410/1026] lex.c
40% [411/1026] lib/English.rb
40% [412/1026] lib/abbrev.rb
40% [413/1026] lib/base64.rb
40% [414/1026] lib/benchmark.rb
40% [415/1026] lib/bundled_gems.rb
40% [416/1026] lib/bundler.rb
40% [417/1026] lib/cgi.rb
40% [418/1026] lib/cgi/cookie.rb
40% [419/1026] lib/cgi/core.rb
40% [420/1026] lib/cgi/html.rb
41% [421/1026] lib/cgi/session.rb
41% [422/1026] lib/cgi/session/pstore.rb
41% [423/1026] lib/cgi/util.rb
41% [424/1026] lib/csv.rb
41% [425/1026] lib/csv/core_ext/array.rb
41% [426/1026] lib/csv/core_ext/string.rb
41% [427/1026] lib/csv/fields_converter.rb
41% [428/1026] lib/csv/input_record_separator.rb
41% [429/1026] lib/csv/parser.rb
41% [430/1026] lib/csv/row.rb
42% [431/1026] lib/csv/table.rb
42% [432/1026] lib/csv/version.rb
42% [433/1026] lib/csv/writer.rb
42% [434/1026] lib/delegate.rb
42% [435/1026] lib/did_you_mean.rb
42% [436/1026] lib/did_you_mean/core_ext/name_error.rb
42% [437/1026] lib/did_you_mean/experimental.rb
42% [438/1026] lib/did_you_mean/formatter.rb
42% [439/1026] lib/did_you_mean/formatters/plain_formatter.rb
42% [440/1026] lib/did_you_mean/formatters/verbose_formatter.rb
42% [441/1026] lib/did_you_mean/jaro_winkler.rb
43% [442/1026] lib/did_you_mean/levenshtein.rb
43% [443/1026] lib/did_you_mean/spell_checker.rb
43% [444/1026] lib/did_you_mean/spell_checkers/key_error_checker.rb
43% [445/1026] lib/did_you_mean/spell_checkers/method_name_checker.rb
43% [446/1026] lib/did_you_mean/spell_checkers/name_error_checkers.rb
43% [447/1026] lib/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb
43% [448/1026] lib/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb
43% [449/1026] lib/did_you_mean/spell_checkers/null_checker.rb
43% [450/1026] lib/did_you_mean/spell_checkers/pattern_key_name_checker.rb
43% [451/1026] lib/did_you_mean/spell_checkers/require_path_checker.rb
44% [452/1026] lib/did_you_mean/tree_spell_checker.rb
44% [453/1026] lib/did_you_mean/verbose.rb
44% [454/1026] lib/did_you_mean/version.rb
44% [455/1026] lib/drb.rb
44% [456/1026] lib/drb/acl.rb
44% [457/1026] lib/drb/drb.rb
44% [458/1026] lib/drb/eq.rb
44% [459/1026] lib/drb/extserv.rb
44% [460/1026] lib/drb/extservm.rb
44% [461/1026] lib/drb/gw.rb
45% [462/1026] lib/drb/invokemethod.rb
45% [463/1026] lib/drb/observer.rb
45% [464/1026] lib/drb/ssl.rb
45% [465/1026] lib/drb/timeridconv.rb
45% [466/1026] lib/drb/unix.rb
45% [467/1026] lib/drb/version.rb
45% [468/1026] lib/drb/weakidconv.rb
45% [469/1026] lib/erb.rb
45% [470/1026] lib/erb/compiler.rb
45% [471/1026] lib/erb/def_method.rb
46% [472/1026] lib/erb/util.rb
46% [473/1026] lib/erb/version.rb
46% [474/1026] lib/error_highlight.rb
46% [475/1026] lib/error_highlight/base.rb
46% [476/1026] lib/error_highlight/core_ext.rb
46% [477/1026] lib/error_highlight/formatter.rb
46% [478/1026] lib/error_highlight/version.rb
46% [479/1026] lib/fileutils.rb
46% [480/1026] lib/find.rb
46% [481/1026] lib/forwardable.rb
46% [482/1026] lib/forwardable/impl.rb
47% [483/1026] lib/getoptlong.rb
47% [484/1026] lib/ipaddr.rb
47% [485/1026] lib/irb.rb
47% [486/1026] lib/irb/cmd/nop.rb
47% [487/1026] lib/irb/color.rb
47% [488/1026] lib/irb/color_printer.rb
47% [489/1026] lib/irb/command.rb
47% [490/1026] lib/irb/command/backtrace.rb
47% [491/1026] lib/irb/command/base.rb
47% [492/1026] lib/irb/command/break.rb
48% [493/1026] lib/irb/command/catch.rb
48% [494/1026] lib/irb/command/chws.rb
48% [495/1026] lib/irb/command/context.rb
48% [496/1026] lib/irb/command/continue.rb
48% [497/1026] lib/irb/command/debug.rb
48% [498/1026] lib/irb/command/delete.rb
48% [499/1026] lib/irb/command/disable_irb.rb
48% [500/1026] lib/irb/command/edit.rb
48% [501/1026] lib/irb/command/exit.rb
48% [502/1026] lib/irb/command/finish.rb
49% [503/1026] lib/irb/command/force_exit.rb
49% [504/1026] lib/irb/command/help.rb
49% [505/1026] lib/irb/command/history.rb
49% [506/1026] lib/irb/command/info.rb
49% [507/1026] lib/irb/command/internal_helpers.rb
49% [508/1026] lib/irb/command/irb_info.rb
49% [509/1026] lib/irb/command/load.rb
49% [510/1026] lib/irb/command/ls.rb
49% [511/1026] lib/irb/command/measure.rb
49% [512/1026] lib/irb/command/next.rb
50% [513/1026] lib/irb/command/pushws.rb
50% [514/1026] lib/irb/command/show_doc.rb
50% [515/1026] lib/irb/command/show_source.rb
50% [516/1026] lib/irb/command/step.rb
50% [517/1026] lib/irb/command/subirb.rb
50% [518/1026] lib/irb/command/whereami.rb
50% [519/1026] lib/irb/completion.rb
50% [520/1026] lib/irb/context.rb
50% [521/1026] lib/irb/debug.rb
50% [522/1026] lib/irb/debug/ui.rb
50% [523/1026] lib/irb/default_commands.rb
51% [524/1026] lib/irb/easter-egg.rb
51% [525/1026] lib/irb/ext/change-ws.rb
51% [526/1026] lib/irb/ext/eval_history.rb
51% [527/1026] lib/irb/ext/loader.rb
51% [528/1026] lib/irb/ext/multi-irb.rb
51% [529/1026] lib/irb/ext/tracer.rb
51% [530/1026] lib/irb/ext/use-loader.rb
51% [531/1026] lib/irb/ext/workspaces.rb
51% [532/1026] lib/irb/frame.rb
51% [533/1026] lib/irb/help.rb
52% [534/1026] lib/irb/helper_method.rb
52% [535/1026] lib/irb/helper_method/base.rb
52% [536/1026] lib/irb/helper_method/conf.rb
52% [537/1026] lib/irb/history.rb
52% [538/1026] lib/irb/init.rb
52% [539/1026] lib/irb/input-method.rb
52% [540/1026] lib/irb/inspector.rb
52% [541/1026] lib/irb/lc/error.rb
52% [542/1026] lib/irb/lc/ja/error.rb
52% [543/1026] lib/irb/locale.rb
53% [544/1026] lib/irb/nesting_parser.rb
53% [545/1026] lib/irb/notifier.rb
53% [546/1026] lib/irb/output-method.rb
53% [547/1026] lib/irb/pager.rb
53% [548/1026] lib/irb/ruby-lex.rb
53% [549/1026] lib/irb/source_finder.rb
53% [550/1026] lib/irb/statement.rb
53% [551/1026] lib/irb/version.rb
53% [552/1026] lib/irb/workspace.rb
53% [553/1026] lib/irb/ws-for-case-2.rb
53% [554/1026] lib/irb/xmp.rb
54% [555/1026] lib/logger.rb
54% [556/1026] lib/logger/errors.rb
54% [557/1026] lib/logger/formatter.rb
54% [558/1026] lib/logger/log_device.rb
54% [559/1026] lib/logger/period.rb
54% [560/1026] lib/logger/severity.rb
54% [561/1026] lib/logger/version.rb
54% [562/1026] lib/mkmf.rb
54% [563/1026] lib/mutex_m.rb
54% [564/1026] lib/net/http.rb
55% [565/1026] lib/net/http/backward.rb
55% [566/1026] lib/net/http/exceptions.rb
55% [567/1026] lib/net/http/generic_request.rb
55% [568/1026] lib/net/http/header.rb
55% [569/1026] lib/net/http/proxy_delta.rb
55% [570/1026] lib/net/http/request.rb
55% [571/1026] lib/net/http/requests.rb
55% [572/1026] lib/net/http/response.rb
55% [573/1026] lib/net/http/responses.rb
55% [574/1026] lib/net/http/status.rb
56% [575/1026] lib/net/https.rb
56% [576/1026] lib/net/protocol.rb
56% [577/1026] lib/observer.rb
56% [578/1026] lib/open-uri.rb
56% [579/1026] lib/open3.rb
56% [580/1026] lib/open3/version.rb
56% [581/1026] lib/optionparser.rb
56% [582/1026] lib/optparse.rb
56% [583/1026] lib/optparse/ac.rb
56% [584/1026] lib/optparse/date.rb
57% [585/1026] lib/optparse/kwargs.rb
57% [586/1026] lib/optparse/shellwords.rb
57% [587/1026] lib/optparse/time.rb
57% [588/1026] lib/optparse/uri.rb
57% [589/1026] lib/optparse/version.rb
57% [590/1026] lib/ostruct.rb
57% [591/1026] lib/pp.rb
57% [592/1026] lib/prettyprint.rb
57% [593/1026] lib/prism.rb
57% [594/1026] lib/prism/compiler.rb
57% [595/1026] lib/prism/debug.rb
58% [596/1026] lib/prism/desugar_compiler.rb
58% [597/1026] lib/prism/dispatcher.rb
58% [598/1026] lib/prism/dsl.rb
58% [599/1026] lib/prism/ffi.rb
58% [600/1026] lib/prism/lex_compat.rb
58% [601/1026] lib/prism/mutation_compiler.rb
58% [602/1026] lib/prism/node.rb
58% [603/1026] lib/prism/node_ext.rb
58% [604/1026] lib/prism/node_inspector.rb
58% [605/1026] lib/prism/pack.rb
59% [606/1026] lib/prism/parse_result.rb
59% [607/1026] lib/prism/parse_result/comments.rb
59% [608/1026] lib/prism/parse_result/newlines.rb
59% [609/1026] lib/prism/pattern.rb
59% [610/1026] lib/prism/ripper_compat.rb
59% [611/1026] lib/prism/serialize.rb
59% [612/1026] lib/prism/visitor.rb
59% [613/1026] lib/pstore.rb
59% [614/1026] lib/random/formatter.rb
59% [615/1026] lib/rdoc.rb
60% [616/1026] lib/rdoc/alias.rb
60% [617/1026] lib/rdoc/anon_class.rb
60% [618/1026] lib/rdoc/any_method.rb
60% [619/1026] lib/rdoc/attr.rb
60% [620/1026] lib/rdoc/class_module.rb
60% [621/1026] lib/rdoc/code_object.rb
60% [622/1026] lib/rdoc/code_objects.rb
60% [623/1026] lib/rdoc/comment.rb
60% [624/1026] lib/rdoc/constant.rb
60% [625/1026] lib/rdoc/context.rb
61% [626/1026] lib/rdoc/cross_reference.rb
61% [627/1026] lib/rdoc/encoding.rb
61% [628/1026] lib/rdoc/erb_partial.rb
61% [629/1026] lib/rdoc/erbio.rb
61% [630/1026] lib/rdoc/extend.rb
61% [631/1026] lib/rdoc/generator.rb
61% [632/1026] lib/rdoc/ghost_method.rb
61% [633/1026] lib/rdoc/i18n.rb
61% [634/1026] lib/rdoc/include.rb
61% [635/1026] lib/rdoc/known_classes.rb
61% [636/1026] lib/rdoc/markdown.rb
62% [637/1026] lib/rdoc/markup.rb
62% [638/1026] lib/rdoc/meta_method.rb
62% [639/1026] lib/rdoc/method_attr.rb
62% [640/1026] lib/rdoc/mixin.rb
62% [641/1026] lib/rdoc/normal_class.rb
62% [642/1026] lib/rdoc/normal_module.rb
62% [643/1026] lib/rdoc/options.rb
62% [644/1026] lib/rdoc/parser.rb
62% [645/1026] lib/rdoc/parser/c.rb
62% [646/1026] lib/rdoc/parser/changelog.rb
63% [647/1026] lib/rdoc/parser/markdown.rb
63% [648/1026] lib/rdoc/parser/rd.rb
63% [649/1026] lib/rdoc/parser/ripper_state_lex.rb
63% [650/1026] lib/rdoc/parser/ruby.rb
63% [651/1026] lib/rdoc/parser/ruby_tools.rb
63% [652/1026] lib/rdoc/parser/simple.rb
63% [653/1026] lib/rdoc/parser/text.rb
63% [654/1026] lib/rdoc/rd.rb
63% [655/1026] lib/rdoc/rdoc.rb
63% [656/1026] lib/rdoc/require.rb
64% [657/1026] lib/rdoc/ri.rb
64% [658/1026] lib/rdoc/rubygems_hook.rb
64% [659/1026] lib/rdoc/servlet.rb
64% [660/1026] lib/rdoc/single_class.rb
64% [661/1026] lib/rdoc/stats.rb
64% [662/1026] lib/rdoc/store.rb
64% [663/1026] lib/rdoc/task.rb
64% [664/1026] lib/rdoc/text.rb
64% [665/1026] lib/rdoc/token_stream.rb
64% [666/1026] lib/rdoc/tom_doc.rb
65% [667/1026] lib/rdoc/top_level.rb
65% [668/1026] lib/rdoc/version.rb
65% [669/1026] lib/readline.rb
65% [670/1026] lib/reline.rb
65% [671/1026] lib/reline/ansi.rb
65% [672/1026] lib/reline/config.rb
65% [673/1026] lib/reline/face.rb
65% [674/1026] lib/reline/general_io.rb
65% [675/1026] lib/reline/history.rb
65% [676/1026] lib/reline/key_actor.rb
65% [677/1026] lib/reline/key_actor/base.rb
66% [678/1026] lib/reline/key_actor/emacs.rb
66% [679/1026] lib/reline/key_actor/vi_command.rb
66% [680/1026] lib/reline/key_actor/vi_insert.rb
66% [681/1026] lib/reline/key_stroke.rb
66% [682/1026] lib/reline/kill_ring.rb
66% [683/1026] lib/reline/line_editor.rb
66% [684/1026] lib/reline/terminfo.rb
66% [685/1026] lib/reline/unicode.rb
66% [686/1026] lib/reline/unicode/east_asian_width.rb
66% [687/1026] lib/reline/version.rb
67% [688/1026] lib/reline/windows.rb
67% [689/1026] lib/resolv-replace.rb
67% [690/1026] lib/resolv.rb
67% [691/1026] lib/rinda/rinda.rb
67% [692/1026] lib/rinda/ring.rb
67% [693/1026] lib/rinda/tuplespace.rb
67% [694/1026] lib/ruby_vm/rjit/stats.rb
67% [695/1026] lib/rubygems.rb
67% [696/1026] lib/rubygems/available_set.rb
67% [697/1026] lib/rubygems/basic_specification.rb
68% [698/1026] lib/rubygems/bundler_version_finder.rb
68% [699/1026] lib/rubygems/ci_detector.rb
68% [700/1026] lib/rubygems/command.rb
68% [701/1026] lib/rubygems/command_manager.rb
68% [702/1026] lib/rubygems/commands/build_command.rb
68% [703/1026] lib/rubygems/commands/cert_command.rb
68% [704/1026] lib/rubygems/commands/check_command.rb
68% [705/1026] lib/rubygems/commands/cleanup_command.rb
68% [706/1026] lib/rubygems/commands/contents_command.rb
68% [707/1026] lib/rubygems/commands/dependency_command.rb
69% [708/1026] lib/rubygems/commands/environment_command.rb
69% [709/1026] lib/rubygems/commands/exec_command.rb
69% [710/1026] lib/rubygems/commands/fetch_command.rb
69% [711/1026] lib/rubygems/commands/generate_index_command.rb
69% [712/1026] lib/rubygems/commands/help_command.rb
69% [713/1026] lib/rubygems/commands/info_command.rb
69% [714/1026] lib/rubygems/commands/install_command.rb
69% [715/1026] lib/rubygems/commands/list_command.rb
69% [716/1026] lib/rubygems/commands/lock_command.rb
69% [717/1026] lib/rubygems/commands/mirror_command.rb
69% [718/1026] lib/rubygems/commands/open_command.rb
70% [719/1026] lib/rubygems/commands/outdated_command.rb
70% [720/1026] lib/rubygems/commands/owner_command.rb
70% [721/1026] lib/rubygems/commands/pristine_command.rb
70% [722/1026] lib/rubygems/commands/push_command.rb
70% [723/1026] lib/rubygems/commands/query_command.rb
70% [724/1026] lib/rubygems/commands/rdoc_command.rb
70% [725/1026] lib/rubygems/commands/rebuild_command.rb
70% [726/1026] lib/rubygems/commands/search_command.rb
70% [727/1026] lib/rubygems/commands/server_command.rb
70% [728/1026] lib/rubygems/commands/setup_command.rb
71% [729/1026] lib/rubygems/commands/signin_command.rb
71% [730/1026] lib/rubygems/commands/signout_command.rb
71% [731/1026] lib/rubygems/commands/sources_command.rb
71% [732/1026] lib/rubygems/commands/specification_command.rb
71% [733/1026] lib/rubygems/commands/stale_command.rb
71% [734/1026] lib/rubygems/commands/uninstall_command.rb
71% [735/1026] lib/rubygems/commands/unpack_command.rb
71% [736/1026] lib/rubygems/commands/update_command.rb
71% [737/1026] lib/rubygems/commands/which_command.rb
71% [738/1026] lib/rubygems/commands/yank_command.rb
72% [739/1026] lib/rubygems/compatibility.rb
72% [740/1026] lib/rubygems/config_file.rb
72% [741/1026] lib/rubygems/core_ext/kernel_gem.rb
72% [742/1026] lib/rubygems/core_ext/kernel_require.rb
72% [743/1026] lib/rubygems/core_ext/kernel_warn.rb
72% [744/1026] lib/rubygems/core_ext/tcpsocket_init.rb
72% [745/1026] lib/rubygems/defaults.rb
72% [746/1026] lib/rubygems/dependency.rb
72% [747/1026] lib/rubygems/dependency_installer.rb
72% [748/1026] lib/rubygems/dependency_list.rb
73% [749/1026] lib/rubygems/deprecate.rb
73% [750/1026] lib/rubygems/doctor.rb
73% [751/1026] lib/rubygems/errors.rb
73% [752/1026] lib/rubygems/exceptions.rb
73% [753/1026] lib/rubygems/ext.rb
73% [754/1026] lib/rubygems/ext/build_error.rb
73% [755/1026] lib/rubygems/ext/builder.rb
73% [756/1026] lib/rubygems/ext/cargo_builder.rb
73% [757/1026] lib/rubygems/ext/cargo_builder/link_flag_converter.rb
73% [758/1026] lib/rubygems/ext/cmake_builder.rb
73% [759/1026] lib/rubygems/ext/configure_builder.rb
74% [760/1026] lib/rubygems/ext/ext_conf_builder.rb
74% [761/1026] lib/rubygems/ext/rake_builder.rb
74% [762/1026] lib/rubygems/gem_runner.rb
74% [763/1026] lib/rubygems/gemcutter_utilities.rb
74% [764/1026] lib/rubygems/gemcutter_utilities/webauthn_listener.rb
74% [765/1026] lib/rubygems/gemcutter_utilities/webauthn_listener/response.rb
74% [766/1026] lib/rubygems/gemcutter_utilities/webauthn_poller.rb
74% [767/1026] lib/rubygems/gemspec_helpers.rb
74% [768/1026] lib/rubygems/install_default_message.rb
74% [769/1026] lib/rubygems/install_message.rb
75% [770/1026] lib/rubygems/install_update_options.rb
75% [771/1026] lib/rubygems/installer.rb
75% [772/1026] lib/rubygems/installer_uninstaller_utils.rb
75% [773/1026] lib/rubygems/local_remote_options.rb
75% [774/1026] lib/rubygems/name_tuple.rb
75% [775/1026] lib/rubygems/openssl.rb
75% [776/1026] lib/rubygems/package.rb
75% [777/1026] lib/rubygems/package/digest_io.rb
75% [778/1026] lib/rubygems/package/file_source.rb
75% [779/1026] lib/rubygems/package/io_source.rb
76% [780/1026] lib/rubygems/package/old.rb
76% [781/1026] lib/rubygems/package/source.rb
76% [782/1026] lib/rubygems/package/tar_header.rb
76% [783/1026] lib/rubygems/package/tar_reader.rb
76% [784/1026] lib/rubygems/package/tar_reader/entry.rb
76% [785/1026] lib/rubygems/package/tar_writer.rb
76% [786/1026] lib/rubygems/package_task.rb
76% [787/1026] lib/rubygems/path_support.rb
76% [788/1026] lib/rubygems/platform.rb
76% [789/1026] lib/rubygems/psych_tree.rb
76% [790/1026] lib/rubygems/query_utils.rb
77% [791/1026] lib/rubygems/rdoc.rb
77% [792/1026] lib/rubygems/remote_fetcher.rb
77% [793/1026] lib/rubygems/request.rb
77% [794/1026] lib/rubygems/request/connection_pools.rb
77% [795/1026] lib/rubygems/request/http_pool.rb
77% [796/1026] lib/rubygems/request/https_pool.rb
77% [797/1026] lib/rubygems/request_set.rb
77% [798/1026] lib/rubygems/request_set/gem_dependency_api.rb
77% [799/1026] lib/rubygems/request_set/lockfile.rb
77% [800/1026] lib/rubygems/request_set/lockfile/parser.rb
78% [801/1026] lib/rubygems/request_set/lockfile/tokenizer.rb
78% [802/1026] lib/rubygems/requirement.rb
78% [803/1026] lib/rubygems/resolver.rb
78% [804/1026] lib/rubygems/resolver/activation_request.rb
78% [805/1026] lib/rubygems/resolver/api_set.rb
78% [806/1026] lib/rubygems/resolver/api_set/gem_parser.rb
78% [807/1026] lib/rubygems/resolver/api_specification.rb
78% [808/1026] lib/rubygems/resolver/best_set.rb
78% [809/1026] lib/rubygems/resolver/composed_set.rb
78% [810/1026] lib/rubygems/resolver/conflict.rb
79% [811/1026] lib/rubygems/resolver/current_set.rb
79% [812/1026] lib/rubygems/resolver/dependency_request.rb
79% [813/1026] lib/rubygems/resolver/git_set.rb
79% [814/1026] lib/rubygems/resolver/git_specification.rb
79% [815/1026] lib/rubygems/resolver/index_set.rb
79% [816/1026] lib/rubygems/resolver/index_specification.rb
79% [817/1026] lib/rubygems/resolver/installed_specification.rb
79% [818/1026] lib/rubygems/resolver/installer_set.rb
79% [819/1026] lib/rubygems/resolver/local_specification.rb
79% [820/1026] lib/rubygems/resolver/lock_set.rb
80% [821/1026] lib/rubygems/resolver/lock_specification.rb
80% [822/1026] lib/rubygems/resolver/requirement_list.rb
80% [823/1026] lib/rubygems/resolver/set.rb
80% [824/1026] lib/rubygems/resolver/source_set.rb
80% [825/1026] lib/rubygems/resolver/spec_specification.rb
80% [826/1026] lib/rubygems/resolver/specification.rb
80% [827/1026] lib/rubygems/resolver/stats.rb
80% [828/1026] lib/rubygems/resolver/vendor_set.rb
80% [829/1026] lib/rubygems/resolver/vendor_specification.rb
80% [830/1026] lib/rubygems/s3_uri_signer.rb
80% [831/1026] lib/rubygems/safe_marshal.rb
81% [832/1026] lib/rubygems/safe_marshal/elements.rb
81% [833/1026] lib/rubygems/safe_marshal/reader.rb
81% [834/1026] lib/rubygems/safe_marshal/visitors/stream_printer.rb
81% [835/1026] lib/rubygems/safe_marshal/visitors/to_ruby.rb
81% [836/1026] lib/rubygems/safe_marshal/visitors/visitor.rb
81% [837/1026] lib/rubygems/safe_yaml.rb
81% [838/1026] lib/rubygems/security.rb
81% [839/1026] lib/rubygems/security/policies.rb
81% [840/1026] lib/rubygems/security/policy.rb
81% [841/1026] lib/rubygems/security/signer.rb
82% [842/1026] lib/rubygems/security/trust_dir.rb
82% [843/1026] lib/rubygems/security_option.rb
82% [844/1026] lib/rubygems/shellwords.rb
82% [845/1026] lib/rubygems/source.rb
82% [846/1026] lib/rubygems/source/git.rb
82% [847/1026] lib/rubygems/source/installed.rb
82% [848/1026] lib/rubygems/source/local.rb
82% [849/1026] lib/rubygems/source/lock.rb
82% [850/1026] lib/rubygems/source/specific_file.rb
82% [851/1026] lib/rubygems/source/vendor.rb
83% [852/1026] lib/rubygems/source_list.rb
83% [853/1026] lib/rubygems/spec_fetcher.rb
83% [854/1026] lib/rubygems/specification.rb
83% [855/1026] lib/rubygems/specification_policy.rb
83% [856/1026] lib/rubygems/specification_record.rb
83% [857/1026] lib/rubygems/stub_specification.rb
83% [858/1026] lib/rubygems/text.rb
83% [859/1026] lib/rubygems/uninstaller.rb
83% [860/1026] lib/rubygems/unknown_command_spell_checker.rb
83% [861/1026] lib/rubygems/update_suggestion.rb
84% [862/1026] lib/rubygems/uri.rb
84% [863/1026] lib/rubygems/uri_formatter.rb
84% [864/1026] lib/rubygems/user_interaction.rb
84% [865/1026] lib/rubygems/util.rb
84% [866/1026] lib/rubygems/util/licenses.rb
84% [867/1026] lib/rubygems/util/list.rb
84% [868/1026] lib/rubygems/validator.rb
84% [869/1026] lib/rubygems/vendored_molinillo.rb
84% [870/1026] lib/rubygems/vendored_net_http.rb
84% [871/1026] lib/rubygems/vendored_optparse.rb
84% [872/1026] lib/rubygems/vendored_timeout.rb
85% [873/1026] lib/rubygems/vendored_tsort.rb
85% [874/1026] lib/rubygems/version.rb
85% [875/1026] lib/rubygems/version_option.rb
85% [876/1026] lib/rubygems/yaml_serializer.rb
85% [877/1026] lib/securerandom.rb
85% [878/1026] lib/set.rb
85% [879/1026] lib/set/sorted_set.rb
85% [880/1026] lib/shellwords.rb
85% [881/1026] lib/singleton.rb
85% [882/1026] lib/syntax_suggest.rb
86% [883/1026] lib/syntax_suggest/api.rb
86% [884/1026] lib/syntax_suggest/around_block_scan.rb
86% [885/1026] lib/syntax_suggest/block_expand.rb
86% [886/1026] lib/syntax_suggest/capture/before_after_keyword_ends.rb
86% [887/1026] lib/syntax_suggest/capture/falling_indent_lines.rb
86% [888/1026] lib/syntax_suggest/capture_code_context.rb
86% [889/1026] lib/syntax_suggest/clean_document.rb
86% [890/1026] lib/syntax_suggest/cli.rb
86% [891/1026] lib/syntax_suggest/code_block.rb
86% [892/1026] lib/syntax_suggest/code_frontier.rb
87% [893/1026] lib/syntax_suggest/code_line.rb
87% [894/1026] lib/syntax_suggest/code_search.rb
87% [895/1026] lib/syntax_suggest/core_ext.rb
87% [896/1026] lib/syntax_suggest/display_code_with_line_numbers.rb
87% [897/1026] lib/syntax_suggest/display_invalid_blocks.rb
87% [898/1026] lib/syntax_suggest/explain_syntax.rb
87% [899/1026] lib/syntax_suggest/left_right_lex_count.rb
87% [900/1026] lib/syntax_suggest/lex_all.rb
87% [901/1026] lib/syntax_suggest/lex_value.rb
87% [902/1026] lib/syntax_suggest/parse_blocks_from_indent_line.rb
88% [903/1026] lib/syntax_suggest/pathname_from_message.rb
88% [904/1026] lib/syntax_suggest/priority_engulf_queue.rb
88% [905/1026] lib/syntax_suggest/priority_queue.rb
88% [906/1026] lib/syntax_suggest/ripper_errors.rb
88% [907/1026] lib/syntax_suggest/scan_history.rb
88% [908/1026] lib/syntax_suggest/unvisited_lines.rb
88% [909/1026] lib/syntax_suggest/version.rb
88% [910/1026] lib/tempfile.rb
88% [911/1026] lib/time.rb
88% [912/1026] lib/timeout.rb
88% [913/1026] lib/tmpdir.rb
89% [914/1026] lib/tsort.rb
89% [915/1026] lib/un.rb
89% [916/1026] lib/unicode_normalize/normalize.rb
89% [917/1026] lib/unicode_normalize/tables.rb
89% [918/1026] lib/uri.rb
89% [919/1026] lib/uri/common.rb
89% [920/1026] lib/uri/file.rb
89% [921/1026] lib/uri/ftp.rb
89% [922/1026] lib/uri/generic.rb
89% [923/1026] lib/uri/http.rb
90% [924/1026] lib/uri/https.rb
90% [925/1026] lib/uri/ldap.rb
90% [926/1026] lib/uri/ldaps.rb
90% [927/1026] lib/uri/mailto.rb
90% [928/1026] lib/uri/rfc2396_parser.rb
90% [929/1026] lib/uri/rfc3986_parser.rb
90% [930/1026] lib/uri/version.rb
90% [931/1026] lib/uri/ws.rb
90% [932/1026] lib/uri/wss.rb
90% [933/1026] lib/weakref.rb
91% [934/1026] lib/yaml.rb
91% [935/1026] lib/yaml/dbm.rb
91% [936/1026] lib/yaml/store.rb
91% [937/1026] load.c
91% [938/1026] loadpath.c
91% [939/1026] localeinit.c
91% [940/1026] main.c
91% [941/1026] marshal.c
91% [942/1026] marshal.rb
91% [943/1026] math.c
92% [944/1026] memory_view.c
92% [945/1026] mini_builtin.c
92% [946/1026] miniinit.c
92% [947/1026] miniprelude.c
92% [948/1026] nilclass.rb
92% [949/1026] node.c
92% [950/1026] node_dump.c
92% [951/1026] numeric.c
92% [952/1026] numeric.rb
92% [953/1026] object.c
92% [954/1026] pack.c
93% [955/1026] pack.rb
93% [956/1026] parse.c
93% [957/1026] parse.y
93% [958/1026] parser_st.c
93% [959/1026] prelude.rb
93% [960/1026] prism_compile.c
93% [961/1026] prism_init.c
93% [962/1026] proc.c
93% [963/1026] process.c
93% [964/1026] ractor.c
94% [965/1026] ractor.rb
94% [966/1026] random.c
94% [967/1026] range.c
94% [968/1026] rational.c
94% [969/1026] rbconfig.rb
94% [970/1026] re.c
94% [971/1026] regcomp.c
94% [972/1026] regenc.c
94% [973/1026] regerror.c
94% [974/1026] regexec.c
95% [975/1026] regparse.c
95% [976/1026] regsyntax.c
95% [977/1026] rjit.c
95% [978/1026] rjit.rb
95% [979/1026] rjit_c.c
95% [980/1026] ruby-runner.c
95% [981/1026] ruby.c
95% [982/1026] ruby_parser.c
95% [983/1026] rubystub.c
95% [984/1026] scheduler.c
96% [985/1026] shape.c
96% [986/1026] signal.c
96% [987/1026] siphash.c
96% [988/1026] sparc.c
96% [989/1026] sprintf.c
96% [990/1026] st.c
96% [991/1026] strftime.c
96% [992/1026] string.c
96% [993/1026] string.rb
96% [994/1026] struct.c
96% [995/1026] symbol.c
97% [996/1026] symbol.rb
97% [997/1026] thread.c
97% [998/1026] thread_none.c
97% [999/1026] thread_pthread.c
97% [1000/1026] thread_pthread_mn.c
97% [1001/1026] thread_sync.c
97% [1002/1026] thread_sync.rb
97% [1003/1026] thread_win32.c
97% [1004/1026] time.c
97% [1005/1026] timev.rb
98% [1006/1026] trace_point.rb
98% [1007/1026] transcode.c
98% [1008/1026] universal_parser.c
98% [1009/1026] util.c
98% [1010/1026] variable.c
98% [1011/1026] version.c
98% [1012/1026] vm.c
98% [1013/1026] vm_args.c
98% [1014/1026] vm_backtrace.c
98% [1015/1026] vm_dump.c
99% [1016/1026] vm_eval.c
99% [1017/1026] vm_exec.c
99% [1018/1026] vm_insnhelper.c
99% [1019/1026] vm_method.c
99% [1020/1026] vm_sync.c
99% [1021/1026] vm_trace.c
99% [1022/1026] vsnprintf.c
99% [1023/1026] warning.rb
99% [1024/1026] weakmap.c
99% [1025/1026] yjit.c
100% [1026/1026] yjit.rb
Generating RI format into /private/var/folders/kv/nl7zmpsx7056jqgj_czptklc0000gn/T/ruby-build.20240918230201.9162.FD3hxU/ruby-3.3.4/.ext/rdoc...
Files: 1026
Classes: 1238 ( 296 undocumented)
Modules: 229 ( 72 undocumented)
Constants: 2382 ( 649 undocumented)
Attributes: 1464 ( 249 undocumented)
Methods: 12182 (2208 undocumented)
Total: 17495 (3474 undocumented)
80.14% documented
Elapsed: 16.2s
SDKROOT= ./miniruby -I./lib -I. -I.ext/common ./tool/runruby.rb --extout=.ext -- --disable-gems -r./arm64-darwin23-fake ./tool/rbinstall.rb --make="make" --dest-dir="" --extout=".ext" --ext-build-dir="./ext" --mflags="" --make-flags="" --data-mode=0644 --prog-mode=0755 --installed-list .installed.list --mantype="doc" --gnumake --install=all --rdoc-output=".ext/rdoc" --html-output=".ext/html"
Installing to
installing binary commands: /Users/taketo/.rbenv/versions/3.3.4/bin
installing base libraries: /Users/taketo/.rbenv/versions/3.3.4/lib
installing arch files: /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/arm64-darwin23
installing pkgconfig data: /Users/taketo/.rbenv/versions/3.3.4/lib/pkgconfig
installing extension objects: /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0/arm64-darwin23
installing extension objects: /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/site_ruby/3.3.0/arm64-darwin23
installing extension objects: /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/vendor_ruby/3.3.0/arm64-darwin23
installing extension headers: /Users/taketo/.rbenv/versions/3.3.4/include/ruby-3.3.0/arm64-darwin23
installing extension scripts: /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0
installing extension scripts: /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/site_ruby/3.3.0
installing extension scripts: /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/vendor_ruby/3.3.0
installing extension headers: /Users/taketo/.rbenv/versions/3.3.4/include/ruby-3.3.0/ruby
installing rdoc: /Users/taketo/.rbenv/versions/3.3.4/share/ri/3.3.0/system
installing html-docs: /Users/taketo/.rbenv/versions/3.3.4/share/doc/ruby
installing capi-docs: /Users/taketo/.rbenv/versions/3.3.4/share/doc/ruby
installing command scripts: /Users/taketo/.rbenv/versions/3.3.4/bin
installing library scripts: /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/3.3.0
installing common headers: /Users/taketo/.rbenv/versions/3.3.4/include/ruby-3.3.0
installing manpages: /Users/taketo/.rbenv/versions/3.3.4/share/man/man1
installing default gems from lib: /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/gems/3.3.0
abbrev 0.1.2
base64 0.2.0
benchmark 0.3.0
bundler 2.5.11
cgi 0.4.1
csv 3.2.8
delegate 0.3.1
did_you_mean 1.6.3
drb 2.2.0
english 0.8.0
erb 4.0.3
error_highlight 0.6.0
fileutils 1.7.2
find 0.2.0
forwardable 1.3.3
getoptlong 0.2.1
ipaddr 1.2.6
irb 1.13.1
logger 1.6.0
mutex_m 0.2.0
net-http 0.4.1
net-protocol 0.2.2
observer 0.1.2
open-uri 0.4.1
open3 0.2.1
optparse 0.4.0
ostruct 0.6.0
pp 0.5.0
prettyprint 0.2.0
prism 0.19.0
pstore 0.1.3
rdoc 6.6.3.1
readline 0.0.4
reline 0.5.7
resolv 0.3.0
resolv-replace 0.1.1
rinda 0.2.0
ruby2_keywords 0.0.5
securerandom 0.3.1
set 1.1.0
shellwords 0.2.0
singleton 0.2.0
syntax_suggest 2.0.0
tempfile 0.2.1
time 0.3.0
timeout 0.4.1
tmpdir 0.2.0
tsort 0.2.0
un 0.3.0
uri 0.13.0
weakref 0.1.3
yaml 0.3.0
installing default gems from ext: /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/gems/3.3.0
bigdecimal 3.1.5
date 3.3.4
digest 3.1.1
etc 1.4.3
fcntl 1.1.0
fiddle 1.1.2
io-console 0.7.1
io-nonblock 0.3.0
io-wait 0.3.1
json 2.7.1
nkf 0.1.3
openssl 3.2.0
pathname 0.3.0
psych 5.1.2
stringio 3.1.1
strscan 3.0.9
syslog 0.1.2
zlib 3.1.1
installing bundled gems: /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/gems/3.3.0
minitest 5.20.0
power_assert 2.0.3
rake 13.1.0
test-unit 3.6.1
rexml 3.2.8
rss 0.3.0
net-ftp 0.3.4
net-imap 0.4.9.1
net-pop 0.1.2
net-smtp 0.4.0.1
matrix 0.4.2
prime 0.1.2
rbs 3.4.0
typeprof 0.21.9
debug 1.9.1
racc 1.7.3
installing bundled gem cache: /Users/taketo/.rbenv/versions/3.3.4/lib/ruby/gems/3.3.0/cache
==> Installed ruby-3.3.4 to /Users/taketo/.rbenv/versions/3.3.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment