ruby-core
Threads by month
- ----- 2025 -----
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
January 2024
- 7 participants
- 254 discussions

[ruby-core:113489] [Ruby master Bug#19642] Remove vectored read/write from `io.c`.
by ioquatix (Samuel Williams) 20 Nov '24
by ioquatix (Samuel Williams) 20 Nov '24
20 Nov '24
Issue #19642 has been reported by ioquatix (Samuel Williams).
----------------------------------------
Bug #19642: Remove vectored read/write from `io.c`.
https://bugs.ruby-lang.org/issues/19642
* Author: ioquatix (Samuel Williams)
* Status: Open
* Priority: Normal
* Backport: 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN
----------------------------------------
https://github.com/socketry/async/issues/228#issuecomment-1546789910 is a comment from the kernel developer who tells us that `writev` is always worse than `write` system call.
A large amount of complexity in `io.c` comes from optional support from `writev`.
So, I'd like to remove support for `writev`.
I may try to measure the performance before/after. However it may not show much difference, except that the implementation in `io.c` can be much simpler.
--
https://bugs.ruby-lang.org/
5
9

[ruby-core:111966] [Ruby master Feature#19366] Rename/alias Refinedment#refined_class => #refined_module
by zverok (Victor Shepelev) 19 Nov '24
by zverok (Victor Shepelev) 19 Nov '24
19 Nov '24
Issue #19366 has been reported by zverok (Victor Shepelev).
----------------------------------------
Feature #19366: Rename/alias Refinedment#refined_class => #refined_module
https://bugs.ruby-lang.org/issues/19366
* Author: zverok (Victor Shepelev)
* Status: Open
* Priority: Normal
----------------------------------------
In #12737, `Refinement#refined_class` is introduced.
As "module" is more generic concept than "class", the name misleadingly implies that either this method doesn't returns refined _modules_, or modules can't be refined. This is obviously not true and trivially disproved:
```ruby
module Refs
refine Enumerable do
def foo = puts 'foo'
end
end
Refs.refinements[0].refined_class
#=> Enumerable. Which is, well, not a class.
# The refinement is usable, so it is not a mute concept:
using Refs
[1, 2, 3].foo # prints "foo" successfully
```
I believe we refer to "modules" when some feature applies to modules and classes.
Unless there is some deeper consideration for the current naming (I don't see justification in #12737, but I might miss something), the method should be renamed or aliased.
PS: Sorry for a huge amount of "nitpicky" issues after the version release. Typically, those concerns emerge while I am working on the [changelog](https://rubyreferences.github.io/rubychanges/), and I am usually trying to start the work at least a month before the release. Unfortunately, due to you-know-what, I was unable to do it in time this year.
After the 3.2 changelog, I plan to switch to the "master changelog" approach (following the development with the "current unreleased changes" document) this year. Unless I'll be unable to due to reasons not in my control.
--
https://bugs.ruby-lang.org/
4
3

[ruby-core:112058] [Ruby master Bug#19383] Time.now.zone encoding for German display language in Windows is incorrect
by stringsn88keys (Thomas Powell) 21 Oct '24
by stringsn88keys (Thomas Powell) 21 Oct '24
21 Oct '24
Issue #19383 has been reported by stringsn88keys (Thomas Powell).
----------------------------------------
Bug #19383: Time.now.zone encoding for German display language in Windows is incorrect
https://bugs.ruby-lang.org/issues/19383
* Author: stringsn88keys (Thomas Powell)
* Status: Open
* Priority: Normal
* ruby -v: 3.1.3
* Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN
----------------------------------------
OS:
Verified on Windows 10 and Windows Server 2022 and Ruby 2.7.7 through 3.1.3
Display language:
Verified on German, but may impact other languages in which Time.now.zone returns characters that aren't [A-Za-z].
Time zone:
CET (UTC +01:00) Amsterdam, Berlin, ...
Time.now.zone # => "Mitteleuro\xE3ische Zeit"
Time.now.zone.encoding # => #<Encoding:IBM437>
puts Time.now.zone # => "Mitteleurop∑ische Zeit" (should be "Mitteleuropäische Zeit")
Time.now.zone.encode(Encoding::UTF_8) # => "Mitteleurop∑ische Zeit"
Doing a force_encoding on all encodings in Encoding.list reveals that ISO-8859-(1..16) and Windows-125(0,2,4,7) work to coerce the ä out of the time zone string:
Time.now.zone.force_encoding(Encoding::WINDOWS_1252) # => "Mitteleuro\xE3ische Zeit"
... but ...
Time.now.zone.force_encoding(Encoding::WINDOWS_1252).encode(Encoding::UTF_8) #=> "Mitteleuropäische Zeit"
Related issue: This improper encoding/rendering caused Ohai's JSON output to be unparseable. Workaround was forcing to Windows-1252.
https://github.com/chef/ohai/pull/1781
--
https://bugs.ruby-lang.org/
5
10

[ruby-core:115226] [Ruby master Bug#19984] `make test-bundler-parallel` fails with ` --enable-shared`
by vo.x (Vit Ondruch) 08 Oct '24
by vo.x (Vit Ondruch) 08 Oct '24
08 Oct '24
Issue #19984 has been reported by vo.x (Vit Ondruch).
----------------------------------------
Bug #19984: `make test-bundler-parallel` fails with ` --enable-shared`
https://bugs.ruby-lang.org/issues/19984
* Author: vo.x (Vit Ondruch)
* Status: Open
* Priority: Normal
* ruby -v: ruby 3.3.0dev (2023-11-01 master a1e24ab484) [x86_64-linux]
* Backport: 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN
----------------------------------------
~~~
+ ./configure --enable-shared
checking for ruby... false
... snip ...
config.status: creating Makefile
---
Configuration summary for ruby version 3.3.0
* Installation prefix: /usr/local
* exec prefix: ${prefix}
* arch: x86_64-linux
* 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: linux
* compiler: gcc
* with thread: pthread
* with coroutine: amd64
* enable shared libs: yes
* dynamic library ext: so
* CFLAGS: ${optflags} ${debugflags} ${warnflags}
* LDFLAGS: -L. -Wl,-z,relro -Wl,--as-needed -Wl,-z,now \
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld \
-specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 \
-Wl,--build-id=sha1 -fstack-protector-strong \
-rdynamic -Wl,-export-dynamic -Wl,--no-as-needed
* DLDFLAGS: -Wl,-z,relro -Wl,--as-needed -Wl,-z,now \
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld \
-specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 \
-Wl,--build-id=sha1 \
-Wl,--compress-debug-sections=zlib
* optflags: -O3 -fno-fast-math
* debugflags: -ggdb3
* warnflags: -Wall -Wextra -Wdeprecated-declarations \
-Wdiv-by-zero -Wduplicated-cond \
-Wimplicit-function-declaration -Wimplicit-int \
-Wpointer-arith -Wwrite-strings \
-Wold-style-definition -Wimplicit-fallthrough=0 \
-Wmissing-noreturn -Wno-cast-function-type \
-Wno-constant-logical-operand -Wno-long-long \
-Wno-missing-field-initializers \
-Wno-overlength-strings \
-Wno-packed-bitfield-compat \
-Wno-parentheses-equality -Wno-self-assign \
-Wno-tautological-compare -Wno-unused-parameter \
-Wno-unused-value -Wsuggest-attribute=format \
-Wsuggest-attribute=noreturn -Wunused-variable \
-Wmisleading-indentation -Wundef
* strip command: strip -S -x
* install doc: rdoc
* YJIT support: yes
* RJIT support: yes
* man page type: doc
---
$ make -O -j8 V=1 VERBOSE=1 'COPY=cp -p'
BASERUBY = echo executable host ruby is required. use --with-baseruby option.; false
CC = gcc
LD = ld
LDSHARED = gcc -shared
CFLAGS = -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -fPIC -m64
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/x86_64-linux -I./include -I. -I./prism -I./enc/unicode/15.0.0
CPPFLAGS =
DLDFLAGS = -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong -m64
SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread
LANG = C.UTF-8
LC_ALL =
LC_CTYPE =
MFLAGS = -j8 -Otarget --jobserver-auth=fifo:/tmp/GMfifo10180 --sync-mutex=fnm:/tmp/GmCLOiGB
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=/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/yjit/target/release/' ./yjit/src/lib.rs
gcc (GCC) 13.2.1 20231011 (Red Hat 13.2.1-4)
Copyright (C) 2023 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -fPIC -m64 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I./include -I. -I./prism -I./enc/unicode/15.0.0 -o dmyext.o -c dmyext.c
... snip ...
$ make test-bundler-parallel
BASERUBY = echo executable host ruby is required. use --with-baseruby option.; false
CC = gcc
LD = ld
LDSHARED = gcc -shared
CFLAGS = -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -fPIC -m64
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/x86_64-linux -I./include -I. -I./prism -I./enc/unicode/15.0.0
CPPFLAGS =
DLDFLAGS = -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong -m64
SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread
LANG = C.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=/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/yjit/target/release/' ./yjit/src/lib.rs
gcc (GCC) 13.2.1 20231011 (Red Hat 13.2.1-4)
Copyright (C) 2023 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
generating enc.mk
making srcs under enc
make[1]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
generating transdb.h
transdb.h unchanged
generating makefiles ext/configure-ext.mk
ext/configure-ext.mk updated
make[1]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
make[1]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/bigdecimal'
installing default bigdecimal libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/bigdecimal'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/coverage'
installing default coverage libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/coverage'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/date'
installing default date_core libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/date'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/digest'
installing digest libraries
installing default digest libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/digest'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/digest/sha2'
installing default sha2 libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/digest/sha2'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/fiddle'
installing default fiddle libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/fiddle'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/io/console'
installing default console libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/io/console'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/json'
installing default libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/json'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/monitor'
installing default monitor libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/monitor'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/nkf'
installing default nkf libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/nkf'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/objspace'
installing default objspace libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/objspace'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/openssl'
installing default openssl libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/openssl'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/pathname'
installing default pathname libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/pathname'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/psych'
installing default psych libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/psych'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/pty'
installing default pty libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/pty'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/ripper'
installing default ripper libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/ripper'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/rubyvm'
installing default libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/rubyvm'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/socket'
installing default socket libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/socket'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/syslog'
installing default syslog libraries
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ext/syslog'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/.bundle/gems/rbs-3.2.2/ext/rbs_extension'
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/.bundle/gems/rbs-3.2.2/ext/rbs_extension'
make[2]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
make[1]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
make[1]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
making enc
make[1]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
making trans
make[1]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
make[1]: Nothing to be done for './enc/trans'.
make[1]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
making encs
make[1]: Entering directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/builddir/build/BUILD/ruby-3.3.0-a1e24ab484'
generating x86_64-linux-fake.rb
x86_64-linux-fake.rb updated
./miniruby -I./lib -I. -I.ext/common ./tool/runruby.rb --extout=.ext -- --disable-gems -C . -Ilib \
-e 'ENV["GEM_HOME"] = File.expand_path(".bundle")' \
-e 'ENV["BUNDLE_APP_CONFIG"] = File.expand_path(".bundle")' \
-e 'ENV["BUNDLE_PATH__SYSTEM"] = "true"' \
-e 'ENV["BUNDLE_WITHOUT"] = "lint doc"' \
-e 'load "spec/bundler/support/bundle.rb"' -- install --quiet --gemfile=tool/bundler/dev_gems.rb
./miniruby -I./lib -I. -I.ext/common ./tool/runruby.rb --extout=.ext -- --disable-gems \
-r./x86_64-linux-fake \
-e "ARGV[-1] = File.expand_path(ARGV[-1])" \
-e "exec(*ARGV)" -- \
./miniruby -I./lib -I. -I.ext/common ./tool/runruby.rb --extout=.ext -- --disable-gems -I./spec/bundler \
-e "ENV['PARALLEL_TESTS_EXECUTABLE'] = ARGV.shift" \
-e "load ARGV.shift" \
"./miniruby -I./lib -I. -I.ext/common ./tool/runruby.rb --extout=.ext -- --disable-gems -C . -Ispec/bundler:spec/lib .bundle/bin/rspec" \
./.bundle/bin/parallel_rspec \
-o "--require spec_helper --require formatter_overrides" \
--runtime-log ./tmp/parallel_runtime_rspec.log ./spec/bundler/
8 processes for 169 specs, ~ 21 specs per process
An error occurred in a `before(:suite)` hook.
Failure/Error:
raise <<~ERROR
Invoking `#{cmd}` failed with output:
----------------------------------------------------------------------
#{command_execution.stdboth}
----------------------------------------------------------------------
ERROR
RuntimeError:
Invoking `/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby -rrubygems /builddir/build/BUILD/ruby-3.3.0-a1e24ab484/bin/gem --backtrace build lib/bundler/bundler.gemspec` failed with output:
----------------------------------------------------------------------
/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby: error while loading shared libraries: libruby.so.3.3: cannot open shared object file: No such file or directory
----------------------------------------------------------------------
# ./spec/bundler/support/helpers.rb:202:in `sys_exec'
# ./spec/bundler/support/helpers.rb:165:in `gem_command'
# ./spec/bundler/support/helpers.rb:343:in `with_built_bundler'
# ./spec/bundler/support/helpers.rb:304:in `block (2 levels) in system_gems'
# ./spec/bundler/support/helpers.rb:300:in `each'
# ./spec/bundler/support/helpers.rb:300:in `block in system_gems'
# ./spec/bundler/support/helpers.rb:357:in `block in with_gem_path_as'
# ./spec/bundler/support/helpers.rb:371:in `without_env_side_effects'
# ./spec/bundler/support/helpers.rb:352:in `with_gem_path_as'
# ./spec/bundler/support/helpers.rb:298:in `system_gems'
# ./spec/bundler/spec_helper.rb:92:in `block (2 levels) in <top (required)>'
Finished in 0.36529 seconds (files took 0.67828 seconds to load)
0 examples, 0 failures, 1 error occurred outside of examples
An error occurred in a `before(:suite)` hook.
Failure/Error:
raise <<~ERROR
Invoking `#{cmd}` failed with output:
----------------------------------------------------------------------
#{command_execution.stdboth}
----------------------------------------------------------------------
ERROR
RuntimeError:
Invoking `/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby -rrubygems /builddir/build/BUILD/ruby-3.3.0-a1e24ab484/bin/gem --backtrace build lib/bundler/bundler.gemspec` failed with output:
----------------------------------------------------------------------
/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby: error while loading shared libraries: libruby.so.3.3: cannot open shared object file: No such file or directory
----------------------------------------------------------------------
# ./spec/bundler/support/helpers.rb:202:in `sys_exec'
# ./spec/bundler/support/helpers.rb:165:in `gem_command'
# ./spec/bundler/support/helpers.rb:343:in `with_built_bundler'
# ./spec/bundler/support/helpers.rb:304:in `block (2 levels) in system_gems'
# ./spec/bundler/support/helpers.rb:300:in `each'
# ./spec/bundler/support/helpers.rb:300:in `block in system_gems'
# ./spec/bundler/support/helpers.rb:357:in `block in with_gem_path_as'
# ./spec/bundler/support/helpers.rb:371:in `without_env_side_effects'
# ./spec/bundler/support/helpers.rb:352:in `with_gem_path_as'
# ./spec/bundler/support/helpers.rb:298:in `system_gems'
# ./spec/bundler/spec_helper.rb:92:in `block (2 levels) in <top (required)>'
Finished in 0.4346 seconds (files took 0.62401 seconds to load)
0 examples, 0 failures, 1 error occurred outside of examples
An error occurred in a `before(:suite)` hook.
Failure/Error:
raise <<~ERROR
Invoking `#{cmd}` failed with output:
----------------------------------------------------------------------
#{command_execution.stdboth}
----------------------------------------------------------------------
ERROR
RuntimeError:
Invoking `/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby -rrubygems /builddir/build/BUILD/ruby-3.3.0-a1e24ab484/bin/gem --backtrace build lib/bundler/bundler.gemspec` failed with output:
----------------------------------------------------------------------
/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby: error while loading shared libraries: libruby.so.3.3: cannot open shared object file: No such file or directory
----------------------------------------------------------------------
# ./spec/bundler/support/helpers.rb:202:in `sys_exec'
# ./spec/bundler/support/helpers.rb:165:in `gem_command'
# ./spec/bundler/support/helpers.rb:343:in `with_built_bundler'
# ./spec/bundler/support/helpers.rb:304:in `block (2 levels) in system_gems'
# ./spec/bundler/support/helpers.rb:300:in `each'
# ./spec/bundler/support/helpers.rb:300:in `block in system_gems'
# ./spec/bundler/support/helpers.rb:357:in `block in with_gem_path_as'
# ./spec/bundler/support/helpers.rb:371:in `without_env_side_effects'
# ./spec/bundler/support/helpers.rb:352:in `with_gem_path_as'
# ./spec/bundler/support/helpers.rb:298:in `system_gems'
# ./spec/bundler/spec_helper.rb:92:in `block (2 levels) in <top (required)>'
Finished in 0.37847 seconds (files took 0.71128 seconds to load)
0 examples, 0 failures, 1 error occurred outside of examples
An error occurred in a `before(:suite)` hook.
Failure/Error:
raise <<~ERROR
Invoking `#{cmd}` failed with output:
----------------------------------------------------------------------
#{command_execution.stdboth}
----------------------------------------------------------------------
ERROR
RuntimeError:
Invoking `/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby -rrubygems /builddir/build/BUILD/ruby-3.3.0-a1e24ab484/bin/gem --backtrace build lib/bundler/bundler.gemspec` failed with output:
----------------------------------------------------------------------
/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby: error while loading shared libraries: libruby.so.3.3: cannot open shared object file: No such file or directory
----------------------------------------------------------------------
# ./spec/bundler/support/helpers.rb:202:in `sys_exec'
# ./spec/bundler/support/helpers.rb:165:in `gem_command'
# ./spec/bundler/support/helpers.rb:343:in `with_built_bundler'
# ./spec/bundler/support/helpers.rb:304:in `block (2 levels) in system_gems'
# ./spec/bundler/support/helpers.rb:300:in `each'
# ./spec/bundler/support/helpers.rb:300:in `block in system_gems'
# ./spec/bundler/support/helpers.rb:357:in `block in with_gem_path_as'
# ./spec/bundler/support/helpers.rb:371:in `without_env_side_effects'
# ./spec/bundler/support/helpers.rb:352:in `with_gem_path_as'
# ./spec/bundler/support/helpers.rb:298:in `system_gems'
# ./spec/bundler/spec_helper.rb:92:in `block (2 levels) in <top (required)>'
Finished in 0.32898 seconds (files took 0.78975 seconds to load)
0 examples, 0 failures, 1 error occurred outside of examples
An error occurred in a `before(:suite)` hook.
Failure/Error:
raise <<~ERROR
Invoking `#{cmd}` failed with output:
----------------------------------------------------------------------
#{command_execution.stdboth}
----------------------------------------------------------------------
ERROR
RuntimeError:
Invoking `/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby -rrubygems /builddir/build/BUILD/ruby-3.3.0-a1e24ab484/bin/gem --backtrace build lib/bundler/bundler.gemspec` failed with output:
----------------------------------------------------------------------
/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby: error while loading shared libraries: libruby.so.3.3: cannot open shared object file: No such file or directory
----------------------------------------------------------------------
# ./spec/bundler/support/helpers.rb:202:in `sys_exec'
# ./spec/bundler/support/helpers.rb:165:in `gem_command'
# ./spec/bundler/support/helpers.rb:343:in `with_built_bundler'
# ./spec/bundler/support/helpers.rb:304:in `block (2 levels) in system_gems'
# ./spec/bundler/support/helpers.rb:300:in `each'
# ./spec/bundler/support/helpers.rb:300:in `block in system_gems'
# ./spec/bundler/support/helpers.rb:357:in `block in with_gem_path_as'
# ./spec/bundler/support/helpers.rb:371:in `without_env_side_effects'
# ./spec/bundler/support/helpers.rb:352:in `with_gem_path_as'
# ./spec/bundler/support/helpers.rb:298:in `system_gems'
# ./spec/bundler/spec_helper.rb:92:in `block (2 levels) in <top (required)>'
Finished in 0.41138 seconds (files took 0.77373 seconds to load)
0 examples, 0 failures, 1 error occurred outside of examples
An error occurred in a `before(:suite)` hook.
Failure/Error:
raise <<~ERROR
Invoking `#{cmd}` failed with output:
----------------------------------------------------------------------
#{command_execution.stdboth}
----------------------------------------------------------------------
ERROR
RuntimeError:
Invoking `/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby -rrubygems /builddir/build/BUILD/ruby-3.3.0-a1e24ab484/bin/gem --backtrace build lib/bundler/bundler.gemspec` failed with output:
----------------------------------------------------------------------
/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby: error while loading shared libraries: libruby.so.3.3: cannot open shared object file: No such file or directory
----------------------------------------------------------------------
# ./spec/bundler/support/helpers.rb:202:in `sys_exec'
# ./spec/bundler/support/helpers.rb:165:in `gem_command'
# ./spec/bundler/support/helpers.rb:343:in `with_built_bundler'
# ./spec/bundler/support/helpers.rb:304:in `block (2 levels) in system_gems'
# ./spec/bundler/support/helpers.rb:300:in `each'
# ./spec/bundler/support/helpers.rb:300:in `block in system_gems'
# ./spec/bundler/support/helpers.rb:357:in `block in with_gem_path_as'
# ./spec/bundler/support/helpers.rb:371:in `without_env_side_effects'
# ./spec/bundler/support/helpers.rb:352:in `with_gem_path_as'
# ./spec/bundler/support/helpers.rb:298:in `system_gems'
# ./spec/bundler/spec_helper.rb:92:in `block (2 levels) in <top (required)>'
Finished in 0.46772 seconds (files took 0.7346 seconds to load)
0 examples, 0 failures, 1 error occurred outside of examples
An error occurred in a `before(:suite)` hook.
Failure/Error:
raise <<~ERROR
Invoking `#{cmd}` failed with output:
----------------------------------------------------------------------
#{command_execution.stdboth}
----------------------------------------------------------------------
ERROR
RuntimeError:
Invoking `/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby -rrubygems /builddir/build/BUILD/ruby-3.3.0-a1e24ab484/bin/gem --backtrace build lib/bundler/bundler.gemspec` failed with output:
----------------------------------------------------------------------
/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby: error while loading shared libraries: libruby.so.3.3: cannot open shared object file: No such file or directory
----------------------------------------------------------------------
# ./spec/bundler/support/helpers.rb:202:in `sys_exec'
# ./spec/bundler/support/helpers.rb:165:in `gem_command'
# ./spec/bundler/support/helpers.rb:343:in `with_built_bundler'
# ./spec/bundler/support/helpers.rb:304:in `block (2 levels) in system_gems'
# ./spec/bundler/support/helpers.rb:300:in `each'
# ./spec/bundler/support/helpers.rb:300:in `block in system_gems'
# ./spec/bundler/support/helpers.rb:357:in `block in with_gem_path_as'
# ./spec/bundler/support/helpers.rb:371:in `without_env_side_effects'
# ./spec/bundler/support/helpers.rb:352:in `with_gem_path_as'
# ./spec/bundler/support/helpers.rb:298:in `system_gems'
# ./spec/bundler/spec_helper.rb:92:in `block (2 levels) in <top (required)>'
Finished in 0.35757 seconds (files took 0.73007 seconds to load)
0 examples, 0 failures, 1 error occurred outside of examples
An error occurred in a `before(:suite)` hook.
Failure/Error:
raise <<~ERROR
Invoking `#{cmd}` failed with output:
----------------------------------------------------------------------
#{command_execution.stdboth}
----------------------------------------------------------------------
ERROR
RuntimeError:
Invoking `/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby -rrubygems /builddir/build/BUILD/ruby-3.3.0-a1e24ab484/bin/gem --backtrace build lib/bundler/bundler.gemspec` failed with output:
----------------------------------------------------------------------
/builddir/build/BUILD/ruby-3.3.0-a1e24ab484/ruby: error while loading shared libraries: libruby.so.3.3: cannot open shared object file: No such file or directory
----------------------------------------------------------------------
# ./spec/bundler/support/helpers.rb:202:in `sys_exec'
# ./spec/bundler/support/helpers.rb:165:in `gem_command'
# ./spec/bundler/support/helpers.rb:343:in `with_built_bundler'
# ./spec/bundler/support/helpers.rb:304:in `block (2 levels) in system_gems'
# ./spec/bundler/support/helpers.rb:300:in `each'
# ./spec/bundler/support/helpers.rb:300:in `block in system_gems'
# ./spec/bundler/support/helpers.rb:357:in `block in with_gem_path_as'
# ./spec/bundler/support/helpers.rb:371:in `without_env_side_effects'
# ./spec/bundler/support/helpers.rb:352:in `with_gem_path_as'
# ./spec/bundler/support/helpers.rb:298:in `system_gems'
# ./spec/bundler/spec_helper.rb:92:in `block (2 levels) in <top (required)>'
Finished in 0.24372 seconds (files took 1.05 seconds to load)
0 examples, 0 failures, 1 error occurred outside of examples
Tests Failed
8 errors, 0 examples, 0 failures
Took 1 seconds
make: *** [uncommon.mk:1626: yes-test-bundler-parallel] Error 1
~~~
--
https://bugs.ruby-lang.org/
3
6

[ruby-core:113052] [Ruby master Bug#19562] Setting default_(in|ex)ternal encoding after running an Ractor freezes ruby
by larskanis (Lars Kanis) 20 Sep '24
by larskanis (Lars Kanis) 20 Sep '24
20 Sep '24
Issue #19562 has been reported by larskanis (Lars Kanis).
----------------------------------------
Bug #19562: Setting default_(in|ex)ternal encoding after running an Ractor freezes ruby
https://bugs.ruby-lang.org/issues/19562
* Author: larskanis (Lars Kanis)
* Status: Open
* Priority: Normal
* ruby -v: ruby 3.2.1 (2023-02-08 revision 31819e82c8) [x86_64-linux]
* Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN
----------------------------------------
The following command blocks infinitely and must be killed with "kill -9"
```
ruby -e "Ractor.new{}.take; Encoding.default_external = Encoding::ISO8859_2"
```
Backtrace is:
```
#0 futex_wait (private=0, expected=2, futex_word=0x55555555abd0) at ../sysdeps/nptl/futex-internal.h:146
#1 __GI___lll_lock_wait (futex=futex@entry=0x55555555abd0, private=0) at ./nptl/lowlevellock.c:49
#2 0x00007ffff760a082 in lll_mutex_lock_optimized (mutex=0x55555555abd0) at ./nptl/pthread_mutex_lock.c:48
#3 ___pthread_mutex_lock (mutex=mutex@entry=0x55555555abd0) at ./nptl/pthread_mutex_lock.c:93
#4 0x00007ffff7c5a40d in rb_native_mutex_lock (lock=lock@entry=0x55555555abd0) at ruby-3.2.1/thread_pthread.c:556
#5 0x00007ffff7cc5376 in vm_lock_enter (cr=0x55555555deb0, vm=0x55555555aba0, locked=locked@entry=false, no_barrier=no_barrier@entry=false, lev=0x55555555ac00) at vm_sync.c:56
#6 0x00007ffff7cc5747 in rb_vm_lock_body () at vm_sync.c:175
#7 0x00007ffff7bc02c2 in rb_vm_lock (line=1829, file=0x7ffff7e209cb "ractor.c") at ruby-3.2.1/vm_sync.h:57
#8 ractor_check_blocking (remained_thread_cnt=<optimized out>, file=0x7ffff7e209cb "ractor.c", line=1865, cr=0x55555555deb0) at ractor.c:1829
#9 ractor_check_blocking (line=1865, file=0x7ffff7e209cb "ractor.c", remained_thread_cnt=<optimized out>, cr=0x55555555deb0) at ractor.c:1811
#10 rb_ractor_blocking_threads_inc (cr=0x55555555deb0, file=file@entry=0x7ffff7e29b04 "thread.c", line=line@entry=1488) at ractor.c:1865
#11 0x00007ffff7c60977 in blocking_region_begin (th=0x55555555d070, region=0x7fffffffd220, ubf=0x7ffff7c5b300 <ubf_select>, arg=0x55555555d070, fail_if_interrupted=<optimized out>) at thread.c:1488
#12 0x00007ffff7c61edf in rb_nogvl (func=0x7ffff7ac66e0 <no_gvl_stat>, data1=0x7fffffffd2a0, ubf=<optimized out>, data2=0x55555555d070, flags=<optimized out>) at thread.c:1548
#13 0x00007ffff7acdfbc in stat_without_gvl (st=0x7fffffffd2b0, path=0x7ffff27dfe88 "ruby-3.2.1/lib/ruby/3.2.0/x86_64-linux/enc/iso_8859_2.so") at file.c:1171
#14 rb_check_realpath_internal (basedir=basedir@entry=4, path=path@entry=140737261984200, origenc=0x555555565030, mode=mode@entry=RB_REALPATH_STRICT) at file.c:4491
#15 0x00007ffff7acebaa in rb_realpath_internal (basedir=basedir@entry=4, path=path@entry=140737261984200, strict=strict@entry=1) at file.c:4536
#16 0x00007ffff7b2cdd4 in require_internal (ec=0x55555555e1f0, fname=<optimized out>, exception=1, warn=<optimized out>) at load.c:1195
#17 0x00007ffff7aa0a17 in load_encoding (name=0x5555556049b0 "ISO-8859-2") at encoding.c:779
#18 0x00007ffff7aa2ef8 in check_encoding (enc=0x5555556049d0) at encoding.c:191
#19 enc_check_encoding (obj=140737335533800) at encoding.c:202
#20 rb_to_encoding (enc=enc@entry=140737335533800) at encoding.c:307
#21 0x00007ffff7aa4049 in enc_set_default_encoding (name=0x7ffff7de6287 "external", encoding=140737335533800, def=0x7ffff7fb00c0 <default_external>) at encoding.c:1563
#22 rb_enc_set_default_external (encoding=140737335533800) at encoding.c:1637
#23 0x00007ffff7aa411f in set_default_external (klass=<optimized out>, encoding=140737335533800) at encoding.c:1658
#24 0x00007ffff7c99037 in vm_call_cfunc_with_frame (ec=0x55555555e1f0, reg_cfp=0x7ffff6f7df90, calling=<optimized out>) at ruby-3.2.1/vm_insnhelper.c:3268
#25 0x00007ffff7ca9564 in vm_sendish (method_explorer=<optimized out>, block_handler=<optimized out>, cd=<optimized out>, reg_cfp=<optimized out>, ec=<optimized out>)
at ruby-3.2.1/vm_callinfo.h:367
#26 vm_exec_core (ec=0x55555555e1f0, initial=128) at ruby-3.2.1/insns.def:820
#27 0x00007ffff7caee93 in rb_vm_exec (ec=0x55555555e1f0, jit_enable_p=true) at vm.c:2374
#28 0x00007ffff7abfbf1 in rb_ec_exec_node (ec=ec@entry=0x55555555e1f0, n=n@entry=0x7ffff796c2c0) at eval.c:289
#29 0x00007ffff7ac60b3 in ruby_run_node (n=0x7ffff796c2c0) at eval.c:330
#30 0x0000555555555187 in rb_main (argv=0x7fffffffdb98, argc=3) at ./main.c:38
#31 main (argc=<optimized out>, argv=<optimized out>) at ./main.c:57
```
When the encoding was already loaded before running `Ractor.new`, then it works and doesn't block:
```
ruby -e "''.encode(Encoding::ISO8859_2); Ractor.new{}.take; Encoding.default_internal = Encoding::ISO8859_2"
```
When the encoding is not assigned as default encoding, but used otherwise, it works too:
```
ruby -e "Ractor.new{}.take; ''.encode(Encoding::ISO8859_2)"
```
--
https://bugs.ruby-lang.org/
3
2

[ruby-core:111144] [Ruby master Feature#19171] Update Unicode data to Unicode Version 15.1
by duerst 20 Sep '24
by duerst 20 Sep '24
20 Sep '24
Issue #19171 has been reported by duerst (Martin Dürst).
----------------------------------------
Feature #19171: Update Unicode data to Unicode Version 15.1
https://bugs.ruby-lang.org/issues/19171
* Author: duerst (Martin Dürst)
* Status: Open
* Priority: Normal
* Assignee: duerst (Martin Dürst)
----------------------------------------
According to http://blog.unicode.org/2022/11/the-unicode-standard-2023-release.html, Unicode plans to release Version 15.1 in September 2023. According to https://www.unicode.org/versions/beta.html, public alpha review starts Feb. 7, 2023, and ends April 4, 2023. Because alpha review may not include all the files we use, it may be difficult for us to participate.
Public beta review is planned to start May 23, 2023, ending July 4, 2023. At this point, we should be able to test things.
--
https://bugs.ruby-lang.org/
2
1

[ruby-core:114645] [Ruby master Bug#19865] Segfault when calling user signal handlers during VM shutdown
by ivoanjo (Ivo Anjo) 27 Aug '24
by ivoanjo (Ivo Anjo) 27 Aug '24
27 Aug '24
Issue #19865 has been reported by ivoanjo (Ivo Anjo).
----------------------------------------
Bug #19865: Segfault when calling user signal handlers during VM shutdown
https://bugs.ruby-lang.org/issues/19865
* Author: ivoanjo (Ivo Anjo)
* Status: Open
* Priority: Normal
* ruby -v: ruby 3.2.2 (2023-03-30 revision e51014f9c0) [x86_64-linux]
* Backport: 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN
----------------------------------------
Howdy 👋! I work for Datadog [on the `ddtrace` gem](https://github.com/DataDog/dd-trace-rb) . I've found this issue while investigating a [customer crash report](https://github.com/DataDog/dd-trace-rb/issues/2980).
### Background
The original issue was found in a production app. A number of things need to be in play to cause it.
The [`ruby-odbc`](https://rubygems.org/gems/ruby-odbc) gem provides a way of accessing databases through the ODBC API. It wraps a database connection as a Data object, with a free function that, prior to freeing the native resources, disconnects from the database if the connection was still active.
Because disconnecting from the database is a blocking operation, the gem (reasonably, in my opinion), releases the global VM lock before disconnecting.
The trigger for the crash is:
1. The app in question used puma, and puma installs a `Signal.trap('TERM')`
2. The database object was still connected when the app started to shut down
3. A VM shutdown starts...
4. Half-way through shutdown, the VM received a SIGTERM signal, and queued it for processing
5. The VM calls the free function on all objects
6. The ruby-odbc gem sees there's an active database connection, and tries to release the GVL to call the blocking disconnect
7. Before releasing the GVL, the VM checks for pending interruptions
8. The VM tries to run the Ruby-level signal handler method half-way through VM shutdown, when you can no longer run Ruby code
9. Segfault
### How to reproduce (Ruby version & script)
I was able to reproduce on a minimal example on Ruby 3.2.2 (`ruby 3.2.2 (2023-03-30 revision e51014f9c0) [x86_64-linux]`) and recent master (`ruby 3.3.0dev (2023-08-17T07:30:01Z master d26b015e83) [x86_64-linux]`).
I've put the test-case up on github as well <https://github.com/DataDog/signal-bug-testcase>, but here's the important bits:
`signal-bug-testcase.rb`:
```ruby
require 'signal_bug_testcase'
Signal.trap("TERM") { puts "Hello, world" }
FOO = SignalBugTestcase.new
```
`signal_bug_testcase.c`:
```ruby
#include <ruby.h>
#include <ruby/thread.h>
#include <signal.h>
#include <unistd.h>
typedef struct { int dummy; } BugTestcase;
void *test_nogvl(void *unused) {
fprintf(stderr, "GVL released!\n");
return NULL;
}
static void bug_testcase_free(void* ptr) {
fprintf(stderr, "Free getting called! Sending signal...\n");
kill(getpid(), SIGTERM);
fprintf(stderr, "SIGTERM signal queued, trying to release GVL...\n");
rb_thread_call_without_gvl(test_nogvl, NULL, NULL, NULL);
fprintf(stderr, "After releasing GVL!\n");
free(ptr);
}
const rb_data_type_t bug_testcase_data_type = {
.wrap_struct_name = "SignalBugTestcase",
.function = { NULL, bug_testcase_free, NULL },
.flags = RUBY_TYPED_FREE_IMMEDIATELY
};
VALUE bug_testcase_alloc(VALUE klass) {
BugTestcase* obj = calloc(1, sizeof(BugTestcase));
return TypedData_Make_Struct(klass, BugTestcase, &bug_testcase_data_type, obj);
}
void Init_signal_bug_testcase(void) {
VALUE cBugTestcase = rb_define_class("SignalBugTestcase", rb_cObject);
rb_define_alloc_func(cBugTestcase, bug_testcase_alloc);
}
```
### Expectation and result
No segfault happens.
Interestingly, on Ruby 2.7, the VM exits half-way through but doesn't always segfault, but running it a few times always triggers the issue. On 3.2+ it crashes every time for me.
I suspect the right thing here is to no longer accept/try to run any Ruby-level signal handlers after VM shutdown starts.
Here's what I see with this test-case:
```
$ bundle exec ruby lib/signal-bug-testcase.rb
Free getting called! Sending signal...
SIGTERM signal queued, trying to release GVL...
lib/signal-bug-testcase.rb:3: [BUG] Segmentation fault at 0x0000000000000007
ruby 3.2.2 (2023-03-30 revision e51014f9c0) [x86_64-linux]
-- Control frame information -----------------------------------------------
c:0003 p:---- s:0011 e:000010 CFUNC :puts
c:0002 p:0005 s:0006 e:000005 BLOCK lib/signal-bug-testcase.rb:3 [FINISH]
c:0001 p:0000 s:0003 E:0001a0 DUMMY [FINISH]
-- Ruby level backtrace information ----------------------------------------
lib/signal-bug-testcase.rb:3:in `block in <main>'
lib/signal-bug-testcase.rb:3:in `puts'
-- Machine register context ------------------------------------------------
RIP: 0x000070aa64cedbe7 RBP: 0x000070aa648e8fd0 RSP: 0x00007ffc5c057608
RAX: 0x0000000000004171 RBX: 0x00007ffc5c057630 RCX: 0x0000000000000001
RDX: 0x00007ffc5c057630 RDI: 0x0000000000000007 RSI: 0x0000000000004171
R8: 0x000000000000021b R9: 0x0000000000000000 R10: 0x000070aa63eff048
R11: 0x0000000000000000 R12: 0x000070aa648e8fd0 R13: 0x0000000000004171
R14: 0x0000000000000007 R15: 0x000070aa648e8ff0 EFL: 0x0000000000010202
-- C level backtrace information -------------------------------------------
ruby-3.2.2/lib/libruby.so.3.2(rb_print_backtrace+0xd) [0x70aa64d5bb5f] ruby-3.2.2/vm_dump.c:785
ruby-3.2.2/lib/libruby.so.3.2(rb_vm_bugreport) ruby-3.2.2/vm_dump.c:1080
ruby-3.2.2/lib/libruby.so.3.2(rb_bug_for_fatal_signal+0xf4) [0x70aa64b52164] ruby-3.2.2/error.c:813
ruby-3.2.2/lib/libruby.so.3.2(sigsegv+0x4d) [0x70aa64cab0fd] ruby-3.2.2/signal.c:964
/lib/x86_64-linux-gnu/libc.so.6(0x70aa64642520) [0x70aa64642520]
ruby-3.2.2/lib/libruby.so.3.2(hash_table_index+0x0) [0x70aa64cedbe7] ruby-3.2.2/symbol.h:72
ruby-3.2.2/lib/libruby.so.3.2(rb_id_table_lookup) ruby-3.2.2/id_table.c:230
ruby-3.2.2/lib/libruby.so.3.2(cached_callable_method_entry+0x24) [0x70aa64d356bb] ruby-3.2.2/vm_method.c:1295
ruby-3.2.2/lib/libruby.so.3.2(callable_method_entry_or_negative) ruby-3.2.2/vm_method.c:1365
ruby-3.2.2/lib/libruby.so.3.2(callable_method_entry) ruby-3.2.2/vm_method.c:1402
ruby-3.2.2/lib/libruby.so.3.2(rb_callable_method_entry) ruby-3.2.2/vm_method.c:1409
ruby-3.2.2/lib/libruby.so.3.2(gccct_method_search_slowpath+0x38) [0x70aa64d36258] ruby-3.2.2/vm_eval.c:434
ruby-3.2.2/lib/libruby.so.3.2(rb_call0+0x267) [0x70aa64d4e877] ruby-3.2.2/vm_eval.c:483
ruby-3.2.2/lib/libruby.so.3.2(rb_call+0x32) [0x70aa64d4f406] ruby-3.2.2/vm_eval.c:877
ruby-3.2.2/lib/libruby.so.3.2(rb_funcallv_kw) ruby-3.2.2/vm_eval.c:1074
ruby-3.2.2/lib/libruby.so.3.2(vm_call_cfunc_with_frame+0x127) [0x70aa64d30277] ruby-3.2.2/vm_insnhelper.c:3268
ruby-3.2.2/lib/libruby.so.3.2(vm_sendish+0x97) [0x70aa64d407a4] ruby-3.2.2/vm_insnhelper.c:5080
ruby-3.2.2/lib/libruby.so.3.2(vm_exec_core) ruby-3.2.2/insns.def:820
ruby-3.2.2/lib/libruby.so.3.2(rb_vm_exec+0xd3) [0x70aa64d460d3] ruby-3.2.2/vm.c:2374
ruby-3.2.2/lib/libruby.so.3.2(rb_vm_invoke_proc+0x5f) [0x70aa64d4bfcf] ruby-3.2.2/vm.c:1603
ruby-3.2.2/lib/libruby.so.3.2(vm_call0_body+0x5df) [0x70aa64d4c5cf] ruby-3.2.2/vm_eval.c:274
ruby-3.2.2/lib/libruby.so.3.2(vm_call0_cc+0x77) [0x70aa64d4e7e7] ruby-3.2.2/vm_eval.c:87
ruby-3.2.2/lib/libruby.so.3.2(rb_call0) ruby-3.2.2/vm_eval.c:551
ruby-3.2.2/lib/libruby.so.3.2(rb_call+0x32) [0x70aa64d4f406] ruby-3.2.2/vm_eval.c:877
ruby-3.2.2/lib/libruby.so.3.2(rb_funcallv_kw) ruby-3.2.2/vm_eval.c:1074
ruby-3.2.2/lib/libruby.so.3.2(rb_eval_cmd_kw+0x142) [0x70aa64d4f562] ruby-3.2.2/vm_eval.c:1923
ruby-3.2.2/lib/libruby.so.3.2(signal_exec+0xf6) [0x70aa64caae16] ruby-3.2.2/signal.c:1064
ruby-3.2.2/lib/libruby.so.3.2(rb_threadptr_execute_interrupts+0x36b) [0x70aa64cf7078] ruby-3.2.2/thread.c:2334
ruby-3.2.2/lib/libruby.so.3.2(rb_threadptr_execute_interrupts) ruby-3.2.2/thread.c:2291
ruby-3.2.2/lib/libruby.so.3.2(rb_vm_check_ints+0xb) [0x70aa64cf7ac5] ruby-3.2.2/vm_core.h:1994
ruby-3.2.2/lib/libruby.so.3.2(rb_vm_check_ints) ruby-3.2.2/vm_core.h:1985
ruby-3.2.2/lib/libruby.so.3.2(unblock_function_set) ruby-3.2.2/thread.c:320
ruby-3.2.2/lib/libruby.so.3.2(blocking_region_begin) ruby-3.2.2/thread.c:1485
ruby-3.2.2/lib/libruby.so.3.2(rb_nogvl+0xbf) [0x70aa64cf90cf] ruby-3.2.2/thread.c:1548
signal-bug-testcase-2/lib/signal_bug_testcase.so(fprintf+0x0) [0x70aa6518f299] ../../../../ext/signal_bug_testcase/signal_bug_testcase.c:17
signal-bug-testcase-2/lib/signal_bug_testcase.so(bug_testcase_free) ../../../../ext/signal_bug_testcase/signal_bug_testcase.c:18
ruby-3.2.2/lib/libruby.so.3.2(run_final+0xf) [0x70aa64b73172] ruby-3.2.2/gc.c:4388
ruby-3.2.2/lib/libruby.so.3.2(finalize_list) ruby-3.2.2/gc.c:4407
ruby-3.2.2/lib/libruby.so.3.2(finalize_deferred_heap_pages) ruby-3.2.2/gc.c:4436
ruby-3.2.2/lib/libruby.so.3.2(rb_objspace_call_finalizer+0x350) [0x70aa64b80d70] ruby-3.2.2/gc.c:4573
ruby-3.2.2/lib/libruby.so.3.2(rb_ec_finalize+0x2a) [0x70aa64b5d6d1] ruby-3.2.2/eval.c:168
ruby-3.2.2/lib/libruby.so.3.2(rb_ec_cleanup) ruby-3.2.2/eval.c:262
ruby-3.2.2/lib/libruby.so.3.2(ruby_run_node+0x9d) [0x70aa64b5d91d] ruby-3.2.2/eval.c:330
ruby-3.2.2/bin/ruby(rb_main+0x21) [0x5d5d1295f187] ./main.c:38
ruby-3.2.2/bin/ruby(main) ./main.c:57
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_call_main+0x80) [0x70aa64629d90] ../sysdeps/nptl/libc_start_call_main.h:58
/lib/x86_64-linux-gnu/libc.so.6(call_init+0x0) [0x70aa64629e40] ../csu/libc-start.c:392
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main_impl) ../csu/libc-start.c:379
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main) (null):0
[0x5d5d1295f1d5]
```
---Files--------------------------------
signal-bug-testcase-main.zip (7.73 KB)
--
https://bugs.ruby-lang.org/
2
3

[ruby-core:111272] [Ruby master Bug#19231] Integer#step and Float::INFINITY - inconsistent behaviour when called with and without a block
by andrykonchin (Andrew Konchin) 01 Aug '24
by andrykonchin (Andrew Konchin) 01 Aug '24
01 Aug '24
Issue #19231 has been reported by andrykonchin (Andrew Konchin).
----------------------------------------
Bug #19231: Integer#step and Float::INFINITY - inconsistent behaviour when called with and without a block
https://bugs.ruby-lang.org/issues/19231
* Author: andrykonchin (Andrew Konchin)
* Status: Open
* Priority: Normal
* ruby -v: 3.1.2
* Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN
----------------------------------------
The initial issue was reported here https://github.com/oracle/truffleruby/issues/2797.
`0.step(Float::INFINITY, 10)` returns:
- `Integers` when called with a block
- `Floats` when called without a block
I would expect `Floats` to be returned in both cases.
Examples:
```ruby
0.step(100.0, 10).take(1).map(&:class)
# => [Float]
```
```ruby
0.step(Float::INFINITY, 10) { |offset| p offset.class; break }
# Integer
```
When `to` argument is a finite `Float` value then calling with a block returns `Floats` as well:
```ruby
0.step(100.0, 10) { |offset| p offset.class; break }
# Float
```
Wondering whether it's intentional behaviour.
I've found a related issue https://bugs.ruby-lang.org/issues/15518.
--
https://bugs.ruby-lang.org/
6
6

[ruby-core:115910] [Ruby master Bug#20088] Ruby 3.3.0 does not cross-complie on arm64-darwin
by stanhu (Stan Hu) 29 Jul '24
by stanhu (Stan Hu) 29 Jul '24
29 Jul '24
Issue #20088 has been reported by stanhu (Stan Hu).
----------------------------------------
Bug #20088: Ruby 3.3.0 does not cross-complie on arm64-darwin
https://bugs.ruby-lang.org/issues/20088
* Author: stanhu (Stan Hu)
* Status: Open
* Priority: Normal
* Backport: 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN, 3.3: UNKNOWN
----------------------------------------
To reproduce:
```shell
docker run -it ghcr.io/rake-compiler/rake-compiler-dock-image:1.4.0.rc2-mri-arm64-darwin bash
cd /tmp
export CPPFLAGS=''
export CFLAGS='-O1 -fno-omit-frame-pointer -fno-fast-math -fstack-protector-strong '
export LDFLAGS='-pipe '
export CC=aarch64-apple-darwin-clang
export MAKE='make V=1'
rake-compiler cross-ruby VERSION=3.3.0 HOST=aarch64-apple-darwin
```
This errors out with:
```shell
aarch64-apple-darwin-clang -O1 -fno-omit-frame-pointer -fno-fast-math -fstack-protector-strong -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-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 -pipe -march=arm64 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -DRUBY_EXPORT -fPIE -I. -I.ext/include/arm64-darwin -I/usr/local/rake-compiler/sources/ruby-3.3.0/include -I/usr/local/rake-compiler/sources/ruby-3.3.0 -I/usr/local/rake-compiler/sources/ruby-3.3.0/prism -I/usr/local/rake-compiler/sources/ruby-3.3.0/enc/unicode/15.0.0 -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -o main.o -c /usr/local/rake-compiler/sources/ruby-3.3.0/main.c
clang: error: the clang compiler does not support '-march=arm64'
make: *** [uncommon.mk:1291: main.o] Error 1
```
This appears to be a regression due to https://github.com/ruby/ruby/pull/9250. `RUBY_DEFAULT_ARCH("$target_cpu")` is called, and this `case` statement is hit:
```ac
AS_CASE([$build_os],
[darwin*], [ARCH_FLAG="-arch "$1],
[ARCH_FLAG=-march=$1]
```
I'm not sure this test is correct, since `$build_os` appears to be `linux-gnu`. This results in `-march=arm64` being used, which is not a valid option even in `clang` 15.0.0.
Should `$target_cpu` and `$target_os` be considered instead?
The `configure` output shows:
```
Configuration summary for ruby version 3.3.0
* Installation prefix: /usr/local/rake-compiler/ruby/aarch64-apple-darwin/ruby-3.3.0
* exec prefix: ${prefix}
* arch: arm64-darwin
* site arch: ${arch}
* RUBY_BASE_NAME: ruby
* enable shared: no
* ruby lib prefix: ${libdir}/${RUBY_BASE_NAME}
* site libraries path: ${rubylibprefix}/${sitearch}
* vendor path: ${rubylibprefix}/vendor_ruby
* target OS: darwin
* compiler: aarch64-apple-darwin-clang
* with thread: pthread
* with coroutine: arm64
* enable shared libs: no
* dynamic library ext: bundle
* CFLAGS: -fdeclspec ${optflags} ${debugflags} ${warnflags}
* LDFLAGS: -L. -pipe -fstack-protector-strong
* DLDFLAGS: -pipe -Wl,-multiply_defined,suppress -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-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: aarch64-apple-darwin-strip -A -n
* install doc: no
* YJIT support: no
* RJIT support: no
* man page type: man
* BASERUBY -v: ruby 3.1.3p185 (2022-11-24 revision 1a6b16756e) [x86_64-linux]
```
The `configure` statement for reference:
```
./configure --host=aarch64-apple-darwin --target=aarch64-apple-darwin --build=x86_64-pc-linux-gnu --enable-install-static-library --disable-jit-support --disable-install-doc --with-ext= --enable-static --disable-shared --prefix=/usr/local/rake-compiler/ruby/aarch64-apple-darwin/ruby-3.3.0
```
This was first reported in a CI failure in https://github.com/rake-compiler/rake-compiler-dock/pull/112#issuecomment-1….
--
https://bugs.ruby-lang.org/
3
3

[ruby-core:115847] [Ruby master Bug#20079] alexandria testsuite began to segfault recently
by mtasaka (Mamoru TASAKA) 27 Jul '24
by mtasaka (Mamoru TASAKA) 27 Jul '24
27 Jul '24
Issue #20079 has been reported by mtasaka (Mamoru TASAKA).
----------------------------------------
Bug #20079: alexandria testsuite began to segfault recently
https://bugs.ruby-lang.org/issues/20079
* Author: mtasaka (Mamoru TASAKA)
* Status: Open
* Priority: Normal
* ruby -v: ruby 3.3.0dev (2023-12-22 master 68bcca4c2b) [x86_64-linux]
* Backport: 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN
----------------------------------------
Looks like Fedora alexandria-0.7.9-4 testsuite began to segfault with recent ruby3.3.0dev.
It does not always segfault, but with about 20-30%? probability the testsuite segfaults, so it may be GC related?
And looks like:
OKAY: commit:ba1d1522d3
BAD: commit:ce436ff3e3
Comparison: https://github.com/ruby/ruby/compare/ba1d1522d3...ce436ff3e3
alexandria means https://github.com/mvz/alexandria-book-collection-manager
Backtrace is:
```
+ xvfb-run -s '-screen 0 640x480x24' rake spec:unit
/usr/bin/ruby -rbundler/setup -rsimplecov -Ilib -w -I/usr/share/gems/gems/rspec-support-3.12.1/lib:/usr/share/gems/gems/rspec-core-3.12.2/lib /usr/share/gems/gems/rspec-core-3.12.2/exe/rspec --pattern spec/alexandria/\*\*/\*_spec.rb
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:61: warning: assigned but unused variable - e
/usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/version/info.rb:76: warning: statement not reached
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/ui_manager.rb:728: warning: assigned but unused variable - book
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/ui_manager.rb:728: warning: assigned but unused variable - isbn
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/ui_manager.rb:728: warning: assigned but unused variable - library
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/ui_manager.rb:714: warning: assigned but unused variable - books_to_add
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/ui_manager.rb:701: warning: assigned but unused variable - title
*****...*....../builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
.........../builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
./builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb:222:in `regularize_book_from_yaml': YAML.unescape is deprecated
................**....../usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-model.rb:105: [BUG] Segmentation fault at 0x0000000000000000
ruby 3.3.0dev (2023-12-22 master 68bcca4c2b) [x86_64-linux]
-- Control frame information -----------------------------------------------
c:0041 p:0020 s:0220 e:000214 METHOD /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-model.rb:105
c:0040 p:0007 s:0210 e:000209 METHOD /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-iter.rb:33
c:0039 p:0014 s:0202 e:000201 METHOD /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/libraries_combo.rb:79
c:0038 p:0075 s:0194 e:000193 METHOD /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/libraries_combo.rb:41
c:0037 p:0062 s:0186 e:000185 METHOD /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/acquire_dialog.rb:58 [FINISH]
c:0036 p:---- s:0178 e:000177 CFUNC :new
c:0035 p:0015 s:0173 e:000172 BLOCK /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/spec/alexandria/ui/acquire_dialog_spec.rb:12 [FINISH]
c:0034 p:---- s:0169 e:000168 CFUNC :instance_exec
c:0033 p:0022 s:0164 e:000163 BLOCK /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:263
c:0032 p:0002 s:0159 e:000158 BLOCK /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:511
c:0031 p:0002 s:0156 e:000155 BLOCK /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:468
c:0030 p:0002 s:0153 e:000152 BLOCK /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/hooks.rb:486
c:0029 p:0002 s:0150 e:000149 BLOCK /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/hooks.rb:626
c:0028 p:0018 s:0147 e:000146 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:352
c:0027 p:0004 s:0141 e:000140 BLOCK /usr/share/gems/gems/webmock-3.18.1/lib/webmock/rspec.rb:37 [FINISH]
c:0026 p:---- s:0137 e:000136 CFUNC :instance_exec
c:0025 p:0013 s:0132 e:000131 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:457
c:0024 p:0010 s:0126 e:000125 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/hooks.rb:390
c:0023 p:0009 s:0120 e:000119 BLOCK /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/hooks.rb:628
c:0022 p:0018 s:0117 e:000116 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:352
c:0021 p:0037 s:0111 E:0026b8 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/hooks.rb:629
c:0020 p:0104 s:0104 E:002648 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/hooks.rb:486
c:0019 p:0018 s:0097 E:0025c8 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:468
c:0018 p:0019 s:0092 E:000bb8 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:511
c:0017 p:0076 s:0087 E:002578 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:259
c:0016 p:0037 s:0080 e:000079 BLOCK /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example_group.rb:646 [FINISH]
c:0015 p:---- s:0074 e:000073 CFUNC :map
c:0014 p:0011 s:0070 e:000069 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example_group.rb:642
c:0013 p:0052 s:0065 e:000064 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example_group.rb:607
c:0012 p:0007 s:0056 e:000055 BLOCK /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:121 [FINISH]
c:0011 p:---- s:0052 e:000051 CFUNC :map
c:0010 p:0030 s:0048 e:000047 BLOCK /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:121
c:0009 p:0026 s:0045 e:000044 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/configuration.rb:2070
c:0008 p:0007 s:0041 e:000040 BLOCK /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:116
c:0007 p:0009 s:0037 e:000036 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/reporter.rb:74
c:0006 p:0019 s:0032 e:000031 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:115
c:0005 p:0035 s:0025 e:000024 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:89
c:0004 p:0058 s:0019 e:000018 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:71
c:0003 p:0013 s:0011 e:000010 METHOD /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:45
c:0002 p:0010 s:0006 e:000005 EVAL /usr/share/gems/gems/rspec-core-3.12.2/exe/rspec:4 [FINISH]
c:0001 p:0000 s:0003 E:000030 DUMMY [FINISH]
-- Ruby level backtrace information ----------------------------------------
/usr/share/gems/gems/rspec-core-3.12.2/exe/rspec:4:in `<main>'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:45:in `invoke'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:71:in `run'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:89:in `run'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:115:in `run_specs'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/reporter.rb:74:in `report'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:116:in `block in run_specs'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/configuration.rb:2070:in `with_suite_hooks'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:121:in `block (2 levels) in run_specs'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:121:in `map'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb:121:in `block (3 levels) in run_specs'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example_group.rb:607:in `run'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example_group.rb:642:in `run_examples'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example_group.rb:642:in `map'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example_group.rb:646:in `block in run_examples'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:259:in `run'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:511:in `with_around_and_singleton_context_hooks'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:468:in `with_around_example_hooks'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/hooks.rb:486:in `run'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/hooks.rb:629:in `run_around_example_hooks_for'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:352:in `call'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/hooks.rb:628:in `block (2 levels) in run_around_example_hooks_for'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/hooks.rb:390:in `execute_with'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:457:in `instance_exec'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:457:in `instance_exec'
/usr/share/gems/gems/webmock-3.18.1/lib/webmock/rspec.rb:37:in `block (2 levels) in <top (required)>'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:352:in `call'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/hooks.rb:626:in `block in run_around_example_hooks_for'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/hooks.rb:486:in `block in run'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:468:in `block in with_around_example_hooks'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:511:in `block in with_around_and_singleton_context_hooks'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:263:in `block in run'
/usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb:263:in `instance_exec'
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/spec/alexandria/ui/acquire_dialog_spec.rb:12:in `block (2 levels) in <top (required)>'
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/spec/alexandria/ui/acquire_dialog_spec.rb:12:in `new'
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/acquire_dialog.rb:58:in `initialize'
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/libraries_combo.rb:41:in `populate_with_libraries'
/builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/libraries_combo.rb:79:in `append_entry'
/usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-iter.rb:33:in `set_value'
/usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-model.rb:105:in `get_column_type'
-- Threading information ---------------------------------------------------
Total ractor count: 1
Ruby thread count for this ractor: 1
-- Machine register context ------------------------------------------------
RIP: 0x00007f6a3121a817 RBP: 0x00007ffdbecf5770 RSP: 0x00007ffdbecf5708
RAX: 0x0000000000000091 RBX: 0x0000009100100003 RCX: 0x00007f6a30b356f0
RDX: 0x00007ffdbecf5728 RDI: 0x6c2f322e32312e33 RSI: 0x0000000000000091
R8: 0x000055e2d391aae8 R9: 0x00000000000006e8 R10: 0x000000000000000c
R11: 0x0000000000077813 R12: 0x00007f6a13a63040 R13: 0x6c2f322e32312e33
R14: 0x000055e2d264ea80 R15: 0x0000000000000091 EFL: 0x0000000000010206
-- C level backtrace information -------------------------------------------
/lib64/libruby.so.3.3(rb_print_backtrace+0x21) [0x7f6a3127ea21] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_dump.c:820
/lib64/libruby.so.3.3(rb_vm_bugreport+0x9aa) [0x7f6a3128132a] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_dump.c:1151
/lib64/libruby.so.3.3(rb_bug_for_fatal_signal+0x110) [0x7f6a310d81c0] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/error.c:1065
/lib64/libruby.so.3.3(sigsegv+0x56) [0x7f6a311f4966] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/signal.c:926
/lib64/libc.so.6(__restore_rt+0x0) [0x7f6a30cd49a0]
/lib64/libruby.so.3.3(rb_id_table_lookup+0x7) [0x7f6a3121a817] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/symbol.h:72
/lib64/libruby.so.3.3(vm_search_cc.lto_priv.0+0x58) [0x7f6a31255318] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_insnhelper.c:2046
/lib64/libruby.so.3.3(vm_search_method_slowpath0.lto_priv.0+0x39) [0x7f6a31255799] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_insnhelper.c:2142
/lib64/libruby.so.3.3(vm_exec_core.lto_priv.0+0x129) [0x7f6a31264499] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_insnhelper.c:2224
/lib64/libruby.so.3.3(rb_vm_exec+0x17d) [0x7f6a3127cfdd] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm.c:2486
/lib64/libruby.so.3.3(rb_call0+0x378) [0x7f6a31270868] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_eval.c:110
/lib64/libruby.so.3.3(rb_funcallv_kw+0x5f) [0x7f6a31270daf] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_eval.c:899
/lib64/libruby.so.3.3(rb_class_new_instance_pass_kw+0x45) [0x7f6a31163235] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/object.c:2130
/lib64/libruby.so.3.3(vm_call_cfunc_with_frame_+0x117) [0x7f6a3125c417] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_insnhelper.c:3490
/lib64/libruby.so.3.3(vm_exec_core.lto_priv.0+0x16c) [0x7f6a312644dc] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_insnhelper.c:5581
/lib64/libruby.so.3.3(rb_vm_exec+0x17d) [0x7f6a3127cfdd] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm.c:2486
/lib64/libruby.so.3.3(yield_under+0x19a) [0x7f6a312710fa] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm.c:1634
/lib64/libruby.so.3.3(vm_call_cfunc_with_frame_+0x117) [0x7f6a3125c417] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_insnhelper.c:3490
/lib64/libruby.so.3.3(vm_sendish.lto_priv.0+0xb9) [0x7f6a3125d909] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_insnhelper.c:5585
/lib64/libruby.so.3.3(vm_exec_core.lto_priv.0+0x1daf) [0x7f6a3126611f] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/redhat-linux-build/insns.def:814
/lib64/libruby.so.3.3(rb_vm_exec+0x17d) [0x7f6a3127cfdd] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm.c:2486
/lib64/libruby.so.3.3(yield_under+0x19a) [0x7f6a312710fa] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm.c:1634
/lib64/libruby.so.3.3(vm_call_cfunc_with_frame_+0x117) [0x7f6a3125c417] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_insnhelper.c:3490
/lib64/libruby.so.3.3(vm_sendish.lto_priv.0+0xb9) [0x7f6a3125d909] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_insnhelper.c:5585
/lib64/libruby.so.3.3(vm_exec_core.lto_priv.0+0x1daf) [0x7f6a3126611f] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/redhat-linux-build/insns.def:814
/lib64/libruby.so.3.3(rb_vm_exec+0x17d) [0x7f6a3127cfdd] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm.c:2486
/lib64/libruby.so.3.3(rb_yield+0x77) [0x7f6a3126a787] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm.c:1634
/lib64/libruby.so.3.3(rb_ary_collect.lto_priv.0+0x5c) [0x7f6a31065f6c] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/array.c:3632
/lib64/libruby.so.3.3(vm_call_cfunc_with_frame_+0x117) [0x7f6a3125c417] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_insnhelper.c:3490
/lib64/libruby.so.3.3(vm_sendish.lto_priv.0+0xb9) [0x7f6a3125d909] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_insnhelper.c:5585
/lib64/libruby.so.3.3(vm_exec_core.lto_priv.0+0x1daf) [0x7f6a3126611f] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/redhat-linux-build/insns.def:814
/lib64/libruby.so.3.3(rb_vm_exec+0x17d) [0x7f6a3127cfdd] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm.c:2486
/lib64/libruby.so.3.3(rb_yield+0x77) [0x7f6a3126a787] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm.c:1634
/lib64/libruby.so.3.3(rb_ary_collect.lto_priv.0+0x5c) [0x7f6a31065f6c] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/array.c:3632
/lib64/libruby.so.3.3(vm_call_cfunc_with_frame_+0x117) [0x7f6a3125c417] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_insnhelper.c:3490
/lib64/libruby.so.3.3(vm_sendish.lto_priv.0+0xb9) [0x7f6a3125d909] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm_insnhelper.c:5585
/lib64/libruby.so.3.3(vm_exec_core.lto_priv.0+0x1daf) [0x7f6a3126611f] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/redhat-linux-build/insns.def:814
/lib64/libruby.so.3.3(rb_vm_exec+0x17d) [0x7f6a3127cfdd] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/vm.c:2486
/lib64/libruby.so.3.3(rb_ec_exec_node+0xaa) [0x7f6a310e124a] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/eval.c:287
/lib64/libruby.so.3.3(ruby_run_node+0x93) [0x7f6a310e8cd3] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/eval.c:328
/usr/bin/ruby-mri(0x55e2cf058197) [0x55e2cf058197]
/lib64/libc.so.6(__libc_start_call_main+0x7a) [0x7f6a30cbe14a]
/lib64/libc.so.6(__libc_start_main+0x8b) [0x7f6a30cbe20b]
/usr/bin/ruby-mri(_start+0x25) [0x55e2cf0581e5] /usr/src/debug/ruby-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64/main.c:59
-- Other runtime information -----------------------------------------------
* Loaded script: /usr/share/gems/gems/rspec-core-3.12.2/exe/rspec
* Loaded features:
0 enumerator.so
1 thread.rb
2 fiber.so
3 rational.so
4 complex.so
5 ruby2_keywords.rb
6 /usr/lib64/ruby/enc/encdb.so
7 /usr/lib64/ruby/enc/trans/transdb.so
8 /usr/lib64/ruby/rbconfig.rb
9 /usr/share/rubygems/rubygems/compatibility.rb
10 /usr/share/rubygems/rubygems/defaults.rb
11 /usr/share/rubygems/rubygems/deprecate.rb
12 /usr/share/rubygems/rubygems/errors.rb
13 /usr/share/rubygems/rubygems/unknown_command_spell_checker.rb
14 /usr/share/rubygems/rubygems/exceptions.rb
15 /usr/share/rubygems/rubygems/basic_specification.rb
16 /usr/share/rubygems/rubygems/stub_specification.rb
17 /usr/share/rubygems/rubygems/platform.rb
18 /usr/share/rubygems/rubygems/util/list.rb
19 /usr/share/rubygems/rubygems/version.rb
20 /usr/share/rubygems/rubygems/requirement.rb
21 /usr/share/rubygems/rubygems/specification.rb
22 /usr/share/rubygems/rubygems/defaults/operating_system.rb
23 /usr/share/rubygems/rubygems/util.rb
24 /usr/share/rubygems/rubygems/dependency.rb
25 /usr/share/rubygems/rubygems/core_ext/kernel_gem.rb
26 /usr/lib64/ruby/monitor.so
27 /usr/share/ruby/monitor.rb
28 /usr/share/rubygems/rubygems.rb
29 /usr/share/ruby/bundled_gems.rb
30 /usr/share/rubygems/rubygems/path_support.rb
31 /usr/share/ruby/error_highlight/version.rb
32 /usr/share/ruby/error_highlight/base.rb
33 /usr/share/ruby/error_highlight/formatter.rb
34 /usr/share/ruby/error_highlight/core_ext.rb
35 /usr/share/ruby/error_highlight.rb
36 /usr/share/ruby/did_you_mean/version.rb
37 /usr/share/ruby/did_you_mean/core_ext/name_error.rb
38 /usr/share/ruby/did_you_mean/levenshtein.rb
39 /usr/share/ruby/did_you_mean/jaro_winkler.rb
40 /usr/share/ruby/did_you_mean/spell_checker.rb
41 /usr/share/ruby/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb
42 /usr/share/ruby/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb
43 /usr/share/ruby/did_you_mean/spell_checkers/name_error_checkers.rb
44 /usr/share/ruby/did_you_mean/spell_checkers/method_name_checker.rb
45 /usr/share/ruby/did_you_mean/spell_checkers/key_error_checker.rb
46 /usr/share/ruby/did_you_mean/spell_checkers/null_checker.rb
47 /usr/share/ruby/did_you_mean/tree_spell_checker.rb
48 /usr/share/ruby/did_you_mean/spell_checkers/require_path_checker.rb
49 /usr/share/ruby/did_you_mean/spell_checkers/pattern_key_name_checker.rb
50 /usr/share/ruby/did_you_mean/formatter.rb
51 /usr/share/ruby/did_you_mean.rb
52 /usr/share/ruby/syntax_suggest/core_ext.rb
53 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/FAKE/bundler/setup.rb
54 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/FAKE/simplecov.rb
55 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/version.rb
56 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/comparable_version.rb
57 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/ruby_features.rb
58 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support.rb
59 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/caller_filter.rb
60 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/version.rb
61 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/warnings.rb
62 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/warnings.rb
63 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/set.rb
64 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/flat_map.rb
65 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/filter_manager.rb
66 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/dsl.rb
67 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/formatters/console_codes.rb
68 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/formatters/snippet_extractor.rb
69 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/formatters/syntax_highlighter.rb
70 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/encoded_string.rb
71 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/formatters/exception_presenter.rb
72 /usr/share/ruby/shellwords.rb
73 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/shell_escape.rb
74 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/formatters/helpers.rb
75 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/notifications.rb
76 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/reporter.rb
77 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/hooks.rb
78 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/reentrant_mutex.rb
79 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/memoized_helpers.rb
80 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/metadata.rb
81 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/metadata_filter.rb
82 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/pending.rb
83 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/directory_maker.rb
84 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/formatters.rb
85 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/ordering.rb
86 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/world.rb
87 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/backtrace_formatter.rb
88 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/ruby_project.rb
89 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/formatters/deprecation_formatter.rb
90 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/output_wrapper.rb
91 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/configuration.rb
92 /usr/share/ruby/optparse.rb
93 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/option_parser.rb
94 /usr/lib64/ruby/cgi/escape.so
95 /usr/share/ruby/cgi/util.rb
96 /usr/share/ruby/erb/version.rb
97 /usr/lib64/ruby/strscan.so
98 /usr/share/ruby/erb/compiler.rb
99 /usr/share/ruby/erb/def_method.rb
100 /usr/lib64/ruby/erb/escape.so
101 /usr/share/ruby/erb/util.rb
102 /usr/share/ruby/erb.rb
103 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/configuration_options.rb
104 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/runner.rb
105 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/invocations.rb
106 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example.rb
107 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/matcher_definition.rb
108 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/method_signature_verifier.rb
109 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/with_keywords_when_needed.rb
110 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/shared_example_group.rb
111 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/recursive_const_methods.rb
112 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example_group.rb
113 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core.rb
114 /usr/share/gems/gems/rspec-3.12.0/lib/rspec/version.rb
115 /usr/share/gems/gems/rspec-3.12.0/lib/rspec.rb
116 /usr/share/gems/gems/locale-2.1.3/lib/locale/tag/simple.rb
117 /usr/share/gems/gems/locale-2.1.3/lib/locale/tag/irregular.rb
118 /usr/share/gems/gems/locale-2.1.3/lib/locale/tag/common.rb
119 /usr/share/gems/gems/locale-2.1.3/lib/locale/tag/rfc.rb
120 /usr/share/gems/gems/locale-2.1.3/lib/locale/tag/cldr.rb
121 /usr/share/gems/gems/locale-2.1.3/lib/locale/tag/posix.rb
122 /usr/share/gems/gems/locale-2.1.3/lib/locale/tag.rb
123 /usr/share/gems/gems/locale-2.1.3/lib/locale/taglist.rb
124 /usr/share/gems/gems/locale-2.1.3/lib/locale/driver.rb
125 /usr/share/gems/gems/locale-2.1.3/lib/locale/version.rb
126 /usr/share/gems/gems/locale-2.1.3/lib/locale.rb
127 /usr/share/gems/gems/gettext-3.4.9/lib/gettext/version.rb
128 /usr/share/gems/gems/gettext-3.4.9/lib/gettext/class_info.rb
129 /usr/lib64/ruby/stringio.so
130 /usr/share/ruby/singleton.rb
131 /usr/share/ruby/forwardable/impl.rb
132 /usr/share/ruby/forwardable.rb
133 /usr/share/gems/gems/prime-0.1.2/lib/prime.rb
134 /usr/share/gems/gems/gettext-3.4.9/lib/gettext/mo.rb
135 /usr/share/gems/gems/gettext-3.4.9/lib/gettext/locale_path.rb
136 /usr/share/gems/gems/gettext-3.4.9/lib/gettext/text_domain.rb
137 /usr/share/gems/gems/gettext-3.4.9/lib/gettext/text_domain_group.rb
138 /usr/share/gems/gems/gettext-3.4.9/lib/gettext/text_domain_manager.rb
139 /usr/share/gems/gems/gettext-3.4.9/lib/gettext.rb
140 /usr/share/ruby/logger/version.rb
141 /usr/share/ruby/logger/formatter.rb
142 /usr/share/ruby/logger/period.rb
143 /usr/share/ruby/logger/log_device.rb
144 /usr/share/ruby/logger/severity.rb
145 /usr/share/ruby/logger/errors.rb
146 /usr/share/ruby/logger.rb
147 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/logging.rb
148 /usr/share/gems/gems/locale-2.1.3/lib/locale/driver/env.rb
149 /usr/share/gems/gems/locale-2.1.3/lib/locale/driver/posix.rb
150 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/about.rb
151 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/config.rb
152 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/version.rb
153 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/models/book.rb
154 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_store.rb
155 /usr/share/ruby/observer.rb
156 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_collection.rb
157 /usr/share/gems/gems/psych-5.1.2/lib/psych/versions.rb
158 /usr/share/gems/gems/psych-5.1.2/lib/psych/exception.rb
159 /usr/share/ruby/psych/syntax_error.rb
160 /usr/lib64/ruby/psych.so
161 /usr/share/gems/gems/psych-5.1.2/lib/psych/omap.rb
162 /usr/share/gems/gems/psych-5.1.2/lib/psych/set.rb
163 /usr/share/gems/gems/psych-5.1.2/lib/psych/class_loader.rb
164 /usr/share/gems/gems/psych-5.1.2/lib/psych/scalar_scanner.rb
165 /usr/share/gems/gems/psych-5.1.2/lib/psych/nodes/node.rb
166 /usr/share/gems/gems/psych-5.1.2/lib/psych/nodes/stream.rb
167 /usr/share/gems/gems/psych-5.1.2/lib/psych/nodes/document.rb
168 /usr/share/gems/gems/psych-5.1.2/lib/psych/nodes/sequence.rb
169 /usr/share/gems/gems/psych-5.1.2/lib/psych/nodes/scalar.rb
170 /usr/share/gems/gems/psych-5.1.2/lib/psych/nodes/mapping.rb
171 /usr/share/gems/gems/psych-5.1.2/lib/psych/nodes/alias.rb
172 /usr/share/gems/gems/psych-5.1.2/lib/psych/nodes.rb
173 /usr/share/gems/gems/psych-5.1.2/lib/psych/streaming.rb
174 /usr/share/gems/gems/psych-5.1.2/lib/psych/visitors/visitor.rb
175 /usr/share/gems/gems/psych-5.1.2/lib/psych/visitors/to_ruby.rb
176 /usr/share/gems/gems/psych-5.1.2/lib/psych/visitors/emitter.rb
177 /usr/share/gems/gems/psych-5.1.2/lib/psych/handler.rb
178 /usr/share/gems/gems/psych-5.1.2/lib/psych/tree_builder.rb
179 /usr/share/gems/gems/psych-5.1.2/lib/psych/visitors/yaml_tree.rb
180 /usr/share/gems/gems/psych-5.1.2/lib/psych/json/ruby_events.rb
181 /usr/share/gems/gems/psych-5.1.2/lib/psych/visitors/json_tree.rb
182 /usr/share/gems/gems/psych-5.1.2/lib/psych/visitors/depth_first.rb
183 /usr/share/gems/gems/psych-5.1.2/lib/psych/visitors.rb
184 /usr/share/gems/gems/psych-5.1.2/lib/psych/parser.rb
185 /usr/share/gems/gems/psych-5.1.2/lib/psych/coder.rb
186 /usr/share/gems/gems/psych-5.1.2/lib/psych/core_ext.rb
187 /usr/share/gems/gems/psych-5.1.2/lib/psych/stream.rb
188 /usr/share/gems/gems/psych-5.1.2/lib/psych/json/yaml_events.rb
189 /usr/share/gems/gems/psych-5.1.2/lib/psych/json/tree_builder.rb
190 /usr/share/gems/gems/psych-5.1.2/lib/psych/json/stream.rb
191 /usr/share/gems/gems/psych-5.1.2/lib/psych/handlers/document_stream.rb
192 /usr/share/ruby/psych.rb
193 /usr/share/ruby/yaml.rb
194 /usr/share/ruby/fileutils.rb
195 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/security.rb
196 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/parseexception.rb
197 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/formatters/default.rb
198 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/formatters/pretty.rb
199 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/node.rb
200 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/child.rb
201 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/parent.rb
202 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/xmltokens.rb
203 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/namespace.rb
204 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/encoding.rb
205 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/source.rb
206 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/entity.rb
207 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/attlistdecl.rb
208 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/doctype.rb
209 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/text.rb
210 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/attribute.rb
211 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/cdata.rb
212 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/functions.rb
213 /usr/share/ruby/prettyprint.rb
214 /usr/share/ruby/pp.rb
215 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/parsers/xpathparser.rb
216 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/xpath_parser.rb
217 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/xpath.rb
218 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/element.rb
219 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/xmldecl.rb
220 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/comment.rb
221 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/instruction.rb
222 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/rexml.rb
223 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/output.rb
224 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/undefinednamespaceexception.rb
225 /usr/share/ruby/set.rb
226 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/parsers/baseparser.rb
227 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/parsers/streamparser.rb
228 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/validation/validationexception.rb
229 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/parsers/treeparser.rb
230 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/document.rb
231 /usr/share/ruby/delegate.rb
232 /usr/lib64/ruby/etc.so
233 /usr/share/ruby/tmpdir.rb
234 /usr/share/ruby/tempfile.rb
235 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/net.rb
236 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/image_fetcher.rb
237 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/models/library.rb
238 /usr/lib64/ruby/date_core.so
239 /usr/share/ruby/date.rb
240 /usr/share/ruby/time.rb
241 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/smart_library.rb
242 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/execution_queue.rb
243 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/import_library.rb
244 /usr/share/ruby/csv/fields_converter.rb
245 /usr/share/ruby/English.rb
246 /usr/share/ruby/csv/input_record_separator.rb
247 /usr/share/ruby/csv/row.rb
248 /usr/share/ruby/csv/table.rb
249 /usr/share/ruby/csv/parser.rb
250 /usr/share/ruby/csv/writer.rb
251 /usr/share/ruby/csv/version.rb
252 /usr/share/ruby/csv/core_ext/array.rb
253 /usr/share/ruby/csv/core_ext/string.rb
254 /usr/share/ruby/csv.rb
255 /usr/share/gems/gems/image_size-3.3.0/lib/image_size/format_error.rb
256 /usr/share/gems/gems/image_size-3.3.0/lib/image_size/isobmff.rb
257 /usr/lib64/ruby/pathname.so
258 /usr/share/ruby/pathname.rb
259 /usr/share/gems/gems/image_size-3.3.0/lib/image_size/reader.rb
260 /usr/share/gems/gems/image_size-3.3.0/lib/image_size/chunky_reader.rb
261 /usr/share/gems/gems/image_size-3.3.0/lib/image_size/seekable_io_reader.rb
262 /usr/share/gems/gems/image_size-3.3.0/lib/image_size/stream_io_reader.rb
263 /usr/share/gems/gems/image_size-3.3.0/lib/image_size/string_reader.rb
264 /usr/share/gems/gems/image_size-3.3.0/lib/image_size.rb
265 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/export_library.rb
266 /usr/share/ruby/cgi/core.rb
267 /usr/share/ruby/cgi/cookie.rb
268 /usr/share/ruby/cgi.rb
269 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/book_providers/douban.rb
270 /usr/lib64/ruby/socket.so
271 /usr/share/ruby/socket.rb
272 /usr/share/ruby/timeout.rb
273 /usr/lib64/ruby/io/wait.so
274 /usr/share/ruby/net/protocol.rb
275 /usr/share/ruby/uri/version.rb
276 /usr/share/ruby/uri/rfc2396_parser.rb
277 /usr/share/ruby/uri/rfc3986_parser.rb
278 /usr/share/ruby/uri/common.rb
279 /usr/share/ruby/uri/generic.rb
280 /usr/share/ruby/uri/file.rb
281 /usr/share/ruby/uri/ftp.rb
282 /usr/share/ruby/uri/http.rb
283 /usr/share/ruby/uri/https.rb
284 /usr/share/ruby/uri/ldap.rb
285 /usr/share/ruby/uri/ldaps.rb
286 /usr/share/ruby/uri/mailto.rb
287 /usr/share/ruby/uri/ws.rb
288 /usr/share/ruby/uri/wss.rb
289 /usr/share/ruby/uri.rb
290 /usr/share/ruby/random/formatter.rb
291 /usr/share/ruby/securerandom.rb
292 /usr/share/ruby/resolv.rb
293 /usr/lib64/ruby/zlib.so
294 /usr/share/ruby/net/http/exceptions.rb
295 /usr/share/ruby/net/http/header.rb
296 /usr/share/ruby/net/http/generic_request.rb
297 /usr/share/ruby/net/http/request.rb
298 /usr/share/ruby/net/http/requests.rb
299 /usr/share/ruby/net/http/response.rb
300 /usr/share/ruby/net/http/responses.rb
301 /usr/share/ruby/net/http/proxy_delta.rb
302 /usr/share/ruby/net/http/backward.rb
303 /usr/share/ruby/net/http.rb
304 /usr/lib64/gems/ruby/nokogiri-1.15.5/nokogiri/nokogiri.so
305 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/extension.rb
306 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/version/constant.rb
307 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/version/info.rb
308 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/version.rb
309 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/class_resolver.rb
310 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/syntax_error.rb
311 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/pp/node.rb
312 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/pp/character_data.rb
313 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/pp.rb
314 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/parse_options.rb
315 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/sax/document.rb
316 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/sax/parser_context.rb
317 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/sax/parser.rb
318 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/sax/push_parser.rb
319 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/sax.rb
320 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/searchable.rb
321 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/node/save_options.rb
322 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/node.rb
323 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/attribute_decl.rb
324 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/element_decl.rb
325 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/element_content.rb
326 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/character_data.rb
327 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/namespace.rb
328 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/attr.rb
329 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/dtd.rb
330 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/cdata.rb
331 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/text.rb
332 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/document.rb
333 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/document_fragment.rb
334 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/processing_instruction.rb
335 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/node_set.rb
336 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/syntax_error.rb
337 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/xpath/syntax_error.rb
338 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/xpath.rb
339 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/xpath_context.rb
340 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/builder.rb
341 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/reader.rb
342 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/notation.rb
343 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/entity_decl.rb
344 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/entity_reference.rb
345 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/schema.rb
346 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml/relax_ng.rb
347 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xml.rb
348 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xslt/stylesheet.rb
349 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/xslt.rb
350 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html4/entity_lookup.rb
351 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html4/document.rb
352 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html4/document_fragment.rb
353 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html4/encoding_reader.rb
354 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html4/sax/parser_context.rb
355 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html4/sax/parser.rb
356 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html4/sax/push_parser.rb
357 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html4/element_description.rb
358 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html4/element_description_defaults.rb
359 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html4.rb
360 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html.rb
361 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/decorators/slop.rb
362 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/css/node.rb
363 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/css/xpath_visitor.rb
364 /usr/share/gems/gems/racc-1.7.3/lib/racc/info.rb
365 /usr/lib64/gems/ruby/racc-1.7.3/racc/cparse.so
366 /usr/share/gems/gems/racc-1.7.3/lib/racc/parser.rb
367 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/css/parser_extras.rb
368 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/css/parser.rb
369 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/css/tokenizer.rb
370 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/css/syntax_error.rb
371 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/css.rb
372 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html4/builder.rb
373 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/encoding_handler.rb
374 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html5/document.rb
375 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html5/document_fragment.rb
376 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html5/node.rb
377 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/gumbo.rb
378 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri/html5.rb
379 /usr/share/gems/gems/nokogiri-1.15.5/lib/nokogiri.rb
380 /usr/share/gems/gems/htmlentities-4.3.4/lib/htmlentities/mappings/html4.rb
381 /usr/share/gems/gems/htmlentities-4.3.4/lib/htmlentities/mappings/xhtml1.rb
382 /usr/share/gems/gems/htmlentities-4.3.4/lib/htmlentities/mappings/expanded.rb
383 /usr/share/gems/gems/htmlentities-4.3.4/lib/htmlentities/flavors.rb
384 /usr/share/gems/gems/htmlentities-4.3.4/lib/htmlentities/encoder.rb
385 /usr/share/gems/gems/htmlentities-4.3.4/lib/htmlentities/decoder.rb
386 /usr/share/gems/gems/htmlentities-4.3.4/lib/htmlentities/version.rb
387 /usr/share/gems/gems/htmlentities-4.3.4/lib/htmlentities.rb
388 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/book_providers/web.rb
389 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/book_providers/thalia_provider.rb
390 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/book_providers/worldcat.rb
391 /usr/lib64/gems/ruby/zoom-0.5.0/zoom.so
392 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/book_providers/pseudomarc.rb
393 /usr/share/gems/gems/marc-1.2.0/lib/marc/version.rb
394 /usr/share/gems/gems/marc-1.2.0/lib/marc/constants.rb
395 /usr/share/gems/gems/marc-1.2.0/lib/marc/record.rb
396 /usr/share/gems/gems/marc-1.2.0/lib/marc/datafield.rb
397 /usr/share/gems/gems/marc-1.2.0/lib/marc/controlfield.rb
398 /usr/share/gems/gems/marc-1.2.0/lib/marc/subfield.rb
399 /usr/share/gems/gems/scrub_rb-1.0.1/lib/scrub_rb/version.rb
400 /usr/share/gems/gems/scrub_rb-1.0.1/lib/scrub_rb/monkey_patch.rb
401 /usr/share/gems/gems/scrub_rb-1.0.1/lib/scrub_rb.rb
402 /usr/share/gems/gems/marc-1.2.0/lib/marc/reader.rb
403 /usr/share/gems/gems/marc-1.2.0/lib/marc/writer.rb
404 /usr/share/gems/gems/marc-1.2.0/lib/marc/exception.rb
405 /usr/share/gems/gems/marc-1.2.0/lib/marc/xmlwriter.rb
406 /usr/share/gems/gems/marc-1.2.0/lib/marc/unsafe_xmlwriter.rb
407 /usr/share/gems/gems/marc-1.2.0/lib/marc/xml_parsers.rb
408 /usr/share/gems/gems/marc-1.2.0/lib/marc/xmlreader.rb
409 /usr/share/gems/gems/marc-1.2.0/lib/marc/dublincore.rb
410 /usr/share/ruby/json/version.rb
411 /usr/share/ruby/ostruct.rb
412 /usr/share/ruby/json/generic_object.rb
413 /usr/share/ruby/json/common.rb
414 /usr/lib64/ruby/json/ext/parser.so
415 /usr/lib64/ruby/json/ext/generator.so
416 /usr/share/ruby/json/ext.rb
417 /usr/share/ruby/json.rb
418 /usr/share/gems/gems/marc-1.2.0/lib/marc/jsonl_reader.rb
419 /usr/share/gems/gems/marc-1.2.0/lib/marc/jsonl_writer.rb
420 /usr/share/gems/gems/marc-1.2.0/lib/marc.rb
421 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/book_providers/z3950_provider.rb
422 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/book_providers/loc_provider.rb
423 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/book_providers/bl_provider.rb
424 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/book_providers/sbn_provider.rb
425 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/book_providers.rb
426 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/default_preferences.rb
427 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/preferences.rb
428 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/undo_manager.rb
429 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/web_themes.rb
430 /usr/share/gems/gems/glib2-4.2.0/lib/glib2/deprecatable.rb
431 /usr/lib64/gems/ruby/glib2-4.2.0/glib2.so
432 /usr/share/gems/gems/glib2-4.2.0/lib/glib2/version.rb
433 /usr/share/gems/gems/glib2-4.2.0/lib/glib2/deprecated.rb
434 /usr/share/gems/gems/glib2-4.2.0/lib/glib2/date-time.rb
435 /usr/share/gems/gems/glib2-4.2.0/lib/glib2/regex.rb
436 /usr/share/gems/gems/glib2-4.2.0/lib/glib2/variant.rb
437 /usr/share/gems/gems/glib2-4.2.0/lib/glib2.rb
438 /usr/lib64/gems/ruby/gobject-introspection-4.2.0/gobject_introspection.so
439 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/arg-info.rb
440 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/collection-reader.rb
441 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/boxed-info.rb
442 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/callable-info.rb
443 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/function-info.rb
444 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/interface-info.rb
445 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/object-info.rb
446 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/registered-type-info.rb
447 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/repository.rb
448 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/struct-info.rb
449 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/type-info.rb
450 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/type-tag.rb
451 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/union-info.rb
452 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/version.rb
453 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection/loader.rb
454 /usr/share/gems/gems/gobject-introspection-4.2.0/lib/gobject-introspection.rb
455 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/loader.rb
456 /usr/lib64/gems/ruby/gio2-4.2.0/gio2.so
457 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/action.rb
458 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/action-map.rb
459 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/application-command-line.rb
460 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/content-type.rb
461 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/file.rb
462 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/icon.rb
463 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/inet-address.rb
464 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/input-stream.rb
465 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/menu-item.rb
466 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/output-stream.rb
467 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/pollable-input-stream.rb
468 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/pollable-output-stream.rb
469 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/resources.rb
470 /usr/lib64/ruby/fiddle.so
471 /usr/share/ruby/fiddle/closure.rb
472 /usr/share/ruby/fiddle/function.rb
473 /usr/share/ruby/fiddle/version.rb
474 /usr/share/ruby/fiddle.rb
475 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/ruby-seekable.rb
476 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/ruby-input-stream.rb
477 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/ruby-output-stream.rb
478 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/settings.rb
479 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/settings-schema-source.rb
480 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/simple-action.rb
481 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/volume.rb
482 /usr/share/gems/gems/gio2-4.2.0/lib/gio2/deprecated.rb
483 /usr/share/gems/gems/gio2-4.2.0/lib/gio2.rb
484 /usr/share/gems/gems/gdk_pixbuf2-4.2.0/lib/gdk_pixbuf2/loader.rb
485 /usr/share/gems/gems/gdk_pixbuf2-4.2.0/lib/gdk_pixbuf2/pixbuf.rb
486 /usr/share/gems/gems/gdk_pixbuf2-4.2.0/lib/gdk_pixbuf2/pixbuf-loader.rb
487 /usr/share/gems/gems/gdk_pixbuf2-4.2.0/lib/gdk_pixbuf2/deprecated.rb
488 /usr/share/gems/gems/gdk_pixbuf2-4.2.0/lib/gdk_pixbuf2/version.rb
489 /usr/share/gems/gems/gdk_pixbuf2-4.2.0/lib/gdk_pixbuf2.rb
490 /usr/share/gems/gems/atk-4.2.0/lib/atk.rb
491 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/utils.rb
492 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/alpha_component.rb
493 /usr/share/gems/gems/matrix-0.4.2/lib/matrix/version.rb
494 /usr/share/gems/gems/matrix-0.4.2/lib/matrix.rb
495 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/convert.rb
496 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/helper.rb
497 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/abstract_color.rb
498 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/hsl.rb
499 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/hsla.rb
500 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/husl.rb
501 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/rgb.rb
502 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/rgba.rb
503 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/xterm256.rb
504 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/xyy.rb
505 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/xyz.rb
506 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/color_data.rb
507 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/named_colors.rb
508 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/colormap.rb
509 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/listed_colormap.rb
510 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/linear_segmented_colormap.rb
511 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/colormap_registry.rb
512 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/colormap_data/matplotlib_builtin.rb
513 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/colormap_data/seaborn_builtin.rb
514 /usr/share/gems/gems/red-colors-0.3.0/lib/colors/colormap_data.rb
515 /usr/share/gems/gems/red-colors-0.3.0/lib/colors.rb
516 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/color.rb
517 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/paper.rb
518 /usr/lib64/gems/ruby/cairo-1.17.13/cairo.so
519 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/constants.rb
520 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/point.rb
521 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/colors.rb
522 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/papers.rb
523 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/context/rectangle.rb
524 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/context/triangle.rb
525 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/context/circle.rb
526 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/context/path.rb
527 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/context/blur.rb
528 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/context/color.rb
529 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/context.rb
530 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/device.rb
531 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/surface.rb
532 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/pattern.rb
533 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/path.rb
534 /usr/share/gems/gems/cairo-1.17.13/lib/cairo/region.rb
535 /usr/share/gems/gems/cairo-1.17.13/lib/cairo.rb
536 /usr/lib64/gems/ruby/cairo-gobject-4.2.0/cairo_gobject.so
537 /usr/share/gems/gems/cairo-gobject-4.2.0/lib/cairo-gobject.rb
538 /usr/share/gems/gems/pango-4.2.0/lib/pango/loader.rb
539 /usr/share/gems/gems/pango-4.2.0/lib/pango/cairo-loader.rb
540 /usr/share/gems/gems/pango-4.2.0/lib/pango/fc-loader.rb
541 /usr/share/gems/gems/pango-4.2.0/lib/pango/ft2-loader.rb
542 /usr/share/gems/gems/pango-4.2.0/lib/pango/ot-loader.rb
543 /usr/lib64/gems/ruby/pango-4.2.0/pango.so
544 /usr/share/gems/gems/pango-4.2.0/lib/pango/attr-list.rb
545 /usr/share/gems/gems/pango-4.2.0/lib/pango/attr-type.rb
546 /usr/share/gems/gems/pango-4.2.0/lib/pango/color.rb
547 /usr/share/gems/gems/pango-4.2.0/lib/pango/font-description.rb
548 /usr/share/gems/gems/pango-4.2.0/lib/pango/language.rb
549 /usr/share/gems/gems/pango-4.2.0/lib/pango/layout.rb
550 /usr/share/gems/gems/pango-4.2.0/lib/pango/rectangle.rb
551 /usr/share/gems/gems/pango-4.2.0/lib/pango/markup.rb
552 /usr/share/gems/gems/pango-4.2.0/lib/pango/matrix.rb
553 /usr/share/gems/gems/pango-4.2.0/lib/pango/version.rb
554 /usr/share/gems/gems/pango-4.2.0/lib/pango/deprecated.rb
555 /usr/share/gems/gems/pango-4.2.0/lib/pango.rb
556 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/loader.rb
557 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/x11-loader.rb
558 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3.rb
559 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/loader.rb
560 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3.rb
561 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/icons.rb
562 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/builder_base.rb
563 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/event-readers.rb
564 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/atom.rb
565 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/color.rb
566 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/cursor.rb
567 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/event.rb
568 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/rectangle.rb
569 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/rgba.rb
570 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/screen.rb
571 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/window.rb
572 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/window-attr.rb
573 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/cairo.rb
574 /usr/share/gems/gems/gdk3-4.2.0/lib/gdk3/deprecated.rb
575 /usr/lib64/gems/ruby/gtk3-4.2.0/gtk3.so
576 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/gdk-drag-context.rb
577 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/gdk-screen.rb
578 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/about-dialog.rb
579 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/action.rb
580 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/action-group.rb
581 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/application.rb
582 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/binding-set.rb
583 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/border.rb
584 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/box.rb
585 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/button.rb
586 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/builder.rb
587 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/calendar.rb
588 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/cell-layout.rb
589 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/check-menu-item.rb
590 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/clipboard.rb
591 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/color-chooser-dialog.rb
592 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/combo-box.rb
593 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/combo-box-text.rb
594 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/container.rb
595 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/css-provider.rb
596 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/dialog.rb
597 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/entry.rb
598 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/entry-buffer.rb
599 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/file-chooser-dialog.rb
600 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/font-chooser-dialog.rb
601 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/gesture-multi-press.rb
602 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/icon-size.rb
603 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/icon-theme.rb
604 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/icon-view.rb
605 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/image.rb
606 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/image-menu-item.rb
607 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/label.rb
608 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/level-bar.rb
609 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/list-store.rb
610 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/menu-item.rb
611 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/message-dialog.rb
612 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/paned.rb
613 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/radio-action.rb
614 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/radio-button.rb
615 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/recent-chooser-dialog.rb
616 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/response-type.rb
617 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/scale-button.rb
618 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/scrolled-window.rb
619 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/search-bar.rb
620 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/selection-data.rb
621 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/spin-button.rb
622 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/show-uri.rb
623 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/stack.rb
624 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/stock.rb
625 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/stock-item.rb
626 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/style-context.rb
627 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/style-properties.rb
628 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/table.rb
629 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/target-list.rb
630 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/target-entry.rb
631 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/text-buffer.rb
632 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/text-iter.rb
633 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/text-tag.rb
634 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/text-tag-table.rb
635 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/text-view.rb
636 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/toggle-action.rb
637 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/toggle-button.rb
638 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tool-button.rb
639 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-iter.rb
640 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-model.rb
641 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-model-filter.rb
642 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-model-sort.rb
643 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-path.rb
644 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-selection.rb
645 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-store.rb
646 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-view.rb
647 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/tree-view-column.rb
648 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/ui-manager.rb
649 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/version.rb
650 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/widget.rb
651 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/window.rb
652 /usr/share/gems/gems/gtk3-4.2.0/lib/gtk3/deprecated.rb
653 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/completion_models.rb
654 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/libraries_combo.rb
655 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/multi_drag_treeview.rb
656 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/alert_dialog.rb
657 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/about_dialog.rb
658 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/calendar_popup.rb
659 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/error_dialog.rb
660 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/book_properties_dialog_base.rb
661 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/book_properties_dialog.rb
662 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/new_book_dialog_manual.rb
663 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/keep_bad_isbn_dialog.rb
664 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/new_book_dialog.rb
665 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/scanners.rb
666 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/scanners/cue_cat.rb
667 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/scanners/keyboard.rb
668 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/provider_preferences_base_dialog.rb
669 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/provider_preferences_dialog.rb
670 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/new_provider_dialog.rb
671 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/preferences_dialog.rb
672 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/export_format.rb
673 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/confirm_erase_dialog.rb
674 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/export_dialog.rb
675 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/skip_entry_dialog.rb
676 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/import_dialog.rb
677 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/barcode_animation.rb
678 /usr/share/gems/gems/gstreamer-4.2.0/lib/gst/loader.rb
679 /usr/share/gems/gems/gstreamer-4.2.0/lib/gst/base-loader.rb
680 /usr/share/gems/gems/gstreamer-4.2.0/lib/gst/controller-loader.rb
681 /usr/share/gems/gems/gstreamer-4.2.0/lib/gst.rb
682 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/sound.rb
683 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/acquire_dialog.rb
684 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/smart_library_rule_box.rb
685 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/smart_library_properties_dialog_base.rb
686 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/smart_library_properties_dialog.rb
687 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/new_smart_library_dialog.rb
688 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/bad_isbns_dialog.rb
689 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/dndable.rb
690 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/init.rb
691 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/really_delete_dialog.rb
692 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/callbacks.rb
693 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/columns.rb
694 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/conflict_while_copying_dialog.rb
695 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/library_sort_order.rb
696 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/ui_manager.rb
697 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/listview.rb
698 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/iconview_tooltips.rb
699 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/iconview.rb
700 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/sidepane_manager.rb
701 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui/main_app.rb
702 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/ui.rb
703 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria/console.rb
704 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/lib/alexandria.rb
705 /usr/share/gems/gems/addressable-2.8.1/lib/addressable/version.rb
706 /usr/share/gems/gems/addressable-2.8.1/lib/addressable/idna/pure.rb
707 /usr/share/gems/gems/addressable-2.8.1/lib/addressable/idna.rb
708 /usr/share/gems/gems/public_suffix-5.0.0/lib/public_suffix/domain.rb
709 /usr/share/gems/gems/public_suffix-5.0.0/lib/public_suffix/version.rb
710 /usr/share/gems/gems/public_suffix-5.0.0/lib/public_suffix/errors.rb
711 /usr/share/gems/gems/public_suffix-5.0.0/lib/public_suffix/rule.rb
712 /usr/share/gems/gems/public_suffix-5.0.0/lib/public_suffix/list.rb
713 /usr/share/gems/gems/public_suffix-5.0.0/lib/public_suffix.rb
714 /usr/share/gems/gems/addressable-2.8.1/lib/addressable/uri.rb
715 /usr/share/gems/gems/addressable-2.8.1/lib/addressable/template.rb
716 /usr/share/gems/gems/rexml-3.2.6/lib/rexml/light/node.rb
717 /usr/lib64/ruby/bigdecimal.so
718 /usr/share/ruby/bigdecimal.rb
719 /usr/share/gems/gems/crack-0.4.5/lib/crack/xml.rb
720 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/deprecation.rb
721 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/version.rb
722 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/errors.rb
723 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/util/query_mapper.rb
724 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/util/uri.rb
725 /usr/share/ruby/base64.rb
726 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/util/headers.rb
727 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/util/hash_counter.rb
728 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/util/hash_keys_stringifier.rb
729 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/util/values_stringifier.rb
730 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/util/json.rb
731 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/util/version_checker.rb
732 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/util/hash_validator.rb
733 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/matchers/hash_argument_matcher.rb
734 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/matchers/hash_excluding_matcher.rb
735 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/matchers/hash_including_matcher.rb
736 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/matchers/any_arg_matcher.rb
737 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/request_pattern.rb
738 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/request_signature.rb
739 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/responses_sequence.rb
740 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/request_stub.rb
741 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/response.rb
742 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/rack_response.rb
743 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/stub_request_snippet.rb
744 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/request_signature_snippet.rb
745 /usr/share/gems/gems/hashdiff-1.0.1/lib/hashdiff/util.rb
746 /usr/share/gems/gems/hashdiff-1.0.1/lib/hashdiff/compare_hashes.rb
747 /usr/share/gems/gems/hashdiff-1.0.1/lib/hashdiff/lcs.rb
748 /usr/share/gems/gems/hashdiff-1.0.1/lib/hashdiff/lcs_compare_arrays.rb
749 /usr/share/gems/gems/hashdiff-1.0.1/lib/hashdiff/linear_compare_array.rb
750 /usr/share/gems/gems/hashdiff-1.0.1/lib/hashdiff/diff.rb
751 /usr/share/gems/gems/hashdiff-1.0.1/lib/hashdiff/patch.rb
752 /usr/share/gems/gems/hashdiff-1.0.1/lib/hashdiff/version.rb
753 /usr/share/gems/gems/hashdiff-1.0.1/lib/hashdiff.rb
754 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/request_body_diff.rb
755 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/assertion_failure.rb
756 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/request_execution_verifier.rb
757 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/config.rb
758 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/callback_registry.rb
759 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/request_registry.rb
760 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/stub_registry.rb
761 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/api.rb
762 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/http_lib_adapters/http_lib_adapter_registry.rb
763 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/http_lib_adapters/http_lib_adapter.rb
764 /usr/share/ruby/digest/version.rb
765 /usr/lib64/ruby/digest.so
766 /usr/share/ruby/digest/loader.rb
767 /usr/share/ruby/digest.rb
768 /usr/lib64/ruby/openssl.so
769 /usr/share/ruby/openssl/bn.rb
770 /usr/share/ruby/openssl/marshal.rb
771 /usr/share/ruby/openssl/pkey.rb
772 /usr/share/ruby/openssl/cipher.rb
773 /usr/share/ruby/openssl/digest.rb
774 /usr/share/ruby/openssl/hmac.rb
775 /usr/share/ruby/openssl/x509.rb
776 /usr/share/ruby/openssl/buffering.rb
777 /usr/lib64/ruby/io/nonblock.so
778 /usr/share/ruby/ipaddr.rb
779 /usr/share/ruby/openssl/ssl.rb
780 /usr/share/ruby/openssl/pkcs5.rb
781 /usr/share/ruby/openssl/version.rb
782 /usr/share/ruby/openssl.rb
783 /usr/share/ruby/net/https.rb
784 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/http_lib_adapters/net_http_response.rb
785 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/http_lib_adapters/net_http.rb
786 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/http_lib_adapters/http_rb_adapter.rb
787 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/http_lib_adapters/httpclient_adapter.rb
788 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/http_lib_adapters/patron_adapter.rb
789 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/http_lib_adapters/curb_adapter.rb
790 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/http_lib_adapters/em_http_request_adapter.rb
791 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/http_lib_adapters/typhoeus_hydra_adapter.rb
792 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/http_lib_adapters/excon_adapter.rb
793 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/http_lib_adapters/manticore_adapter.rb
794 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/http_lib_adapters/async_http_client_adapter.rb
795 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/webmock.rb
796 /usr/share/gems/gems/webmock-3.18.1/lib/webmock.rb
797 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/object_formatter.rb
798 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/english_phrasing.rb
799 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/fuzzy_matcher.rb
800 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/composable.rb
801 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/built_in/base_matcher.rb
802 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/built_in.rb
803 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/generated_descriptions.rb
804 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/dsl.rb
805 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/matcher_delegator.rb
806 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/aliased_matcher.rb
807 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/expecteds_for_multiple_diffs.rb
808 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers.rb
809 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/expectations/expectation_target.rb
810 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/expectations/syntax.rb
811 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/expectations/configuration.rb
812 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/expectations/fail_with.rb
813 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/expectations/handler.rb
814 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/expectations/version.rb
815 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/expectations.rb
816 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/rspec/matchers/request_pattern_matcher.rb
817 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/rspec/matchers/webmock_matcher.rb
818 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/rspec/matchers.rb
819 /usr/share/gems/gems/webmock-3.18.1/lib/webmock/rspec.rb
820 /usr/share/gems/gems/pry-0.14.1/lib/pry/version.rb
821 /usr/share/gems/gems/pry-0.14.1/lib/pry/last_exception.rb
822 /usr/share/gems/gems/pry-0.14.1/lib/pry/forwardable.rb
823 /usr/share/gems/gems/pry-0.14.1/lib/pry/helpers/base_helpers.rb
824 /usr/share/gems/gems/pry-0.14.1/lib/pry/helpers/documentation_helpers.rb
825 /usr/share/gems/gems/pry-0.14.1/lib/pry/helpers/options_helpers.rb
826 /usr/share/gems/gems/pry-0.14.1/lib/pry/helpers/command_helpers.rb
827 /usr/share/gems/gems/pry-0.14.1/lib/pry/helpers/text.rb
828 /usr/share/gems/gems/pry-0.14.1/lib/pry/helpers/table.rb
829 /usr/share/gems/gems/pry-0.14.1/lib/pry/helpers/platform.rb
830 /usr/share/gems/gems/pry-0.14.1/lib/pry/helpers.rb
831 /usr/share/gems/gems/pry-0.14.1/lib/pry/basic_object.rb
832 /usr/share/gems/gems/pry-0.14.1/lib/pry/prompt.rb
833 /usr/share/gems/gems/pry-0.14.1/lib/pry/code_object.rb
834 /usr/share/gems/gems/pry-0.14.1/lib/pry/exceptions.rb
835 /usr/share/gems/gems/pry-0.14.1/lib/pry/hooks.rb
836 /usr/share/gems/gems/pry-0.14.1/lib/pry/input_completer.rb
837 /usr/share/gems/gems/pry-0.14.1/lib/pry/command.rb
838 /usr/share/gems/gems/pry-0.14.1/lib/pry/class_command.rb
839 /usr/share/gems/gems/pry-0.14.1/lib/pry/block_command.rb
840 /usr/share/gems/gems/pry-0.14.1/lib/pry/command_set.rb
841 /usr/share/gems/gems/coderay-1.1.3/lib/coderay.rb
842 /usr/share/gems/gems/pry-0.14.1/lib/pry/syntax_highlighter.rb
843 /usr/share/gems/gems/pry-0.14.1/lib/pry/editor.rb
844 /usr/share/gems/gems/pry-0.14.1/lib/pry/history.rb
845 /usr/share/gems/gems/coderay-1.1.3/lib/coderay/helpers/plugin_host.rb
846 /usr/share/gems/gems/coderay-1.1.3/lib/coderay/encoders.rb
847 /usr/share/gems/gems/coderay-1.1.3/lib/coderay/encoders/_map.rb
848 /usr/share/gems/gems/coderay-1.1.3/lib/coderay/helpers/plugin.rb
849 /usr/share/gems/gems/coderay-1.1.3/lib/coderay/encoders/encoder.rb
850 /usr/share/gems/gems/coderay-1.1.3/lib/coderay/encoders/terminal.rb
851 /usr/share/gems/gems/pry-0.14.1/lib/pry/color_printer.rb
852 /usr/share/gems/gems/pry-0.14.1/lib/pry/exception_handler.rb
853 /usr/share/gems/gems/pry-0.14.1/lib/pry/system_command_handler.rb
854 /usr/share/gems/gems/pry-0.14.1/lib/pry/control_d_handler.rb
855 /usr/share/gems/gems/pry-0.14.1/lib/pry/command_state.rb
856 /usr/share/gems/gems/pry-0.14.1/lib/pry/warning.rb
857 /usr/share/gems/gems/pry-0.14.1/lib/pry/env.rb
858 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls/jruby_hacks.rb
859 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls/methods_helper.rb
860 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls/interrogatable.rb
861 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls/grep.rb
862 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls/formatter.rb
863 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls/globals.rb
864 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls/constants.rb
865 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls/methods.rb
866 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls/self_methods.rb
867 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls/instance_vars.rb
868 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls/local_names.rb
869 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls/local_vars.rb
870 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls/ls_entity.rb
871 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ls.rb
872 /usr/share/gems/gems/pry-0.14.1/lib/pry/config/attributable.rb
873 /usr/share/gems/gems/pry-0.14.1/lib/pry/config/value.rb
874 /usr/share/gems/gems/pry-0.14.1/lib/pry/config/memoized_value.rb
875 /usr/share/gems/gems/pry-0.14.1/lib/pry/config/lazy_value.rb
876 /usr/share/gems/gems/pry-0.14.1/lib/pry/config.rb
877 /usr/share/gems/gems/pry-0.14.1/lib/pry/pry_class.rb
878 /usr/share/gems/gems/method_source-1.0.0/lib/method_source/version.rb
879 /usr/share/gems/gems/method_source-1.0.0/lib/method_source/source_location.rb
880 /usr/share/gems/gems/method_source-1.0.0/lib/method_source/code_helpers.rb
881 /usr/share/gems/gems/method_source-1.0.0/lib/method_source.rb
882 /usr/share/gems/gems/pry-0.14.1/lib/pry/pry_instance.rb
883 /usr/share/gems/gems/pry-0.14.1/lib/pry/inspector.rb
884 /usr/share/gems/gems/pry-0.14.1/lib/pry/pager.rb
885 /usr/share/gems/gems/pry-0.14.1/lib/pry/indent.rb
886 /usr/share/gems/gems/pry-0.14.1/lib/pry/object_path.rb
887 /usr/share/gems/gems/pry-0.14.1/lib/pry/output.rb
888 /usr/share/gems/gems/pry-0.14.1/lib/pry/input_lock.rb
889 /usr/share/gems/gems/pry-0.14.1/lib/pry/repl.rb
890 /usr/share/gems/gems/pry-0.14.1/lib/pry/code.rb
891 /usr/share/gems/gems/pry-0.14.1/lib/pry/ring.rb
892 /usr/share/gems/gems/pry-0.14.1/lib/pry/method.rb
893 /usr/share/gems/gems/pry-0.14.1/lib/pry/wrapped_module.rb
894 /usr/share/gems/gems/pry-0.14.1/lib/pry/wrapped_module/candidate.rb
895 /usr/share/gems/gems/pry-0.14.1/lib/pry/slop/option.rb
896 /usr/share/gems/gems/pry-0.14.1/lib/pry/slop/commands.rb
897 /usr/share/gems/gems/pry-0.14.1/lib/pry/slop.rb
898 /usr/share/gems/gems/pry-0.14.1/lib/pry/cli.rb
899 /usr/share/gems/gems/pry-0.14.1/lib/pry/core_extensions.rb
900 /usr/share/gems/gems/pry-0.14.1/lib/pry/repl_file_loader.rb
901 /usr/share/gems/gems/pry-0.14.1/lib/pry/code/loc.rb
902 /usr/share/gems/gems/pry-0.14.1/lib/pry/code/code_range.rb
903 /usr/share/gems/gems/pry-0.14.1/lib/pry/code/code_file.rb
904 /usr/share/gems/gems/pry-0.14.1/lib/pry/method/weird_method_locator.rb
905 /usr/share/gems/gems/pry-0.14.1/lib/pry/method/disowned.rb
906 /usr/share/gems/gems/pry-0.14.1/lib/pry/method/patcher.rb
907 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/amend_line.rb
908 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/bang.rb
909 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/bang_pry.rb
910 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/cat.rb
911 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/cat/abstract_formatter.rb
912 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/cat/input_expression_formatter.rb
913 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/cat/exception_formatter.rb
914 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/cat/file_formatter.rb
915 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/cd.rb
916 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/change_inspector.rb
917 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/change_prompt.rb
918 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/clear_screen.rb
919 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/code_collector.rb
920 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/disable_pry.rb
921 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/easter_eggs.rb
922 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/edit.rb
923 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/edit/exception_patcher.rb
924 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/edit/file_and_line_locator.rb
925 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/exit.rb
926 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/exit_all.rb
927 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/exit_program.rb
928 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/find_method.rb
929 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/fix_indent.rb
930 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/help.rb
931 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/hist.rb
932 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/import_set.rb
933 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/jump_to.rb
934 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/list_inspectors.rb
935 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/nesting.rb
936 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/play.rb
937 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/pry_backtrace.rb
938 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/pry_version.rb
939 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/raise_up.rb
940 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/reload_code.rb
941 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/reset.rb
942 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/ri.rb
943 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/save_file.rb
944 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/shell_command.rb
945 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/shell_mode.rb
946 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/show_info.rb
947 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/show_doc.rb
948 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/show_input.rb
949 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/show_source.rb
950 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/stat.rb
951 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/switch_to.rb
952 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/toggle_color.rb
953 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/watch_expression.rb
954 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/watch_expression/expression.rb
955 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/whereami.rb
956 /usr/share/gems/gems/pry-0.14.1/lib/pry/commands/wtf.rb
957 /usr/share/gems/gems/pry-0.14.1/lib/pry.rb
958 /builddir/build/BUILD/alexandria-book-collection-manager-0.7.9/spec/spec_helper.rb
959 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/instance_method_stasher.rb
960 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/method_double.rb
961 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/argument_matchers.rb
962 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/object_reference.rb
963 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/example_methods.rb
964 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/proxy.rb
965 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/test_double.rb
966 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/argument_list_matcher.rb
967 /usr/share/gems/gems/rspec-support-3.12.1/lib/rspec/support/mutex.rb
968 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/message_expectation.rb
969 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/order_group.rb
970 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/error_generator.rb
971 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/space.rb
972 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/mutate_const.rb
973 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/targets.rb
974 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/syntax.rb
975 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/configuration.rb
976 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/verifying_message_expectation.rb
977 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/method_reference.rb
978 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/verifying_proxy.rb
979 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/verifying_double.rb
980 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/version.rb
981 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks.rb
982 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/mocking_adapters/rspec.rb
983 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/example_status_persister.rb
984 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/formatters/base_formatter.rb
985 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/formatters/base_text_formatter.rb
986 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/formatters/progress_formatter.rb
987 /usr/share/gems/gems/rspec-core-3.12.2/lib/rspec/core/profiler.rb
988 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/built_in/be_instance_of.rb
989 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/built_in/be.rb
990 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/built_in/has.rb
991 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/built_in/eq.rb
992 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/built_in/raise_error.rb
993 /usr/share/gems/gems/syck-1.4.1/lib/syck/encoding.rb
994 /usr/lib64/ruby/enc/utf_16le.so
995 /usr/lib64/ruby/enc/utf_16be.so
996 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/expectations/failure_aggregator.rb
997 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/matchers/expectation_customization.rb
998 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/matchers/receive.rb
999 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/any_instance/chain.rb
1000 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/any_instance/error_generator.rb
1001 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/any_instance/stub_chain.rb
1002 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/any_instance/stub_chain_chain.rb
1003 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/any_instance/expect_chain_chain.rb
1004 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/any_instance/expectation_chain.rb
1005 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/any_instance/message_chains.rb
1006 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/any_instance/recorder.rb
1007 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/any_instance/proxy.rb
1008 /usr/share/gems/gems/rspec-mocks-3.12.6/lib/rspec/mocks/any_instance.rb
1009 /usr/share/gems/gems/rspec-expectations-3.12.3/lib/rspec/matchers/built_in/match.rb
* Process memory map:
55e2cf057000-55e2cf058000 r--p 00000000 08:08 7003309 /usr/bin/ruby-mri
55e2cf058000-55e2cf059000 r-xp 00001000 08:08 7003309 /usr/bin/ruby-mri
55e2cf059000-55e2cf05a000 r--p 00002000 08:08 7003309 /usr/bin/ruby-mri
55e2cf05a000-55e2cf05b000 r--p 00002000 08:08 7003309 /usr/bin/ruby-mri
55e2cf05b000-55e2cf05c000 rw-p 00003000 08:08 7003309 /usr/bin/ruby-mri
55e2cfbcf000-55e2d4095000 rw-p 00000000 00:00 0 [heap]
7f69fe200000-7f69fe451000 r--s 00000000 08:08 6979654 /usr/lib64/libc.so.6
7f69fe600000-7f6a00531000 r--s 00000000 08:08 7003543 /usr/lib/debug/usr/lib64/libruby.so.3.3.0-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64.debug
7f6a00600000-7f6a02531000 r--s 00000000 08:08 7003543 /usr/lib/debug/usr/lib64/libruby.so.3.3.0-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64.debug
7f6a02600000-7f6a02b8a000 r--s 00000000 08:08 6984462 /usr/lib64/libruby.so.3.3.0
7f6a02bf0000-7f6a02c80000 rw-p 00000000 00:00 0
7f6a02c8a000-7f6a02cb0000 r--s 00000000 08:08 7001502 /usr/share/mime/mime.cache
7f6a02cb0000-7f6a02dd0000 rw-p 00000000 00:00 0
7f6a02dd3000-7f6a02dd8000 r--s 00000000 08:08 7003308 /usr/lib/debug/usr/bin/ruby-mri-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64.debug
7f6a02dd8000-7f6a02df6000 r--p 00000000 08:08 6982263 /usr/lib64/libssl.so.3.1.4
7f6a02df6000-7f6a02e53000 r-xp 0001e000 08:08 6982263 /usr/lib64/libssl.so.3.1.4
7f6a02e53000-7f6a02e6d000 r--p 0007b000 08:08 6982263 /usr/lib64/libssl.so.3.1.4
7f6a02e6d000-7f6a02e77000 r--p 00094000 08:08 6982263 /usr/lib64/libssl.so.3.1.4
7f6a02e77000-7f6a02e7b000 rw-p 0009e000 08:08 6982263 /usr/lib64/libssl.so.3.1.4
7f6a02e7b000-7f6a02e90000 r--p 00000000 08:08 6984544 /usr/lib64/ruby/openssl.so
7f6a02e90000-7f6a02eca000 r-xp 00015000 08:08 6984544 /usr/lib64/ruby/openssl.so
7f6a02eca000-7f6a02edb000 r--p 0004f000 08:08 6984544 /usr/lib64/ruby/openssl.so
7f6a02edb000-7f6a02edf000 r--p 0005f000 08:08 6984544 /usr/lib64/ruby/openssl.so
7f6a02edf000-7f6a02ee0000 rw-p 00063000 08:08 6984544 /usr/lib64/ruby/openssl.so
7f6a02ee0000-7f6a02fb0000 rw-p 00000000 00:00 0
7f6a02fb4000-7f6a02fb7000 r--p 00000000 08:08 6989071 /usr/lib64/gems/ruby/bigdecimal-3.1.5/bigdecimal.so
7f6a02fb7000-7f6a02fcb000 r-xp 00003000 08:08 6989071 /usr/lib64/gems/ruby/bigdecimal-3.1.5/bigdecimal.so
7f6a02fcb000-7f6a02fce000 r--p 00017000 08:08 6989071 /usr/lib64/gems/ruby/bigdecimal-3.1.5/bigdecimal.so
7f6a02fce000-7f6a02fcf000 r--p 0001a000 08:08 6989071 /usr/lib64/gems/ruby/bigdecimal-3.1.5/bigdecimal.so
7f6a02fcf000-7f6a02fd0000 rw-p 0001b000 08:08 6989071 /usr/lib64/gems/ruby/bigdecimal-3.1.5/bigdecimal.so
7f6a02fd0000-7f6a036c0000 rw-p 00000000 00:00 0
7f6a036c1000-7f6a03702000 r--p 00000000 08:08 6986229 /usr/lib64/libGLdispatch.so.0.0.0
7f6a03702000-7f6a03741000 r-xp 00041000 08:08 6986229 /usr/lib64/libGLdispatch.so.0.0.0
7f6a03741000-7f6a03754000 r--p 00080000 08:08 6986229 /usr/lib64/libGLdispatch.so.0.0.0
7f6a03754000-7f6a03770000 r--p 00093000 08:08 6986229 /usr/lib64/libGLdispatch.so.0.0.0
7f6a03770000-7f6a03771000 rw-p 000af000 08:08 6986229 /usr/lib64/libGLdispatch.so.0.0.0
7f6a03771000-7f6a03779000 rw-p 00000000 00:00 0
7f6a03779000-7f6a037bc000 r--p 00000000 08:08 6993695 /usr/lib64/libGL.so.1.7.0
7f6a037bc000-7f6a037dc000 r-xp 00043000 08:08 6993695 /usr/lib64/libGL.so.1.7.0
7f6a037dc000-7f6a037f0000 r--p 00063000 08:08 6993695 /usr/lib64/libGL.so.1.7.0
7f6a037f0000-7f6a037fe000 r--p 00077000 08:08 6993695 /usr/lib64/libGL.so.1.7.0
7f6a037fe000-7f6a037ff000 rw-p 00085000 08:08 6993695 /usr/lib64/libGL.so.1.7.0
7f6a037ff000-7f6a03800000 rw-p 00000000 00:00 0
7f6a03800000-7f6a03887000 r--p 00000000 08:08 6999115 /usr/lib64/libgtk-3.so.0.2407.32
7f6a03887000-7f6a03c39000 r-xp 00087000 08:08 6999115 /usr/lib64/libgtk-3.so.0.2407.32
7f6a03c39000-7f6a03fb3000 r--p 00439000 08:08 6999115 /usr/lib64/libgtk-3.so.0.2407.32
7f6a03fb3000-7f6a03fc3000 r--p 007b3000 08:08 6999115 /usr/lib64/libgtk-3.so.0.2407.32
7f6a03fc3000-7f6a03fc5000 rw-p 007c3000 08:08 6999115 /usr/lib64/libgtk-3.so.0.2407.32
7f6a03fc5000-7f6a03fca000 rw-p 00000000 00:00 0
7f6a03fcd000-7f6a03fd0000 r--p 00000000 08:08 6993697 /usr/lib64/libGLX.so.0.0.0
7f6a03fd0000-7f6a03feb000 r-xp 00003000 08:08 6993697 /usr/lib64/libGLX.so.0.0.0
7f6a03feb000-7f6a03fee000 r--p 0001e000 08:08 6993697 /usr/lib64/libGLX.so.0.0.0
7f6a03fee000-7f6a03fef000 r--p 00020000 08:08 6993697 /usr/lib64/libGLX.so.0.0.0
7f6a03fef000-7f6a03ff0000 rw-p 00021000 08:08 6993697 /usr/lib64/libGLX.so.0.0.0
7f6a03ff0000-7f6a04021000 rw-p 00000000 00:00 0
7f6a04021000-7f6a08000000 ---p 00000000 00:00 0
7f6a08000000-7f6a08062000 rw-p 00000000 00:00 0
7f6a08062000-7f6a0c000000 ---p 00000000 00:00 0
7f6a0c000000-7f6a0c021000 rw-p 00000000 00:00 0
7f6a0c021000-7f6a10000000 ---p 00000000 00:00 0
7f6a10001000-7f6a10006000 r--s 00000000 08:08 7003308 /usr/lib/debug/usr/bin/ruby-mri-3.3.0~20231222.0241git68bcca4c2b-184.fc40.391.x86_64.debug
7f6a10006000-7f6a10007000 r--p 00000000 08:08 6984524 /usr/lib64/ruby/enc/utf_16be.so
7f6a10007000-7f6a10008000 r-xp 00001000 08:08 6984524 /usr/lib64/ruby/enc/utf_16be.so
7f6a10008000-7f6a10009000 r--p 00002000 08:08 6984524 /usr/lib64/ruby/enc/utf_16be.so
7f6a10009000-7f6a1000a000 r--p 00002000 08:08 6984524 /usr/lib64/ruby/enc/utf_16be.so
7f6a1000a000-7f6a1000b000 rw-p 00000000 00:00 0
7f6a1000b000-7f6a1000c000 r--p 00000000 08:08 6984525 /usr/lib64/ruby/enc/utf_16le.so
7f6a1000c000-7f6a1000d000 r-xp 00001000 08:08 6984525 /usr/lib64/ruby/enc/utf_16le.so
7f6a1000d000-7f6a1000e000 r--p 00002000 08:08 6984525 /usr/lib64/ruby/enc/utf_16le.so
7f6a1000e000-7f6a1000f000 r--p 00002000 08:08 6984525 /usr/lib64/ruby/enc/utf_16le.so
7f6a1000f000-7f6a10020000 rw-p 00000000 00:00 0
7f6a10020000-7f6a10024000 r--s 00000000 08:08 7003309 /usr/bin/ruby-mri
7f6a10024000-7f6a10026000 r--p 00000000 08:08 6984467 /usr/lib64/ruby/digest.so
7f6a10026000-7f6a10028000 r-xp 00002000 08:08 6984467 /usr/lib64/ruby/digest.so
7f6a10028000-7f6a10029000 r--p 00004000 08:08 6984467 /usr/lib64/ruby/digest.so
7f6a10029000-7f6a1002a000 r--p 00004000 08:08 6984467 /usr/lib64/ruby/digest.so
7f6a1002a000-7f6a1002b000 rw-p 00000000 00:00 0
7f6a1002b000-7f6a10030000 r--p 00000000 08:08 6979963 /usr/lib64/libzstd.so.1.5.5
7f6a10030000-7f6a100d8000 r-xp 00005000 08:08 6979963 /usr/lib64/libzstd.so.1.5.5
7f6a100d8000-7f6a100e5000 r--p 000ad000 08:08 6979963 /usr/lib64/libzstd.so.1.5.5
7f6a100e5000-7f6a100e6000 r--p 000b9000 08:08 6979963 /usr/lib64/libzstd.so.1.5.5
7f6a100e6000-7f6a100e7000 rw-p 00000000 00:00 0
7f6a100e7000-7f6a100ea000 r--p 00000000 08:08 6980086 /usr/lib64/liblz4.so.1.9.4
7f6a100ea000-7f6a10105000 r-xp 00003000 08:08 6980086 /usr/lib64/liblz4.so.1.9.4
7f6a10105000-7f6a10107000 r--p 0001e000 08:08 6980086 /usr/lib64/liblz4.so.1.9.4
7f6a10107000-7f6a10108000 r--p 0001f000 08:08 6980086 /usr/lib64/liblz4.so.1.9.4
7f6a10108000-7f6a10109000 rw-p 00000000 00:00 0
7f6a10109000-7f6a10120000 r--p 00000000 08:08 6980237 /usr/lib64/libsystemd.so.0.38.0
7f6a10120000-7f6a101ba000 r-xp 00017000 08:08 6980237 /usr/lib64/libsystemd.so.0.38.0
7f6a101ba000-7f6a101ee000 r--p 000b1000 08:08 6980237 /usr/lib64/libsystemd.so.0.38.0
7f6a101ee000-7f6a101fa000 r--p 000e4000 08:08 6980237 /usr/lib64/libsystemd.so.0.38.0
7f6a101fa000-7f6a101fb000 rw-p 000f0000 08:08 6980237 /usr/lib64/libsystemd.so.0.38.0
7f6a101fb000-7f6a101fc000 rw-p 00000000 00:00 0
7f6a101fc000-7f6a1020d000 r--p 00000000 08:08 6981561 /usr/lib64/libsqlite3.so.0.8.6
7f6a1020d000-7f6a10323000 r-xp 00011000 08:08 6981561 /usr/lib64/libsqlite3.so.0.8.6
7f6a10323000-7f6a10350000 r--p 00127000 08:08 6981561 /usr/lib64/libsqlite3.so.0.8.6
7f6a10350000-7f6a10354000 r--p 00154000 08:08 6981561 /usr/lib64/libsqlite3.so.0.8.6
7f6a10354000-7f6a10358000 rw-p 00158000 08:08 6981561 /usr/lib64/libsqlite3.so.0.8.6
7f6a10358000-7f6a10359000 rw-p 00000000 00:00 0
7f6a10359000-7f6a10362000 r--p 00000000 08:08 6985992 /usr/lib64/libjson-glib-1.0.so.0.800.0
7f6a10362000-7f6a1037a000 r-xp 00009000 08:08 6985992 /usr/lib64/libjson-glib-1.0.so.0.800.0
7f6a1037a000-7f6a10383000 r--p 00021000 08:08 6985992 /usr/lib64/libjson-glib-1.0.so.0.800.0
7f6a10383000-7f6a10384000 r--p 0002a000 08:08 6985992 /usr/lib64/libjson-glib-1.0.so.0.800.0
7f6a10384000-7f6a10385000 rw-p 00000000 00:00 0
7f6a10385000-7f6a10393000 r--p 00000000 08:08 6985167 /usr/lib64/libdbus-1.so.3.32.4
7f6a10393000-7f6a103c6000 r-xp 0000e000 08:08 6985167 /usr/lib64/libdbus-1.so.3.32.4
7f6a103c6000-7f6a103d7000 r--p 00041000 08:08 6985167 /usr/lib64/libdbus-1.so.3.32.4
7f6a103d7000-7f6a103d9000 r--p 00051000 08:08 6985167 /usr/lib64/libdbus-1.so.3.32.4
7f6a103d9000-7f6a103da000 rw-p 00053000 08:08 6985167 /usr/lib64/libdbus-1.so.3.32.4
7f6a103da000-7f6a103ea000 r--p 00000000 08:08 6997756 /usr/lib64/libatspi.so.0.0.1
7f6a103ea000-7f6a10403000 r-xp 00010000 08:08 6997756 /usr/lib64/libatspi.so.0.0.1
7f6a10403000-7f6a10410000 r--p 00029000 08:08 6997756 /usr/lib64/libatspi.so.0.0.1
7f6a10410000-7f6a10414000 r--p 00035000 08:08 6997756 /usr/lib64/libatspi.so.0.0.1
7f6a10414000-7f6a10415000 rw-p 00039000 08:08 6997756 /usr/lib64/libatspi.so.0.0.1
7f6a10415000-7f6a1042e000 r--p 00000000 08:08 6990988 /usr/lib64/libtracker-sparql-3.0.so.0.600.0
7f6a1042e000-7f6a104b2000 r-xp 00019000 08:08 6990988 /usr/lib64/libtracker-sparql-3.0.so.0.600.0
7f6a104b2000-7f6a104e4000 r--p 0009d000 08:08 6990988 /usr/lib64/libtracker-sparql-3.0.so.0.600.0
7f6a104e4000-7f6a104f2000 r--p 000ce000 08:08 6990988 /usr/lib64/libtracker-sparql-3.0.so.0.600.0
7f6a104f2000-7f6a104f3000 rw-p 000dc000 08:08 6990988 /usr/lib64/libtracker-sparql-3.0.so.0.600.0
7f6a104f3000-7f6a104fa000 r--p 00000000 08:08 6986293 /usr/lib64/libcloudproviders.so.0.3.5
7f6a104fa000-7f6a10506000 r-xp 00007000 08:08 6986293 /usr/lib64/libcloudproviders.so.0.3.5
7f6a10506000-7f6a1050b000 r--p 00013000 08:08 6986293 /usr/lib64/libcloudproviders.so.0.3.5
7f6a1050b000-7f6a1050c000 r--p 00018000 08:08 6986293 /usr/lib64/libcloudproviders.so.0.3.5
7f6a1050c000-7f6a1050d000 rw-p 00019000 08:08 6986293 /usr/lib64/libcloudproviders.so.0.3.5
7f6a1050d000-7f6a10519000 r--p 00000000 08:08 6997887 /usr/lib64/libatk-bridge-2.0.so.0.0.0
7f6a10519000-7f6a10533000 r-xp 0000c000 08:08 6997887 /usr/lib64/libatk-bridge-2.0.so.0.0.0
7f6a10533000-7f6a10546000 r--p 00026000 08:08 6997887 /usr/lib64/libatk-bridge-2.0.so.0.0.0
7f6a10546000-7f6a10548000 r--p 00038000 08:08 6997887 /usr/lib64/libatk-bridge-2.0.so.0.0.0
7f6a10548000-7f6a1054a000 rw-p 0003a000 08:08 6997887 /usr/lib64/libatk-bridge-2.0.so.0.0.0
7f6a1054a000-7f6a105f0000 r--p 00000000 08:08 6999100 /usr/lib64/girepository-1.0/Gtk-3.0.typelib
7f6a105f0000-7f6a10690000 rw-p 00000000 00:00 0
7f6a10691000-7f6a106f1000 r--p 00000000 08:08 6991062 /usr/lib64/libepoxy.so.0.0.0
7f6a106f1000-7f6a10757000 r-xp 00060000 08:08 6991062 /usr/lib64/libepoxy.so.0.0.0
7f6a10757000-7f6a107a5000 r--p 000c6000 08:08 6991062 /usr/lib64/libepoxy.so.0.0.0
7f6a107a5000-7f6a107ad000 r--p 00113000 08:08 6991062 /usr/lib64/libepoxy.so.0.0.0
7f6a107ad000-7f6a107b4000 rw-p 0011b000 08:08 6991062 /usr/lib64/libepoxy.so.0.0.0
7f6a107b4000-7f6a107de000 r--p 00000000 08:08 6999113 /usr/lib64/libgdk-3.so.0.2407.32
7f6a107de000-7f6a10862000 r-xp 0002a000 08:08 6999113 /usr/lib64/libgdk-3.so.0.2407.32
7f6a10862000-7f6a108a4000 r--p 000ae000 08:08 6999113 /usr/lib64/libgdk-3.so.0.2407.32
7f6a108a4000-7f6a108ad000 r--p 000ef000 08:08 6999113 /usr/lib64/libgdk-3.so.0.2407.32
7f6a108ad000-7f6a108af000 rw-p 000f8000 08:08 6999113 /usr/lib64/libgdk-3.so.0.2407.32
7f6a108af000-7f6a108b0000 ---p 00000000 00:00 0
7f6a108b0000-7f6a110d0000 rw-p 00000000 00:00 0
7f6a110d1000-7f6a110d2000 r--p 00000000 08:08 6984539 /usr/lib64/ruby/io/nonblock.so
7f6a110d2000-7f6a110d3000 r-xp 00001000 08:08 6984539 /usr/lib64/ruby/io/nonblock.so
7f6a110d3000-7f6a110d4000 r--p 00002000 08:08 6984539 /usr/lib64/ruby/io/nonblock.so
7f6a110d4000-7f6a110d5000 r--p 00002000 08:08 6984539 /usr/lib64/ruby/io/nonblock.so
7f6a110d5000-7f6a110d6000 rw-p 00000000 00:00 0
7f6a110d6000-7f6a110d9000 r--p 00000000 08:08 6999285 /usr/lib64/gems/ruby/gtk3-4.2.0/gtk3.so
7f6a110d9000-7f6a110dd000 r-xp 00003000 08:08 6999285 /usr/lib64/gems/ruby/gtk3-4.2.0/gtk3.so
7f6a110dd000-7f6a110de000 r--p 00007000 08:08 6999285 /usr/lib64/gems/ruby/gtk3-4.2.0/gtk3.so
7f6a110de000-7f6a110df000 r--p 00008000 08:08 6999285 /usr/lib64/gems/ruby/gtk3-4.2.0/gtk3.so
7f6a110df000-7f6a11100000 rw-p 00000000 00:00 0
7f6a11100000-7f6a11103000 r--p 00000000 08:08 6980210 /usr/lib64/libcap.so.2.69
7f6a11103000-7f6a11109000 r-xp 00003000 08:08 6980210 /usr/lib64/libcap.so.2.69
7f6a11109000-7f6a1110b000 r--p 00009000 08:08 6980210 /usr/lib64/libcap.so.2.69
7f6a1110b000-7f6a1110c000 r--p 0000a000 08:08 6980210 /usr/lib64/libcap.so.2.69
7f6a1110c000-7f6a1110d000 rw-p 0000b000 08:08 6980210 /usr/lib64/libcap.so.2.69
7f6a1110d000-7f6a1110e000 r--p 00000000 08:08 6993491 /usr/lib64/libXinerama.so.1.0.0
7f6a1110e000-7f6a1110f000 r-xp 00001000 08:08 6993491 /usr/lib64/libXinerama.so.1.0.0
7f6a1110f000-7f6a11110000 r--p 00002000 08:08 6993491 /usr/lib64/libXinerama.so.1.0.0
7f6a11110000-7f6a11111000 r--p 00002000 08:08 6993491 /usr/lib64/libXinerama.so.1.0.0
7f6a11111000-7f6a11112000 rw-p 00003000 08:08 6993491 /usr/lib64/libXinerama.so.1.0.0
7f6a11112000-7f6a11114000 r--p 00000000 08:08 6993485 /usr/lib64/libXrandr.so.2.2.0
7f6a11114000-7f6a1111b000 r-xp 00002000 08:08 6993485 /usr/lib64/libXrandr.so.2.2.0
7f6a1111b000-7f6a1111d000 r--p 00009000 08:08 6993485 /usr/lib64/libXrandr.so.2.2.0
7f6a1111d000-7f6a1111e000 r--p 0000a000 08:08 6993485 /usr/lib64/libXrandr.so.2.2.0
7f6a1111e000-7f6a1111f000 rw-p 0000b000 08:08 6993485 /usr/lib64/libXrandr.so.2.2.0
7f6a1111f000-7f6a11120000 r--p 00000000 08:08 6993508 /usr/lib64/libXcomposite.so.1.0.0
7f6a11120000-7f6a11121000 r-xp 00001000 08:08 6993508 /usr/lib64/libXcomposite.so.1.0.0
7f6a11121000-7f6a11122000 r--p 00002000 08:08 6993508 /usr/lib64/libXcomposite.so.1.0.0
7f6a11122000-7f6a11123000 r--p 00002000 08:08 6993508 /usr/lib64/libXcomposite.so.1.0.0
7f6a11123000-7f6a11124000 rw-p 00000000 00:00 0
7f6a11124000-7f6a11126000 r--p 00000000 08:08 6993445 /usr/lib64/libXfixes.so.3.1.0
7f6a11126000-7f6a11129000 r-xp 00002000 08:08 6993445 /usr/lib64/libXfixes.so.3.1.0
7f6a11129000-7f6a1112a000 r--p 00005000 08:08 6993445 /usr/lib64/libXfixes.so.3.1.0
7f6a1112a000-7f6a1112b000 r--p 00005000 08:08 6993445 /usr/lib64/libXfixes.so.3.1.0
7f6a1112b000-7f6a1112c000 rw-p 00006000 08:08 6993445 /usr/lib64/libXfixes.so.3.1.0
7f6a1112c000-7f6a1112d000 r--p 00000000 08:08 6993463 /usr/lib64/libXdamage.so.1.1.0
7f6a1112d000-7f6a1112e000 r-xp 00001000 08:08 6993463 /usr/lib64/libXdamage.so.1.1.0
7f6a1112e000-7f6a1112f000 r--p 00002000 08:08 6993463 /usr/lib64/libXdamage.so.1.1.0
7f6a1112f000-7f6a11130000 r--p 00002000 08:08 6993463 /usr/lib64/libXdamage.so.1.1.0
7f6a11130000-7f6a11131000 rw-p 00000000 00:00 0
7f6a11131000-7f6a11134000 r--p 00000000 08:08 6993476 /usr/lib64/libXcursor.so.1.0.2
7f6a11134000-7f6a1113a000 r-xp 00003000 08:08 6993476 /usr/lib64/libXcursor.so.1.0.2
7f6a1113a000-7f6a1113c000 r--p 00009000 08:08 6993476 /usr/lib64/libXcursor.so.1.0.2
7f6a1113c000-7f6a1113d000 r--p 0000a000 08:08 6993476 /usr/lib64/libXcursor.so.1.0.2
7f6a1113d000-7f6a1113e000 rw-p 00000000 00:00 0
7f6a1113e000-7f6a11141000 r--p 00000000 08:08 6993458 /usr/lib64/libXi.so.6.1.0
7f6a11141000-7f6a1114d000 r-xp 00003000 08:08 6993458 /usr/lib64/libXi.so.6.1.0
7f6a1114d000-7f6a1114f000 r--p 0000f000 08:08 6993458 /usr/lib64/libXi.so.6.1.0
7f6a1114f000-7f6a11150000 r--p 00011000 08:08 6993458 /usr/lib64/libXi.so.6.1.0
7f6a11150000-7f6a11151000 rw-p 00012000 08:08 6993458 /usr/lib64/libXi.so.6.1.0
7f6a11151000-7f6a11157000 r--p 00000000 08:08 6985187 /usr/lib64/libwayland-client.so.0.22.0
7f6a11157000-7f6a1115d000 r-xp 00006000 08:08 6985187 /usr/lib64/libwayland-client.so.0.22.0
7f6a1115d000-7f6a1115f000 r--p 0000c000 08:08 6985187 /usr/lib64/libwayland-client.so.0.22.0
7f6a1115f000-7f6a11161000 r--p 0000e000 08:08 6985187 /usr/lib64/libwayland-client.so.0.22.0
7f6a11161000-7f6a11162000 rw-p 00010000 08:08 6985187 /usr/lib64/libwayland-client.so.0.22.0
7f6a11162000-7f6a11167000 r--p 00000000 08:08 6986483 /usr/lib64/libxkbcommon.so.0.0.0
7f6a11167000-7f6a11187000 r-xp 00005000 08:08 6986483 /usr/lib64/libxkbcommon.so.0.0.0
7f6a11187000-7f6a111a8000 r--p 00025000 08:08 6986483 /usr/lib64/libxkbcommon.so.0.0.0
7f6a111a8000-7f6a111aa000 r--p 00045000 08:08 6986483 /usr/lib64/libxkbcommon.so.0.0.0
7f6a111aa000-7f6a111ab000 rw-p 00000000 00:00 0
7f6a111ab000-7f6a111e5000 r--p 00000000 08:08 6999098 /usr/lib64/girepository-1.0/Gdk-3.0.typelib
7f6a111e5000-7f6a111ec000 r--p 00000000 08:08 6997316 /usr/lib64/libpangoft2-1.0.so.0.5100.0
7f6a111ec000-7f6a111f9000 r-xp 00007000 08:08 6997316 /usr/lib64/libpangoft2-1.0.so.0.5100.0
7f6a111f9000-7f6a111fd000 r--p 00014000 08:08 6997316 /usr/lib64/libpangoft2-1.0.so.0.5100.0
7f6a111fd000-7f6a111fe000 r--p 00018000 08:08 6997316 /usr/lib64/libpangoft2-1.0.so.0.5100.0
7f6a111fe000-7f6a111ff000 rw-p 00000000 00:00 0
7f6a111ff000-7f6a11204000 r--p 00000000 08:08 6997314 /usr/lib64/libpangocairo-1.0.so.0.5100.0
7f6a11204000-7f6a1120c000 r-xp 00005000 08:08 6997314 /usr/lib64/libpangocairo-1.0.so.0.5100.0
7f6a1120c000-7f6a1120e000 r--p 0000d000 08:08 6997314 /usr/lib64/libpangocairo-1.0.so.0.5100.0
7f6a1120e000-7f6a1120f000 r--p 0000f000 08:08 6997314 /usr/lib64/libpangocairo-1.0.so.0.5100.0
7f6a1120f000-7f6a11210000 rw-p 00010000 08:08 6997314 /usr/lib64/libpangocairo-1.0.so.0.5100.0
7f6a11210000-7f6a11310000 rw-p 00000000 00:00 0
7f6a11311000-7f6a11313000 r--p 00000000 08:08 6985315 /usr/lib64/libwayland-cursor.so.0.22.0
7f6a11313000-7f6a11315000 r-xp 00002000 08:08 6985315 /usr/lib64/libwayland-cursor.so.0.22.0
7f6a11315000-7f6a11316000 r--p 00004000 08:08 6985315 /usr/lib64/libwayland-cursor.so.0.22.0
7f6a11316000-7f6a11317000 r--p 00004000 08:08 6985315 /usr/lib64/libwayland-cursor.so.0.22.0
7f6a11317000-7f6a1131b000 rw-p 00005000 08:08 6985315 /usr/lib64/libwayland-cursor.so.0.22.0
7f6a1131b000-7f6a1131d000 r--p 00000000 08:08 6991069 /usr/lib64/libdatrie.so.1.4.0
7f6a1131d000-7f6a11321000 r-xp 00002000 08:08 6991069 /usr/lib64/libdatrie.so.1.4.0
7f6a11321000-7f6a11322000 r--p 00006000 08:08 6991069 /usr/lib64/libdatrie.so.1.4.0
7f6a11322000-7f6a11323000 r--p 00006000 08:08 6991069 /usr/lib64/libdatrie.so.1.4.0
7f6a11323000-7f6a11324000 rw-p 00000000 00:00 0
7f6a11324000-7f6a11326000 r--p 00000000 08:08 6991074 /usr/lib64/libthai.so.0.3.1
7f6a11326000-7f6a1132a000 r-xp 00002000 08:08 6991074 /usr/lib64/libthai.so.0.3.1
7f6a1132a000-7f6a1132d000 r--p 00006000 08:08 6991074 /usr/lib64/libthai.so.0.3.1
7f6a1132d000-7f6a1132e000 r--p 00008000 08:08 6991074 /usr/lib64/libthai.so.0.3.1
7f6a1132e000-7f6a1132f000 rw-p 00009000 08:08 6991074 /usr/lib64/libthai.so.0.3.1
7f6a1132f000-7f6a11331000 r--p 00000000 08:08 6986252 /usr/lib64/libfribidi.so.0.4.0
7f6a11331000-7f6a11336000 r-xp 00002000 08:08 6986252 /usr/lib64/libfribidi.so.0.4.0
7f6a11336000-7f6a1134c000 r--p 00007000 08:08 6986252 /usr/lib64/libfribidi.so.0.4.0
7f6a1134c000-7f6a1134d000 r--p 0001d000 08:08 6986252 /usr/lib64/libfribidi.so.0.4.0
7f6a1134d000-7f6a1134e000 rw-p 0001e000 08:08 6986252 /usr/lib64/libfribidi.so.0.4.0
7f6a1134e000-7f6a11360000 r--p 00000000 08:08 6997312 /usr/lib64/libpango-1.0.so.0.5100.0
7f6a11360000-7f6a11399000 r-xp 00012000 08:08 6997312 /usr/lib64/libpango-1.0.so.0.5100.0
7f6a11399000-7f6a113b3000 r--p 0004b000 08:08 6997312 /usr/lib64/libpango-1.0.so.0.5100.0
7f6a113b3000-7f6a113b7000 r--p 00064000 08:08 6997312 /usr/lib64/libpango-1.0.so.0.5100.0
7f6a113b7000-7f6a113b8000 rw-p 00068000 08:08 6997312 /usr/lib64/libpango-1.0.so.0.5100.0
7f6a113b8000-7f6a113dd000 r--p 00000000 08:08 6997144 /usr/lib64/girepository-1.0/HarfBuzz-0.0.typelib
7f6a113dd000-7f6a113f0000 r--p 00000000 08:08 6997305 /usr/lib64/girepository-1.0/Pango-1.0.typelib
7f6a113f0000-7f6a11400000 rw-p 00000000 00:00 0
7f6a11400000-7f6a11401000 r--p 00000000 08:08 6986187 /usr/lib64/libwayland-egl.so.1.22.0
7f6a11401000-7f6a11402000 r-xp 00001000 08:08 6986187 /usr/lib64/libwayland-egl.so.1.22.0
7f6a11402000-7f6a11403000 r--p 00002000 08:08 6986187 /usr/lib64/libwayland-egl.so.1.22.0
7f6a11403000-7f6a11404000 r--p 00002000 08:08 6986187 /usr/lib64/libwayland-egl.so.1.22.0
7f6a11404000-7f6a11405000 rw-p 00000000 00:00 0
7f6a11405000-7f6a11409000 r--p 00000000 08:08 6997286 /usr/lib64/libcairo-gobject.so.2.11800.0
7f6a11409000-7f6a1140b000 r-xp 00004000 08:08 6997286 /usr/lib64/libcairo-gobject.so.2.11800.0
7f6a1140b000-7f6a1140d000 r--p 00006000 08:08 6997286 /usr/lib64/libcairo-gobject.so.2.11800.0
7f6a1140d000-7f6a1140f000 r--p 00008000 08:08 6997286 /usr/lib64/libcairo-gobject.so.2.11800.0
7f6a1140f000-7f6a11550000 rw-p 00000000 00:00 0
7f6a11552000-7f6a11553000 r--p 00000000 08:08 6981694 /usr/lib64/libbrotlicommon.so.1.1.0
7f6a11553000-7f6a11554000 r-xp 00001000 08:08 6981694 /usr/lib64/libbrotlicommon.so.1.1.0
7f6a11554000-7f6a11573000 r--p 00002000 08:08 6981694 /usr/lib64/libbrotlicommon.so.1.1.0
7f6a11573000-7f6a11574000 r--p 00021000 08:08 6981694 /usr/lib64/libbrotlicommon.so.1.1.0
7f6a11574000-7f6a11575000 rw-p 00000000 00:00 0
7f6a11575000-7f6a11578000 r--p 00000000 08:08 6997073 /usr/lib64/libgraphite2.so.3.2.1
7f6a11578000-7f6a11590000 r-xp 00003000 08:08 6997073 /usr/lib64/libgraphite2.so.3.2.1
7f6a11590000-7f6a11593000 r--p 0001b000 08:08 6997073 /usr/lib64/libgraphite2.so.3.2.1
7f6a11593000-7f6a11595000 r--p 0001d000 08:08 6997073 /usr/lib64/libgraphite2.so.3.2.1
7f6a11595000-7f6a11596000 rw-p 00000000 00:00 0
7f6a11596000-7f6a115a2000 r--p 00000000 08:08 6997152 /usr/lib64/libharfbuzz.so.0.60830.0
7f6a115a2000-7f6a11671000 r-xp 0000c000 08:08 6997152 /usr/lib64/libharfbuzz.so.0.60830.0
7f6a11671000-7f6a116a3000 r--p 000db000 08:08 6997152 /usr/lib64/libharfbuzz.so.0.60830.0
7f6a116a3000-7f6a116a4000 r--p 0010d000 08:08 6997152 /usr/lib64/libharfbuzz.so.0.60830.0
7f6a116a4000-7f6a116a5000 rw-p 0010e000 08:08 6997152 /usr/lib64/libharfbuzz.so.0.60830.0
7f6a116a5000-7f6a116a7000 r--p 00000000 08:08 6979917 /usr/lib64/libbz2.so.1.0.8
7f6a116a7000-7f6a116b5000 r-xp 00002000 08:08 6979917 /usr/lib64/libbz2.so.1.0.8
7f6a116b5000-7f6a116b7000 r--p 00010000 08:08 6979917 /usr/lib64/libbz2.so.1.0.8
7f6a116b7000-7f6a116b8000 r--p 00011000 08:08 6979917 /usr/lib64/libbz2.so.1.0.8
7f6a116b8000-7f6a116b9000 rw-p 00012000 08:08 6979917 /usr/lib64/libbz2.so.1.0.8
7f6a116b9000-7f6a116c4000 r--p 00000000 08:08 6985205 /usr/lib64/libpixman-1.so.0.42.2
7f6a116c4000-7f6a11751000 r-xp 0000b000 08:08 6985205 /usr/lib64/libpixman-1.so.0.42.2
7f6a11751000-7f6a11760000 r--p 00098000 08:08 6985205 /usr/lib64/libpixman-1.so.0.42.2
7f6a11760000-7f6a11768000 r--p 000a6000 08:08 6985205 /usr/lib64/libpixman-1.so.0.42.2
7f6a11768000-7f6a11769000 rw-p 000ae000 08:08 6985205 /usr/lib64/libpixman-1.so.0.42.2
7f6a11769000-7f6a1176e000 r--p 00000000 08:08 6985264 /usr/lib64/libxcb-render.so.0.0.0
7f6a1176e000-7f6a11773000 r-xp 00005000 08:08 6985264 /usr/lib64/libxcb-render.so.0.0.0
7f6a11773000-7f6a11776000 r--p 0000a000 08:08 6985264 /usr/lib64/libxcb-render.so.0.0.0
7f6a11776000-7f6a11777000 r--p 0000c000 08:08 6985264 /usr/lib64/libxcb-render.so.0.0.0
7f6a11777000-7f6a11778000 rw-p 0000d000 08:08 6985264 /usr/lib64/libxcb-render.so.0.0.0
7f6a11778000-7f6a11784000 r--p 00000000 08:08 6985294 /usr/lib64/libxcb.so.1.1.0
7f6a11784000-7f6a11798000 r-xp 0000c000 08:08 6985294 /usr/lib64/libxcb.so.1.1.0
7f6a11798000-7f6a117a1000 r--p 00020000 08:08 6985294 /usr/lib64/libxcb.so.1.1.0
7f6a117a1000-7f6a117a2000 r--p 00028000 08:08 6985294 /usr/lib64/libxcb.so.1.1.0
7f6a117a2000-7f6a117a3000 rw-p 00029000 08:08 6985294 /usr/lib64/libxcb.so.1.1.0
7f6a117a3000-7f6a117a7000 r--p 00000000 08:08 6993439 /usr/lib64/libXext.so.6.4.0
7f6a117a7000-7f6a117b2000 r-xp 00004000 08:08 6993439 /usr/lib64/libXext.so.6.4.0
7f6a117b2000-7f6a117b5000 r--p 0000f000 08:08 6993439 /usr/lib64/libXext.so.6.4.0
7f6a117b5000-7f6a117b6000 r--p 00011000 08:08 6993439 /usr/lib64/libXext.so.6.4.0
7f6a117b6000-7f6a117b7000 rw-p 00012000 08:08 6993439 /usr/lib64/libXext.so.6.4.0
7f6a117b7000-7f6a117d3000 r--p 00000000 08:08 6993436 /usr/lib64/libX11.so.6.4.0
7f6a117d3000-7f6a11868000 r-xp 0001c000 08:08 6993436 /usr/lib64/libX11.so.6.4.0
7f6a11868000-7f6a118f7000 r--p 000b1000 08:08 6993436 /usr/lib64/libX11.so.6.4.0
7f6a118f7000-7f6a118fa000 r--p 0013f000 08:08 6993436 /usr/lib64/libX11.so.6.4.0
7f6a118fa000-7f6a118fe000 rw-p 00142000 08:08 6993436 /usr/lib64/libX11.so.6.4.0
7f6a118fe000-7f6a11905000 r--p 00000000 08:08 6997215 /usr/lib64/libfontconfig.so.1.12.0
7f6a11905000-7f6a11934000 r-xp 00007000 08:08 6997215 /usr/lib64/libfontconfig.so.1.12.0
7f6a11934000-7f6a1194a000 r--p 00036000 08:08 6997215 /usr/lib64/libfontconfig.so.1.12.0
7f6a1194a000-7f6a1194c000 r--p 0004b000 08:08 6997215 /usr/lib64/libfontconfig.so.1.12.0
7f6a1194c000-7f6a1194d000 rw-p 0004d000 08:08 6997215 /usr/lib64/libfontconfig.so.1.12.0
7f6a1194d000-7f6a1195b000 r--p 00000000 08:08 6997161 /usr/lib64/libfreetype.so.6.20.0
7f6a1195b000-7f6a119ed000 r-xp 0000e000 08:08 6997161 /usr/lib64/libfreetype.so.6.20.0
7f6a119ed000-7f6a11a14000 r--p 000a0000 08:08 6997161 /usr/lib64/libfreetype.so.6.20.0
7f6a11a14000-7f6a11a1c000 r--p 000c6000 08:08 6997161 /usr/lib64/libfreetype.so.6.20.0
7f6a11a1c000-7f6a11a1d000 rw-p 00000000 00:00 0
7f6a11a1d000-7f6a11a30000 r--p 00000000 08:08 6997130 /usr/lib64/libcairo.so.2.11800.0
7f6a11a30000-7f6a11b1d000 r-xp 00013000 08:08 6997130 /usr/lib64/libcairo.so.2.11800.0
7f6a11b1d000-7f6a11b4d000 r--p 00100000 08:08 6997130 /usr/lib64/libcairo.so.2.11800.0
7f6a11b4d000-7f6a11b51000 r--p 00130000 08:08 6997130 /usr/lib64/libcairo.so.2.11800.0
7f6a11b51000-7f6a11b53000 rw-p 00134000 08:08 6997130 /usr/lib64/libcairo.so.2.11800.0
7f6a11b53000-7f6a11b54000 rw-p 00000000 00:00 0
7f6a11b54000-7f6a11b63000 r--p 00000000 08:08 6997336 /usr/lib64/gems/ruby/cairo-1.17.13/cairo.so
7f6a11b63000-7f6a11b81000 r-xp 0000f000 08:08 6997336 /usr/lib64/gems/ruby/cairo-1.17.13/cairo.so
7f6a11b81000-7f6a11b8c000 r--p 0002d000 08:08 6997336 /usr/lib64/gems/ruby/cairo-1.17.13/cairo.so
7f6a11b8c000-7f6a11b8f000 r--p 00037000 08:08 6997336 /usr/lib64/gems/ruby/cairo-1.17.13/cairo.so
7f6a11b8f000-7f6a11b90000 rw-p 0003a000 08:08 6997336 /usr/lib64/gems/ruby/cairo-1.17.13/cairo.so
7f6a11b90000-7f6a12650000 rw-p 00000000 00:00 0
7f6a12653000-7f6a1265e000 r--p 00000000 08:08 6997875 /usr/lib64/libatk-1.0.so.0.25009.1
7f6a1265e000-7f6a1266e000 r-xp 0000b000 08:08 6997875 /usr/lib64/libatk-1.0.so.0.25009.1
7f6a1266e000-7f6a12679000 r--p 0001b000 08:08 6997875 /usr/lib64/libatk-1.0.so.0.25009.1
7f6a12679000-7f6a1267c000 r--p 00025000 08:08 6997875 /usr/lib64/libatk-1.0.so.0.25009.1
7f6a1267c000-7f6a1267d000 rw-p 00028000 08:08 6997875 /usr/lib64/libatk-1.0.so.0.25009.1
7f6a1267d000-7f6a12690000 r--p 00000000 08:08 6997873 /usr/lib64/girepository-1.0/Atk-1.0.typelib
7f6a12690000-7f6a126b0000 rw-p 00000000 00:00 0
7f6a126b0000-7f6a126b1000 r--p 00000000 08:08 6979639 /usr/lib/locale/C.utf8/LC_NUMERIC
7f6a126b1000-7f6a126b2000 r--p 00000000 08:08 6979642 /usr/lib/locale/C.utf8/LC_TIME
7f6a126b2000-7f6a126b3000 r--p 00000000 08:08 6979631 /usr/lib/locale/C.utf8/LC_COLLATE
7f6a126b3000-7f6a126b4000 r--p 00000000 08:08 6979637 /usr/lib/locale/C.utf8/LC_MONETARY
7f6a126b4000-7f6a126b5000 r--p 00000000 08:08 6979640 /usr/lib/locale/C.utf8/LC_PAPER
7f6a126b5000-7f6a126b6000 r--p 00000000 08:08 6979638 /usr/lib/locale/C.utf8/LC_NAME
7f6a126b6000-7f6a126ba000 r--p 00000000 08:08 6985178 /usr/lib64/libjpeg.so.62.3.0
7f6a126ba000-7f6a12707000 r-xp 00004000 08:08 6985178 /usr/lib64/libjpeg.so.62.3.0
7f6a12707000-7f6a12737000 r--p 00051000 08:08 6985178 /usr/lib64/libjpeg.so.62.3.0
7f6a12737000-7f6a12738000 r--p 00081000 08:08 6985178 /usr/lib64/libjpeg.so.62.3.0
7f6a12738000-7f6a12739000 rw-p 00082000 08:08 6985178 /usr/lib64/libjpeg.so.62.3.0
7f6a12739000-7f6a1273e000 r--p 00000000 08:08 6985172 /usr/lib64/libpng16.so.16.40.0
7f6a1273e000-7f6a12767000 r-xp 00005000 08:08 6985172 /usr/lib64/libpng16.so.16.40.0
7f6a12767000-7f6a12770000 r--p 0002e000 08:08 6985172 /usr/lib64/libpng16.so.16.40.0
7f6a12770000-7f6a12771000 r--p 00037000 08:08 6985172 /usr/lib64/libpng16.so.16.40.0
7f6a12771000-7f6a12772000 rw-p 00000000 00:00 0
7f6a12772000-7f6a1277a000 r--p 00000000 08:08 6986349 /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.10
7f6a1277a000-7f6a12795000 r-xp 00008000 08:08 6986349 /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.10
7f6a12795000-7f6a1279e000 r--p 00023000 08:08 6986349 /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.10
7f6a1279e000-7f6a1279f000 r--p 0002c000 08:08 6986349 /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.10
7f6a1279f000-7f6a127a0000 rw-p 0002d000 08:08 6986349 /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.10
7f6a127a0000-7f6a12930000 rw-p 00000000 00:00 0
7f6a12930000-7f6a12931000 r--p 00000000 08:08 6981696 /usr/lib64/libbrotlidec.so.1.1.0
7f6a12931000-7f6a12939000 r-xp 00001000 08:08 6981696 /usr/lib64/libbrotlidec.so.1.1.0
7f6a12939000-7f6a1293c000 r--p 00009000 08:08 6981696 /usr/lib64/libbrotlidec.so.1.1.0
7f6a1293c000-7f6a1293d000 r--p 0000b000 08:08 6981696 /usr/lib64/libbrotlidec.so.1.1.0
7f6a1293d000-7f6a1293e000 rw-p 00000000 00:00 0
7f6a1293e000-7f6a1293f000 ---p 00000000 00:00 0
7f6a1293f000-7f6a1313f000 rw-p 00000000 00:00 0
7f6a1313f000-7f6a13140000 ---p 00000000 00:00 0
7f6a13140000-7f6a13b90000 rw-p 00000000 00:00 0
7f6a13b90000-7f6a13b91000 r--p 00000000 08:08 6979630 /usr/lib/locale/C.utf8/LC_ADDRESS
7f6a13b91000-7f6a13b92000 r--p 00000000 08:08 6979641 /usr/lib/locale/C.utf8/LC_TELEPHONE
7f6a13b92000-7f6a13bc6000 r--p 00000000 08:08 6985966 /usr/lib64/girepository-1.0/GLib-2.0.typelib
7f6a13bc6000-7f6a13c20000 r--p 00000000 08:08 6985969 /usr/lib64/girepository-1.0/Gio-2.0.typelib
7f6a13c20000-7f6a13c70000 rw-p 00000000 00:00 0
7f6a13c70000-7f6a13c71000 r--p 00000000 08:08 6979634 /usr/lib/locale/C.utf8/LC_MEASUREMENT
7f6a13c71000-7f6a13c76000 r--s 00000000 08:08 6997283 /usr/lib/fontconfig/cache/d63f98f14a274bd69a5425fc33aaac6b-le64.cache-8
7f6a13c76000-7f6a13c7e000 r--p 00000000 08:08 6980026 /usr/lib64/libblkid.so.1.1.0
7f6a13c7e000-7f6a13ca2000 r-xp 00008000 08:08 6980026 /usr/lib64/libblkid.so.1.1.0
7f6a13ca2000-7f6a13cab000 r--p 0002c000 08:08 6980026 /usr/lib64/libblkid.so.1.1.0
7f6a13cab000-7f6a13cb1000 r--p 00034000 08:08 6980026 /usr/lib64/libblkid.so.1.1.0
7f6a13cb1000-7f6a13cb2000 rw-p 0003a000 08:08 6980026 /usr/lib64/libblkid.so.1.1.0
7f6a13cb2000-7f6a13cb9000 r--p 00000000 08:08 6980334 /usr/lib64/libselinux.so.1
7f6a13cb9000-7f6a13cd5000 r-xp 00007000 08:08 6980334 /usr/lib64/libselinux.so.1
7f6a13cd5000-7f6a13cdc000 r--p 00023000 08:08 6980334 /usr/lib64/libselinux.so.1
7f6a13cdc000-7f6a13cdd000 r--p 00029000 08:08 6980334 /usr/lib64/libselinux.so.1
7f6a13cdd000-7f6a13cde000 rw-p 0002a000 08:08 6980334 /usr/lib64/libselinux.so.1
7f6a13cde000-7f6a13ce0000 rw-p 00000000 00:00 0
7f6a13ce0000-7f6a13d1a000 r--p 00000000 08:08 6985833 /usr/lib64/libgio-2.0.so.0.7800.3
7f6a13d1a000-7f6a13e34000 r-xp 0003a000 08:08 6985833 /usr/lib64/libgio-2.0.so.0.7800.3
7f6a13e34000-7f6a13eab000 r--p 00154000 08:08 6985833 /usr/lib64/libgio-2.0.so.0.7800.3
7f6a13eab000-7f6a13eb3000 r--p 001ca000 08:08 6985833 /usr/lib64/libgio-2.0.so.0.7800.3
7f6a13eb3000-7f6a13eb4000 rw-p 001d2000 08:08 6985833 /usr/lib64/libgio-2.0.so.0.7800.3
7f6a13eb4000-7f6a13eb6000 rw-p 00000000 00:00 0
7f6a13eb6000-7f6a13ed4000 r--p 00000000 08:08 6985835 /usr/lib64/libglib-2.0.so.0.7800.3
7f6a13ed4000-7f6a13f75000 r-xp 0001e000 08:08 6985835 /usr/lib64/libglib-2.0.so.0.7800.3
7f6a13f75000-7f6a13ffd000 r--p 000bf000 08:08 6985835 /usr/lib64/libglib-2.0.so.0.7800.3
7f6a13ffd000-7f6a13ffe000 r--p 00147000 08:08 6985835 /usr/lib64/libglib-2.0.so.0.7800.3
7f6a13ffe000-7f6a13fff000 rw-p 00148000 08:08 6985835 /usr/lib64/libglib-2.0.so.0.7800.3
7f6a13fff000-7f6a14000000 rw-p 00000000 00:00 0
7f6a14000000-7f6a140ad000 r--p 00000000 08:08 6982261 /usr/lib64/libcrypto.so.3.1.4
7f6a140ad000-7f6a143c4000 r-xp 000ad000 08:08 6982261 /usr/lib64/libcrypto.so.3.1.4
7f6a143c4000-7f6a1447e000 r--p 003c4000 08:08 6982261 /usr/lib64/libcrypto.so.3.1.4
7f6a1447e000-7f6a144d5000 r--p 0047e000 08:08 6982261 /usr/lib64/libcrypto.so.3.1.4
7f6a144d5000-7f6a144d8000 rw-p 004d5000 08:08 6982261 /usr/lib64/libcrypto.so.3.1.4
7f6a144d8000-7f6a144db000 rw-p 00000000 00:00 0
7f6a144db000-7f6a144de000 r--p 00000000 08:08 6999099 /usr/lib64/girepository-1.0/GdkX11-3.0.typelib
7f6a144de000-7f6a144e2000 r--p 00000000 08:08 6984538 /usr/lib64/ruby/fiddle.so
7f6a144e2000-7f6a144ea000 r-xp 00004000 08:08 6984538 /usr/lib64/ruby/fiddle.so
7f6a144ea000-7f6a144ed000 r--p 0000c000 08:08 6984538 /usr/lib64/ruby/fiddle.so
7f6a144ed000-7f6a144ee000 r--p 0000e000 08:08 6984538 /usr/lib64/ruby/fiddle.so
7f6a144ee000-7f6a144ef000 rw-p 0000f000 08:08 6984538 /usr/lib64/ruby/fiddle.so
7f6a144ef000-7f6a144f9000 r--p 00000000 08:08 6980724 /usr/lib64/libmount.so.1.1.0
7f6a144f9000-7f6a14530000 r-xp 0000a000 08:08 6980724 /usr/lib64/libmount.so.1.1.0
7f6a14530000-7f6a1453d000 r--p 00041000 08:08 6980724 /usr/lib64/libmount.so.1.1.0
7f6a1453d000-7f6a1453f000 r--p 0004e000 08:08 6980724 /usr/lib64/libmount.so.1.1.0
7f6a1453f000-7f6a14540000 rw-p 00050000 08:08 6980724 /usr/lib64/libmount.so.1.1.0
7f6a14540000-7f6a14548000 r--p 00000000 08:08 6985981 /usr/lib64/libgirepository-1.0.so.1.0.0
7f6a14548000-7f6a1455b000 r-xp 00008000 08:08 6985981 /usr/lib64/libgirepository-1.0.so.1.0.0
7f6a1455b000-7f6a14563000 r--p 0001b000 08:08 6985981 /usr/lib64/libgirepository-1.0.so.1.0.0
7f6a14563000-7f6a14564000 r--p 00023000 08:08 6985981 /usr/lib64/libgirepository-1.0.so.1.0.0
7f6a14564000-7f6a14565000 rw-p 00000000 00:00 0
7f6a14565000-7f6a14568000 r--p 00000000 08:08 6980328 /usr/lib64/libpcre2-8.so.0.11.2
7f6a14568000-7f6a145d6000 r-xp 00003000 08:08 6980328 /usr/lib64/libpcre2-8.so.0.11.2
7f6a145d6000-7f6a145fe000 r--p 00071000 08:08 6980328 /usr/lib64/libpcre2-8.so.0.11.2
7f6a145fe000-7f6a145ff000 r--p 00098000 08:08 6980328 /usr/lib64/libpcre2-8.so.0.11.2
7f6a145ff000-7f6a14600000 rw-p 00099000 08:08 6980328 /usr/lib64/libpcre2-8.so.0.11.2
7f6a14600000-7f6a1469c000 r--p 00000000 08:08 6979933 /usr/lib64/libstdc++.so.6.0.32
7f6a1469c000-7f6a147c6000 r-xp 0009c000 08:08 6979933 /usr/lib64/libstdc++.so.6.0.32
7f6a147c6000-7f6a14842000 r--p 001c6000 08:08 6979933 /usr/lib64/libstdc++.so.6.0.32
7f6a14842000-7f6a1484f000 r--p 00242000 08:08 6979933 /usr/lib64/libstdc++.so.6.0.32
7f6a1484f000-7f6a14850000 rw-p 0024f000 08:08 6979933 /usr/lib64/libstdc++.so.6.0.32
7f6a14850000-7f6a14854000 rw-p 00000000 00:00 0
7f6a14854000-7f6a14855000 r--p 00000000 08:08 6979633 /usr/lib/locale/C.utf8/LC_IDENTIFICATION
7f6a14855000-7f6a14856000 r--p 00000000 08:08 6985978 /usr/lib64/girepository-1.0/xlib-2.0.typelib
7f6a14856000-7f6a14858000 r--p 00000000 08:08 6997309 /usr/lib64/girepository-1.0/PangoOT-1.0.typelib
7f6a14858000-7f6a14868000 r--p 00000000 08:08 6985968 /usr/lib64/girepository-1.0/GObject-2.0.typelib
7f6a14868000-7f6a14872000 r--p 00000000 08:08 6990608 /usr/lib64/gems/ruby/gobject-introspection-4.2.0/gobject_introspection.so
7f6a14872000-7f6a14886000 r-xp 0000a000 08:08 6990608 /usr/lib64/gems/ruby/gobject-introspection-4.2.0/gobject_introspection.so
7f6a14886000-7f6a1488d000 r--p 0001e000 08:08 6990608 /usr/lib64/gems/ruby/gobject-introspection-4.2.0/gobject_introspection.so
7f6a1488d000-7f6a1488f000 r--p 00025000 08:08 6990608 /usr/lib64/gems/ruby/gobject-introspection-4.2.0/gobject_introspection.so
7f6a1488f000-7f6a14890000 rw-p 00027000 08:08 6990608 /usr/lib64/gems/ruby/gobject-introspection-4.2.0/gobject_introspection.so
7f6a14890000-7f6a148a0000 rw-p 00000000 00:00 0
7f6a148a0000-7f6a148a2000 r--p 00000000 08:08 6997380 /usr/lib64/gems/ruby/pango-4.2.0/pango.so
7f6a148a2000-7f6a148a4000 r-xp 00002000 08:08 6997380 /usr/lib64/gems/ruby/pango-4.2.0/pango.so
7f6a148a4000-7f6a148a5000 r--p 00004000 08:08 6997380 /usr/lib64/gems/ruby/pango-4.2.0/pango.so
7f6a148a5000-7f6a148a6000 r--p 00004000 08:08 6997380 /usr/lib64/gems/ruby/pango-4.2.0/pango.so
7f6a148a6000-7f6a148a7000 rw-p 00000000 00:00 0
7f6a148a7000-7f6a148a8000 r--p 00000000 08:08 6985210 /usr/lib64/libXau.so.6.0.0
7f6a148a8000-7f6a148aa000 r-xp 00001000 08:08 6985210 /usr/lib64/libXau.so.6.0.0
7f6a148aa000-7f6a148ab000 r--p 00003000 08:08 6985210 /usr/lib64/libXau.so.6.0.0
7f6a148ab000-7f6a148ac000 r--p 00003000 08:08 6985210 /usr/lib64/libXau.so.6.0.0
7f6a148ac000-7f6a148ad000 rw-p 00000000 00:00 0
7f6a148ad000-7f6a148bb000 r--p 00000000 08:08 6985839 /usr/lib64/libgobject-2.0.so.0.7800.3
7f6a148bb000-7f6a148f1000 r-xp 0000e000 08:08 6985839 /usr/lib64/libgobject-2.0.so.0.7800.3
7f6a148f1000-7f6a14909000 r--p 00044000 08:08 6985839 /usr/lib64/libgobject-2.0.so.0.7800.3
7f6a14909000-7f6a1490c000 r--p 0005c000 08:08 6985839 /usr/lib64/libgobject-2.0.so.0.7800.3
7f6a1490c000-7f6a1490d000 rw-p 0005f000 08:08 6985839 /usr/lib64/libgobject-2.0.so.0.7800.3
7f6a1490d000-7f6a14926000 r--p 00000000 08:08 6990590 /usr/lib64/gems/ruby/glib2-4.2.0/glib2.so
7f6a14926000-7f6a14956000 r-xp 00019000 08:08 6990590 /usr/lib64/gems/ruby/glib2-4.2.0/glib2.so
7f6a14956000-7f6a14969000 r--p 00049000 08:08 6990590 /usr/lib64/gems/ruby/glib2-4.2.0/glib2.so
7f6a14969000-7f6a1496f000 r--p 0005b000 08:08 6990590 /usr/lib64/gems/ruby/glib2-4.2.0/glib2.so
7f6a1496f000-7f6a14970000 rw-p 00061000 08:08 6990590 /usr/lib64/gems/ruby/glib2-4.2.0/glib2.so
7f6a14970000-7f6a149a0000 rw-p 00000000 00:00 0
7f6a149a0000-7f6a149a2000 r--p 00000000 08:08 6993452 /usr/lib64/libXrender.so.1.3.0
7f6a149a2000-7f6a149a9000 r-xp 00002000 08:08 6993452 /usr/lib64/libXrender.so.1.3.0
7f6a149a9000-7f6a149aa000 r--p 00009000 08:08 6993452 /usr/lib64/libXrender.so.1.3.0
7f6a149aa000-7f6a149ab000 r--p 00009000 08:08 6993452 /usr/lib64/libXrender.so.1.3.0
7f6a149ab000-7f6a149ac000 rw-p 0000a000 08:08 6993452 /usr/lib64/libXrender.so.1.3.0
7f6a149ac000-7f6a149ae000 r--p 00000000 08:08 6981703 /usr/lib64/libffi.so.8.1.2
7f6a149ae000-7f6a149b8000 r-xp 00002000 08:08 6981703 /usr/lib64/libffi.so.8.1.2
7f6a149b8000-7f6a149ba000 r--p 0000c000 08:08 6981703 /usr/lib64/libffi.so.8.1.2
7f6a149ba000-7f6a149bb000 r--p 0000d000 08:08 6981703 /usr/lib64/libffi.so.8.1.2
7f6a149bb000-7f6a149bc000 rw-p 0000e000 08:08 6981703 /usr/lib64/libffi.so.8.1.2
7f6a149bc000-7f6a149bf000 r--p 00000000 08:08 6979663 /usr/lib64/libresolv.so.2
7f6a149bf000-7f6a149c7000 r-xp 00003000 08:08 6979663 /usr/lib64/libresolv.so.2
7f6a149c7000-7f6a149c9000 r--p 0000b000 08:08 6979663 /usr/lib64/libresolv.so.2
7f6a149c9000-7f6a149ca000 r--p 0000d000 08:08 6979663 /usr/lib64/libresolv.so.2
7f6a149ca000-7f6a149cb000 rw-p 0000e000 08:08 6979663 /usr/lib64/libresolv.so.2
7f6a149cb000-7f6a149cd000 rw-p 00000000 00:00 0
7f6a149cd000-7f6a149d6000 r--p 00000000 08:08 6985769 /usr/lib64/libhogweed.so.6.8
7f6a149d6000-7f6a149eb000 r-xp 00009000 08:08 6985769 /usr/lib64/libhogweed.so.6.8
7f6a149eb000-7f6a14a0d000 r--p 0001e000 08:08 6985769 /usr/lib64/libhogweed.so.6.8
7f6a14a0d000-7f6a14a0f000 r--p 0003f000 08:08 6985769 /usr/lib64/libhogweed.so.6.8
7f6a14a0f000-7f6a14a10000 rw-p 00000000 00:00 0
7f6a14a10000-7f6a14a1e000 r--p 00000000 08:08 6985771 /usr/lib64/libnettle.so.8.8
7f6a14a1e000-7f6a14a4e000 r-xp 0000e000 08:08 6985771 /usr/lib64/libnettle.so.8.8
7f6a14a4e000-7f6a14a65000 r--p 0003e000 08:08 6985771 /usr/lib64/libnettle.so.8.8
7f6a14a65000-7f6a14a67000 r--p 00055000 08:08 6985771 /usr/lib64/libnettle.so.8.8
7f6a14a67000-7f6a14a68000 rw-p 00057000 08:08 6985771 /usr/lib64/libnettle.so.8.8
7f6a14a68000-7f6a14a6b000 r--p 00000000 08:08 6980263 /usr/lib64/libtasn1.so.6.6.3
7f6a14a6b000-7f6a14a79000 r-xp 00003000 08:08 6980263 /usr/lib64/libtasn1.so.6.6.3
7f6a14a79000-7f6a14a7c000 r--p 00011000 08:08 6980263 /usr/lib64/libtasn1.so.6.6.3
7f6a14a7c000-7f6a14a7d000 r--p 00014000 08:08 6980263 /usr/lib64/libtasn1.so.6.6.3
7f6a14a7d000-7f6a14a7e000 rw-p 00000000 00:00 0
7f6a14a7e000-7f6a14a90000 r--p 00000000 08:08 6980273 /usr/lib64/libunistring.so.5.0.0
7f6a14a90000-7f6a14ac9000 r-xp 00012000 08:08 6980273 /usr/lib64/libunistring.so.5.0.0
7f6a14ac9000-7f6a14c29000 r--p 0004b000 08:08 6980273 /usr/lib64/libunistring.so.5.0.0
7f6a14c29000-7f6a14c2d000 r--p 001ab000 08:08 6980273 /usr/lib64/libunistring.so.5.0.0
7f6a14c2d000-7f6a14c2e000 rw-p 001af000 08:08 6980273 /usr/lib64/libunistring.so.5.0.0
7f6a14c2e000-7f6a14c30000 r--p 00000000 08:08 6980284 /usr/lib64/libidn2.so.0.3.8
7f6a14c30000-7f6a14c34000 r-xp 00002000 08:08 6980284 /usr/lib64/libidn2.so.0.3.8
7f6a14c34000-7f6a14c4e000 r--p 00006000 08:08 6980284 /usr/lib64/libidn2.so.0.3.8
7f6a14c4e000-7f6a14c4f000 r--p 0001f000 08:08 6980284 /usr/lib64/libidn2.so.0.3.8
7f6a14c4f000-7f6a14c50000 rw-p 00000000 00:00 0
7f6a14c50000-7f6a14c85000 r--p 00000000 08:08 6981716 /usr/lib64/libp11-kit.so.0.3.1
7f6a14c85000-7f6a14d4d000 r-xp 00035000 08:08 6981716 /usr/lib64/libp11-kit.so.0.3.1
7f6a14d4d000-7f6a14dc7000 r--p 000fd000 08:08 6981716 /usr/lib64/libp11-kit.so.0.3.1
7f6a14dc7000-7f6a14dd3000 r--p 00176000 08:08 6981716 /usr/lib64/libp11-kit.so.0.3.1
7f6a14dd3000-7f6a14de0000 rw-p 00182000 08:08 6981716 /usr/lib64/libp11-kit.so.0.3.1
7f6a14de0000-7f6a14de1000 rw-p 00000000 00:00 0
7f6a14de1000-7f6a14de6000 r--p 00000000 08:08 6981457 /usr/lib64/libsasl2.so.3.0.0
7f6a14de6000-7f6a14df9000 r-xp 00005000 08:08 6981457 /usr/lib64/libsasl2.so.3.0.0
7f6a14df9000-7f6a14dfe000 r--p 00018000 08:08 6981457 /usr/lib64/libsasl2.so.3.0.0
7f6a14dfe000-7f6a14dff000 r--p 0001d000 08:08 6981457 /usr/lib64/libsasl2.so.3.0.0
7f6a14dff000-7f6a14e00000 rw-p 0001e000 08:08 6981457 /usr/lib64/libsasl2.so.3.0.0
7f6a14e00000-7f6a14e38000 r--p 00000000 08:08 6985784 /usr/lib64/libgnutls.so.30.37.0
7f6a14e38000-7f6a14f7c000 r-xp 00038000 08:08 6985784 /usr/lib64/libgnutls.so.30.37.0
7f6a14f7c000-7f6a15012000 r--p 0017c000 08:08 6985784 /usr/lib64/libgnutls.so.30.37.0
7f6a15012000-7f6a15024000 r--p 00211000 08:08 6985784 /usr/lib64/libgnutls.so.30.37.0
7f6a15024000-7f6a15026000 rw-p 00223000 08:08 6985784 /usr/lib64/libgnutls.so.30.37.0
7f6a15026000-7f6a1502a000 rw-p 00000000 00:00 0
7f6a1502a000-7f6a1502d000 r--s 00000000 08:08 6997282 /usr/lib/fontconfig/cache/18f520a508f13854f77176faf7889ae9-le64.cache-8
7f6a1502d000-7f6a1502e000 r--p 00000000 08:08 6997307 /usr/lib64/girepository-1.0/PangoFT2-1.0.typelib
7f6a1502e000-7f6a15031000 r--p 00000000 08:08 6993703 /usr/lib64/libhiredis.so.1.0.0
7f6a15031000-7f6a1503d000 r-xp 00003000 08:08 6993703 /usr/lib64/libhiredis.so.1.0.0
7f6a1503d000-7f6a15040000 r--p 0000f000 08:08 6993703 /usr/lib64/libhiredis.so.1.0.0
7f6a15040000-7f6a15041000 r--p 00012000 08:08 6993703 /usr/lib64/libhiredis.so.1.0.0
7f6a15041000-7f6a15042000 rw-p 00013000 08:08 6993703 /usr/lib64/libhiredis.so.1.0.0
7f6a15042000-7f6a15047000 r--p 00000000 08:08 6991038 /usr/lib64/libmemcached.so.11.0.0
7f6a15047000-7f6a15062000 r-xp 00005000 08:08 6991038 /usr/lib64/libmemcached.so.11.0.0
7f6a15062000-7f6a1506f000 r--p 00020000 08:08 6991038 /usr/lib64/libmemcached.so.11.0.0
7f6a1506f000-7f6a15070000 r--p 0002d000 08:08 6991038 /usr/lib64/libmemcached.so.11.0.0
7f6a15070000-7f6a15071000 rw-p 0002e000 08:08 6991038 /usr/lib64/libmemcached.so.11.0.0
7f6a15071000-7f6a150cf000 r--p 00000000 08:08 6993710 /usr/lib64/libyaz.so.5.0.0
7f6a150cf000-7f6a1514f000 r-xp 0005e000 08:08 6993710 /usr/lib64/libyaz.so.5.0.0
7f6a1514f000-7f6a15175000 r--p 000de000 08:08 6993710 /usr/lib64/libyaz.so.5.0.0
7f6a15175000-7f6a15178000 r--p 00103000 08:08 6993710 /usr/lib64/libyaz.so.5.0.0
7f6a15178000-7f6a1521f000 rw-p 00106000 08:08 6993710 /usr/lib64/libyaz.so.5.0.0
7f6a1521f000-7f6a15250000 rw-p 00000000 00:00 0
7f6a15250000-7f6a15251000 r--p 00000000 08:08 6985972 /usr/lib64/girepository-1.0/fontconfig-2.0.typelib
7f6a15251000-7f6a15252000 r--p 00000000 08:08 6985272 /usr/lib64/libxcb-shm.so.0.0.0
7f6a15252000-7f6a15253000 r-xp 00001000 08:08 6985272 /usr/lib64/libxcb-shm.so.0.0.0
7f6a15253000-7f6a15254000 r--p 00002000 08:08 6985272 /usr/lib64/libxcb-shm.so.0.0.0
7f6a15254000-7f6a15255000 r--p 00002000 08:08 6985272 /usr/lib64/libxcb-shm.so.0.0.0
7f6a15255000-7f6a15256000 rw-p 00003000 08:08 6985272 /usr/lib64/libxcb-shm.so.0.0.0
7f6a15256000-7f6a15257000 r--p 00000000 08:08 6979379 /usr/lib64/gconv/CP932.so
7f6a15257000-7f6a15259000 r-xp 00001000 08:08 6979379 /usr/lib64/gconv/CP932.so
7f6a15259000-7f6a1526e000 r--p 00003000 08:08 6979379 /usr/lib64/gconv/CP932.so
7f6a1526e000-7f6a1526f000 r--p 00017000 08:08 6979379 /usr/lib64/gconv/CP932.so
7f6a1526f000-7f6a15280000 rw-p 00000000 00:00 0
7f6a15280000-7f6a15282000 r--p 00000000 08:08 6997369 /usr/lib64/gems/ruby/cairo-gobject-4.2.0/cairo_gobject.so
7f6a15282000-7f6a15284000 r-xp 00002000 08:08 6997369 /usr/lib64/gems/ruby/cairo-gobject-4.2.0/cairo_gobject.so
7f6a15284000-7f6a15285000 r--p 00004000 08:08 6997369 /usr/lib64/gems/ruby/cairo-gobject-4.2.0/cairo_gobject.so
7f6a15285000-7f6a15286000 r--p 00004000 08:08 6997369 /usr/lib64/gems/ruby/cairo-gobject-4.2.0/cairo_gobject.so
7f6a15286000-7f6a15287000 rw-p 00000000 00:00 0
7f6a15287000-7f6a1528b000 r--p 00000000 08:08 6979912 /usr/lib64/liblzma.so.5.4.5
7f6a1528b000-7f6a152ad000 r-xp 00004000 08:08 6979912 /usr/lib64/liblzma.so.5.4.5
7f6a152ad000-7f6a152b8000 r--p 00026000 08:08 6979912 /usr/lib64/liblzma.so.5.4.5
7f6a152b8000-7f6a152b9000 r--p 00031000 08:08 6979912 /usr/lib64/liblzma.so.5.4.5
7f6a152b9000-7f6a152ba000 rw-p 00000000 00:00 0
7f6a152ba000-7f6a152ee000 r--p 00000000 08:08 6981551 /usr/lib64/libxml2.so.2.12.3
7f6a152ee000-7f6a153da000 r-xp 00034000 08:08 6981551 /usr/lib64/libxml2.so.2.12.3
7f6a153da000-7f6a15419000 r--p 00120000 08:08 6981551 /usr/lib64/libxml2.so.2.12.3
7f6a15419000-7f6a15424000 r--p 0015e000 08:08 6981551 /usr/lib64/libxml2.so.2.12.3
7f6a15424000-7f6a15425000 rw-p 00169000 08:08 6981551 /usr/lib64/libxml2.so.2.12.3
7f6a15425000-7f6a15426000 rw-p 00000000 00:00 0
7f6a15426000-7f6a15430000 r--p 00000000 08:08 6986168 /usr/lib64/libxslt.so.1.1.39
7f6a15430000-7f6a1545a000 r-xp 0000a000 08:08 6986168 /usr/lib64/libxslt.so.1.1.39
7f6a1545a000-7f6a15467000 r--p 00034000 08:08 6986168 /usr/lib64/libxslt.so.1.1.39
7f6a15467000-7f6a15469000 r--p 00040000 08:08 6986168 /usr/lib64/libxslt.so.1.1.39
7f6a15469000-7f6a1546a000 rw-p 00042000 08:08 6986168 /usr/lib64/libxslt.so.1.1.39
7f6a1546a000-7f6a1546e000 r--p 00000000 08:08 6986165 /usr/lib64/libexslt.so.0.8.21
7f6a1546e000-7f6a1547c000 r-xp 00004000 08:08 6986165 /usr/lib64/libexslt.so.0.8.21
7f6a1547c000-7f6a1547f000 r--p 00012000 08:08 6986165 /usr/lib64/libexslt.so.0.8.21
7f6a1547f000-7f6a15480000 r--p 00015000 08:08 6986165 /usr/lib64/libexslt.so.0.8.21
7f6a15480000-7f6a15481000 rw-p 00016000 08:08 6986165 /usr/lib64/libexslt.so.0.8.21
7f6a15481000-7f6a1548f000 r--p 00000000 08:08 7000159 /usr/lib64/gems/ruby/nokogiri-1.15.5/nokogiri/nokogiri.so
7f6a1548f000-7f6a154be000 r-xp 0000e000 08:08 7000159 /usr/lib64/gems/ruby/nokogiri-1.15.5/nokogiri/nokogiri.so
7f6a154be000-7f6a154fb000 r--p 0003d000 08:08 7000159 /usr/lib64/gems/ruby/nokogiri-1.15.5/nokogiri/nokogiri.so
7f6a154fb000-7f6a154ff000 r--p 00079000 08:08 7000159 /usr/lib64/gems/ruby/nokogiri-1.15.5/nokogiri/nokogiri.so
7f6a154ff000-7f6a15500000 rw-p 0007d000 08:08 7000159 /usr/lib64/gems/ruby/nokogiri-1.15.5/nokogiri/nokogiri.so
7f6a15500000-7f6a15510000 rw-p 00000000 00:00 0
7f6a15510000-7f6a15511000 r--p 00000000 08:08 6997308 /usr/lib64/girepository-1.0/PangoFc-1.0.typelib
7f6a15511000-7f6a15513000 r--p 00000000 08:08 6989378 /usr/lib64/gems/ruby/json-2.7.1/json/ext/generator.so
7f6a15513000-7f6a15519000 r-xp 00002000 08:08 6989378 /usr/lib64/gems/ruby/json-2.7.1/json/ext/generator.so
7f6a15519000-7f6a1551b000 r--p 00008000 08:08 6989378 /usr/lib64/gems/ruby/json-2.7.1/json/ext/generator.so
7f6a1551b000-7f6a1551c000 r--p 00009000 08:08 6989378 /usr/lib64/gems/ruby/json-2.7.1/json/ext/generator.so
7f6a1551c000-7f6a1551d000 rw-p 00000000 00:00 0
7f6a1551d000-7f6a15521000 r--p 00000000 08:08 6984554 /usr/lib64/ruby/zlib.so
7f6a15521000-7f6a1552b000 r-xp 00004000 08:08 6984554 /usr/lib64/ruby/zlib.so
7f6a1552b000-7f6a1552e000 r--p 0000e000 08:08 6984554 /usr/lib64/ruby/zlib.so
7f6a1552e000-7f6a1552f000 r--p 00010000 08:08 6984554 /usr/lib64/ruby/zlib.so
7f6a1552f000-7f6a155b0000 rw-p 00000000 00:00 0
7f6a155b0000-7f6a155b5000 r--p 00000000 08:08 6986346 /usr/lib64/girepository-1.0/GdkPixbuf-2.0.typelib
7f6a155b5000-7f6a155b7000 r--p 00000000 08:08 6989379 /usr/lib64/gems/ruby/json-2.7.1/json/ext/parser.so
7f6a155b7000-7f6a155bb000 r-xp 00002000 08:08 6989379 /usr/lib64/gems/ruby/json-2.7.1/json/ext/parser.so
7f6a155bb000-7f6a155bc000 r--p 00006000 08:08 6989379 /usr/lib64/gems/ruby/json-2.7.1/json/ext/parser.so
7f6a155bc000-7f6a155bd000 r--p 00006000 08:08 6989379 /usr/lib64/gems/ruby/json-2.7.1/json/ext/parser.so
7f6a155bd000-7f6a155be000 rw-p 00000000 00:00 0
7f6a155be000-7f6a155c5000 r--p 00000000 08:08 6984550 /usr/lib64/ruby/socket.so
7f6a155c5000-7f6a155e7000 r-xp 00007000 08:08 6984550 /usr/lib64/ruby/socket.so
7f6a155e7000-7f6a155ee000 r--p 00029000 08:08 6984550 /usr/lib64/ruby/socket.so
7f6a155ee000-7f6a155ef000 r--p 00030000 08:08 6984550 /usr/lib64/ruby/socket.so
7f6a155ef000-7f6a155f0000 rw-p 00031000 08:08 6984550 /usr/lib64/ruby/socket.so
7f6a155f0000-7f6a15600000 rw-p 00000000 00:00 0
7f6a15600000-7f6a15602000 r--p 00000000 08:08 6997306 /usr/lib64/girepository-1.0/PangoCairo-1.0.typelib
7f6a15602000-7f6a15606000 r--p 00000000 08:08 6984466 /usr/lib64/ruby/date_core.so
7f6a15606000-7f6a15635000 r-xp 00004000 08:08 6984466 /usr/lib64/ruby/date_core.so
7f6a15635000-7f6a1563d000 r--p 00033000 08:08 6984466 /usr/lib64/ruby/date_core.so
7f6a1563d000-7f6a1563e000 r--p 0003a000 08:08 6984466 /usr/lib64/ruby/date_core.so
7f6a1563e000-7f6a1563f000 rw-p 0003b000 08:08 6984466 /usr/lib64/ruby/date_core.so
7f6a1563f000-7f6a15700000 rw-p 00000000 00:00 0
7f6a15700000-7f6a15702000 r--p 00000000 08:08 6985837 /usr/lib64/libgmodule-2.0.so.0.7800.3
7f6a15702000-7f6a15704000 r-xp 00002000 08:08 6985837 /usr/lib64/libgmodule-2.0.so.0.7800.3
7f6a15704000-7f6a15705000 r--p 00004000 08:08 6985837 /usr/lib64/libgmodule-2.0.so.0.7800.3
7f6a15705000-7f6a15706000 r--p 00004000 08:08 6985837 /usr/lib64/libgmodule-2.0.so.0.7800.3
7f6a15706000-7f6a15707000 rw-p 00005000 08:08 6985837 /usr/lib64/libgmodule-2.0.so.0.7800.3
7f6a15707000-7f6a15709000 r--p 00000000 08:08 6991036 /usr/lib64/libhashkit.so.2.0.0
7f6a15709000-7f6a1570c000 r-xp 00002000 08:08 6991036 /usr/lib64/libhashkit.so.2.0.0
7f6a1570c000-7f6a1570d000 r--p 00005000 08:08 6991036 /usr/lib64/libhashkit.so.2.0.0
7f6a1570d000-7f6a1570e000 r--p 00006000 08:08 6991036 /usr/lib64/libhashkit.so.2.0.0
7f6a1570e000-7f6a1570f000 rw-p 00007000 08:08 6991036 /usr/lib64/libhashkit.so.2.0.0
7f6a1570f000-7f6a15711000 r--p 00000000 08:08 6989049 /usr/lib64/libyaml-0.so.2.0.9
7f6a15711000-7f6a1572a000 r-xp 00002000 08:08 6989049 /usr/lib64/libyaml-0.so.2.0.9
7f6a1572a000-7f6a1572e000 r--p 0001b000 08:08 6989049 /usr/lib64/libyaml-0.so.2.0.9
7f6a1572e000-7f6a1572f000 r--p 0001e000 08:08 6989049 /usr/lib64/libyaml-0.so.2.0.9
7f6a1572f000-7f6a15780000 rw-p 00000000 00:00 0
7f6a15780000-7f6a15782000 r--p 00000000 08:08 6991042 /usr/lib64/libmemcachedutil.so.2.0.0
7f6a15782000-7f6a15784000 r-xp 00002000 08:08 6991042 /usr/lib64/libmemcachedutil.so.2.0.0
7f6a15784000-7f6a15785000 r--p 00004000 08:08 6991042 /usr/lib64/libmemcachedutil.so.2.0.0
7f6a15785000-7f6a15786000 r--p 00004000 08:08 6991042 /usr/lib64/libmemcachedutil.so.2.0.0
7f6a15786000-7f6a15787000 rw-p 00005000 08:08 6991042 /usr/lib64/libmemcachedutil.so.2.0.0
7f6a15787000-7f6a15789000 r--p 00000000 08:08 6984536 /usr/lib64/ruby/etc.so
7f6a15789000-7f6a1578c000 r-xp 00002000 08:08 6984536 /usr/lib64/ruby/etc.so
7f6a1578c000-7f6a1578e000 r--p 00005000 08:08 6984536 /usr/lib64/ruby/etc.so
7f6a1578e000-7f6a1578f000 r--p 00006000 08:08 6984536 /usr/lib64/ruby/etc.so
7f6a1578f000-7f6a158a0000 rw-p 00000000 00:00 0
7f6a158a0000-7f6a158a1000 r--p 00000000 08:08 6985973 /usr/lib64/girepository-1.0/freetype2-2.0.typelib
7f6a158a1000-7f6a158a2000 r--p 00000000 08:08 6990641 /usr/lib64/gems/ruby/gio2-4.2.0/gio2.so
7f6a158a2000-7f6a158a3000 r-xp 00001000 08:08 6990641 /usr/lib64/gems/ruby/gio2-4.2.0/gio2.so
7f6a158a3000-7f6a158a4000 r--p 00002000 08:08 6990641 /usr/lib64/gems/ruby/gio2-4.2.0/gio2.so
7f6a158a4000-7f6a158a5000 r--p 00002000 08:08 6990641 /usr/lib64/gems/ruby/gio2-4.2.0/gio2.so
7f6a158a5000-7f6a158a6000 rw-p 00000000 00:00 0
7f6a158a6000-7f6a158a9000 r--p 00000000 08:08 6989691 /usr/lib64/gems/ruby/psych-5.1.2/psych.so
7f6a158a9000-7f6a158ad000 r-xp 00003000 08:08 6989691 /usr/lib64/gems/ruby/psych-5.1.2/psych.so
7f6a158ad000-7f6a158ae000 r--p 00007000 08:08 6989691 /usr/lib64/gems/ruby/psych-5.1.2/psych.so
7f6a158ae000-7f6a158af000 r--p 00008000 08:08 6989691 /usr/lib64/gems/ruby/psych-5.1.2/psych.so
7f6a158af000-7f6a15940000 rw-p 00000000 00:00 0
7f6a15940000-7f6a15944000 r--p 00000000 08:08 6985971 /usr/lib64/girepository-1.0/cairo-1.0.typelib
7f6a15944000-7f6a15947000 r--p 00000000 08:08 6984551 /usr/lib64/ruby/stringio.so
7f6a15947000-7f6a1594c000 r-xp 00003000 08:08 6984551 /usr/lib64/ruby/stringio.so
7f6a1594c000-7f6a1594e000 r--p 00008000 08:08 6984551 /usr/lib64/ruby/stringio.so
7f6a1594e000-7f6a1594f000 r--p 00009000 08:08 6984551 /usr/lib64/ruby/stringio.so
7f6a1594f000-7f6a15a10000 rw-p 00000000 00:00 0
7f6a15a10000-7f6a15a11000 r--p 00000000 08:08 6985967 /usr/lib64/girepository-1.0/GModule-2.0.typelib
7f6a15a11000-7f6a15a12000 rw-p 00000000 00:00 0
7f6a15a12000-7f6a15a13000 r--p 00000000 08:08 6984535 /usr/lib64/ruby/erb/escape.so
7f6a15a13000-7f6a15a14000 r-xp 00001000 08:08 6984535 /usr/lib64/ruby/erb/escape.so
7f6a15a14000-7f6a15a15000 r--p 00002000 08:08 6984535 /usr/lib64/ruby/erb/escape.so
7f6a15a15000-7f6a15a16000 r--p 00002000 08:08 6984535 /usr/lib64/ruby/erb/escape.so
7f6a15a16000-7f6a15a17000 rw-p 00000000 00:00 0
7f6a15a17000-7f6a15a19000 r--p 00000000 08:08 6984552 /usr/lib64/ruby/strscan.so
7f6a15a19000-7f6a15a1c000 r-xp 00002000 08:08 6984552 /usr/lib64/ruby/strscan.so
7f6a15a1c000-7f6a15a1d000 r--p 00005000 08:08 6984552 /usr/lib64/ruby/strscan.so
7f6a15a1d000-7f6a15a1e000 r--p 00006000 08:08 6984552 /usr/lib64/ruby/strscan.so
7f6a15a1e000-7f6a15a1f000 rw-p 00000000 00:00 0
7f6a15a1f000-7f6a15a20000 ---p 00000000 00:00 0
7f6a15a20000-7f6a15ac1000 rw-p 00000000 00:00 0
7f6a15ac1000-7f6a15ac2000 ---p 00000000 00:00 0
7f6a15ac2000-7f6a15b63000 rw-p 00000000 00:00 0
7f6a15b63000-7f6a15b64000 ---p 00000000 00:00 0
7f6a15b64000-7f6a15c05000 rw-p 00000000 00:00 0
7f6a15c05000-7f6a15c06000 ---p 00000000 00:00 0
7f6a15c06000-7f6a15ca7000 rw-p 00000000 00:00 0
7f6a15ca7000-7f6a15ca8000 ---p 00000000 00:00 0
7f6a15ca8000-7f6a15d49000 rw-p 00000000 00:00 0
7f6a15d49000-7f6a15d4a000 ---p 00000000 00:00 0
7f6a15d4a000-7f6a15deb000 rw-p 00000000 00:00 0
7f6a15deb000-7f6a15dec000 ---p 00000000 00:00 0
7f6a15dec000-7f6a15e8d000 rw-p 00000000 00:00 0
7f6a15e8d000-7f6a15e8e000 ---p 00000000 00:00 0
7f6a15e8e000-7f6a15f2f000 rw-p 00000000 00:00 0
7f6a15f2f000-7f6a15f30000 ---p 00000000 00:00 0
7f6a15f30000-7f6a15fd1000 rw-p 00000000 00:00 0
7f6a15fd1000-7f6a15fd2000 ---p 00000000 00:00 0
7f6a15fd2000-7f6a16073000 rw-p 00000000 00:00 0
7f6a16073000-7f6a16074000 ---p 00000000 00:00 0
7f6a16074000-7f6a16115000 rw-p 00000000 00:00 0
7f6a16115000-7f6a16116000 ---p 00000000 00:00 0
7f6a16116000-7f6a161b7000 rw-p 00000000 00:00 0
7f6a161b7000-7f6a161b8000 ---p 00000000 00:00 0
7f6a161b8000-7f6a16259000 rw-p 00000000 00:00 0
7f6a16259000-7f6a1625a000 ---p 00000000 00:00 0
7f6a1625a000-7f6a162fb000 rw-p 00000000 00:00 0
7f6a162fb000-7f6a162fc000 ---p 00000000 00:00 0
7f6a162fc000-7f6a1639d000 rw-p 00000000 00:00 0
7f6a1639d000-7f6a1639e000 ---p 00000000 00:00 0
7f6a1639e000-7f6a1643f000 rw-p 00000000 00:00 0
7f6a1643f000-7f6a16440000 ---p 00000000 00:00 0
7f6a16440000-7f6a164e1000 rw-p 00000000 00:00 0
7f6a164e1000-7f6a164e2000 ---p 00000000 00:00 0
7f6a164e2000-7f6a16583000 rw-p 00000000 00:00 0
7f6a16583000-7f6a16584000 ---p 00000000 00:00 0
7f6a16584000-7f6a16625000 rw-p 00000000 00:00 0
7f6a16625000-7f6a16626000 ---p 00000000 00:00 0
7f6a16626000-7f6a166c7000 rw-p 00000000 00:00 0
7f6a166c7000-7f6a166c8000 ---p 00000000 00:00 0
7f6a166c8000-7f6a16769000 rw-p 00000000 00:00 0
7f6a16769000-7f6a1676a000 ---p 00000000 00:00 0
7f6a1676a000-7f6a1680b000 rw-p 00000000 00:00 0
7f6a1680b000-7f6a1680c000 ---p 00000000 00:00 0
7f6a1680c000-7f6a168ad000 rw-p 00000000 00:00 0
7f6a168ad000-7f6a168ae000 ---p 00000000 00:00 0
7f6a168ae000-7f6a1694f000 rw-p 00000000 00:00 0
7f6a1694f000-7f6a16950000 ---p 00000000 00:00 0
7f6a16950000-7f6a169f1000 rw-p 00000000 00:00 0
7f6a169f1000-7f6a169f2000 ---p 00000000 00:00 0
7f6a169f2000-7f6a16a93000 rw-p 00000000 00:00 0
7f6a16a93000-7f6a16a94000 ---p 00000000 00:00 0
7f6a16a94000-7f6a16b35000 rw-p 00000000 00:00 0
7f6a16b35000-7f6a16b36000 ---p 00000000 00:00 0
7f6a16b36000-7f6a16bd7000 rw-p 00000000 00:00 0
7f6a16bd7000-7f6a16bd8000 ---p 00000000 00:00 0
7f6a16bd8000-7f6a16c79000 rw-p 00000000 00:00 0
7f6a16c79000-7f6a16c7a000 ---p 00000000 00:00 0
7f6a16c7a000-7f6a16d1b000 rw-p 00000000 00:00 0
7f6a16d1b000-7f6a16d1c000 ---p 00000000 00:00 0
7f6a16d1c000-7f6a16dbd000 rw-p 00000000 00:00 0
7f6a16dbd000-7f6a16dbe000 ---p 00000000 00:00 0
7f6a16dbe000-7f6a16e5f000 rw-p 00000000 00:00 0
7f6a16e5f000-7f6a16e60000 ---p 00000000 00:00 0
7f6a16e60000-7f6a176b0000 rw-p 00000000 00:00 0
7f6a176b0000-7f6a176b1000 r-xp 0000a000 08:08 6981703 /usr/lib64/libffi.so.8.1.2
7f6a176b1000-7f6a176b2000 rw-p 00000000 00:00 0
7f6a176b2000-7f6a176b3000 r--p 00000000 08:08 6979636 /usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES
7f6a176b3000-7f6a176b5000 r--p 00000000 08:08 6984463 /usr/lib64/ruby/cgi/escape.so
7f6a176b5000-7f6a176b7000 r-xp 00002000 08:08 6984463 /usr/lib64/ruby/cgi/escape.so
7f6a176b7000-7f6a176b8000 r--p 00004000 08:08 6984463 /usr/lib64/ruby/cgi/escape.so
7f6a176b8000-7f6a176b9000 r--p 00004000 08:08 6984463 /usr/lib64/ruby/cgi/escape.so
7f6a176b9000-7f6a176ba000 rw-p 00000000 00:00 0
7f6a176ba000-7f6a176bb000 r--p 00000000 08:08 6984541 /usr/lib64/ruby/monitor.so
7f6a176bb000-7f6a176bc000 r-xp 00001000 08:08 6984541 /usr/lib64/ruby/monitor.so
7f6a176bc000-7f6a176bd000 r--p 00002000 08:08 6984541 /usr/lib64/ruby/monitor.so
7f6a176bd000-7f6a176be000 r--p 00002000 08:08 6984541 /usr/lib64/ruby/monitor.so
7f6a176be000-7f6a30abf000 rw-p 00000000 00:00 0
7f6a30abf000-7f6a30ac1000 r--p 00000000 08:08 6999731 /usr/lib64/gems/ruby/zoom-0.5.0/zoom.so
7f6a30ac1000-7f6a30ac5000 r-xp 00002000 08:08 6999731 /usr/lib64/gems/ruby/zoom-0.5.0/zoom.so
7f6a30ac5000-7f6a30ac6000 r--p 00006000 08:08 6999731 /usr/lib64/gems/ruby/zoom-0.5.0/zoom.so
7f6a30ac6000-7f6a30ac7000 r--p 00007000 08:08 6999731 /usr/lib64/gems/ruby/zoom-0.5.0/zoom.so
7f6a30ac7000-7f6a30ac8000 rw-p 00000000 00:00 0
7f6a30ac8000-7f6a30aca000 r--p 00000000 08:08 7003637 /usr/lib64/gems/ruby/racc-1.7.3/racc/cparse.so
7f6a30aca000-7f6a30acd000 r-xp 00002000 08:08 7003637 /usr/lib64/gems/ruby/racc-1.7.3/racc/cparse.so
7f6a30acd000-7f6a30ace000 r--p 00005000 08:08 7003637 /usr/lib64/gems/ruby/racc-1.7.3/racc/cparse.so
7f6a30ace000-7f6a30acf000 r--p 00005000 08:08 7003637 /usr/lib64/gems/ruby/racc-1.7.3/racc/cparse.so
7f6a30acf000-7f6a30b00000 rw-p 00000000 00:00 0
7f6a30b00000-7f6a30b01000 r--p 00000000 08:08 6984540 /usr/lib64/ruby/io/wait.so
7f6a30b01000-7f6a30b02000 r-xp 00001000 08:08 6984540 /usr/lib64/ruby/io/wait.so
7f6a30b02000-7f6a30b03000 r--p 00002000 08:08 6984540 /usr/lib64/ruby/io/wait.so
7f6a30b03000-7f6a30b04000 r--p 00002000 08:08 6984540 /usr/lib64/ruby/io/wait.so
7f6a30b04000-7f6a30b05000 rw-p 00000000 00:00 0
7f6a30b05000-7f6a30b07000 r--p 00000000 08:08 6984545 /usr/lib64/ruby/pathname.so
7f6a30b07000-7f6a30b0c000 r-xp 00002000 08:08 6984545 /usr/lib64/ruby/pathname.so
7f6a30b0c000-7f6a30b0e000 r--p 00007000 08:08 6984545 /usr/lib64/ruby/pathname.so
7f6a30b0e000-7f6a30b0f000 r--p 00008000 08:08 6984545 /usr/lib64/ruby/pathname.so
7f6a30b0f000-7f6a30b30000 rw-p 00000000 00:00 0
7f6a30b30000-7f6a30b31000 r--p 00000000 08:08 6984521 /usr/lib64/ruby/enc/trans/transdb.so
7f6a30b31000-7f6a30b32000 r-xp 00001000 08:08 6984521 /usr/lib64/ruby/enc/trans/transdb.so
7f6a30b32000-7f6a30b33000 r--p 00002000 08:08 6984521 /usr/lib64/ruby/enc/trans/transdb.so
7f6a30b33000-7f6a30b34000 r--p 00002000 08:08 6984521 /usr/lib64/ruby/enc/trans/transdb.so
7f6a30b34000-7f6a30c36000 rw-p 00000000 00:00 0
7f6a30c36000-7f6a30c3d000 r--s 00000000 08:08 6979736 /usr/lib64/gconv/gconv-modules.cache
7f6a30c3d000-7f6a30c96000 r--p 00000000 08:08 6979632 /usr/lib/locale/C.utf8/LC_CTYPE
7f6a30c96000-7f6a30cbc000 r--p 00000000 08:08 6979654 /usr/lib64/libc.so.6
7f6a30cbc000-7f6a30e1d000 r-xp 00026000 08:08 6979654 /usr/lib64/libc.so.6
7f6a30e1d000-7f6a30e6b000 r--p 00187000 08:08 6979654 /usr/lib64/libc.so.6
7f6a30e6b000-7f6a30e6f000 r--p 001d4000 08:08 6979654 /usr/lib64/libc.so.6
7f6a30e6f000-7f6a30e71000 rw-p 001d8000 08:08 6979654 /usr/lib64/libc.so.6
7f6a30e71000-7f6a30e79000 rw-p 00000000 00:00 0
7f6a30e79000-7f6a30e89000 r--p 00000000 08:08 6979657 /usr/lib64/libm.so.6
7f6a30e89000-7f6a30eff000 r-xp 00010000 08:08 6979657 /usr/lib64/libm.so.6
7f6a30eff000-7f6a30f59000 r--p 00086000 08:08 6979657 /usr/lib64/libm.so.6
7f6a30f59000-7f6a30f5a000 r--p 000df000 08:08 6979657 /usr/lib64/libm.so.6
7f6a30f5a000-7f6a30f5b000 rw-p 000e0000 08:08 6979657 /usr/lib64/libm.so.6
7f6a30f5b000-7f6a30f6c000 r--p 00000000 08:08 6980033 /usr/lib64/libgmp.so.10.4.1
7f6a30f6c000-7f6a30fe8000 r-xp 00011000 08:08 6980033 /usr/lib64/libgmp.so.10.4.1
7f6a30fe8000-7f6a30ffd000 r--p 0008d000 08:08 6980033 /usr/lib64/libgmp.so.10.4.1
7f6a30ffd000-7f6a30fff000 r--p 000a1000 08:08 6980033 /usr/lib64/libgmp.so.10.4.1
7f6a30fff000-7f6a31000000 rw-p 000a3000 08:08 6980033 /usr/lib64/libgmp.so.10.4.1
7f6a31000000-7f6a3104b000 r--p 00000000 08:08 6984462 /usr/lib64/libruby.so.3.3.0
7f6a3104b000-7f6a313e0000 r-xp 0004b000 08:08 6984462 /usr/lib64/libruby.so.3.3.0
7f6a313e0000-7f6a3154c000 r--p 003e0000 08:08 6984462 /usr/lib64/libruby.so.3.3.0
7f6a3154c000-7f6a31565000 r--p 0054c000 08:08 6984462 /usr/lib64/libruby.so.3.3.0
7f6a31565000-7f6a31566000 rw-p 00565000 08:08 6984462 /usr/lib64/libruby.so.3.3.0
7f6a31566000-7f6a3157e000 rw-p 00000000 00:00 0
7f6a3157e000-7f6a31581000 r--p 00000000 08:08 6976691 /usr/lib64/libgcc_s-13-20231205.so.1
7f6a31581000-7f6a3159c000 r-xp 00003000 08:08 6976691 /usr/lib64/libgcc_s-13-20231205.so.1
7f6a3159c000-7f6a315a0000 r--p 0001e000 08:08 6976691 /usr/lib64/libgcc_s-13-20231205.so.1
7f6a315a0000-7f6a315a1000 r--p 00021000 08:08 6976691 /usr/lib64/libgcc_s-13-20231205.so.1
7f6a315a1000-7f6a315a4000 rw-p 00000000 00:00 0
7f6a315a4000-7f6a315a6000 r--p 00000000 08:08 6980054 /usr/lib64/libcrypt.so.2.0.0
7f6a315a6000-7f6a315ba000 r-xp 00002000 08:08 6980054 /usr/lib64/libcrypt.so.2.0.0
7f6a315ba000-7f6a315d3000 r--p 00016000 08:08 6980054 /usr/lib64/libcrypt.so.2.0.0
7f6a315d3000-7f6a315d4000 r--p 0002e000 08:08 6980054 /usr/lib64/libcrypt.so.2.0.0
7f6a315d4000-7f6a315dd000 rw-p 00000000 00:00 0
7f6a315dd000-7f6a315e0000 r--p 00000000 08:08 6979909 /usr/lib64/libz.so.1.2.13.zlib-ng
7f6a315e0000-7f6a315f6000 r-xp 00003000 08:08 6979909 /usr/lib64/libz.so.1.2.13.zlib-ng
7f6a315f6000-7f6a315fd000 r--p 00019000 08:08 6979909 /usr/lib64/libz.so.1.2.13.zlib-ng
7f6a315fd000-7f6a315fe000 r--p 00020000 08:08 6979909 /usr/lib64/libz.so.1.2.13.zlib-ng
7f6a315fe000-7f6a31601000 rw-p 00000000 00:00 0
7f6a31601000-7f6a31602000 r--p 00000000 08:08 6984477 /usr/lib64/ruby/enc/encdb.so
7f6a31602000-7f6a31603000 r-xp 00001000 08:08 6984477 /usr/lib64/ruby/enc/encdb.so
7f6a31603000-7f6a31604000 r--p 00002000 08:08 6984477 /usr/lib64/ruby/enc/encdb.so
7f6a31604000-7f6a31605000 r--p 00002000 08:08 6984477 /usr/lib64/ruby/enc/encdb.so
7f6a31605000-7f6a31606000 rw-p 00000000 00:00 0
7f6a31606000-7f6a31607000 r--p 00000000 08:08 6979651 /usr/lib64/ld-linux-x86-64.so.2
7f6a31607000-7f6a3162e000 r-xp 00001000 08:08 6979651 /usr/lib64/ld-linux-x86-64.so.2
7f6a3162e000-7f6a31638000 r--p 00028000 08:08 6979651 /usr/lib64/ld-linux-x86-64.so.2
7f6a31638000-7f6a3163a000 r--p 00031000 08:08 6979651 /usr/lib64/ld-linux-x86-64.so.2
7f6a3163a000-7f6a3163c000 rw-p 00033000 08:08 6979651 /usr/lib64/ld-linux-x86-64.so.2
7ffdbe4fa000-7ffdbecf9000 rw-p 00000000 00:00 0 [stack]
7ffdbed8a000-7ffdbed8e000 r--p 00000000 00:00 0 [vvar]
7ffdbed8e000-7ffdbed90000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall]
/usr/bin/ruby -rbundler/setup -rsimplecov -Ilib -w -I/usr/share/gems/gems/rspec-support-3.12.1/lib:/usr/share/gems/gems/rspec-core-3.12.2/lib /usr/share/gems/gems/rspec-core-3.12.2/exe/rspec --pattern spec/alexandria/\*\*/\*_spec.rb failed
```
I have not tried to minimize failure test (it may take time..)
--
https://bugs.ruby-lang.org/
6
14