Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Segmentation fault on M1 macOS Big Sur #864

Open
jasl opened this issue Dec 23, 2020 · 33 comments
Open

Segmentation fault on M1 macOS Big Sur #864

jasl opened this issue Dec 23, 2020 · 33 comments

Comments

@jasl
Copy link

jasl commented Dec 23, 2020

I'm using FFI 1.14.2, Ruby 2.7.2, ARM64 build

I think this the same issue with typhoeus/typhoeus#667

here are logs

ruby_2020-12-23-052054_Jasl-Mac-mini.crash.log

crash.log

@ryanbreen
Copy link

Is there anything those of us with M1 devices can do to help debug this?

@andreialecu
Copy link

andreialecu commented Feb 1, 2021

I had this exact error when I installed ruby@2.6 via homebrew. This was for a react-native app:

Analyzing dependencies
Fetching podspec for `DoubleConversion` from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`
Fetching podspec for `Folly` from `../node_modules/react-native/third-party-podspecs/Folly.podspec`
Fetching podspec for `glog` from `../node_modules/react-native/third-party-podspecs/glog.podspec`
/opt/homebrew/lib/ruby/gems/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/options.rb:103: [BUG] Segmentation fault at 0x0000000000033b41
ruby 2.6.6p146 (2020-03-31 revision 67876) [-darwin20]

-- Crash Report log information --------------------------------------------
   See Crash Report log file under the one of following:                    
     * ~/Library/Logs/DiagnosticReports                                     
     * /Library/Logs/DiagnosticReports                                      
   for more details.                                                        
Don't forget to include the above Crash Report log file in bug reports.     

-- Control frame information -----------------------------------------------
c:0026 p:---- s:0146 e:000145 CFUNC  :easy_setopt_string
c:0025 p:1181 s:0139 e:000138 METHOD /opt/homebrew/lib/ruby/gems/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/options.rb:103

Uninstalling the homebrew ruby and using the system ruby got rid of the crash in my case.

The root cause may be some sort of architecture mismatch. The system ruby reports itself as being x86 for legacy purposes: #870 (comment)

The homebrew ruby is arm64 compiled. Using the system ruby pretty much requires using it via arch -x86_64 due to other ffi issues reported in the issue tracker.

@ryanbreen
Copy link

Yeah, it's certainly possible to do an x86_64 thing with system Ruby (to avoid the missing compatible arch).

But what we're saying in this ticket is more accurately: segmentation fault on M1 when actually using M1 and not just faking x86 😄

@endel
Copy link

endel commented Mar 18, 2021

I've read all the Segmentation fault issues on repositories from ffi, ruby-build, ethon, and nothing worked for me. With ruby 2.7.2 (arm64) segfault always happens when ethon tries to do a ffi call. Tried Ruby 3.0.0 arm64 as well, same problem. The only thing that worked was using the system ruby (2.6.3p62 universal.arm64e-darwin20) and prefix every gem install and pod install with arch -x86_64

(I just wanted to run pod install after all...)

@jdelStrother
Copy link

In case a more minimal reproduction would help:

$ ruby --version
ruby 2.7.2p137 (2020-10-01) [arm64-darwin20]

$ ruby -e 'require "rbconfig"; pp RbConfig::CONFIG' | grep "cpu"                                                                                                                                                                                                                                                                            
 "target_cpu"=>"arm64",
 "host_cpu"=>"aarch64",
 "build_cpu"=>"aarch64",

$ ruby -e 'require "ffi";; module MyLib; extend FFI::Library; ffi_lib "c"; attach_function :puts, [:string], :int; end'
/Users/jon/.gem/ruby/2.7.0/gems/ffi-1.15.0/lib/ffi/library.rb:275: [BUG] Bus Error at 0x0000000103cd8000
ruby 2.7.2p137 (2020-10-01) [arm64-darwin20]

-- Crash Report log information --------------------------------------------
   See Crash Report log file under the one of following:
     * ~/Library/Logs/DiagnosticReports
     * /Library/Logs/DiagnosticReports
   for more details.
Don't forget to include the above Crash Report log file in bug reports.
...

Full crashlog is attached.
crash.log

@ryanbreen
Copy link

I might be nuts, but using that test case @jdelStrother, this looks to be fixed in 1.15.0.

wrb@Ryans-Mac-mini ethon % bundle | grep ffi                                                                                                                
Using ffi 1.15.0
wrb@Ryans-Mac-mini ethon % bundle exec ruby --version
ruby 2.7.2p137 (2020-10-01 revision 5445e04352) [arm64-darwin20]
wrb@Ryans-Mac-mini ethon % bundle exec ruby -e 'require "rbconfig"; pp RbConfig::CONFIG' | grep "cpu"  
 "target_cpu"=>"arm64",
 "host_cpu"=>"arm",
 "build_cpu"=>"arm",
wrb@Ryans-Mac-mini ethon % bundle exec ruby -e 'require "ffi";; module MyLib; extend FFI::Library; ffi_lib "c"; attach_function :puts, [:string], :int; end'
wrb@Ryans-Mac-mini ethon % 

@jdelStrother
Copy link

Hmph. I installed my version of Ruby from Nix, whose support for darwin-arm is pretty experimental. Maybe that's affecting things - did you install from source?

@ryanbreen
Copy link

Mine is rvm

wrb@Ryans-Mac-mini ethon % which ruby
/Users/wrb/.rbenv/shims/ruby

@estiens
Copy link

estiens commented Apr 20, 2021

Same error here using ffi 1.15.0

❯ bx ruby -e 'require "ffi";; module MyLib; extend FFI::Library; ffi_lib "c"; attach_function :puts, [:string], :int; end'
/Users/estiens/.rbenv/versions/2.6.7/lib/ruby/gems/2.6.0/gems/ffi-1.15.0/lib/ffi/library.rb:275: [BUG] Bus Error at 0x0000000100c5c000
ruby 2.6.7p197 (2021-04-05 revision 67941) [arm64-darwin20]

@ntran-star
Copy link

Same here on M1

@simonmcl
Copy link

Same here on M1. Just got M1, didn't install any different versions of ruby or do anything with homebrew. My steps:

installed Xcode, installed ffi via sudo gem install ffi (installed 1.15.0 fine), installed cocoapods sudo gem install cocoapods (installed fine). Running pod install on a project I get:

... pod install
Analyzing dependencies
/Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/library.rb:275: [BUG] Bus Error at 0x000000010299c000
ruby 2.6.3p62 (2019-04-16 revision 67580) [universal.arm64e-darwin20]

-- Crash Report log information --------------------------------------------
   See Crash Report log file under the one of following:                    
     * ~/Library/Logs/DiagnosticReports                                     
     * /Library/Logs/DiagnosticReports                                      
   for more details.                                                        
Don't forget to include the above Crash Report log file in bug reports.     

-- Control frame information -----------------------------------------------
c:0035 p:---- s:0231 e:000230 CFUNC  :attach
c:0034 p:0258 s:0225 e:000224 METHOD /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/library.rb:275
c:0033 p:0050 s:0205 e:000204 CLASS  /Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon/libc.rb:17
c:0032 p:0007 s:0202 e:000201 CLASS  /Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon/libc.rb:7
c:0031 p:0007 s:0199 e:000198 TOP    /Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon/libc.rb:2 [FINISH]
c:0030 p:---- s:0196 e:000195 CFUNC  :require
c:0029 p:0110 s:0191 e:000190 METHOD /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54
c:0028 p:0042 s:0179 e:000178 TOP    /Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon.rb:15 [FINISH]
c:0027 p:---- s:0176 e:000175 CFUNC  :require
c:0026 p:0110 s:0171 e:000170 METHOD /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54
c:0025 p:0013 s:0159 e:000158 TOP    /Library/Ruby/Gems/2.6.0/gems/typhoeus-1.4.0/lib/typhoeus.rb:2 [FINISH]
c:0024 p:---- s:0156 e:000155 CFUNC  :require
c:0023 p:0110 s:0151 e:000150 METHOD /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54
c:0022 p:0015 s:0139 e:000138 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb:74
c:0021 p:0014 s:0131 e:000130 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb:36
c:0020 p:0016 s:0120 e:000119 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb:21
c:0019 p:0010 s:0115 e:000114 BLOCK  /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:178 [FINISH]
c:0018 p:---- s:0111 e:000110 CFUNC  :map
c:0017 p:0136 s:0107 e:000106 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:177
c:0016 p:0024 s:0098 e:000093 BLOCK  /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:1073
c:0015 p:0081 s:0090 e:000089 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface.rb:64
c:0014 p:0078 s:0083 e:000082 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:1072
c:0013 p:0161 s:0076 e:000075 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:124
c:0012 p:0011 s:0061 e:000060 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:414
c:0011 p:0007 s:0056 e:000055 BLOCK  /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:239
c:0010 p:0081 s:0053 e:000052 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface.rb:64
c:0009 p:0048 s:0046 e:000045 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:238
c:0008 p:0009 s:0040 e:000039 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:160
c:0007 p:0054 s:0036 e:000035 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/install.rb:52
c:0006 p:0078 s:0031 e:000030 METHOD /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command.rb:334
c:0005 p:0024 s:0024 e:000023 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command.rb:52
c:0004 p:0378 s:0019 e:000018 TOP    /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/bin/pod:55 [FINISH]
c:0003 p:---- s:0013 e:000012 CFUNC  :load
c:0002 p:0109 s:0008 E:001100 EVAL   /usr/local/bin/pod:23 [FINISH]
c:0001 p:0000 s:0003 E:001820 (none) [FINISH]

-- Ruby level backtrace information ----------------------------------------
/usr/local/bin/pod:23:in `<main>'
/usr/local/bin/pod:23:in `load'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/bin/pod:55:in `<top (required)>'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command.rb:52:in `run'
/Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command.rb:334:in `run'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/install.rb:52:in `run'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:160:in `install!'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:238:in `resolve_dependencies'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface.rb:64:in `section'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:239:in `block in resolve_dependencies'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:414:in `analyze'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:124:in `analyze'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:1072:in `resolve_dependencies'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface.rb:64:in `section'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:1073:in `block in resolve_dependencies'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:177:in `sources'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:177:in `map'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:178:in `block in sources'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb:21:in `find_or_create_source_with_url'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb:36:in `create_source_with_url'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb:74:in `cdn_url?'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/Library/Ruby/Gems/2.6.0/gems/typhoeus-1.4.0/lib/typhoeus.rb:2:in `<top (required)>'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon.rb:15:in `<top (required)>'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon/libc.rb:2:in `<top (required)>'
/Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon/libc.rb:7:in `<module:Ethon>'
/Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon/libc.rb:17:in `<module:Libc>'
/Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/library.rb:275:in `attach_function'
/Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/library.rb:275:in `attach'

-- Other runtime information -----------------------------------------------

* Loaded script: /usr/local/bin/pod

* Loaded features:

    0 enumerator.so
    1 thread.rb
    2 rational.so
    3 complex.so
    4 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/enc/encdb.bundle
    5 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/enc/trans/transdb.bundle
    6 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/rbconfig.rb
    7 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/compatibility.rb
    8 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/defaults.rb
    9 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/deprecate.rb
   10 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/errors.rb
   11 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/version.rb
   12 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/requirement.rb
   13 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/platform.rb
   14 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/basic_specification.rb
   15 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/stub_specification.rb
   16 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/delegate.rb
   17 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/rfc2396_parser.rb
   18 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/rfc3986_parser.rb
   19 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/common.rb
   20 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/generic.rb
   21 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/file.rb
   22 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/ftp.rb
   23 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/http.rb
   24 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/https.rb
   25 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/ldap.rb
   26 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/ldaps.rb
   27 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/mailto.rb
   28 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri.rb
   29 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/specification_policy.rb
   30 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/util/list.rb
   31 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/stringio.bundle
   32 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/specification.rb
   33 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/exceptions.rb
   34 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/util.rb
   35 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/bundler_version_finder.rb
   36 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/dependency.rb
   37 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_gem.rb
   38 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/monitor.rb
   39 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb
   40 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_warn.rb
   41 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems.rb
   42 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/path_support.rb
   43 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/version.rb
   44 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/core_ext/name_error.rb
   45 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/levenshtein.rb
   46 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/jaro_winkler.rb
   47 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checker.rb
   48 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb
   49 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb
   50 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/name_error_checkers.rb
   51 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/method_name_checker.rb
   52 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/key_error_checker.rb
   53 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/null_checker.rb
   54 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/formatters/plain_formatter.rb
   55 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean.rb
   56 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/tsort.rb
   57 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/request_set/gem_dependency_api.rb
   58 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/request_set/lockfile/parser.rb
   59 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/request_set/lockfile/tokenizer.rb
   60 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/request_set/lockfile.rb
   61 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/request_set.rb
   62 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb
   63 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/errors.rb
   64 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/set.rb
   65 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb
   66 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb
   67 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb
   68 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb
   69 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb
   70 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb
   71 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb
   72 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb
   73 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb
   74 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb
   75 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/state.rb
   76 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb
   77 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb
   78 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb
   79 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/resolution.rb
   80 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/resolver.rb
   81 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb
   82 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo.rb
   83 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo.rb
   84 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/activation_request.rb
   85 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/conflict.rb
   86 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/dependency_request.rb
   87 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/requirement_list.rb
   88 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/stats.rb
   89 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/set.rb
   90 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/api_set.rb
   91 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/composed_set.rb
   92 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/best_set.rb
   93 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/current_set.rb
   94 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/git_set.rb
   95 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/index_set.rb
   96 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/installer_set.rb
   97 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/lock_set.rb
   98 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/vendor_set.rb
   99 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/source_set.rb
  100 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/specification.rb
  101 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/spec_specification.rb
  102 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/api_specification.rb
  103 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/git_specification.rb
  104 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/index_specification.rb
  105 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/installed_specification.rb
  106 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/local_specification.rb
  107 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/lock_specification.rb
  108 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/vendor_specification.rb
  109 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver.rb
  110 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source/git.rb
  111 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source/installed.rb
  112 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source/specific_file.rb
  113 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source/local.rb
  114 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source/lock.rb
  115 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source/vendor.rb
  116 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source.rb
  117 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/pathname.bundle
  118 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/pathname.rb
  119 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/ansi/cursor.rb
  120 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/ansi/graphics.rb
  121 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/ansi/string_escaper.rb
  122 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/ansi.rb
  123 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/argument.rb
  124 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/argv.rb
  125 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command/banner.rb
  126 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command/plugin_manager.rb
  127 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command/argument_suggester.rb
  128 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command.rb
  129 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/informative_error.rb
  130 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/help.rb
  131 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide.rb
  132 /Library/Ruby/Gems/2.6.0/gems/colored2-3.1.2/lib/colored2/codes.rb
  133 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/forwardable/impl.rb
  134 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/forwardable.rb
  135 /Library/Ruby/Gems/2.6.0/gems/colored2-3.1.2/lib/colored2/ascii_decorator.rb
  136 /Library/Ruby/Gems/2.6.0/gems/colored2-3.1.2/lib/colored2/strings.rb
  137 /Library/Ruby/Gems/2.6.0/gems/colored2-3.1.2/lib/colored2.rb
  138 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/gem_version.rb
  139 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/user_interface.rb
  140 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj.rb
  141 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/string/strip.rb
  142 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/constants.rb
  143 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/utility/engine.rb
  144 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/abstract_object.rb
  145 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/utility/native_extension_loader.rb
  146 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/mri_object.rb
  147 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/jruby_object.rb
  148 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/rbx_object.rb
  149 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/truffleruby_object.rb
  150 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/object.rb
  151 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/volatile.rb
  152 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/abstract_lockable_object.rb
  153 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/mutex_lockable_object.rb
  154 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/jruby_lockable_object.rb
  155 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/rbx_lockable_object.rb
  156 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/lockable_object.rb
  157 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/condition.rb
  158 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/lock.rb
  159 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization.rb
  160 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/collection/map/non_concurrent_map_backend.rb
  161 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/collection/map/mri_map_backend.rb
  162 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/map.rb
  163 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/array/prepend_and_append.rb
  164 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/regexp.rb
  165 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/hash/deep_merge.rb
  166 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/hash/except.rb
  167 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/hash/slice.rb
  168 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/thread_safe/util.rb
  169 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/hash.rb
  170 /Library/Ruby/Gems/2.6.0/gems/i18n-1.8.10/lib/i18n/version.rb
  171 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/cgi/core.rb
  172 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/cgi/escape.bundle
  173 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/cgi/util.rb
  174 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/cgi/cookie.rb
  175 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/cgi.rb
  176 /Library/Ruby/Gems/2.6.0/gems/i18n-1.8.10/lib/i18n/exceptions.rb
  177 /Library/Ruby/Gems/2.6.0/gems/i18n-1.8.10/lib/i18n/interpolate/ruby.rb
  178 /Library/Ruby/Gems/2.6.0/gems/i18n-1.8.10/lib/i18n.rb
  179 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/lazy_load_hooks.rb
  180 /Library/Ruby/Gems/2.6.0/gems/i18n-1.8.10/lib/i18n/config.rb
  181 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/i18n.rb
  182 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/singleton.rb
  183 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/kernel/singleton_class.rb
  184 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/module/delegation.rb
  185 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/deprecation/instance_delegator.rb
  186 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/securerandom.rb
  187 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/notifications/instrumenter.rb
  188 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/mutex_m.rb
  189 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/notifications/fanout.rb
  190 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/per_thread_registry.rb
  191 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/notifications.rb
  192 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/deprecation/behaviors.rb
  193 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/deprecation/reporting.rb
  194 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/deprecation/constant_accessor.rb
  195 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/module/aliasing.rb
  196 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/array/extract_options.rb
  197 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/deprecation/method_wrappers.rb
  198 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/deprecation/proxy_wrappers.rb
  199 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/module/deprecation.rb
  200 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/deprecation.rb
  201 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/inflector/inflections.rb
  202 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/inflections.rb
  203 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/inflector/methods.rb
  204 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/multibyte.rb
  205 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/string/multibyte.rb
  206 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/inflector/transliterate.rb
  207 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/string/inflections.rb
  208 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/date_core.bundle
  209 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/date.rb
  210 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/time.rb
  211 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/base64.rb
  212 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/bigdecimal.bundle
  213 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/bigdecimal.rb
  214 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/date_time/calculations.rb
  215 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/kernel/reporting.rb
  216 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/object/blank.rb
  217 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/xml_mini/rexml.rb
  218 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/xml_mini.rb
  219 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/hash/keys.rb
  220 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/object/to_query.rb
  221 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/object/to_param.rb
  222 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/array/conversions.rb
  223 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/fileutils/version.rb
  224 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/etc.bundle
  225 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/fileutils.rb
  226 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/tmpdir.rb
  227 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/gem_version.rb
  228 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/version_metadata.rb
  229 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/gem_version.rb
  230 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/vendor/version.rb
  231 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/vendor/requirement.rb
  232 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/vendor.rb
  233 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/root_attribute_accessors.rb
  234 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/consumer.rb
  235 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/dsl/attribute_support.rb
  236 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/dsl/attribute.rb
  237 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/dsl/platform_proxy.rb
  238 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/dsl/deprecations.rb
  239 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/dsl.rb
  240 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/linter/result.rb
  241 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/linter/analyzer.rb
  242 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/linter.rb
  243 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/set/presenter.rb
  244 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/set.rb
  245 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/json.rb
  246 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification.rb
  247 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core.rb
  248 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/multibyte/unicode.rb
  249 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/config.rb
  250 /Library/Ruby/Gems/2.6.0/gems/cocoapods-downloader-1.4.0/lib/cocoapods-downloader/gem_version.rb
  251 /Library/Ruby/Gems/2.6.0/gems/cocoapods-downloader-1.4.0/lib/cocoapods-downloader/api.rb
  252 /Library/Ruby/Gems/2.6.0/gems/cocoapods-downloader-1.4.0/lib/cocoapods-downloader/api_exposable.rb
  253 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/shellwords.rb
  254 /Library/Ruby/Gems/2.6.0/gems/cocoapods-downloader-1.4.0/lib/cocoapods-downloader/base.rb
  255 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/standard_error.rb
  256 /Library/Ruby/Gems/2.6.0/gems/cocoapods-downloader-1.4.0/lib/cocoapods-downloader.rb
  257 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/downloader/cache.rb
  258 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/digest.bundle
  259 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/digest.rb
  260 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/downloader/request.rb
  261 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/downloader/response.rb
  262 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/downloader.rb
  263 /Library/Ruby/Gems/2.6.0/gems/gh_inspector-1.1.3/lib/gh_inspector/version.rb
  264 /Library/Ruby/Gems/2.6.0/gems/gh_inspector-1.1.3/lib/gh_inspector/inspector.rb
  265 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/strscan.bundle
  266 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/erb.rb
  267 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/socket.bundle
  268 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/io/wait.bundle
  269 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/socket.rb
  270 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/timeout.rb
  271 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/protocol.rb
  272 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/zlib.bundle
  273 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/exceptions.rb
  274 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/header.rb
  275 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/enc/windows_31j.bundle
  276 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/generic_request.rb
  277 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/request.rb
  278 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/requests.rb
  279 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/response.rb
  280 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/responses.rb
  281 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/proxy_delta.rb
  282 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/backward.rb
  283 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http.rb
  284 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/json/version.rb
  285 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/ostruct.rb
  286 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/json/generic_object.rb
  287 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/json/common.rb
  288 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/json/ext/parser.bundle
  289 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/json/ext/generator.bundle
  290 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/json/ext.rb
  291 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/json.rb
  292 /Library/Ruby/Gems/2.6.0/gems/gh_inspector-1.1.3/lib/gh_inspector/sidekick.rb
  293 /Library/Ruby/Gems/2.6.0/gems/gh_inspector-1.1.3/lib/gh_inspector/evidence.rb
  294 /Library/Ruby/Gems/2.6.0/gems/gh_inspector-1.1.3/lib/gh_inspector/exception_hound.rb
  295 /Library/Ruby/Gems/2.6.0/gems/gh_inspector-1.1.3/lib/gh_inspector.rb
  296 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface/error_report.rb
  297 /Library/Ruby/Gems/2.6.0/gems/addressable-2.7.0/lib/addressable/version.rb
  298 /Library/Ruby/Gems/2.6.0/gems/addressable-2.7.0/lib/addressable/idna/pure.rb
  299 /Library/Ruby/Gems/2.6.0/gems/addressable-2.7.0/lib/addressable/idna.rb
  300 /Library/Ruby/Gems/2.6.0/gems/public_suffix-4.0.6/lib/public_suffix/domain.rb
  301 /Library/Ruby/Gems/2.6.0/gems/public_suffix-4.0.6/lib/public_suffix/version.rb
  302 /Library/Ruby/Gems/2.6.0/gems/public_suffix-4.0.6/lib/public_suffix/errors.rb
  303 /Library/Ruby/Gems/2.6.0/gems/public_suffix-4.0.6/lib/public_suffix/rule.rb
  304 /Library/Ruby/Gems/2.6.0/gems/public_suffix-4.0.6/lib/public_suffix/list.rb
  305 /Library/Ruby/Gems/2.6.0/gems/public_suffix-4.0.6/lib/public_suffix.rb
  306 /Library/Ruby/Gems/2.6.0/gems/addressable-2.7.0/lib/addressable/uri.rb
  307 /Library/Ruby/Gems/2.6.0/gems/addressable-2.7.0/lib/addressable/template.rb
  308 /Library/Ruby/Gems/2.6.0/gems/addressable-2.7.0/lib/addressable.rb
  309 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface/inspector_reporter.rb
  310 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/core_ui.rb
  311 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface.rb
  312 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/source/acceptor.rb
  313 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/source/aggregate.rb
  314 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/source/health_reporter.rb
  315 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/source/manager.rb
  316 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/hash/reverse_merge.rb
  317 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/hash_with_indifferent_access.rb
  318 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.5/lib/active_support/core_ext/hash/indifferent_access.rb
  319 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/source/metadata.rb
  320 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/source.rb
  321 /Library/Ruby/Gems/2.6.0/gems/netrc-0.11.0/lib/netrc.rb
  322 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/openssl.bundle
  323 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/bn.rb
  324 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/pkey.rb
  325 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/cipher.rb
  326 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/config.rb
  327 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/digest.rb
  328 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/x509.rb
  329 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/buffering.rb
  330 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/io/nonblock.bundle
  331 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/ipaddr.rb
  332 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/ssl.rb
  333 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/pkcs5.rb
  334 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl.rb
  335 /Library/Ruby/Gems/2.6.0/gems/nap-1.1.0/lib/rest/error.rb
  336 /Library/Ruby/Gems/2.6.0/gems/nap-1.1.0/lib/rest/request.rb
  337 /Library/Ruby/Gems/2.6.0/gems/nap-1.1.0/lib/rest/response.rb
  338 /Library/Ruby/Gems/2.6.0/gems/nap-1.1.0/lib/rest.rb
  339 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/versions.rb
  340 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/exception.rb
  341 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/syntax_error.rb
  342 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/psych.bundle
  343 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/omap.rb
  344 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/set.rb
  345 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/class_loader.rb
  346 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/scalar_scanner.rb
  347 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/node.rb
  348 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/stream.rb
  349 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/document.rb
  350 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/sequence.rb
  351 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/scalar.rb
  352 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/mapping.rb
  353 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/alias.rb
  354 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes.rb
  355 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/streaming.rb
  356 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors/visitor.rb
  357 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors/to_ruby.rb
  358 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors/emitter.rb
  359 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/handler.rb
  360 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/tree_builder.rb
  361 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors/yaml_tree.rb
  362 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/json/ruby_events.rb
  363 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors/json_tree.rb
  364 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors/depth_first.rb
  365 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors.rb
  366 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/parser.rb
  367 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/coder.rb
  368 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/core_ext.rb
  369 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/stream.rb
  370 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/json/yaml_events.rb
  371 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/json/tree_builder.rb
  372 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/json/stream.rb
  373 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/handlers/document_stream.rb
  374 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych.rb
  375 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/yaml.rb
  376 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/executable.rb
  377 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/version.rb
  378 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/errors.rb
  379 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/event.rb
  380 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/concern/dereferenceable.rb
  381 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/concern/obligation.rb
  382 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/logger.rb
  383 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/concern/logging.rb
  384 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/concern/deprecation.rb
  385 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/executor_service.rb
  386 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/abstract_executor_service.rb
  387 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/serial_executor_service.rb
  388 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/immediate_executor.rb
  389 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/delay.rb
  390 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic_reference/numeric_cas_wrapper.rb
  391 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic_reference/mutex_atomic.rb
  392 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/atomic_reference.rb
  393 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/ruby_executor_service.rb
  394 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/utility/monotonic_time.rb
  395 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/ruby_thread_pool_executor.rb
  396 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/thread_pool_executor.rb
  397 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/cached_thread_pool.rb
  398 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/utility/processor_counter.rb
  399 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/configuration.rb
  400 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_boolean.rb
  401 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/atomic_boolean.rb
  402 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/utility/native_integer.rb
  403 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_fixnum.rb
  404 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/atomic_fixnum.rb
  405 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/cyclic_barrier.rb
  406 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/mutex_count_down_latch.rb
  407 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb
  408 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/count_down_latch.rb
  409 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/read_write_lock.rb
  410 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/abstract_thread_local_var.rb
  411 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/ruby_thread_local_var.rb
  412 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/java_thread_local_var.rb
  413 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/thread_local_var.rb
  414 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/reentrant_read_write_lock.rb
  415 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/mutex_semaphore.rb
  416 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/semaphore.rb
  417 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomics.rb
  418 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/fixed_thread_pool.rb
  419 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/simple_executor_service.rb
  420 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/indirect_immediate_executor.rb
  421 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb
  422 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/java_single_thread_executor.rb
  423 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/java_thread_pool_executor.rb
  424 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/ruby_single_thread_executor.rb
  425 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/safe_task_executor.rb
  426 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/serialized_execution.rb
  427 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/serialized_execution_delegator.rb
  428 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/single_thread_executor.rb
  429 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/collection/copy_on_write_observer_set.rb
  430 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/collection/copy_on_notify_observer_set.rb
  431 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/concern/observable.rb
  432 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/ivar.rb
  433 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/options.rb
  434 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/scheduled_task.rb
  435 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/collection/java_non_concurrent_priority_queue.rb
  436 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/collection/ruby_non_concurrent_priority_queue.rb
  437 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/collection/non_concurrent_priority_queue.rb
  438 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executor/timer_set.rb
  439 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/executors.rb
  440 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atomic/atomic_markable_reference.rb
  441 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/agent.rb
  442 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/atom.rb
  443 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/array.rb
  444 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/set.rb
  445 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/tuple.rb
  446 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/async.rb
  447 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/future.rb
  448 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/dataflow.rb
  449 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/maybe.rb
  450 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/exchanger.rb
  451 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/synchronization/abstract_struct.rb
  452 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/immutable_struct.rb
  453 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/mutable_struct.rb
  454 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/mvar.rb
  455 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/promise.rb
  456 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/settable_struct.rb
  457 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/timer_task.rb
  458 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/tvar.rb
  459 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/collection/lock_free_stack.rb
  460 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/re_include.rb
  461 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/promises.rb
  462 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent/thread_safe/synchronized_delegator.rb
  463 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.8/lib/concurrent-ruby/concurrent.rb
  464 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/cdn_source.rb
  465 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/trunk_source.rb
  466 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb
  467 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/core_overrides.rb
  468 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods.rb
  469 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/delegates/specification_provider.rb
  470 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/errors.rb
  471 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/options/repo_update.rb
  472 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/options/project_directory.rb
  473 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/cache/list.rb
  474 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/cache/clean.rb
  475 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/cache.rb
  476 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/env.rb
  477 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/init.rb
  478 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/install.rb
  479 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc/list.rb
  480 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc/podfile.rb
  481 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc/podfile_json.rb
  482 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc/repl.rb
  483 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc/spec.rb
  484 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc/update_search_index.rb
  485 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc.rb
  486 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/lib/create.rb
  487 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/lib/lint.rb
  488 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/lib.rb
  489 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/list.rb
  490 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/outdated.rb
  491 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/add.rb
  492 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/add_cdn.rb
  493 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/lint.rb
  494 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/list.rb
  495 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/tempfile.rb
  496 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/push.rb
  497 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/remove.rb
  498 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/update.rb
  499 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo.rb
  500 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/setup.rb
  501 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/spec/create.rb
  502 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/spec/lint.rb
  503 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/spec/which.rb
  504 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/spec/cat.rb
  505 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/spec/edit.rb
  506 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/spec.rb
  507 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/update.rb
  508 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command.rb
  509 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/open3.rb
  510 /Library/Ruby/Gems/2.6.0/gems/cocoapods-deintegrate-1.0.4/lib/cocoapods/deintegrate/gem_version.rb
  511 /Library/Ruby/Gems/2.6.0/gems/cocoapods-deintegrate-1.0.4/lib/cocoapods/deintegrator.rb
  512 /Library/Ruby/Gems/2.6.0/gems/cocoapods-deintegrate-1.0.4/lib/cocoapods_deintegrate.rb
  513 /Library/Ruby/Gems/2.6.0/gems/cocoapods-deintegrate-1.0.4/lib/cocoapods/command/deintegrate.rb
  514 /Library/Ruby/Gems/2.6.0/gems/cocoapods-deintegrate-1.0.4/lib/cocoapods_plugin.rb
  515 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/gem_index_cache.rb
  516 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/gem_helper.rb
  517 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins_helper.rb
  518 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins/list.rb
  519 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins/search.rb
  520 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins/create.rb
  521 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins/publish.rb
  522 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins/installed.rb
  523 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins.rb
  524 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/cocoapods_plugin.rb
  525 /Library/Ruby/Gems/2.6.0/gems/cocoapods-search-1.0.0/lib/cocoapods-search/command/search.rb
  526 /Library/Ruby/Gems/2.6.0/gems/cocoapods-search-1.0.0/lib/cocoapods-search/command.rb
  527 /Library/Ruby/Gems/2.6.0/gems/cocoapods-search-1.0.0/lib/cocoapods_plugin.rb
  528 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/add_owner.rb
  529 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/delete.rb
  530 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/deprecate.rb
  531 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/info.rb
  532 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/me.rb
  533 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/push.rb
  534 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/register.rb
  535 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/remove_owner.rb
  536 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk.rb
  537 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/cocoapods_plugin.rb
  538 /Library/Ruby/Gems/2.6.0/gems/cocoapods-try-1.2.0/lib/pod/try_settings.rb
  539 /Library/Ruby/Gems/2.6.0/gems/cocoapods-try-1.2.0/lib/pod/command/try.rb
  540 /Library/Ruby/Gems/2.6.0/gems/cocoapods-try-1.2.0/lib/cocoapods_plugin.rb
  541 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/podfile/dsl.rb
  542 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/podfile/target_definition.rb
  543 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/podfile.rb
  544 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/build_type.rb
  545 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/podfile.rb
  546 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb
  547 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sandbox.rb
  548 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sandbox/headers_store.rb
  549 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/lockfile.rb
  550 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/yaml_helper.rb
  551 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/enc/utf_16le.bundle
  552 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/enc/utf_16be.bundle
  553 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/version.rb
  554 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/pre_install_hooks_context.rb
  555 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/hooks_manager.rb
  556 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/source_provider_hooks_context.rb
  557 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb
  558 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/installation_options.rb
  559 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer/podfile_dependency_cache.rb
  560 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/platform.rb
  561 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/dependency.rb
  562 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/requirement.rb
  563 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/podfile_validator.rb
  564 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer/target_inspector.rb
  565 /Library/Ruby/Gems/2.6.0/gems/atomos-0.1.3/lib/atomos/version.rb
  566 /Library/Ruby/Gems/2.6.0/gems/atomos-0.1.3/lib/atomos.rb
  567 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/case_converter.rb
  568 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object_attributes.rb
  569 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object_dictionary.rb
  570 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object_list.rb
  571 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/constants.rb
  572 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/swift_package_remote_reference.rb
  573 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/swift_package_product_dependency.rb
  574 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/helpers/build_settings_array_settings_by_object_version.rb
  575 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/build_configuration.rb
  576 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/build_file.rb
  577 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/build_phase.rb
  578 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/build_rule.rb
  579 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/configuration_list.rb
  580 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/container_item_proxy.rb
  581 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/helpers/groupable_helper.rb
  582 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/file_reference.rb
  583 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/helpers/file_references_factory.rb
  584 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/group.rb
  585 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/native_target.rb
  586 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/root_object.rb
  587 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/target_dependency.rb
  588 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object/reference_proxy.rb
  589 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/object.rb
  590 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/project_helper.rb
  591 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project/uuid_generator.rb
  592 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/plist.rb
  593 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.19.0/lib/xcodeproj/project.rb
  594 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/version.rb
  595 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/object.rb
  596 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/plist.rb
  597 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/reader.rb
  598 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/unicode/next_step_mapping.rb
  599 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/unicode/quote_maps.rb
  600 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/unicode.rb
  601 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/writer.rb
  602 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo.rb
  603 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer/target_inspection_result.rb
  604 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer/specs_state.rb
  605 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/action.rb
  606 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/add_edge_no_circular.rb
  607 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/add_vertex.rb
  608 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/delete_edge.rb
  609 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/detach_vertex_named.rb
  610 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/set_payload.rb
  611 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/tag.rb
  612 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/log.rb
  613 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/vertex.rb
  614 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph.rb
  615 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer/locking_dependency_analyzer.rb
  616 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/compatibility.rb
  617 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/gem_metadata.rb
  618 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/state.rb
  619 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/modules/specification_provider.rb
  620 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/delegates/resolution_state.rb
  621 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/resolution.rb
  622 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/resolver.rb
  623 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/modules/ui.rb
  624 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo.rb
  625 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/resolver/lazy_specification.rb
  626 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/resolver/resolver_specification.rb
  627 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/resolver.rb
  628 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/digest/sha2.bundle
  629 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/digest/sha2.rb
  630 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi_c.bundle
  631 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/platform.rb
  632 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/data_converter.rb
  633 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/types.rb
  634 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/library.rb
  635 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/errno.rb
  636 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/abstract_memory.rb
  637 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/pointer.rb
  638 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/memorypointer.rb
  639 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/struct_layout.rb
  640 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/struct_layout_builder.rb
  641 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/struct_by_reference.rb
  642 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/struct.rb
  643 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/union.rb
  644 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/managedstruct.rb
  645 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/callback.rb
  646 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/io.rb
  647 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/autopointer.rb
  648 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/variadic.rb
  649 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/enum.rb
  650 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/version.rb
  651 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi/ffi.rb
  652 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi.rb

[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: https://www.ruby-lang.org/bugreport.html

[IMPORTANT]
Don't forget to include the Crash Report log file under
DiagnosticReports directory in bug reports.

zsh: abort      pod install

@simonmcl
Copy link

if I install it with

arch -x86_64 gem install ffi

and pod install with:

arch -x86_64 pod install

It all works fine on the latest xcode. Others are reporting upgrading the pre-installed ruby to at least 2.7.3 fixes everything and allows you to run it all natively. This currently doesn't work for me using cocoapods-keys. I've updated the ruby with rbenv from homebrew, but I still need to pod install with arch -x86_64

@keithwongg
Copy link

Same error with ffi 1.10.0

$ rake db:migrate
/Users/keithwong/.rvm/gems/ruby-2.6.6/gems/ffi-1.10.0/lib/ffi/library.rb:275: [BUG] Bus Error at 0x00000001011ac000

@andrewferk
Copy link
Contributor

I was having the same issue with Ruby 2.6.7 + FFI 1.10.0 on my M1 MacBook Pro. Interestingly, Ruby 2.6.5 + FFI 1.10.0 was working just fine. I was able to do a diff on the two builds and I noticed the USE_FFI_ALLOC flag was missing in the 2.6.7 build. This lead me to the extconf.rb file and the match on RbConfig::CONFIG['host']. Unfortunately, RbConfig has different outputs between different versions of Ruby on M1.

  • Ruby 2.6.5 - RbConfig::CONFIG['host'] == 'arm-apple-darwin20.3.0'
  • Ruby 2.6.7 - RbConfig::CONFIG['host'] == 'aarch64-apple-darwin20.3.0'

I've created PR #899 that hopefully fixes this issue. I've tested on Ruby 2.6.7 and 2.7.2.

@xhacker
Copy link

xhacker commented Jul 7, 2021

Thanks @andrewferk.

I tried the following and it worked:

gem install --user-install ffi -- --enable-libffi-alloc

@warln10
Copy link

warln10 commented Jul 25, 2021

same issue i am also facing i try all the method but didnt get any positive response

Analyzing dependencies
/Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/library.rb:275: [BUG] Bus Error at 0x0000000104684000
ruby 2.6.3p62 (2019-04-16 revision 67580) [universal.arm64e-darwin20]

-- Crash Report log information --------------------------------------------
See Crash Report log file under the one of following:
* ~/Library/Logs/DiagnosticReports
* /Library/Logs/DiagnosticReports
for more details.
Don't forget to include the above Crash Report log file in bug reports.

-- Control frame information -----------------------------------------------
c:0035 p:---- s:0231 e:000230 CFUNC :attach
c:0034 p:0258 s:0225 e:000224 METHOD /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/library.rb:275
c:0033 p:0050 s:0205 e:000204 CLASS /Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon/libc.rb:17
c:0032 p:0007 s:0202 e:000201 CLASS /Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon/libc.rb:7
c:0031 p:0007 s:0199 e:000198 TOP /Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon/libc.rb:2 [FINISH]
c:0030 p:---- s:0196 e:000195 CFUNC :require
c:0029 p:0110 s:0191 e:000190 METHOD /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54
c:0028 p:0042 s:0179 e:000178 TOP /Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon.rb:15 [FINISH]
c:0027 p:---- s:0176 e:000175 CFUNC :require
c:0026 p:0110 s:0171 e:000170 METHOD /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54
c:0025 p:0013 s:0159 e:000158 TOP /Library/Ruby/Gems/2.6.0/gems/typhoeus-1.4.0/lib/typhoeus.rb:2 [FINISH]
c:0024 p:---- s:0156 e:000155 CFUNC :require
c:0023 p:0110 s:0151 e:000150 METHOD /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54
c:0022 p:0015 s:0139 e:000138 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb:74
c:0021 p:0014 s:0131 e:000130 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb:36
c:0020 p:0016 s:0120 e:000119 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb:21
c:0019 p:0010 s:0115 e:000114 BLOCK /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:178 [FINISH]
c:0018 p:---- s:0111 e:000110 CFUNC :map
c:0017 p:0136 s:0107 e:000106 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:177
c:0016 p:0024 s:0098 e:000093 BLOCK /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:1073
c:0015 p:0081 s:0090 e:000089 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface.rb:64
c:0014 p:0078 s:0083 e:000082 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:1072
c:0013 p:0161 s:0076 e:000075 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:124
c:0012 p:0011 s:0061 e:000060 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:414
c:0011 p:0007 s:0056 e:000055 BLOCK /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:239
c:0010 p:0081 s:0053 e:000052 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface.rb:64
c:0009 p:0048 s:0046 e:000045 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:238
c:0008 p:0009 s:0040 e:000039 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:160
c:0007 p:0054 s:0036 e:000035 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/install.rb:52
c:0006 p:0078 s:0031 e:000030 METHOD /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command.rb:334
c:0005 p:0024 s:0024 e:000023 METHOD /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command.rb:52
c:0004 p:0378 s:0019 e:000018 TOP /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/bin/pod:55 [FINISH]
c:0003 p:---- s:0013 e:000012 CFUNC :load
c:0002 p:0109 s:0008 E:000ee0 EVAL /usr/local/bin/pod:23 [FINISH]
c:0001 p:0000 s:0003 E:0020c0 (none) [FINISH]

-- Ruby level backtrace information ----------------------------------------
/usr/local/bin/pod:23:in <main>' /usr/local/bin/pod:23:in load'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/bin/pod:55:in <top (required)>' /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command.rb:52:in run'
/Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command.rb:334:in run' /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/install.rb:52:in run'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:160:in install!' /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:238:in resolve_dependencies'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface.rb:64:in section' /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:239:in block in resolve_dependencies'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:414:in analyze' /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:124:in analyze'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:1072:in resolve_dependencies' /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface.rb:64:in section'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:1073:in block in resolve_dependencies' /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:177:in sources'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:177:in map' /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:178:in block in sources'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb:21:in find_or_create_source_with_url' /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb:36:in create_source_with_url'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb:74:in cdn_url?' /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in require'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in require' /Library/Ruby/Gems/2.6.0/gems/typhoeus-1.4.0/lib/typhoeus.rb:2:in <top (required)>'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in require' /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in require'
/Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon.rb:15:in <top (required)>' /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in require'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in require' /Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon/libc.rb:2:in <top (required)>'
/Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon/libc.rb:7:in <module:Ethon>' /Library/Ruby/Gems/2.6.0/gems/ethon-0.14.0/lib/ethon/libc.rb:17:in module:Libc'
/Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/library.rb:275:in attach_function' /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/library.rb:275:in attach'

-- Other runtime information -----------------------------------------------

  • Loaded script: /usr/local/bin/pod

  • Loaded features:

    0 enumerator.so
    1 thread.rb
    2 rational.so
    3 complex.so
    4 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/enc/encdb.bundle
    5 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/enc/trans/transdb.bundle
    6 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/rbconfig.rb
    7 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/compatibility.rb
    8 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/defaults.rb
    9 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/deprecate.rb
    10 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/errors.rb
    11 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/version.rb
    12 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/requirement.rb
    13 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/platform.rb
    14 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/basic_specification.rb
    15 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/stub_specification.rb
    16 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/delegate.rb
    17 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/rfc2396_parser.rb
    18 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/rfc3986_parser.rb
    19 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/common.rb
    20 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/generic.rb
    21 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/file.rb
    22 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/ftp.rb
    23 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/http.rb
    24 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/https.rb
    25 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/ldap.rb
    26 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/ldaps.rb
    27 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri/mailto.rb
    28 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/uri.rb
    29 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/specification_policy.rb
    30 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/util/list.rb
    31 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/stringio.bundle
    32 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/specification.rb
    33 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/exceptions.rb
    34 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/util.rb
    35 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/bundler_version_finder.rb
    36 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/dependency.rb
    37 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_gem.rb
    38 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/monitor.rb
    39 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb
    40 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_warn.rb
    41 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems.rb
    42 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/path_support.rb
    43 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/version.rb
    44 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/core_ext/name_error.rb
    45 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/levenshtein.rb
    46 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/jaro_winkler.rb
    47 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checker.rb
    48 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb
    49 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb
    50 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/name_error_checkers.rb
    51 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/method_name_checker.rb
    52 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/key_error_checker.rb
    53 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/null_checker.rb
    54 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/formatters/plain_formatter.rb
    55 /Library/Ruby/Gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean.rb
    56 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/tsort.rb
    57 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/request_set/gem_dependency_api.rb
    58 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/request_set/lockfile/parser.rb
    59 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/request_set/lockfile/tokenizer.rb
    60 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/request_set/lockfile.rb
    61 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/request_set.rb
    62 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb
    63 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/errors.rb
    64 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/set.rb
    65 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb
    66 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb
    67 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb
    68 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb
    69 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb
    70 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb
    71 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb
    72 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb
    73 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb
    74 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb
    75 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/state.rb
    76 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb
    77 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb
    78 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb
    79 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/resolution.rb
    80 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/resolver.rb
    81 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb
    82 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo.rb
    83 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/molinillo.rb
    84 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/activation_request.rb
    85 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/conflict.rb
    86 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/dependency_request.rb
    87 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/requirement_list.rb
    88 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/stats.rb
    89 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/set.rb
    90 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/api_set.rb
    91 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/composed_set.rb
    92 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/best_set.rb
    93 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/current_set.rb
    94 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/git_set.rb
    95 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/index_set.rb
    96 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/installer_set.rb
    97 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/lock_set.rb
    98 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/vendor_set.rb
    99 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/source_set.rb
    100 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/specification.rb
    101 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/spec_specification.rb
    102 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/api_specification.rb
    103 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/git_specification.rb
    104 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/index_specification.rb
    105 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/installed_specification.rb
    106 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/local_specification.rb
    107 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/lock_specification.rb
    108 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver/vendor_specification.rb
    109 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/resolver.rb
    110 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source/git.rb
    111 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source/installed.rb
    112 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source/specific_file.rb
    113 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source/local.rb
    114 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source/lock.rb
    115 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source/vendor.rb
    116 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/source.rb
    117 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/pathname.bundle
    118 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/pathname.rb
    119 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/ansi/cursor.rb
    120 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/ansi/graphics.rb
    121 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/ansi/string_escaper.rb
    122 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/ansi.rb
    123 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/argument.rb
    124 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/argv.rb
    125 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command/banner.rb
    126 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command/plugin_manager.rb
    127 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command/argument_suggester.rb
    128 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command.rb
    129 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/informative_error.rb
    130 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/help.rb
    131 /Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide.rb
    132 /Library/Ruby/Gems/2.6.0/gems/colored2-3.1.2/lib/colored2/codes.rb
    133 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/forwardable/impl.rb
    134 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/forwardable.rb
    135 /Library/Ruby/Gems/2.6.0/gems/colored2-3.1.2/lib/colored2/ascii_decorator.rb
    136 /Library/Ruby/Gems/2.6.0/gems/colored2-3.1.2/lib/colored2/strings.rb
    137 /Library/Ruby/Gems/2.6.0/gems/colored2-3.1.2/lib/colored2.rb
    138 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/gem_version.rb
    139 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/user_interface.rb
    140 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj.rb
    141 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/string/strip.rb
    142 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/constants.rb
    143 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/engine.rb
    144 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/abstract_object.rb
    145 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/native_extension_loader.rb
    146 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/mri_object.rb
    147 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/jruby_object.rb
    148 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/rbx_object.rb
    149 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/truffleruby_object.rb
    150 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/object.rb
    151 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/volatile.rb
    152 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/abstract_lockable_object.rb
    153 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/mutex_lockable_object.rb
    154 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/jruby_lockable_object.rb
    155 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/rbx_lockable_object.rb
    156 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/lockable_object.rb
    157 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/condition.rb
    158 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/lock.rb
    159 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization.rb
    160 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/non_concurrent_map_backend.rb
    161 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/map/mri_map_backend.rb
    162 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/map.rb
    163 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/array/prepend_and_append.rb
    164 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/regexp.rb
    165 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/hash/deep_merge.rb
    166 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/hash/except.rb
    167 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/hash/slice.rb
    168 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util.rb
    169 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/hash.rb
    170 /Library/Ruby/Gems/2.6.0/gems/i18n-1.8.10/lib/i18n/version.rb
    171 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/cgi/core.rb
    172 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/cgi/escape.bundle
    173 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/cgi/util.rb
    174 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/cgi/cookie.rb
    175 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/cgi.rb
    176 /Library/Ruby/Gems/2.6.0/gems/i18n-1.8.10/lib/i18n/exceptions.rb
    177 /Library/Ruby/Gems/2.6.0/gems/i18n-1.8.10/lib/i18n/interpolate/ruby.rb
    178 /Library/Ruby/Gems/2.6.0/gems/i18n-1.8.10/lib/i18n.rb
    179 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/lazy_load_hooks.rb
    180 /Library/Ruby/Gems/2.6.0/gems/i18n-1.8.10/lib/i18n/config.rb
    181 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/i18n.rb
    182 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/singleton.rb
    183 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/kernel/singleton_class.rb
    184 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/module/delegation.rb
    185 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/deprecation/instance_delegator.rb
    186 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/securerandom.rb
    187 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/notifications/instrumenter.rb
    188 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/mutex_m.rb
    189 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/notifications/fanout.rb
    190 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/per_thread_registry.rb
    191 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/notifications.rb
    192 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/deprecation/behaviors.rb
    193 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/deprecation/reporting.rb
    194 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/deprecation/constant_accessor.rb
    195 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/module/aliasing.rb
    196 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/array/extract_options.rb
    197 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/deprecation/method_wrappers.rb
    198 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/deprecation/proxy_wrappers.rb
    199 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/module/deprecation.rb
    200 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/deprecation.rb
    201 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/inflector/inflections.rb
    202 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/inflections.rb
    203 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/inflector/methods.rb
    204 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/multibyte.rb
    205 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/string/multibyte.rb
    206 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/inflector/transliterate.rb
    207 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/string/inflections.rb
    208 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/date_core.bundle
    209 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/date.rb
    210 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/time.rb
    211 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/base64.rb
    212 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/bigdecimal.bundle
    213 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/bigdecimal.rb
    214 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/date_time/calculations.rb
    215 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/kernel/reporting.rb
    216 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/object/blank.rb
    217 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/xml_mini/rexml.rb
    218 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/xml_mini.rb
    219 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/hash/keys.rb
    220 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/object/to_query.rb
    221 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/object/to_param.rb
    222 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/array/conversions.rb
    223 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/fileutils/version.rb
    224 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/etc.bundle
    225 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/fileutils.rb
    226 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/tmpdir.rb
    227 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/gem_version.rb
    228 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/version_metadata.rb
    229 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/gem_version.rb
    230 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/vendor/version.rb
    231 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/vendor/requirement.rb
    232 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/vendor.rb
    233 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/root_attribute_accessors.rb
    234 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/consumer.rb
    235 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/dsl/attribute_support.rb
    236 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/dsl/attribute.rb
    237 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/dsl/platform_proxy.rb
    238 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/dsl/deprecations.rb
    239 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/dsl.rb
    240 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/linter/result.rb
    241 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/linter/analyzer.rb
    242 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/linter.rb
    243 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/set/presenter.rb
    244 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/set.rb
    245 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification/json.rb
    246 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/specification.rb
    247 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core.rb
    248 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/multibyte/unicode.rb
    249 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/config.rb
    250 /Library/Ruby/Gems/2.6.0/gems/cocoapods-downloader-1.4.0/lib/cocoapods-downloader/gem_version.rb
    251 /Library/Ruby/Gems/2.6.0/gems/cocoapods-downloader-1.4.0/lib/cocoapods-downloader/api.rb
    252 /Library/Ruby/Gems/2.6.0/gems/cocoapods-downloader-1.4.0/lib/cocoapods-downloader/api_exposable.rb
    253 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/shellwords.rb
    254 /Library/Ruby/Gems/2.6.0/gems/cocoapods-downloader-1.4.0/lib/cocoapods-downloader/base.rb
    255 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/standard_error.rb
    256 /Library/Ruby/Gems/2.6.0/gems/cocoapods-downloader-1.4.0/lib/cocoapods-downloader.rb
    257 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/downloader/cache.rb
    258 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/digest.bundle
    259 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/digest.rb
    260 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/downloader/request.rb
    261 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/downloader/response.rb
    262 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/downloader.rb
    263 /Library/Ruby/Gems/2.6.0/gems/gh_inspector-1.1.3/lib/gh_inspector/version.rb
    264 /Library/Ruby/Gems/2.6.0/gems/gh_inspector-1.1.3/lib/gh_inspector/inspector.rb
    265 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/strscan.bundle
    266 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/erb.rb
    267 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/socket.bundle
    268 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/io/wait.bundle
    269 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/socket.rb
    270 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/timeout.rb
    271 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/protocol.rb
    272 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/zlib.bundle
    273 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/exceptions.rb
    274 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/header.rb
    275 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/enc/windows_31j.bundle
    276 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/generic_request.rb
    277 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/request.rb
    278 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/requests.rb
    279 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/response.rb
    280 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/responses.rb
    281 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/proxy_delta.rb
    282 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http/backward.rb
    283 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/net/http.rb
    284 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/json/version.rb
    285 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/ostruct.rb
    286 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/json/generic_object.rb
    287 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/json/common.rb
    288 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/json/ext/parser.bundle
    289 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/json/ext/generator.bundle
    290 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/json/ext.rb
    291 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/json.rb
    292 /Library/Ruby/Gems/2.6.0/gems/gh_inspector-1.1.3/lib/gh_inspector/sidekick.rb
    293 /Library/Ruby/Gems/2.6.0/gems/gh_inspector-1.1.3/lib/gh_inspector/evidence.rb
    294 /Library/Ruby/Gems/2.6.0/gems/gh_inspector-1.1.3/lib/gh_inspector/exception_hound.rb
    295 /Library/Ruby/Gems/2.6.0/gems/gh_inspector-1.1.3/lib/gh_inspector.rb
    296 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface/error_report.rb
    297 /Library/Ruby/Gems/2.6.0/gems/addressable-2.8.0/lib/addressable/version.rb
    298 /Library/Ruby/Gems/2.6.0/gems/addressable-2.8.0/lib/addressable/idna/pure.rb
    299 /Library/Ruby/Gems/2.6.0/gems/addressable-2.8.0/lib/addressable/idna.rb
    300 /Library/Ruby/Gems/2.6.0/gems/public_suffix-4.0.6/lib/public_suffix/domain.rb
    301 /Library/Ruby/Gems/2.6.0/gems/public_suffix-4.0.6/lib/public_suffix/version.rb
    302 /Library/Ruby/Gems/2.6.0/gems/public_suffix-4.0.6/lib/public_suffix/errors.rb
    303 /Library/Ruby/Gems/2.6.0/gems/public_suffix-4.0.6/lib/public_suffix/rule.rb
    304 /Library/Ruby/Gems/2.6.0/gems/public_suffix-4.0.6/lib/public_suffix/list.rb
    305 /Library/Ruby/Gems/2.6.0/gems/public_suffix-4.0.6/lib/public_suffix.rb
    306 /Library/Ruby/Gems/2.6.0/gems/addressable-2.8.0/lib/addressable/uri.rb
    307 /Library/Ruby/Gems/2.6.0/gems/addressable-2.8.0/lib/addressable/template.rb
    308 /Library/Ruby/Gems/2.6.0/gems/addressable-2.8.0/lib/addressable.rb
    309 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface/inspector_reporter.rb
    310 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/core_ui.rb
    311 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface.rb
    312 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/source/acceptor.rb
    313 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/source/aggregate.rb
    314 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/source/health_reporter.rb
    315 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/source/manager.rb
    316 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/hash/reverse_merge.rb
    317 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/hash_with_indifferent_access.rb
    318 /Library/Ruby/Gems/2.6.0/gems/activesupport-5.2.6/lib/active_support/core_ext/hash/indifferent_access.rb
    319 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/source/metadata.rb
    320 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/source.rb
    321 /Library/Ruby/Gems/2.6.0/gems/netrc-0.11.0/lib/netrc.rb
    322 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/openssl.bundle
    323 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/bn.rb
    324 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/pkey.rb
    325 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/cipher.rb
    326 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/config.rb
    327 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/digest.rb
    328 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/x509.rb
    329 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/buffering.rb
    330 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/io/nonblock.bundle
    331 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/ipaddr.rb
    332 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/ssl.rb
    333 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl/pkcs5.rb
    334 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/openssl.rb
    335 /Library/Ruby/Gems/2.6.0/gems/nap-1.1.0/lib/rest/error.rb
    336 /Library/Ruby/Gems/2.6.0/gems/nap-1.1.0/lib/rest/request.rb
    337 /Library/Ruby/Gems/2.6.0/gems/nap-1.1.0/lib/rest/response.rb
    338 /Library/Ruby/Gems/2.6.0/gems/nap-1.1.0/lib/rest.rb
    339 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/versions.rb
    340 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/exception.rb
    341 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/syntax_error.rb
    342 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/psych.bundle
    343 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/omap.rb
    344 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/set.rb
    345 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/class_loader.rb
    346 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/scalar_scanner.rb
    347 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/node.rb
    348 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/stream.rb
    349 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/document.rb
    350 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/sequence.rb
    351 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/scalar.rb
    352 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/mapping.rb
    353 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes/alias.rb
    354 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/nodes.rb
    355 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/streaming.rb
    356 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors/visitor.rb
    357 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors/to_ruby.rb
    358 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors/emitter.rb
    359 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/handler.rb
    360 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/tree_builder.rb
    361 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors/yaml_tree.rb
    362 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/json/ruby_events.rb
    363 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors/json_tree.rb
    364 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors/depth_first.rb
    365 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/visitors.rb
    366 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/parser.rb
    367 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/coder.rb
    368 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/core_ext.rb
    369 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/stream.rb
    370 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/json/yaml_events.rb
    371 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/json/tree_builder.rb
    372 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/json/stream.rb
    373 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych/handlers/document_stream.rb
    374 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/psych.rb
    375 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/yaml.rb
    376 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/executable.rb
    377 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/version.rb
    378 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/errors.rb
    379 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/event.rb
    380 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/dereferenceable.rb
    381 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/obligation.rb
    382 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/logger.rb
    383 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/logging.rb
    384 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/deprecation.rb
    385 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/executor_service.rb
    386 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/abstract_executor_service.rb
    387 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/serial_executor_service.rb
    388 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/immediate_executor.rb
    389 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/delay.rb
    390 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic_reference/numeric_cas_wrapper.rb
    391 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic_reference/mutex_atomic.rb
    392 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_reference.rb
    393 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/ruby_executor_service.rb
    394 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/monotonic_time.rb
    395 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/ruby_thread_pool_executor.rb
    396 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/thread_pool_executor.rb
    397 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/cached_thread_pool.rb
    398 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/processor_counter.rb
    399 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/configuration.rb
    400 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_boolean.rb
    401 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_boolean.rb
    402 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/utility/native_integer.rb
    403 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_atomic_fixnum.rb
    404 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_fixnum.rb
    405 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/cyclic_barrier.rb
    406 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_count_down_latch.rb
    407 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/java_count_down_latch.rb
    408 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/count_down_latch.rb
    409 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/read_write_lock.rb
    410 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/abstract_thread_local_var.rb
    411 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/ruby_thread_local_var.rb
    412 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/java_thread_local_var.rb
    413 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/thread_local_var.rb
    414 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/reentrant_read_write_lock.rb
    415 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/mutex_semaphore.rb
    416 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/semaphore.rb
    417 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomics.rb
    418 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/fixed_thread_pool.rb
    419 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/simple_executor_service.rb
    420 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/indirect_immediate_executor.rb
    421 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb
    422 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/java_single_thread_executor.rb
    423 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/java_thread_pool_executor.rb
    424 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/ruby_single_thread_executor.rb
    425 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/safe_task_executor.rb
    426 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/serialized_execution.rb
    427 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/serialized_execution_delegator.rb
    428 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/single_thread_executor.rb
    429 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/copy_on_write_observer_set.rb
    430 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/copy_on_notify_observer_set.rb
    431 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/concern/observable.rb
    432 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/ivar.rb
    433 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/options.rb
    434 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/scheduled_task.rb
    435 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/java_non_concurrent_priority_queue.rb
    436 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/ruby_non_concurrent_priority_queue.rb
    437 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/non_concurrent_priority_queue.rb
    438 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executor/timer_set.rb
    439 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/executors.rb
    440 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atomic/atomic_markable_reference.rb
    441 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/agent.rb
    442 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/atom.rb
    443 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/array.rb
    444 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/util/data_structures.rb
    445 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/set.rb
    446 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/tuple.rb
    447 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/async.rb
    448 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/future.rb
    449 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/dataflow.rb
    450 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/maybe.rb
    451 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/exchanger.rb
    452 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/synchronization/abstract_struct.rb
    453 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/immutable_struct.rb
    454 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/mutable_struct.rb
    455 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/mvar.rb
    456 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/promise.rb
    457 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/settable_struct.rb
    458 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/timer_task.rb
    459 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/tvar.rb
    460 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/collection/lock_free_stack.rb
    461 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/re_include.rb
    462 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/promises.rb
    463 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent/thread_safe/synchronized_delegator.rb
    464 /Library/Ruby/Gems/2.6.0/gems/concurrent-ruby-1.1.9/lib/concurrent-ruby/concurrent.rb
    465 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/cdn_source.rb
    466 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/trunk_source.rb
    467 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sources_manager.rb
    468 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/core_overrides.rb
    469 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods.rb
    470 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/delegates/specification_provider.rb
    471 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/errors.rb
    472 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/options/repo_update.rb
    473 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/options/project_directory.rb
    474 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/cache/list.rb
    475 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/cache/clean.rb
    476 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/cache.rb
    477 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/env.rb
    478 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/init.rb
    479 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/install.rb
    480 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc/list.rb
    481 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc/podfile.rb
    482 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc/podfile_json.rb
    483 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc/repl.rb
    484 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc/spec.rb
    485 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc/update_search_index.rb
    486 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/ipc.rb
    487 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/lib/create.rb
    488 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/lib/lint.rb
    489 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/lib.rb
    490 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/list.rb
    491 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/outdated.rb
    492 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/add.rb
    493 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/add_cdn.rb
    494 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/lint.rb
    495 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/list.rb
    496 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/tempfile.rb
    497 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/push.rb
    498 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/remove.rb
    499 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo/update.rb
    500 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/repo.rb
    501 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/setup.rb
    502 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/spec/create.rb
    503 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/spec/lint.rb
    504 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/spec/which.rb
    505 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/spec/cat.rb
    506 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/spec/edit.rb
    507 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/spec.rb
    508 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/update.rb
    509 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command.rb
    510 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/open3.rb
    511 /Library/Ruby/Gems/2.6.0/gems/cocoapods-deintegrate-1.0.4/lib/cocoapods/deintegrate/gem_version.rb
    512 /Library/Ruby/Gems/2.6.0/gems/cocoapods-deintegrate-1.0.4/lib/cocoapods/deintegrator.rb
    513 /Library/Ruby/Gems/2.6.0/gems/cocoapods-deintegrate-1.0.4/lib/cocoapods_deintegrate.rb
    514 /Library/Ruby/Gems/2.6.0/gems/cocoapods-deintegrate-1.0.4/lib/cocoapods/command/deintegrate.rb
    515 /Library/Ruby/Gems/2.6.0/gems/cocoapods-deintegrate-1.0.4/lib/cocoapods_plugin.rb
    516 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/gem_index_cache.rb
    517 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/gem_helper.rb
    518 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins_helper.rb
    519 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins/list.rb
    520 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins/search.rb
    521 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins/create.rb
    522 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins/publish.rb
    523 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins/installed.rb
    524 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/pod/command/plugins.rb
    525 /Library/Ruby/Gems/2.6.0/gems/cocoapods-plugins-1.0.0/lib/cocoapods_plugin.rb
    526 /Library/Ruby/Gems/2.6.0/gems/cocoapods-search-1.0.0/lib/cocoapods-search/command/search.rb
    527 /Library/Ruby/Gems/2.6.0/gems/cocoapods-search-1.0.0/lib/cocoapods-search/command.rb
    528 /Library/Ruby/Gems/2.6.0/gems/cocoapods-search-1.0.0/lib/cocoapods_plugin.rb
    529 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/add_owner.rb
    530 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/delete.rb
    531 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/deprecate.rb
    532 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/info.rb
    533 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/me.rb
    534 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/push.rb
    535 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/register.rb
    536 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk/remove_owner.rb
    537 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/pod/command/trunk.rb
    538 /Library/Ruby/Gems/2.6.0/gems/cocoapods-trunk-1.5.0/lib/cocoapods_plugin.rb
    539 /Library/Ruby/Gems/2.6.0/gems/cocoapods-try-1.2.0/lib/pod/try_settings.rb
    540 /Library/Ruby/Gems/2.6.0/gems/cocoapods-try-1.2.0/lib/pod/command/try.rb
    541 /Library/Ruby/Gems/2.6.0/gems/cocoapods-try-1.2.0/lib/cocoapods_plugin.rb
    542 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/podfile/dsl.rb
    543 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/podfile/target_definition.rb
    544 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/podfile.rb
    545 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/build_type.rb
    546 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/podfile.rb
    547 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb
    548 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sandbox.rb
    549 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/sandbox/headers_store.rb
    550 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/lockfile.rb
    551 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/yaml_helper.rb
    552 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/enc/utf_16le.bundle
    553 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/enc/utf_16be.bundle
    554 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/version.rb
    555 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/pre_install_hooks_context.rb
    556 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/hooks_manager.rb
    557 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/source_provider_hooks_context.rb
    558 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb
    559 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/installation_options.rb
    560 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer/podfile_dependency_cache.rb
    561 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/dependency.rb
    562 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/requirement.rb
    563 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/podfile_validator.rb
    564 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer/target_inspector.rb
    565 /Library/Ruby/Gems/2.6.0/gems/atomos-0.1.3/lib/atomos/version.rb
    566 /Library/Ruby/Gems/2.6.0/gems/atomos-0.1.3/lib/atomos.rb
    567 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/case_converter.rb
    568 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object_attributes.rb
    569 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object_dictionary.rb
    570 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object_list.rb
    571 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/constants.rb
    572 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/swift_package_remote_reference.rb
    573 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/swift_package_product_dependency.rb
    574 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/helpers/build_settings_array_settings_by_object_version.rb
    575 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/build_configuration.rb
    576 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/build_file.rb
    577 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/build_phase.rb
    578 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/build_rule.rb
    579 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/configuration_list.rb
    580 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/container_item_proxy.rb
    581 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/helpers/groupable_helper.rb
    582 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/file_reference.rb
    583 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/helpers/file_references_factory.rb
    584 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/group.rb
    585 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/native_target.rb
    586 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/root_object.rb
    587 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/target_dependency.rb
    588 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object/reference_proxy.rb
    589 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/object.rb
    590 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/project_helper.rb
    591 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project/uuid_generator.rb
    592 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/plist.rb
    593 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/project.rb
    594 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/version.rb
    595 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/object.rb
    596 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/plist.rb
    597 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/reader.rb
    598 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/unicode/next_step_mapping.rb
    599 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/unicode/quote_maps.rb
    600 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/unicode.rb
    601 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo/writer.rb
    602 /Library/Ruby/Gems/2.6.0/gems/nanaimo-0.3.0/lib/nanaimo.rb
    603 /Library/Ruby/Gems/2.6.0/gems/cocoapods-core-1.10.1/lib/cocoapods-core/platform.rb
    604 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/config/other_linker_flags_parser.rb
    605 /Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.20.0/lib/xcodeproj/config.rb
    606 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer/target_inspection_result.rb
    607 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer/specs_state.rb
    608 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/action.rb
    609 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/add_edge_no_circular.rb
    610 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/add_vertex.rb
    611 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/delete_edge.rb
    612 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/detach_vertex_named.rb
    613 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/set_payload.rb
    614 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/tag.rb
    615 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/log.rb
    616 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph/vertex.rb
    617 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/dependency_graph.rb
    618 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer/locking_dependency_analyzer.rb
    619 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/compatibility.rb
    620 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/gem_metadata.rb
    621 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/state.rb
    622 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/modules/specification_provider.rb
    623 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/delegates/resolution_state.rb
    624 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/resolution.rb
    625 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/resolver.rb
    626 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo/modules/ui.rb
    627 /Library/Ruby/Gems/2.6.0/gems/molinillo-0.6.6/lib/molinillo.rb
    628 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/resolver/lazy_specification.rb
    629 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/resolver/resolver_specification.rb
    630 /Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/resolver.rb
    631 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/digest/sha2.bundle
    632 /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/digest/sha2.rb
    633 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi_c.bundle
    634 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/platform.rb
    635 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/data_converter.rb
    636 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/types.rb
    637 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/library.rb
    638 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/errno.rb
    639 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/abstract_memory.rb
    640 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/pointer.rb
    641 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/memorypointer.rb
    642 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/struct_layout.rb
    643 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/struct_layout_builder.rb
    644 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/struct_by_reference.rb
    645 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/struct.rb
    646 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/union.rb
    647 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/managedstruct.rb
    648 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/callback.rb
    649 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/io.rb
    650 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/autopointer.rb
    651 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/variadic.rb
    652 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/enum.rb
    653 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/version.rb
    654 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/ffi.rb
    655 /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi.rb

[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: https://www.ruby-lang.org/bugreport.html

[IMPORTANT]
Don't forget to include the Crash Report log file under
DiagnosticReports directory in bug reports.

@badsyntax
Copy link

I can also confirm running gem install --user-install ffi -- --enable-libffi-alloc fixes this for me.

@bighi
Copy link

bighi commented Jul 28, 2021

The above line of code didn't fix it for me. I'm using Ruby 2.6.6 on an M1 Macbook Air.

Edit:
Tried with ruby 2.6.7, and had the same problem.

@filipp-g
Copy link

filipp-g commented Jul 31, 2021

Another confirmation that command gem install --user-install ffi -- --enable-libffi-alloc fixed my pod install on M1 MacBook Air

System Ruby version ruby 2.6.3p62 (2019-04-16 revision 67580) [universal.arm64e-darwin20]

@0xf
Copy link

0xf commented Aug 6, 2021

gem install --user-install ffi -- --enable-libffi-alloc fixed my pod install on M1 MacBook Air.

Ruby version:
ruby 2.6.3p62 (2019-04-16 revision 67580) [universal.arm64e-darwin20]

@ThePredators
Copy link

ThePredators commented Aug 30, 2021

i fixed the issue using this steps :

be sure to have this in .zshrc or .bashrc

alias pod="arch -x86_64 pod"
alias brew="arch -arm64 brew"
alias gem="arch -x86_64 sudo gem"
  1. Install and configure rbenv
brew install rbenv

then

## add this 2 line to .zshrc or .bashrc
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
  1. install ruby version 2.7.4
rbenv install 2.7.4
  1. run this commands
rbenv global 2.7.4
gem install bundler:2.2.19 -n /usr/local/bin
gem install --user-install ffi -- --enable-libffi-alloc
  1. under you project run this
rbenv local 2.7.4
bundle install --path vendor/bundle

This fixed the issue for me ! macOS BigSure 11.4 M1 Ship

@rogan-chen
Copy link

Thanks @andrewferk.

I tried the following and it worked:

gem install --user-install ffi -- --enable-libffi-alloc

It works!!!!!!!!!

@septe01
Copy link

septe01 commented Oct 23, 2021

Thanks @andrewferk.

I tried the following and it worked:

gem install --user-install ffi -- --enable-libffi-alloc

Before run this i have error:

Report

  • What did you do?

  • What did you expect to happen?

  • What happened instead?

Stack

   CocoaPods : 1.11.0
        Ruby : ruby 2.6.3p62 (2019-04-16 revision 67580) [universal.arm64e-darwin20]
    RubyGems : 3.0.3
        Host : macOS 11.6 (20G165)
       Xcode : 12.5.1 (12E507)
         Git : git version 2.30.1 (Apple Git-130)
Ruby lib dir : /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib
Repositories : trunk - CDN - https://cdn.cocoapods.org/

Plugins

cocoapods-deintegrate : 1.0.5
cocoapods-plugins     : 1.0.0
cocoapods-search      : 1.0.1
cocoapods-trunk       : 1.6.0
cocoapods-try         : 1.2.0

Podfile

require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

platform :ios, '11.0'

target 'pendekin' do
  config = use_native_modules!

  use_react_native!(
    :path => config[:reactNativePath],
    # to enable hermes on iOS, change `false` to `true` and then install pods
    :hermes_enabled => false
  )

  pod 'react-native-cameraroll', :path => '../node_modules/@react-native-community/cameraroll'

  # add manual for rn vector icon
  pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'

  target 'pendekinTests' do
    inherit! :complete
    # Pods for testing
  end

  # Enables Flipper.
  #
  # Note that if you have use_frameworks! enabled, Flipper will not work and
  # you should disable the next line.
  use_flipper!()

  post_install do |installer|
    react_native_post_install(installer)
    __apply_Xcode_12_5_M1_post_install_workaround(installer)
  end
end

Error

LoadError - dlopen(/Library/Ruby/Gems/2.6.0/gems/ffi-1.15.4/lib/ffi_c.bundle, 0x0009): could not use '/Library/Ruby/Gems/2.6.0/gems/ffi-1.15.4/lib/ffi_c.bundle' because it is not a compatible arch - /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.4/lib/ffi_c.bundle

After run this gem install --user-install ffi -- --enable-libffi-alloc
my issue is solve.. thx u verry much Sir.

@gnitnuj
Copy link

gnitnuj commented Jan 15, 2022

So I encountered this issue with RSpec and updating the gems did it for me:

  • gem 'ffi', '1.15.5'
  • gem 'ethon', '0.15.0'
  • the typhoeus gem was already the latest for me

As far as I know the maintainers for ffi and ethon made the necessary updates to support these new M1 ARM processors.

FWIW I also installed ffi with this command LDFLAGS="-L/opt/homebrew/opt/libffi/lib" CPPFLAGS="-I/opt/homebrew/opt/libffi/include" PKG_CONFIG_PATH="/opt/homebrew/opt/libffi/lib/pkgconfig" gem install ffi:1.15.5 -- --enable-system-libffi

and used homebrew to install/update cocoapods & libffi while I was debugging this issue, amongst some other things. In hindsight, I don't know why I didn't just start by updating the gems...

@jpike88
Copy link

jpike88 commented Jan 19, 2022

gem install --user-install ffi -- --enable-libffi-alloc

On M1 Max, macOS Monterey. This worked too.

@tcurdt
Copy link

tcurdt commented Jan 20, 2022

How does one do (the equivalent of) gem install --user-install ffi -- --enable-libffi-alloc with bundler?

@tcurdt
Copy link

tcurdt commented Jan 20, 2022

To answer my own question: Use bundle config build.ffi --enable-libffi-alloc before bundle install

@rromanchuk
Copy link

Just a heads up, also getting this on aws Graviton2 arm64

/home/ubuntu/.rbenv/versions/3.1.0/lib/ruby/gems/3.1.0/gems/ffi-1.15.5/lib/ffi/library.rb:275: [BUG] Segmentation fault at 0x0000ffff00000020
ruby 3.1.0p0 (2021-12-25 revision fb4df44d16) [aarch64-linux]

@sodiqyekeen
Copy link

Running gem install --user-install ffi -- --enable-libffi-alloc fixed my issue (Mac pro -M1 Pro)

@Werror
Copy link

Werror commented Feb 16, 2022

Just FYI, for those who needs to install gem in specific location, instead of using --user-install you can use the following
gem install --install-dir <path_to_ruby_dir> ffi -- --enable-libffi-alloc
<path_to_ruby_dir> is usually the path pointed to your Ruby version folder e.g. <path>/ruby/2.6.0

@puneetpandey
Copy link

puneetpandey commented Mar 16, 2022

I can also confirm that I can start server after running gem install --user-install ffi -- --enable-libffi-alloc and bundle update ffi - worked for me

@hasibulHossain
Copy link

gem install --user-install ffi -- --enable-libffi-alloc fixed my pod install on M1 MacBook Air.

Ruby version: ruby 2.6.3p62 (2019-04-16 revision 67580) [universal.arm64e-darwin20]

Thank you it worked for me. MacBook air m1, Monterey 12.3

@nathanweeks
Copy link

I'm not seeing this issue anymore with ffi 1.15.5 (macOS 12.6 on M1; default system Ruby 2.6)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests