mysql2
mysql2 copied to clipboard
Unknown MySQL error: BEGIN, undefined method `rows'
I use mariadb locally, mysql on staging/production. I've been having trouble debugging this problem for quite awhile because it's not consistent. However, while trying to upgrade Ruby to 2.5 and this gem to 0.5.1, I noticed the problem happens every time. When using v0.4.10 of this gem, it happens randomly.
Basically when running tests, somewhere down the line, one test will have this unknown error, then rest subsequently will have the undefined method rows error. When using 0.5.1 version of this gem, it happens every time.
MariaDB 10.3.7, but I've had the errors on past versions mysql2 0.4.11, 0.5.1
Here is the full error from my system:
Failure/Error: _query(sql, @query_options.merge(options))
ActiveRecord::StatementInvalid:
Mysql2::Error: Unknown MySQL error: BEGIN
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/mysql2-0.5.1/lib/mysql2/client.rb:131:in `_query'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/mysql2-0.5.1/lib/mysql2/client.rb:131:in `block in query'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/mysql2-0.5.1/lib/mysql2/client.rb:130:in `handle_interrupt'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/mysql2-0.5.1/lib/mysql2/client.rb:130:in `query'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_mysql_adapter.rb:214:in `block (2 levels) in execute'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activesupport-5.1.6/lib/active_support/dependencies/interlock.rb:46:in `block in permit_concurrent_loads'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activesupport-5.1.6/lib/active_support/concurrency/share_lock.rb:185:in `yield_shares'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activesupport-5.1.6/lib/active_support/dependencies/interlock.rb:45:in `permit_concurrent_loads'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_mysql_adapter.rb:213:in `block in execute'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_adapter.rb:613:in `block (2 levels) in log'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/2.5.0/monitor.rb:226:in `mon_synchronize'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_adapter.rb:612:in `block in log'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activesupport-5.1.6/lib/active_support/notifications/instrumenter.rb:21:in `instrument'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_adapter.rb:604:in `log'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_mysql_adapter.rb:212:in `execute'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/mysql/database_statements.rb:26:in `execute'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_mysql_adapter.rb:227:in `begin_db_transaction'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/transaction.rb:130:in `initialize'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/transaction.rb:156:in `new'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/transaction.rb:156:in `block in begin_transaction'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/2.5.0/monitor.rb:226:in `mon_synchronize'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/transaction.rb:152:in `begin_transaction'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/database_statements.rb:243:in `begin_transaction'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/fixtures.rb:972:in `block in setup_fixtures'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/fixtures.rb:971:in `each'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/fixtures.rb:971:in `setup_fixtures'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/activerecord-5.1.6/lib/active_record/fixtures.rb:851:in `before_setup'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-rails-3.7.2/lib/rspec/rails/adapters.rb:126:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:447:in `instance_exec'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:447:in `instance_exec'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/hooks.rb:375:in `execute_with'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/hooks.rb:608:in `block (2 levels) in run_around_example_hooks_for'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:342:in `call'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/hooks.rb:609:in `run_around_example_hooks_for'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/hooks.rb:466:in `run'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:457:in `with_around_example_hooks'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:251:in `run'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:628:in `block in run_examples'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:624:in `map'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:624:in `run_examples'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:590:in `run'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:591:in `block in run'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:591:in `map'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:591:in `run'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:591:in `block in run'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:591:in `map'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:591:in `run'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:591:in `block in run'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:591:in `map'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:591:in `run'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:118:in `map'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/configuration.rb:1926:in `with_suite_hooks'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:113:in `block in run_specs'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/reporter.rb:79:in `report'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:112:in `run_specs'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:87:in `run'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:71:in `run'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:45:in `invoke'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/rspec-core-3.7.1/exe/rspec:4:in `<top (required)>'
# /Users/dsandstrom/.rbenv/versions/2.5.1/bin/rspec:23:in `load'
# /Users/dsandstrom/.rbenv/versions/2.5.1/bin/rspec:23:in `<top (required)>'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/bundler-1.16.2/lib/bundler/cli/exec.rb:74:in `load'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/bundler-1.16.2/lib/bundler/cli/exec.rb:74:in `kernel_load'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/bundler-1.16.2/lib/bundler/cli/exec.rb:28:in `run'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/bundler-1.16.2/lib/bundler/cli.rb:424:in `exec'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/bundler-1.16.2/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/bundler-1.16.2/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/bundler-1.16.2/lib/bundler/vendor/thor/lib/thor.rb:387:in `dispatch'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/bundler-1.16.2/lib/bundler/cli.rb:27:in `dispatch'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/bundler-1.16.2/lib/bundler/vendor/thor/lib/thor/base.rb:466:in `start'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/bundler-1.16.2/lib/bundler/cli.rb:18:in `start'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/bundler-1.16.2/exe/bundle:30:in `block in <top (required)>'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/bundler-1.16.2/lib/bundler/friendly_errors.rb:124:in `with_friendly_errors'
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/bundler-1.16.2/exe/bundle:22:in `<top (required)>'
# /Users/dsandstrom/.rbenv/versions/2.5.1/bin/bundle:23:in `load'
# /Users/dsandstrom/.rbenv/versions/2.5.1/bin/bundle:23:in `<main>'
#
# Showing full backtrace because every line was filtered out.
# See docs for RSpec::Configuration#backtrace_exclusion_patterns and
# RSpec::Configuration#backtrace_inclusion_patterns for more information.
# ------------------
# --- Caused by: ---
# Mysql2::Error:
# Unknown MySQL error
# /Users/dsandstrom/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/mysql2-0.5.1/lib/mysql2/client.rb:131:in `_query'
2) CustomFieldValuesController POST #create for a admin with valid params creates a new CustomFieldValue
Failure/Error: before { login create(admin_type) }
NoMethodError:
undefined method `rows' for nil:NilClass
# ./spec/controllers/custom_field_values_controller_spec.rb:150:in `block (5 levels) in <top (required)>'
Any idea how to debug?
Here's a crash report, not sure if helpful:
Failure/Error: _query(sql, @query_options.merge(options))
ActiveRecord::StatementInvalid:
Mysql2::Error: : BEGIN
# -e:1:in `<main>'
# ------------------
# --- Caused by: ---
# Mysql2::Error:
# -e:1:in `<main>'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/mysql2-0.5.1/lib/mysql2/client.rb:131: [BUG] Segmentation fault at 0x0000000000000000
ruby 2.4.3p205 (2017-12-14 revision 61247) [x86_64-darwin17]
-- 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:0070 p:---- s:0367 e:000366 CFUNC :_query
c:0069 p:0018 s:0361 e:000360 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/mysql2-0.5.1/lib/mysql2/client.rb:131 [FINISH]
c:0068 p:---- s:0358 e:000357 CFUNC :handle_interrupt
c:0067 p:0037 s:0353 e:000352 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/mysql2-0.5.1/lib/mysql2/client.rb:130
c:0066 p:0013 s:0347 e:000346 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstr
c:0065 p:0006 s:0344 e:000343 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/dependencies/interlock.
c:0064 p:0033 s:0341 e:000340 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/concurrency/share_lock.
c:0063 p:0013 s:0331 e:000330 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/dependencies/interlock.
c:0062 p:0020 s:0327 e:000326 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstr
c:0061 p:0006 s:0324 e:000323 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstr
c:0060 p:0015 s:0321 e:000320 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/monitor.rb:214
c:0059 p:0011 s:0317 e:000316 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstr
c:0058 p:0028 s:0314 e:000313 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/notifications/instrumen
c:0057 p:0042 s:0306 e:000305 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstr
c:0056 p:0016 s:0296 e:000295 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstr
c:0055 p:0043 s:0290 e:000289 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/mysql
c:0054 p:0010 s:0284 e:000283 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstr
c:0053 p:0051 s:0280 e:000279 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstr [FINISH]
c:0052 p:---- s:0273 e:000272 CFUNC :new
c:0051 p:0045 s:0266 e:000265 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstr
c:0050 p:0015 s:0261 e:000260 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/monitor.rb:214
c:0049 p:0018 s:0257 e:000256 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstr
c:0048 p:0022 s:0252 e:000251 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstr
c:0047 p:0011 s:0244 e:000243 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/fixtures.rb:972 [FINISH]
c:0046 p:---- s:0240 e:000239 CFUNC :each
c:0045 p:0168 s:0236 e:000235 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/fixtures.rb:971
c:0044 p:0008 s:0231 e:000230 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/fixtures.rb:851
c:0043 p:0008 s:0227 e:000226 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-rails-3.7.2/lib/rspec/rails/adapters.rb:126 [FINISH]
c:0042 p:---- s:0223 e:000222 CFUNC :instance_exec
c:0041 p:0017 s:0218 e:000217 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:447
c:0040 p:0016 s:0212 e:000211 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/hooks.rb:375
c:0039 p:0014 s:0206 e:000205 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/hooks.rb:608 [FINISH]
c:0038 p:0024 s:0203 e:000202 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:342
c:0037 p:0069 s:0197 E:001698 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/hooks.rb:609
c:0036 p:0143 s:0190 E:000698 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/hooks.rb:466
c:0035 p:0017 s:0183 E:001698 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:457
c:0034 p:0032 s:0178 E:0010d8 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:500
c:0033 p:0140 s:0173 E:000f38 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:251
c:0032 p:0061 s:0166 e:000165 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:628 [FINISH]
c:0031 p:---- s:0160 e:000159 CFUNC :map
c:0030 p:0019 s:0156 e:000155 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:624
c:0029 p:0087 s:0151 e:000150 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:590
c:0028 p:0012 s:0142 e:000141 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:118 [FINISH]
c:0027 p:---- s:0138 e:000137 CFUNC :map
c:0026 p:0041 s:0134 e:000133 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:118
c:0025 p:0035 s:0131 e:000130 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/configuration.rb:1926
c:0024 p:0011 s:0127 e:000126 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:113
c:0023 p:0018 s:0123 e:000122 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/reporter.rb:79
c:0022 p:0028 s:0118 e:000117 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:112
c:0021 p:0025 s:0111 e:000110 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:87
c:0020 p:0085 s:0105 e:000104 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:71
c:0019 p:0026 s:0097 e:000096 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:45
c:0018 p:0025 s:0092 e:000091 TOP /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/exe/rspec:4 [FINISH]
c:0017 p:---- s:0089 e:000088 CFUNC :load
c:0016 p:0014 s:0083 e:000082 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/dependencies.rb:286
c:0015 p:0057 s:0080 e:000079 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/dependencies.rb:258
c:0014 p:0021 s:0074 e:000073 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/dependencies.rb:286
c:0013 p:0101 s:0067 e:000066 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-commands-rspec-1.0.4/lib/spring/commands/rspec.rb:18
c:0012 p:0024 s:0063 e:000062 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/command_wrapper.rb:38
c:0011 p:0204 s:0059 e:000058 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/application.rb:201 [FINISH]
c:0010 p:---- s:0056 e:000055 CFUNC :fork
c:0009 p:0272 s:0052 e:000051 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/application.rb:171
c:0008 p:0075 s:0038 e:000037 BLOCK /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/application.rb:141 [FINISH]
c:0007 p:---- s:0035 e:000034 CFUNC :loop
c:0006 p:0028 s:0031 e:000030 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/application.rb:135
c:0005 p:0167 s:0027 E:002258 TOP /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/application/boot.rb:19 [FINISH]
c:0004 p:---- s:0023 e:000022 CFUNC :require
c:0003 p:0132 s:0018 e:000017 METHOD /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb:55
c:0002 p:0008 s:0006 e:000005 EVAL -e:1 [FINISH]
c:0001 p:0000 s:0003 E:0007c0 (none) [FINISH]
-- Ruby level backtrace information ----------------------------------------
-e:1:in `<main>'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb:55:in `require'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb:55:in `require'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/application/boot.rb:19:in `<top (required)>'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/application.rb:135:in `run'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/application.rb:135:in `loop'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/application.rb:141:in `block in run'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/application.rb:171:in `serve'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/application.rb:171:in `fork'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/application.rb:201:in `block in serve'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/command_wrapper.rb:38:in `call'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-commands-rspec-1.0.4/lib/spring/commands/rspec.rb:18:in `call'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/dependencies.rb:286:in `load'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/dependencies.rb:258:in `load_dependency'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/dependencies.rb:286:in `block in load'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/dependencies.rb:286:in `load'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/exe/rspec:4:in `<top (required)>'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:45:in `invoke'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:71:in `run'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:87:in `run'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:112:in `run_specs'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/reporter.rb:79:in `report'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:113:in `block in run_specs'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/configuration.rb:1926:in `with_suite_hooks'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:118:in `map'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:590:in `run'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:624:in `run_examples'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:624:in `map'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example_group.rb:628:in `block in run_examples'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:251:in `run'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:457:in `with_around_example_hooks'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/hooks.rb:466:in `run'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/hooks.rb:609:in `run_around_example_hooks_for'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:342:in `call'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/hooks.rb:608:in `block (2 levels) in run_around_example_hooks_for'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/hooks.rb:375:in `execute_with'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:447:in `instance_exec'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-core-3.7.1/lib/rspec/core/example.rb:447:in `instance_exec'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rspec-rails-3.7.2/lib/rspec/rails/adapters.rb:126:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/fixtures.rb:851:in `before_setup'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/fixtures.rb:971:in `setup_fixtures'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/fixtures.rb:971:in `each'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/fixtures.rb:972:in `block in setup_fixtures'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/database_statements.rb:243:in `begin_transaction'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/transaction.rb:152:in `begin_transaction'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/monitor.rb:214:in `mon_synchronize'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/transaction.rb:156:in `block in begin_transaction'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/transaction.rb:156:in `new'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/transaction.rb:130:in `initialize'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_mysql_adapter.rb:227:in `begin_db_transaction'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/mysql/database_statements.rb:26:in `execute'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_mysql_adapter.rb:212:in `execute'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_adapter.rb:604:in `log'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/notifications/instrumenter.rb:21:in `instrument'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_adapter.rb:612:in `block in log'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/monitor.rb:214:in `mon_synchronize'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_adapter.rb:613:in `block (2 levels) in log'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_mysql_adapter.rb:213:in `block in execute'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/dependencies/interlock.rb:45:in `permit_concurrent_loads'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/concurrency/share_lock.rb:185:in `yield_shares'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/dependencies/interlock.rb:46:in `block in permit_concurrent_loads'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_mysql_adapter.rb:214:in `block (2 levels) in execute'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/mysql2-0.5.1/lib/mysql2/client.rb:130:in `query'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/mysql2-0.5.1/lib/mysql2/client.rb:130:in `handle_interrupt'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/mysql2-0.5.1/lib/mysql2/client.rb:131:in `block in query'
/Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/mysql2-0.5.1/lib/mysql2/client.rb:131:in `_query'
-- Machine register context ------------------------------------------------
rax: 0x00007fa58f462030 rbx: 0x00007fa59e687100 rcx: 0x0000000000000048
rdx: 0x0000000070b9df60 rdi: 0x00007fa58f284148 rsi: 0x0000000000000000
rbp: 0x00007ffee161b9d0 rsp: 0x00007ffee161b980 r8: 0x0000000000000004
r9: 0x0000000000001400 r10: 0x0000000000000000 r11: 0xffffffffffe220a9
r12: 0x000000010f7366b0 r13: 0x00007fa58f284018 r14: 0x00007fa58f462018
r15: 0x0000000000000005 rip: 0x000000010f718adc rfl: 0x0000000000010297
-- C level backtrace information -------------------------------------------
0 ruby 0x000000010e7a8757 rb_vm_bugreport + 135
1 ruby 0x000000010e6426d8 rb_bug_context + 472
2 ruby 0x000000010e722f78 sigsegv + 72
3 libsystem_platform.dylib 0x00007fff7192af5a _sigtramp + 26
4 libmariadb.3.dylib 0x000000010f718adc unpack_fields + 116
5 libmariadb.3.dylib 0x000000010f71b2e2 mthd_my_read_query_result + 1274
6 libmariadb.3.dylib 0x000000010f71b4dd mysql_read_query_result + 14
7 mysql2.bundle 0x000000010f700c79 nogvl_read_query_result + 9
8 ruby 0x000000010e75995e rb_thread_call_without_gvl + 78
9 mysql2.bundle 0x000000010f6ff896 rb_mysql_client_async_result + 102
10 ruby 0x000000010e64c624 rb_ensure + 164
11 mysql2.bundle 0x000000010f700a10 rb_mysql_query + 400
12 ruby 0x000000010e79c380 vm_call_cfunc + 272
13 ruby 0x000000010e786b08 vm_exec_core + 11848
14 ruby 0x000000010e797094 vm_exec + 116
15 ruby 0x000000010e7a3cbf invoke_block_from_c_splattable + 495
16 ruby 0x000000010e7921ae rb_yield + 158
17 ruby 0x000000010e75e470 rb_thread_s_handle_interrupt + 288
18 ruby 0x000000010e79c380 vm_call_cfunc + 272
19 ruby 0x000000010e786336 vm_exec_core + 9846
20 ruby 0x000000010e797094 vm_exec + 116
21 ruby 0x000000010e7a39dd rb_call0 + 205
22 ruby 0x000000010e6ab959 rb_class_new_instance + 41
23 ruby 0x000000010e79c380 vm_call_cfunc + 272
24 ruby 0x000000010e786b08 vm_exec_core + 11848
25 ruby 0x000000010e797094 vm_exec + 116
26 ruby 0x000000010e7a3cbf invoke_block_from_c_splattable + 495
27 ruby 0x000000010e7921ae rb_yield + 158
28 ruby 0x000000010e5e05c9 rb_ary_each + 41
29 ruby 0x000000010e79c380 vm_call_cfunc + 272
30 ruby 0x000000010e786336 vm_exec_core + 9846
31 ruby 0x000000010e797094 vm_exec + 116
32 ruby 0x000000010e7a3cbf invoke_block_from_c_splattable + 495
33 ruby 0x000000010e793a31 yield_under + 961
34 ruby 0x000000010e79c380 vm_call_cfunc + 272
35 ruby 0x000000010e786336 vm_exec_core + 9846
36 ruby 0x000000010e797094 vm_exec + 116
37 ruby 0x000000010e79593b vm_invoke_proc + 267
38 ruby 0x000000010e79d80f vm_call_opt_call + 159
39 ruby 0x000000010e786336 vm_exec_core + 9846
40 ruby 0x000000010e797094 vm_exec + 116
41 ruby 0x000000010e7a3cbf invoke_block_from_c_splattable + 495
42 ruby 0x000000010e7921ae rb_yield + 158
43 ruby 0x000000010e5e5d77 rb_ary_collect + 247
44 ruby 0x000000010e79c380 vm_call_cfunc + 272
45 ruby 0x000000010e786336 vm_exec_core + 9846
46 ruby 0x000000010e797094 vm_exec + 116
47 ruby 0x000000010e7a3cbf invoke_block_from_c_splattable + 495
48 ruby 0x000000010e7921ae rb_yield + 158
49 ruby 0x000000010e5e5d77 rb_ary_collect + 247
50 ruby 0x000000010e79c380 vm_call_cfunc + 272
51 ruby 0x000000010e786336 vm_exec_core + 9846
52 ruby 0x000000010e797094 vm_exec + 116
53 ruby 0x000000010e68e283 rb_load_internal0 + 291
54 ruby 0x000000010e68f10a rb_f_load + 170
55 ruby 0x000000010e79c380 vm_call_cfunc + 272
56 ruby 0x000000010e786d8f vm_exec_core + 12495
57 ruby 0x000000010e797094 vm_exec + 116
58 ruby 0x000000010e7a3cbf invoke_block_from_c_splattable + 495
59 ruby 0x000000010e7921ae rb_yield + 158
60 ruby 0x000000010e64c4fa rb_protect + 250
61 ruby 0x000000010e6dc1fb rb_f_fork + 91
62 ruby 0x000000010e79c380 vm_call_cfunc + 272
63 ruby 0x000000010e786336 vm_exec_core + 9846
64 ruby 0x000000010e797094 vm_exec + 116
65 ruby 0x000000010e7a3cbf invoke_block_from_c_splattable + 495
66 ruby 0x000000010e7a4c93 loop_i + 35
67 ruby 0x000000010e64c2c3 rb_rescue2 + 275
68 ruby 0x000000010e79c380 vm_call_cfunc + 272
69 ruby 0x000000010e786336 vm_exec_core + 9846
70 ruby 0x000000010e797094 vm_exec + 116
71 ruby 0x000000010e68e283 rb_load_internal0 + 291
72 ruby 0x000000010e68eb09 rb_require_internal + 1705
73 ruby 0x000000010e68e308 rb_f_require + 24
74 ruby 0x000000010e79c380 vm_call_cfunc + 272
75 ruby 0x000000010e786b08 vm_exec_core + 11848
76 ruby 0x000000010e797094 vm_exec + 116
77 ruby 0x000000010e64b55a ruby_exec_internal + 138
78 ruby 0x000000010e64b478 ruby_run_node + 56
79 ruby 0x000000010e5ddbaf main + 79
-- Other runtime information -----------------------------------------------
* Loaded script: rspec
* Loaded features:
0 enumerator.so
1 thread.rb
2 rational.so
3 complex.so
4 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/enc/encdb.bundle
5 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/enc/trans/transdb.bundle
6 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/unicode_normalize.rb
7 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/rbconfig.rb
8 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/compatibility.rb
9 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/defaults.rb
10 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/deprecate.rb
11 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/errors.rb
12 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/version.rb
13 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/requirement.rb
14 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/platform.rb
15 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/basic_specification.rb
16 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/stub_specification.rb
17 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/util/list.rb
18 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/stringio.bundle
19 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/specification.rb
20 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/exceptions.rb
21 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/dependency.rb
22 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/core_ext/kernel_gem.rb
23 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/monitor.rb
24 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb
25 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems.rb
26 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/path_support.rb
27 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/did_you_mean-1.1.0/lib/did_you_mean/version.rb
28 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/did_you_mean-1.1.0/lib/did_you_mean/core_ext/name_error.rb
29 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/did_you_mean-1.1.0/lib/did_you_mean/levenshtein.rb
30 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/did_you_mean-1.1.0/lib/did_you_mean/jaro_winkler.rb
31 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/did_you_mean-1.1.0/lib/did_you_mean/spell_checker.rb
32 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/delegate.rb
33 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/did_you_mean-1.1.0/lib/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb
34 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/did_you_mean-1.1.0/lib/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb
35 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/did_you_mean-1.1.0/lib/did_you_mean/spell_checkers/name_error_checkers.rb
36 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/did_you_mean-1.1.0/lib/did_you_mean/spell_checkers/method_name_checker.rb
37 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/did_you_mean-1.1.0/lib/did_you_mean/spell_checkers/null_checker.rb
38 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/did_you_mean-1.1.0/lib/did_you_mean/formatter.rb
39 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/did_you_mean-1.1.0/lib/did_you_mean.rb
40 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/socket.bundle
41 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/io/wait.bundle
42 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/socket.rb
43 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/errors.rb
44 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/configuration.rb
45 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/pathname.bundle
46 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/pathname.rb
47 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/etc.bundle
48 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/fileutils.rb
49 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/digest.bundle
50 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/digest.rb
51 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/digest/md5.bundle
52 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/tmpdir.rb
53 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/version.rb
54 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/fiddle.bundle
55 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/fiddle/function.rb
56 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/fiddle/closure.rb
57 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/fiddle.rb
58 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/sid.rb
59 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/env.rb
60 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/process_title_updater.rb
61 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/json.rb
62 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/set.rb
63 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/mutex_m.rb
64 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/watcher/abstract.rb
65 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/watcher/polling.rb
66 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/watcher.rb
67 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/failsafe_thread.rb
68 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/boot.rb
69 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/pty.bundle
70 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/application.rb
71 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/command_wrapper.rb
72 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/commands/rails.rb
73 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/commands/rake.rb
74 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/version.rb
75 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/compatibility_guard.rb
76 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/constants.rb
77 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/util.rb
78 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/io/console.bundle
79 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/user_interaction.rb
80 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/config_file.rb
81 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/rubygems_integration.rb
82 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/current_ruby.rb
83 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/shared_helpers.rb
84 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/ext/builder.rb
85 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/fileutils/lib/fileutils.rb
86 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendored_fileutils.rb
87 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/errors.rb
88 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/environment_preserver.rb
89 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/plugin/api.rb
90 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/plugin.rb
91 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/uri/rfc2396_parser.rb
92 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/uri/rfc3986_parser.rb
93 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/uri/common.rb
94 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/uri/generic.rb
95 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/uri/ftp.rb
96 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/uri/http.rb
97 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/uri/https.rb
98 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/uri/ldap.rb
99 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/uri/ldaps.rb
100 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/uri/mailto.rb
101 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/uri.rb
102 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/source/git.rb
103 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/source/installed.rb
104 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/source/specific_file.rb
105 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/source/local.rb
106 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/source/lock.rb
107 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/source/vendor.rb
108 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/rubygems/source.rb
109 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/gem_helpers.rb
110 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/match_platform.rb
111 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/rubygems_ext.rb
112 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/build_metadata.rb
113 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler.rb
114 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/settings.rb
115 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/yaml_serializer.rb
116 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/feature_flag.rb
117 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/source.rb
118 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/source/path.rb
119 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/source/git.rb
120 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/source/rubygems.rb
121 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/lockfile_parser.rb
122 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/definition.rb
123 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/dependency.rb
124 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/ruby_dsl.rb
125 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/dsl.rb
126 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/source_list.rb
127 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/source/metadata.rb
128 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/uri_credentials_filter.rb
129 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/lazy_specification.rb
130 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/index.rb
131 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/tsort.rb
132 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/forwardable/impl.rb
133 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/forwardable.rb
134 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/spec_set.rb
135 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/shellwords.rb
136 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/tempfile.rb
137 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/source/git/git_proxy.rb
138 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/digest/sha1.bundle
139 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb
140 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb
141 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb
142 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb
143 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb
144 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb
145 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb
146 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb
147 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb
148 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb
149 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb
150 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb
151 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb
152 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb
153 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/state.rb
154 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb
155 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb
156 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb
157 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb
158 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb
159 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendor/molinillo/lib/molinillo.rb
160 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/vendored_molinillo.rb
161 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/resolver/spec_group.rb
162 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/resolver.rb
163 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/gem_version_promoter.rb
164 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/source/gemspec.rb
165 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/runtime.rb
166 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/dep_proxy.rb
167 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/ui.rb
168 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/ui/silent.rb
169 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/ui/rg_proxy.rb
170 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/remote_specification.rb
171 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/stub_specification.rb
172 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/endpoint_specification.rb
173 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/ruby_version.rb
174 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/bundler-1.16.2/lib/bundler/setup.rb
175 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-commands-rspec-1.0.4/lib/spring/commands/rspec.rb
176 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-commands-rspec-1.0.4/lib/spring-commands-rspec.rb
177 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-commands-rubocop-0.2.0/lib/spring/commands/rubocop.rb
178 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-commands-rubocop-0.2.0/lib/spring-commands-rubocop.rb
179 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/logger.rb
180 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/logger.rb
181 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/English.rb
182 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/version.rb
183 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/options.rb
184 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/record/entry.rb
185 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/record/symlink_detector.rb
186 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/record.rb
187 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/file.rb
188 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/directory.rb
189 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/change.rb
190 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/adapter/base.rb
191 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/adapter/bsd.rb
192 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/internals/thread_pool.rb
193 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/adapter/darwin.rb
194 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/adapter/linux.rb
195 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/adapter/polling.rb
196 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/adapter/windows.rb
197 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/adapter.rb
198 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/adapter/config.rb
199 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/backend.rb
200 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/silencer.rb
201 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/silencer/controller.rb
202 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/queue_optimizer.rb
203 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/fsm.rb
204 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/timeout.rb
205 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/event/processor.rb
206 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/event/loop.rb
207 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/event/queue.rb
208 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/event/config.rb
209 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/listener/config.rb
210 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen/listener.rb
211 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/ruby_dep-1.5.0/lib/ruby_dep/logger.rb
212 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/ruby_dep-1.5.0/lib/ruby_dep/ruby_version.rb
213 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/ruby_dep-1.5.0/lib/ruby_dep/warning.rb
214 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/listen-3.1.5/lib/listen.rb
215 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-watcher-listen-2.0.1/lib/spring/watcher/listen.rb
216 /Users/dsandstrom/Projects/einstein_gallery2/config/spring.rb
217 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spring-2.0.2/lib/spring/commands.rb
218 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rb-fsevent-0.10.3/lib/otnetstring.rb
219 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rb-fsevent-0.10.3/lib/rb-fsevent/fsevent.rb
220 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rb-fsevent-0.10.3/lib/rb-fsevent/version.rb
221 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rb-fsevent-0.10.3/lib/rb-fsevent.rb
222 /Users/dsandstrom/Projects/einstein_gallery2/config/boot.rb
223 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/ruby_version_check.rb
224 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/openssl.bundle
225 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/openssl/bn.rb
226 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/openssl/pkey.rb
227 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/openssl/cipher.rb
228 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/openssl/config.rb
229 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/openssl/digest.rb
230 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/openssl/x509.rb
231 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/openssl/buffering.rb
232 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/io/nonblock.bundle
233 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/openssl/ssl.rb
234 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/openssl.rb
235 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/securerandom.rb
236 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/constants.rb
237 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/engine.rb
238 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/abstract_object.rb
239 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/native_extension_loader.rb
240 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/mri_object.rb
241 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/jruby_object.rb
242 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/rbx_object.rb
243 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/truffle_object.rb
244 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/object.rb
245 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/volatile.rb
246 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/abstract_lockable_object.rb
247 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/mri_lockable_object.rb
248 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/jruby_lockable_object.rb
249 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/rbx_lockable_object.rb
250 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/truffle_lockable_object.rb
251 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/lockable_object.rb
252 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/condition.rb
253 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/lock.rb
254 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization.rb
255 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/non_concurrent_map_backend.rb
256 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/map/mri_map_backend.rb
257 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/map.rb
258 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/array/prepend_and_append.rb
259 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/regexp.rb
260 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/hash/deep_merge.rb
261 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/hash/except.rb
262 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/hash/slice.rb
263 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/i18n-1.0.1/lib/i18n/version.rb
264 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/cgi/core.rb
265 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/cgi/escape.bundle
266 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/cgi/util.rb
267 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/cgi/cookie.rb
268 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/cgi.rb
269 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/i18n-1.0.1/lib/i18n/exceptions.rb
270 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/i18n-1.0.1/lib/i18n/interpolate/ruby.rb
271 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/i18n-1.0.1/lib/i18n.rb
272 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/lazy_load_hooks.rb
273 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/i18n-1.0.1/lib/i18n/config.rb
274 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/i18n.rb
275 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/inflector/inflections.rb
276 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/inflections.rb
277 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/inflector/methods.rb
278 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/dependencies/autoload.rb
279 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/gem_version.rb
280 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/version.rb
281 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/concern.rb
282 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/array/extract_options.rb
283 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/module/attribute_accessors.rb
284 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/version.rb
285 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/errors.rb
286 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/event.rb
287 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/dereferenceable.rb
288 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/obligation.rb
289 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/logging.rb
290 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/executor_service.rb
291 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/at_exit.rb
292 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/abstract_executor_service.rb
293 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/serial_executor_service.rb
294 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/immediate_executor.rb
295 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/delay.rb
296 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/concurrent_update_error.rb
297 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/direct_update.rb
298 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/numeric_cas_wrapper.rb
299 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/mutex_atomic.rb
300 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic_reference/ruby.rb
301 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/atomic_reference.rb
302 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/processor_counter.rb
303 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/configuration.rb
304 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_atomic_boolean.rb
305 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/atomic_boolean.rb
306 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/native_integer.rb
307 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_atomic_fixnum.rb
308 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/atomic_fixnum.rb
309 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/cyclic_barrier.rb
310 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_count_down_latch.rb
311 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/java_count_down_latch.rb
312 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/count_down_latch.rb
313 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/read_write_lock.rb
314 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/abstract_thread_local_var.rb
315 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/ruby_thread_local_var.rb
316 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/java_thread_local_var.rb
317 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/thread_local_var.rb
318 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/reentrant_read_write_lock.rb
319 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/mutex_semaphore.rb
320 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomic/semaphore.rb
321 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atomics.rb
322 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_executor_service.rb
323 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/utility/monotonic_time.rb
324 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_thread_pool_executor.rb
325 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/thread_pool_executor.rb
326 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/cached_thread_pool.rb
327 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/fixed_thread_pool.rb
328 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/simple_executor_service.rb
329 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/indirect_immediate_executor.rb
330 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/java_executor_service.rb
331 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/java_single_thread_executor.rb
332 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/java_thread_pool_executor.rb
333 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_single_thread_executor.rb
334 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/safe_task_executor.rb
335 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/serialized_execution.rb
336 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/serialized_execution_delegator.rb
337 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/single_thread_executor.rb
338 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/copy_on_write_observer_set.rb
339 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/copy_on_notify_observer_set.rb
340 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/concern/observable.rb
341 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/ivar.rb
342 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/options.rb
343 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/scheduled_task.rb
344 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/java_non_concurrent_priority_queue.rb
345 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/ruby_non_concurrent_priority_queue.rb
346 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/collection/non_concurrent_priority_queue.rb
347 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/timer_set.rb
348 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executors.rb
349 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/agent.rb
350 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/atom.rb
351 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/util.rb
352 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/array.rb
353 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/hash.rb
354 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/tuple.rb
355 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/async.rb
356 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/future.rb
357 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/dataflow.rb
358 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/maybe.rb
359 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/exchanger.rb
360 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/synchronization/abstract_struct.rb
361 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/immutable_struct.rb
362 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/mutable_struct.rb
363 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/mvar.rb
364 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/promise.rb
365 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/settable_struct.rb
366 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/timer_task.rb
367 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/tvar.rb
368 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent/thread_safe/synchronized_delegator.rb
369 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/concurrent-ruby-1.0.5/lib/concurrent.rb
370 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/logger_silence.rb
371 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/logger_thread_safe_level.rb
372 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/logger.rb
373 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date_and_time/compatibility.rb
374 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support.rb
375 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/kernel/reporting.rb
376 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/module/delegation.rb
377 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/object/blank.rb
378 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/versions.rb
379 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/exception.rb
380 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/syntax_error.rb
381 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/psych.bundle
382 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/omap.rb
383 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/set.rb
384 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/class_loader.rb
385 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/strscan.bundle
386 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/scalar_scanner.rb
387 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/nodes/node.rb
388 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/nodes/stream.rb
389 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/nodes/document.rb
390 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/nodes/sequence.rb
391 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/nodes/scalar.rb
392 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/nodes/mapping.rb
393 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/nodes/alias.rb
394 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/nodes.rb
395 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/streaming.rb
396 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/visitors/visitor.rb
397 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/visitors/to_ruby.rb
398 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/visitors/emitter.rb
399 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/handler.rb
400 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/tree_builder.rb
401 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/visitors/yaml_tree.rb
402 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/json/ruby_events.rb
403 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/visitors/json_tree.rb
404 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/visitors/depth_first.rb
405 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/visitors.rb
406 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/parser.rb
407 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/coder.rb
408 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/core_ext.rb
409 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/date_core.bundle
410 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/date.rb
411 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/deprecated.rb
412 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/stream.rb
413 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/json/yaml_events.rb
414 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/json/tree_builder.rb
415 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/json/stream.rb
416 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych/handlers/document_stream.rb
417 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/psych.rb
418 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/yaml.rb
419 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/hash/keys.rb
420 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/key_generator.rb
421 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/base64.rb
422 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/security_utils.rb
423 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/message_verifier.rb
424 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/initializable.rb
425 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/multibyte.rb
426 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/string/multibyte.rb
427 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/inflector/transliterate.rb
428 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/string/inflections.rb
429 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/inflector.rb
430 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/module/introspection.rb
431 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/railtie.rb
432 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/engine/railties.rb
433 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/engine.rb
434 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/message_encryptor.rb
435 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/string/strip.rb
436 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/secrets.rb
437 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/application.rb
438 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/gem_version.rb
439 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/version.rb
440 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/time.rb
441 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/bigdecimal.bundle
442 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date_time/calculations.rb
443 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/xml_mini/rexml.rb
444 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/xml_mini.rb
445 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/object/to_query.rb
446 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/object/to_param.rb
447 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/array/conversions.rb
448 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/object/acts_like.rb
449 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/string/filters.rb
450 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/singleton.rb
451 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/kernel/singleton_class.rb
452 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/deprecation/instance_delegator.rb
453 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/notifications/instrumenter.rb
454 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/notifications/fanout.rb
455 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/per_thread_registry.rb
456 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/notifications.rb
457 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/deprecation/behaviors.rb
458 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/deprecation/reporting.rb
459 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/deprecation/constant_accessor.rb
460 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/module/aliasing.rb
461 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/deprecation/method_wrappers.rb
462 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/deprecation/proxy_wrappers.rb
463 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/module/deprecation.rb
464 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/deprecation.rb
465 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/duration.rb
466 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_core_support.rb
467 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/offset_rationals.rb
468 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/time_or_datetime.rb
469 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_definition.rb
470 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_offset.rb
471 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_transition.rb
472 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_transition_definition.rb
473 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_index_definition.rb
474 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_info.rb
475 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/data_timezone_info.rb
476 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/linked_timezone_info.rb
477 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/transition_data_timezone_info.rb
478 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_timezone_info.rb
479 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb
480 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_data_source.rb
481 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_data_source.rb
482 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_period.rb
483 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/thread_safe-0.3.6/lib/thread_safe/version.rb
484 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_delegator.rb
485 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/thread_safe-0.3.6/lib/thread_safe.rb
486 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/thread_safe-0.3.6/lib/thread_safe/non_concurrent_cache_backend.rb
487 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/thread_safe-0.3.6/lib/thread_safe/mri_cache_backend.rb
488 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/thread_safe-0.3.6/lib/thread_safe/cache.rb
489 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone.rb
490 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/info_timezone.rb
491 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/data_timezone.rb
492 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/linked_timezone.rb
493 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_proxy.rb
494 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/country_index_definition.rb
495 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/country_info.rb
496 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_country_info.rb
497 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_country_info.rb
498 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/country.rb
499 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/country_timezone.rb
500 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo.rb
501 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/values/time_zone.rb
502 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/time/conversions.rb
503 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/time_with_zone.rb
504 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/time/acts_like.rb
505 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date_and_time/zones.rb
506 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/time/zones.rb
507 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/object/try.rb
508 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date_and_time/calculations.rb
509 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date/zones.rb
510 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date/calculations.rb
511 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/time/calculations.rb
512 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/file_update_checker.rb
513 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/array/wrap.rb
514 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/ordered_options.rb
515 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/object/duplicable.rb
516 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/object/deep_dup.rb
517 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/object/inclusion.rb
518 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/module/remove_method.rb
519 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/time/compatibility.rb
520 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/time.rb
521 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date/acts_like.rb
522 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date/blank.rb
523 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date/conversions.rb
524 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date.rb
525 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date_time/acts_like.rb
526 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date_time/blank.rb
527 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date_time/compatibility.rb
528 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date_time/conversions.rb
529 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/date_time.rb
530 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/numeric/time.rb
531 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/integer/time.rb
532 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/string/conversions.rb
533 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/string/zones.rb
534 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/time.rb
535 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/hash/reverse_merge.rb
536 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/hash/conversions.rb
537 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/object/conversions.rb
538 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/object/instance_variables.rb
539 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/json/version.rb
540 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/ostruct.rb
541 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/json/generic_object.rb
542 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/json/common.rb
543 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/json/ext/parser.bundle
544 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/json/ext/generator.bundle
545 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/json/ext.rb
546 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/json.rb
547 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/bigdecimal/util.rb
548 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/big_decimal/conversions.rb
549 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/object/json.rb
550 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/option_merger.rb
551 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/object/with_options.rb
552 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/object.rb
553 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/paths.rb
554 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/rack.rb
555 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/configuration.rb
556 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/railtie/configuration.rb
557 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/i18n_railtie.rb
558 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/railtie.rb
559 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/class/attribute.rb
560 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/rails.rb
561 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_pack/gem_version.rb
562 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_pack/version.rb
563 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_pack.rb
564 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-2.0.5/lib/rack.rb
565 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_dispatch.rb
566 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_dispatch/railtie.rb
567 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails.rb
568 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/gem_version.rb
569 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/version.rb
570 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model.rb
571 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/railtie.rb
572 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/array/access.rb
573 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/hash_with_indifferent_access.rb
574 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/hash/indifferent_access.rb
575 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/globalid-0.4.1/lib/global_id/uri/gid.rb
576 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/globalid-0.4.1/lib/global_id/global_id.rb
577 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/globalid-0.4.1/lib/global_id.rb
578 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/globalid-0.4.1/lib/global_id/railtie.rb
579 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activejob-5.1.6/lib/active_job/gem_version.rb
580 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activejob-5.1.6/lib/active_job/version.rb
581 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activejob-5.1.6/lib/active_job.rb
582 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activejob-5.1.6/lib/active_job/railtie.rb
583 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/errors.rb
584 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/crud.rb
585 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/factory_methods.rb
586 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/expressions.rb
587 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/predications.rb
588 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/window_predications.rb
589 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/math.rb
590 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/alias_predication.rb
591 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/order_predications.rb
592 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/table.rb
593 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/attributes/attribute.rb
594 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/attributes.rb
595 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/compatibility/wheres.rb
596 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/visitor.rb
597 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/depth_first.rb
598 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/reduce.rb
599 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/to_sql.rb
600 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/sqlite.rb
601 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/postgresql.rb
602 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/mysql.rb
603 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/mssql.rb
604 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/oracle.rb
605 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/oracle12.rb
606 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/where_sql.rb
607 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/dot.rb
608 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/ibm_db.rb
609 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors/informix.rb
610 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/visitors.rb
611 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/collectors/plain_string.rb
612 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/collectors/sql_string.rb
613 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/tree_manager.rb
614 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/insert_manager.rb
615 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/select_manager.rb
616 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/update_manager.rb
617 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/delete_manager.rb
618 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/node.rb
619 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/select_statement.rb
620 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/select_core.rb
621 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/insert_statement.rb
622 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/update_statement.rb
623 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/bind_param.rb
624 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/terminal.rb
625 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/true.rb
626 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/false.rb
627 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/unary.rb
628 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/grouping.rb
629 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/ascending.rb
630 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/descending.rb
631 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/unqualified_column.rb
632 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/with.rb
633 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/binary.rb
634 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/equality.rb
635 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/in.rb
636 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/join_source.rb
637 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/delete_statement.rb
638 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/table_alias.rb
639 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/infix_operation.rb
640 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/unary_operation.rb
641 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/over.rb
642 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/matches.rb
643 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/regexp.rb
644 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/and.rb
645 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/function.rb
646 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/count.rb
647 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/extract.rb
648 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/values.rb
649 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/named_function.rb
650 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/window.rb
651 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/case.rb
652 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/full_outer_join.rb
653 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/inner_join.rb
654 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/outer_join.rb
655 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/right_outer_join.rb
656 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/string_join.rb
657 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/sql_literal.rb
658 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes/casted.rb
659 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/nodes.rb
660 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel.rb
661 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/gem_version.rb
662 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/version.rb
663 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/attribute.rb
664 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/attribute_set/builder.rb
665 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/attribute_set/yaml_encoder.rb
666 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/attribute_set.rb
667 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/enumerable.rb
668 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/attribute_methods.rb
669 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/attribute_methods.rb
670 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/helpers/accepts_multiparameter_time.rb
671 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/helpers/numeric.rb
672 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/helpers/mutable.rb
673 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/helpers/time_value.rb
674 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/helpers.rb
675 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/value.rb
676 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/integer.rb
677 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/big_integer.rb
678 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/binary.rb
679 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/boolean.rb
680 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/date.rb
681 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/date_time.rb
682 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/decimal.rb
683 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/float.rb
684 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/immutable_string.rb
685 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/string.rb
686 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/time.rb
687 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type/registry.rb
688 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/type.rb
689 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/type/internal/abstract_json.rb
690 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/type/internal/timezone.rb
691 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/type/date.rb
692 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/type/date_time.rb
693 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/type/decimal_without_scale.rb
694 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/type/time.rb
695 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/type/text.rb
696 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/type/unsigned_integer.rb
697 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/type/serialized.rb
698 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/type/adapter_specific_registry.rb
699 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/type/type_map.rb
700 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/type/hash_lookup_type_map.rb
701 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/type.rb
702 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb
703 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/schema_cache.rb
704 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/sql_type_metadata.rb
705 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/schema_dumper.rb
706 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/schema_creation.rb
707 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/concurrency/load_interlock_aware_monitor.rb
708 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/arel-8.0.0/lib/arel/collectors/bind.rb
709 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/descendants_tracker.rb
710 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/callbacks.rb
711 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/json/decoding.rb
712 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/json/encoding.rb
713 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/json.rb
714 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/string/access.rb
715 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/string/behavior.rb
716 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/multibyte/chars.rb
717 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/quoting.rb
718 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/database_statements.rb
719 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/zlib.bundle
720 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activemodel-5.1.6/lib/active_model/errors.rb
721 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/errors.rb
722 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/migration.rb
723 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/migration/join_table.rb
724 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/schema_statements.rb
725 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/database_limits.rb
726 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/query_cache.rb
727 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract/savepoints.rb
728 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/connection_adapters/abstract_adapter.rb
729 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/scoping.rb
730 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record.rb
731 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/abstract_controller.rb
732 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_dispatch/http/filter_redirect.rb
733 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_dispatch/http/cache.rb
734 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-2.0.5/lib/rack/query_parser.rb
735 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-2.0.5/lib/rack/utils.rb
736 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-2.0.5/lib/rack/media_type.rb
737 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-2.0.5/lib/rack/request.rb
738 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-2.0.5/lib/rack/body_proxy.rb
739 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-2.0.5/lib/rack/response.rb
740 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_dispatch/http/response.rb
741 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_controller/metal/live.rb
742 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/hash/transform_values.rb
743 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/rescuable.rb
744 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_dispatch/http/upload.rb
745 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-test-1.0.0/lib/rack/mock_session.rb
746 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-test-1.0.0/lib/rack/test/cookie_jar.rb
747 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-test-1.0.0/lib/rack/test/mock_digest_request.rb
748 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-test-1.0.0/lib/rack/test/utils.rb
749 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-test-1.0.0/lib/rack/test/methods.rb
750 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-test-1.0.0/lib/rack/test/uploaded_file.rb
751 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-test-1.0.0/lib/rack/test/version.rb
752 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/rack-test-1.0.0/lib/rack/test.rb
753 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_controller/metal/strong_parameters.rb
754 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/load_error.rb
755 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/module/attr_internal.rb
756 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/name_error.rb
757 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/uri.rb
758 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_controller.rb
759 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/abstract_controller/railties/routes_helpers.rb
760 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_controller/railties/helpers.rb
761 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionview-5.1.6/lib/action_view/gem_version.rb
762 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionview-5.1.6/lib/action_view/version.rb
763 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/erb.rb
764 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/multibyte/unicode.rb
765 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/string/output_safety.rb
766 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionview-5.1.6/lib/action_view.rb
767 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/railties-5.1.6/lib/rails/engine/configuration.rb
768 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionview-5.1.6/lib/action_view/railtie.rb
769 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionpack-5.1.6/lib/action_controller/railtie.rb
770 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activerecord-5.1.6/lib/active_record/railtie.rb
771 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionmailer-5.1.6/lib/action_mailer/gem_version.rb
772 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionmailer-5.1.6/lib/action_mailer/version.rb
773 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/module/anonymous.rb
774 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/module/reachable.rb
775 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/class/subclasses.rb
776 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/activesupport-5.1.6/lib/active_support/core_ext/class.rb
777 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionmailer-5.1.6/lib/action_mailer.rb
778 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actionmailer-5.1.6/lib/action_mailer/railtie.rb
779 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/actioncable-5.1.6/lib/action_cable/gem_version.rb
^C 785 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/version.rb
786 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/x86_64-darwin17/digest/sha2.bundle
787 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/2.4.0/digest/sha2.rb
788 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/digest_utils.rb
789 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/cache.rb
790 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/asset.rb
791 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/bower.rb
792 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/utils.rb
793 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/compressing.rb
794 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/path_utils.rb
795 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/path_digest_utils.rb
796 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/uri_utils.rb
797 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/dependencies.rb
798 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/legacy_tilt_processor.rb
799 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/engines.rb
800 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/encoding_utils.rb
801 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/http_utils.rb
802 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/mime.rb
803 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/paths.rb
804 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/file_reader.rb
805 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/legacy_proc_processor.rb
806 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/processor_utils.rb
807 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/processing.rb
808 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/transformers.rb
809 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/configuration.rb
810 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/errors.rb
811 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/path_dependency_utils.rb
812 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/resolve.rb
813 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/uri_tar.rb
814 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/unloaded_asset.rb
815 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/loader.rb
816 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/server.rb
817 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/base.rb
818 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/cache/memory_store.rb
819 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/sprockets-3.7.2/lib/sprockets/cached_environment.rb
820 /Users/dsandstrom/.rbenv/versions/2.4.3/lib/ruby/gems/2.4.0/gems/spr
[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: http://www.ruby-lang.org/bugreport.html
This smells like a client library bug, but I don't have anything more specific.
-- C level backtrace information -------------------------------------------
0 ruby 0x000000010e7a8757 rb_vm_bugreport + 135
1 ruby 0x000000010e6426d8 rb_bug_context + 472
2 ruby 0x000000010e722f78 sigsegv + 72
3 libsystem_platform.dylib 0x00007fff7192af5a _sigtramp + 26
4 libmariadb.3.dylib 0x000000010f718adc unpack_fields + 116
5 libmariadb.3.dylib 0x000000010f71b2e2 mthd_my_read_query_result + 1274
6 libmariadb.3.dylib 0x000000010f71b4dd mysql_read_query_result + 14
7 mysql2.bundle 0x000000010f700c79 nogvl_read_query_result + 9
8 ruby 0x000000010e75995e rb_thread_call_without_gvl + 78
9 mysql2.bundle 0x000000010f6ff896 rb_mysql_client_async_result + 102
10 ruby 0x000000010e64c624 rb_ensure + 164
11 mysql2.bundle 0x000000010f700a10 rb_mysql_query + 400
I am facing this issue as well but oddly enough, I haven't been doing any upgrading. It just appeared out of the blue.
I am using mysql Ver 14.14 Distrib 5.7.25, for osx10.14 (x86_64)
and the 0.5.1 gem, but I've tested with 0.5.0 and 0.5.2 as well.
It happens intermittently, so debugging so far has not been enlightening in any way. Is there any quick fix I can work with?
Any update on this? Facing similar issue
We were having this issue intermittently, and then constantly (with no known change), setting config.active_job.queue_adapter = :inline
in test.rb seems to have resolved the issue
I was having the same intermittent issue as well, sometimes manifesting as undefined method
rows`` and others as Mysql2::Error: MySQL client is not connected: BEGIN
. Sometimes the test suite hangs until it's terminated. This happened with both Ruby 2.4.10 and Ruby 2.5.8, and with both MySQL 5.6.47 (via Docker) and 8.0.19 (installed via homebrew), and with both mysql2 0.4.10 and 0.5.3. My app is running on Rails 5.1.7 and I'm using macOS 10.14.6 and the ruby-install script.
The issue seemed to happen more frequently when I had a (forgotten) rails console
in development mode running in the background. However, this may be a red herring since I uninstalled and reinstalled the gem, and dropped and recreated the database while that process was still running.
In one case with mysql2 0.4.10 on Ruby 2.4.10 against MySQL 8.0.19, the test was aborted with the following error:
ec(50429,0x70000d75e000) malloc: Double free of object 0x7fc3f40d6a80
I managed to get the same error one more time when running with the same seed, but then it disappeared after the third time (going back to the intermittent behaviour).
Thanks to @JSRossiter, I remembered that I had deleted the line that sets the active_job.queue_adapter
from config/environments/test.rb
(effectively setting it to the default :async
). I restored that line and the issue was resolved.
config.active_job.queue_adapter = :test
I managed to get a dump from one of the hanging processes. This happens rarely, but I hope that it's useful:
* thread #1: tid = 0x35882c, 0x00000001097edf80 libmysqlclient.21.dylib`vio_shutdown(Vio*) + 234, queue = 'com.apple.main-thread', stop reason = signal SIGSTOP
* thread #1, queue = 'com.apple.main-thread', stop reason = signal SIGSTOP
frame #0: 0x00000001097edf80 libmysqlclient.21.dylib`vio_shutdown(Vio*) + 234
libmysqlclient.21.dylib`vio_shutdown:
-> 0x1097edf80 <+234>: testb $0x1, %al
0x1097edf82 <+236>: jne 0x1097edf77 ; <+225>
0x1097edf84 <+238>: movl (%r13), %ebx
0x1097edf88 <+242>: movq 0x8(%r13), %r15
* thread #1, queue = 'com.apple.main-thread', stop reason = signal SIGSTOP
* frame #0: 0x00000001097edf80 libmysqlclient.21.dylib`vio_shutdown(Vio*) + 234
frame #1: 0x00000001097ed6fc libmysqlclient.21.dylib`internal_vio_delete(Vio*) + 29
frame #2: 0x00000001097a0b30 libmysqlclient.21.dylib`end_server + 48
frame #3: 0x00000001097a021c libmysqlclient.21.dylib`cli_advanced_command + 728
frame #4: 0x000000010979a772 libmysqlclient.21.dylib`mysql_ping + 38
frame #5: 0x0000000109784a79 mysql2.bundle`nogvl_ping(ptr=<unavailable>) at client.c:1090:19
frame #6: 0x0000000108e4125e ruby`rb_thread_call_without_gvl at thread.c:1321:5
frame #7: 0x0000000108e41214 ruby`rb_thread_call_without_gvl(func=(mysql2.bundle`nogvl_ping at client.c:1087), data1=0x00007fc7d3172a00, ubf=<unavailable>, data2=<unavailable>) at thread.c:1431
frame #8: 0x00000001097839dc mysql2.bundle`rb_mysql_client_ping(self=140497562364160) at client.c:1107:19
frame #9: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc82240b790, reg_cfp=0x00007fc82811f460, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #10: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc82240b790, reg_cfp=0x00007fc82811f460, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #11: 0x0000000108e6f968 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:1066:5
frame #12: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc82240b790) at vm.c:1775:11
frame #13: 0x0000000108e8e768 ruby`invoke_block_from_c_splattable(th=0x00007fc82240b790, block_handler=<unavailable>, argc=1, argv=0x00007fc8280207f0, passed_block_handler=0, cref=<unavailable>, splattable=0, is_lambda=<unavailable>) at vm.c:1037:13
frame #14: 0x0000000108e7db31 ruby`yield_under [inlined] vm_yield_with_cref(th=<unavailable>, argc=<unavailable>, argv=<unavailable>, cref=<unavailable>, is_lambda=<unavailable>) at vm.c:1071:12
frame #15: 0x0000000108e7daef ruby`yield_under(under=140496217350680, self=140496217351000, argc=1, argv=0x00007fc8280207f0) at vm_eval.c:1631
frame #16: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc82240b790, reg_cfp=0x00007fc82811f790, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #17: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc82240b790, reg_cfp=0x00007fc82811f790, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #18: 0x0000000108e6f158 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:967:5
frame #19: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc82240b790) at vm.c:1775:11
frame #20: 0x0000000108e7faa6 ruby`vm_invoke_proc [inlined] invoke_block_from_c_unsplattable(th=<unavailable>, block=0x00007fc7f3458770, self=<unavailable>, argc=<unavailable>, argv=0x00007ffee6f50fe0, passed_block_handler=<unavailable>, is_lambda=<unavailable>) at vm.c:1106:9
frame #21: 0x0000000108e7fa35 ruby`vm_invoke_proc(th=0x00007fc82240b790, proc=<unavailable>, self=140496217350640, argc=0, argv=0x00007ffee6f50fe0, passed_block_handler=0) at vm.c:1131
frame #22: 0x0000000108e87d2c ruby`vm_call_opt_call(th=0x00007fc82240b790, cfp=0x00007fc82811f820, calling=0x00007ffee6f51118, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1996:12
frame #23: 0x0000000108e6f158 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:967:5
frame #24: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc82240b790) at vm.c:1775:11
frame #25: 0x0000000108e8e768 ruby`invoke_block_from_c_splattable(th=0x00007fc82240b790, block_handler=<unavailable>, argc=1, argv=0x00007ffee6f51688, passed_block_handler=0, cref=<unavailable>, splattable=0, is_lambda=<unavailable>) at vm.c:1037:13
frame #26: 0x0000000108e7c34e ruby`rb_yield(val=<unavailable>) at vm_eval.c:0
frame #27: 0x0000000108cb4379 ruby`rb_ary_collect(ary=140496766051160) at array.c:2734:23
frame #28: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc82240b790, reg_cfp=0x00007fc82811f9a0, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #29: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc82240b790, reg_cfp=0x00007fc82811f9a0, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #30: 0x0000000108e6f158 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:967:5
frame #31: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc82240b790) at vm.c:1775:11
frame #32: 0x0000000108e8e768 ruby`invoke_block_from_c_splattable(th=0x00007fc82240b790, block_handler=<unavailable>, argc=1, argv=0x00007ffee6f51de8, passed_block_handler=0, cref=<unavailable>, splattable=0, is_lambda=<unavailable>) at vm.c:1037:13
frame #33: 0x0000000108e7c34e ruby`rb_yield(val=<unavailable>) at vm_eval.c:0
frame #34: 0x0000000108cb4379 ruby`rb_ary_collect(ary=140497558861920) at array.c:2734:23
frame #35: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc82240b790, reg_cfp=0x00007fc82811fa60, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #36: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc82240b790, reg_cfp=0x00007fc82811fa60, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #37: 0x0000000108e6f158 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:967:5
frame #38: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc82240b790) at vm.c:1775:11
frame #39: 0x0000000108e8e768 ruby`invoke_block_from_c_splattable(th=0x00007fc82240b790, block_handler=<unavailable>, argc=1, argv=0x00007ffee6f52548, passed_block_handler=0, cref=<unavailable>, splattable=0, is_lambda=<unavailable>) at vm.c:1037:13
frame #40: 0x0000000108e7c34e ruby`rb_yield(val=<unavailable>) at vm_eval.c:0
frame #41: 0x0000000108cb4379 ruby`rb_ary_collect(ary=140497567342880) at array.c:2734:23
frame #42: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc82240b790, reg_cfp=0x00007fc82811faf0, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #43: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc82240b790, reg_cfp=0x00007fc82811faf0, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #44: 0x0000000108e6f158 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:967:5
frame #45: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc82240b790) at vm.c:1775:11
frame #46: 0x0000000108d6b993 ruby`rb_load_internal0(th=0x00007fc82240b790, fname=140496744088600, wrap=<unavailable>) at load.c:618:2
frame #47: 0x0000000108d6c852 ruby`rb_f_load [inlined] rb_load_internal(fname=<unavailable>, wrap=<unavailable>) at load.c:649:17
frame #48: 0x0000000108d6c83d ruby`rb_f_load(argc=<unavailable>, argv=<unavailable>) at load.c:717
frame #49: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc82240b790, reg_cfp=0x00007fc82811fcd0, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #50: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc82240b790, reg_cfp=0x00007fc82811fcd0, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #51: 0x0000000108e6f968 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:1066:5
frame #52: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc82240b790) at vm.c:1775:11
frame #53: 0x0000000108d6b993 ruby`rb_load_internal0(th=0x00007fc82240b790, fname=140496744124160, wrap=<unavailable>) at load.c:618:2
frame #54: 0x0000000108d6c852 ruby`rb_f_load [inlined] rb_load_internal(fname=<unavailable>, wrap=<unavailable>) at load.c:649:17
frame #55: 0x0000000108d6c83d ruby`rb_f_load(argc=<unavailable>, argv=<unavailable>) at load.c:717
frame #56: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc82240b790, reg_cfp=0x00007fc82811fd30, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #57: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc82240b790, reg_cfp=0x00007fc82811fd30, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #58: 0x0000000108e6f968 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:1066:5
frame #59: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc82240b790) at vm.c:1775:11
frame #60: 0x0000000108d6b993 ruby`rb_load_internal0(th=0x00007fc82240b790, fname=140497550129000, wrap=<unavailable>) at load.c:618:2
frame #61: 0x0000000108d6c852 ruby`rb_f_load [inlined] rb_load_internal(fname=<unavailable>, wrap=<unavailable>) at load.c:649:17
frame #62: 0x0000000108d6c83d ruby`rb_f_load(argc=<unavailable>, argv=<unavailable>) at load.c:717
frame #63: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc82240b790, reg_cfp=0x00007fc82811ffa0, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #64: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc82240b790, reg_cfp=0x00007fc82811ffa0, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #65: 0x0000000108e6f968 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:1066:5
frame #66: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc82240b790) at vm.c:1775:11
frame #67: 0x0000000108d2739a ruby`ruby_exec_internal(n=0x00007fc822933b30) at eval.c:245:2
frame #68: 0x0000000108d272b8 ruby`ruby_run_node [inlined] ruby_exec_node(n=<unavailable>) at eval.c:309:12
frame #69: 0x0000000108d272aa ruby`ruby_run_node(n=<unavailable>) at eval.c:301
frame #70: 0x0000000108cabbaf ruby`main(argc=<unavailable>, argv=<unavailable>) at main.c:36:9
frame #71: 0x00007fff72b5f3d5 libdyld.dylib`start + 1
thread #2: tid = 0x35882d, 0x00007fff72c9c36a libsystem_kernel.dylib`poll + 10, name = 'ruby-timer-thr'
* thread #2, name = 'ruby-timer-thr'
* frame #0: 0x00007fff72c9c36a libsystem_kernel.dylib`poll + 10
frame #1: 0x0000000108e47eaf ruby`thread_timer [inlined] timer_thread_sleep(gvl=<unavailable>) at thread_pthread.c:0
frame #2: 0x0000000108e47e64 ruby`thread_timer(p=0x00007fc822808608) at thread_pthread.c:1573
frame #3: 0x00007fff72d532eb libsystem_pthread.dylib`_pthread_body + 126
frame #4: 0x00007fff72d56249 libsystem_pthread.dylib`_pthread_start + 66
frame #5: 0x00007fff72d5240d libsystem_pthread.dylib`thread_start + 13
thread #3: tid = 0x35882e, 0x00007fff72c97866 libsystem_kernel.dylib`__psynch_cvwait + 10, name = 'ruby_thread_lo*'
* thread #3, name = 'ruby_thread_lo*'
* frame #0: 0x00007fff72c97866 libsystem_kernel.dylib`__psynch_cvwait + 10
frame #1: 0x00007fff72d5656e libsystem_pthread.dylib`_pthread_cond_wait + 722
frame #2: 0x0000000108e40443 ruby`native_sleep [inlined] native_cond_wait(mutex=<unavailable>) at thread_pthread.c:343:13
frame #3: 0x0000000108e40438 ruby`native_sleep(th=0x00007fc7f24eeef0, timeout_tv=0x0000000000000000) at thread_pthread.c:1148
frame #4: 0x0000000108e4a365 ruby`queue_sleep [inlined] sleep_forever(th=0x00007fc7f24eeef0, deadlockable=1, spurious_check=0) at thread.c:1086:2
frame #5: 0x0000000108e4a301 ruby`queue_sleep [inlined] rb_thread_sleep_deadly_allow_spurious_wakeup at thread.c:1174
frame #6: 0x0000000108e4a2f4 ruby`queue_sleep(arg=<unavailable>) at thread_sync.c:780
frame #7: 0x0000000108d284c4 ruby`rb_ensure(b_proc=(ruby`queue_sleep at thread_sync.c:779), data1=0, e_proc=<unavailable>, data2=<unavailable>) at eval.c:938:11
frame #8: 0x0000000108e4a09d ruby`queue_do_pop(self=140497566424840, should_block=<unavailable>) at thread_sync.c:803:6
frame #9: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc7f24eeef0, reg_cfp=0x00007fc80811ffa0, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #10: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc7f24eeef0, reg_cfp=0x00007fc80811ffa0, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #11: 0x0000000108e6f968 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:1066:5
frame #12: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc7f24eeef0) at vm.c:1775:11
frame #13: 0x0000000108e7faa6 ruby`vm_invoke_proc [inlined] invoke_block_from_c_unsplattable(th=<unavailable>, block=0x00007fc7f24ef2b0, self=<unavailable>, argc=<unavailable>, argv=0x00007fc82389dc98, passed_block_handler=<unavailable>, is_lambda=<unavailable>) at vm.c:1106:9
frame #14: 0x0000000108e7fa35 ruby`vm_invoke_proc(th=0x00007fc7f24eeef0, proc=<unavailable>, self=140497566426120, argc=0, argv=0x00007fc82389dc98, passed_block_handler=0) at vm.c:1131
frame #15: 0x0000000108e47bc5 ruby`thread_start_func_2 at thread.c:581:14
frame #16: 0x0000000108e479dd ruby`thread_start_func_2(th=0x00007fc7f24eeef0, stack_start=<unavailable>) at thread.c:623
frame #17: 0x0000000108e474f8 ruby`thread_start_func_1(th_ptr=0x00007fc7f24eeef0) at thread_pthread.c:888:2
frame #18: 0x00007fff72d532eb libsystem_pthread.dylib`_pthread_body + 126
frame #19: 0x00007fff72d56249 libsystem_pthread.dylib`_pthread_start + 66
frame #20: 0x00007fff72d5240d libsystem_pthread.dylib`thread_start + 13
thread #4: tid = 0x3588c4, 0x00007fff72c97866 libsystem_kernel.dylib`__psynch_cvwait + 10, name = 'worker-1'
* thread #4, name = 'worker-1'
* frame #0: 0x00007fff72c97866 libsystem_kernel.dylib`__psynch_cvwait + 10
frame #1: 0x00007fff72d5656e libsystem_pthread.dylib`_pthread_cond_wait + 722
frame #2: 0x0000000108e40443 ruby`native_sleep [inlined] native_cond_wait(mutex=<unavailable>) at thread_pthread.c:343:13
frame #3: 0x0000000108e40438 ruby`native_sleep(th=0x00007fc7d2624300, timeout_tv=0x0000000000000000) at thread_pthread.c:1148
frame #4: 0x0000000108e4a365 ruby`queue_sleep [inlined] sleep_forever(th=0x00007fc7d2624300, deadlockable=1, spurious_check=0) at thread.c:1086:2
frame #5: 0x0000000108e4a301 ruby`queue_sleep [inlined] rb_thread_sleep_deadly_allow_spurious_wakeup at thread.c:1174
frame #6: 0x0000000108e4a2f4 ruby`queue_sleep(arg=<unavailable>) at thread_sync.c:780
frame #7: 0x0000000108d284c4 ruby`rb_ensure(b_proc=(ruby`queue_sleep at thread_sync.c:779), data1=0, e_proc=<unavailable>, data2=<unavailable>) at eval.c:938:11
frame #8: 0x0000000108e4a09d ruby`queue_do_pop(self=140496766221560, should_block=<unavailable>) at thread_sync.c:803:6
frame #9: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc7d2624300, reg_cfp=0x00007fc7e8607ee0, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #10: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc7d2624300, reg_cfp=0x00007fc7e8607ee0, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #11: 0x0000000108e6f968 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:1066:5
frame #12: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc7d2624300) at vm.c:1775:11
frame #13: 0x0000000108e8e768 ruby`invoke_block_from_c_splattable(th=0x00007fc7d2624300, block_handler=<unavailable>, argc=0, argv=0x0000000000000000, passed_block_handler=0, cref=<unavailable>, splattable=0, is_lambda=<unavailable>) at vm.c:1037:13
frame #14: 0x0000000108e8f7e3 ruby`loop_i [inlined] vm_yield(th=<unavailable>, argc=<unavailable>, argv=<unavailable>) at vm.c:1079:12
frame #15: 0x0000000108e8f7d0 ruby`loop_i [inlined] rb_yield_0(argc=<unavailable>, argv=<unavailable>) at vm_eval.c:1010
frame #16: 0x0000000108e8f7d0 ruby`loop_i at vm_eval.c:1088
frame #17: 0x0000000108d28156 ruby`rb_rescue2(b_proc=(ruby`loop_i at vm_eval.c:1086), data1=0, r_proc=<unavailable>, data2=<unavailable>) at eval.c:839:11
frame #18: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc7d2624300, reg_cfp=0x00007fc7e8607f40, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #19: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc7d2624300, reg_cfp=0x00007fc7e8607f40, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #20: 0x0000000108e6f158 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:967:5
frame #21: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc7d2624300) at vm.c:1775:11
frame #22: 0x0000000108e8e768 ruby`invoke_block_from_c_splattable(th=0x00007fc7d2624300, block_handler=<unavailable>, argc=1, argv=0x000070000aae04c8, passed_block_handler=0, cref=<unavailable>, splattable=0, is_lambda=<unavailable>) at vm.c:1037:13
frame #23: 0x0000000108e8f77e ruby`catch_i [inlined] vm_yield(th=<unavailable>, argc=1, argv=<unavailable>) at vm.c:1079:12
frame #24: 0x0000000108e8f743 ruby`catch_i [inlined] rb_yield_0(argc=1, argv=<unavailable>) at vm_eval.c:1010
frame #25: 0x0000000108e8f73c ruby`catch_i(tag=<unavailable>, data=<unavailable>) at vm_eval.c:1952
frame #26: 0x0000000108e7dddc ruby`vm_catch_protect(tag=5697804, func=<unavailable>, data=0, stateptr=0x000070000aae05e4, th=0x00007fc7d2624300) at vm_eval.c:2060:8
frame #27: 0x0000000108e7e4a4 ruby`rb_f_catch [inlined] rb_catch_obj(t=<unavailable>, data=0) at vm_eval.c:2034:17
frame #28: 0x0000000108e7e488 ruby`rb_f_catch(argc=<unavailable>, argv=<unavailable>) at vm_eval.c:2017
frame #29: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc7d2624300, reg_cfp=0x00007fc7e8607fa0, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #30: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc7d2624300, reg_cfp=0x00007fc7e8607fa0, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #31: 0x0000000108e6f158 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:967:5
frame #32: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc7d2624300) at vm.c:1775:11
frame #33: 0x0000000108e7faa6 ruby`vm_invoke_proc [inlined] invoke_block_from_c_unsplattable(th=<unavailable>, block=0x00007fc7d26246e0, self=<unavailable>, argc=<unavailable>, argv=0x00007fc7f3d7bc40, passed_block_handler=<unavailable>, is_lambda=<unavailable>) at vm.c:1106:9
frame #34: 0x0000000108e7fa35 ruby`vm_invoke_proc(th=0x00007fc7d2624300, proc=<unavailable>, self=140496766221600, argc=3, argv=0x00007fc7f3d7bc40, passed_block_handler=0) at vm.c:1131
frame #35: 0x0000000108e47bc5 ruby`thread_start_func_2 at thread.c:581:14
frame #36: 0x0000000108e479dd ruby`thread_start_func_2(th=0x00007fc7d2624300, stack_start=<unavailable>) at thread.c:623
frame #37: 0x0000000108e474f8 ruby`thread_start_func_1(th_ptr=0x00007fc7d2624300) at thread_pthread.c:888:2
frame #38: 0x00007fff72d532eb libsystem_pthread.dylib`_pthread_body + 126
frame #39: 0x00007fff72d56249 libsystem_pthread.dylib`_pthread_start + 66
frame #40: 0x00007fff72d5240d libsystem_pthread.dylib`thread_start + 13
thread #5: tid = 0x3588d6, 0x00007fff72c97866 libsystem_kernel.dylib`__psynch_cvwait + 10, name = 'worker-2'
* thread #5, name = 'worker-2'
* frame #0: 0x00007fff72c97866 libsystem_kernel.dylib`__psynch_cvwait + 10
frame #1: 0x00007fff72d5656e libsystem_pthread.dylib`_pthread_cond_wait + 722
frame #2: 0x0000000108e40443 ruby`native_sleep [inlined] native_cond_wait(mutex=<unavailable>) at thread_pthread.c:343:13
frame #3: 0x0000000108e40438 ruby`native_sleep(th=0x00007fc7b24d4f40, timeout_tv=0x0000000000000000) at thread_pthread.c:1148
frame #4: 0x0000000108e4a365 ruby`queue_sleep [inlined] sleep_forever(th=0x00007fc7b24d4f40, deadlockable=1, spurious_check=0) at thread.c:1086:2
frame #5: 0x0000000108e4a301 ruby`queue_sleep [inlined] rb_thread_sleep_deadly_allow_spurious_wakeup at thread.c:1174
frame #6: 0x0000000108e4a2f4 ruby`queue_sleep(arg=<unavailable>) at thread_sync.c:780
frame #7: 0x0000000108d284c4 ruby`rb_ensure(b_proc=(ruby`queue_sleep at thread_sync.c:779), data1=0, e_proc=<unavailable>, data2=<unavailable>) at eval.c:938:11
frame #8: 0x0000000108e4a09d ruby`queue_do_pop(self=140496720829240, should_block=<unavailable>) at thread_sync.c:803:6
frame #9: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc7b24d4f40, reg_cfp=0x00007fc81816fee0, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #10: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc7b24d4f40, reg_cfp=0x00007fc81816fee0, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #11: 0x0000000108e6f968 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:1066:5
frame #12: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc7b24d4f40) at vm.c:1775:11
frame #13: 0x0000000108e8e768 ruby`invoke_block_from_c_splattable(th=0x00007fc7b24d4f40, block_handler=<unavailable>, argc=0, argv=0x0000000000000000, passed_block_handler=0, cref=<unavailable>, splattable=0, is_lambda=<unavailable>) at vm.c:1037:13
frame #14: 0x0000000108e8f7e3 ruby`loop_i [inlined] vm_yield(th=<unavailable>, argc=<unavailable>, argv=<unavailable>) at vm.c:1079:12
frame #15: 0x0000000108e8f7d0 ruby`loop_i [inlined] rb_yield_0(argc=<unavailable>, argv=<unavailable>) at vm_eval.c:1010
frame #16: 0x0000000108e8f7d0 ruby`loop_i at vm_eval.c:1088
frame #17: 0x0000000108d28156 ruby`rb_rescue2(b_proc=(ruby`loop_i at vm_eval.c:1086), data1=0, r_proc=<unavailable>, data2=<unavailable>) at eval.c:839:11
frame #18: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc7b24d4f40, reg_cfp=0x00007fc81816ff40, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #19: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc7b24d4f40, reg_cfp=0x00007fc81816ff40, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #20: 0x0000000108e6f158 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:967:5
frame #21: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc7b24d4f40) at vm.c:1775:11
frame #22: 0x0000000108e8e768 ruby`invoke_block_from_c_splattable(th=0x00007fc7b24d4f40, block_handler=<unavailable>, argc=1, argv=0x000070000abe34c8, passed_block_handler=0, cref=<unavailable>, splattable=0, is_lambda=<unavailable>) at vm.c:1037:13
frame #23: 0x0000000108e8f77e ruby`catch_i [inlined] vm_yield(th=<unavailable>, argc=1, argv=<unavailable>) at vm.c:1079:12
frame #24: 0x0000000108e8f743 ruby`catch_i [inlined] rb_yield_0(argc=1, argv=<unavailable>) at vm_eval.c:1010
frame #25: 0x0000000108e8f73c ruby`catch_i(tag=<unavailable>, data=<unavailable>) at vm_eval.c:1952
frame #26: 0x0000000108e7dddc ruby`vm_catch_protect(tag=5697804, func=<unavailable>, data=0, stateptr=0x000070000abe35e4, th=0x00007fc7b24d4f40) at vm_eval.c:2060:8
frame #27: 0x0000000108e7e4a4 ruby`rb_f_catch [inlined] rb_catch_obj(t=<unavailable>, data=0) at vm_eval.c:2034:17
frame #28: 0x0000000108e7e488 ruby`rb_f_catch(argc=<unavailable>, argv=<unavailable>) at vm_eval.c:2017
frame #29: 0x0000000108e8676e ruby`vm_call_cfunc [inlined] vm_call_cfunc_with_frame(th=0x00007fc7b24d4f40, reg_cfp=0x00007fc81816ffa0, ci=<unavailable>) at vm_insnhelper.c:1769:11
frame #30: 0x0000000108e866a1 ruby`vm_call_cfunc(th=0x00007fc7b24d4f40, reg_cfp=0x00007fc81816ffa0, calling=<unavailable>, ci=<unavailable>, cc=<unavailable>) at vm_insnhelper.c:1864
frame #31: 0x0000000108e6f158 ruby`vm_exec_core(th=<unavailable>, initial=<unavailable>) at insns.def:967:5
frame #32: 0x0000000108e810a0 ruby`vm_exec(th=0x00007fc7b24d4f40) at vm.c:1775:11
frame #33: 0x0000000108e7faa6 ruby`vm_invoke_proc [inlined] invoke_block_from_c_unsplattable(th=<unavailable>, block=0x00007fc7b24d4de0, self=<unavailable>, argc=<unavailable>, argv=0x00007fc7f1231a80, passed_block_handler=<unavailable>, is_lambda=<unavailable>) at vm.c:1106:9
frame #34: 0x0000000108e7fa35 ruby`vm_invoke_proc(th=0x00007fc7b24d4f40, proc=<unavailable>, self=140496720829280, argc=3, argv=0x00007fc7f1231a80, passed_block_handler=0) at vm.c:1131
frame #35: 0x0000000108e47bc5 ruby`thread_start_func_2 at thread.c:581:14
frame #36: 0x0000000108e479dd ruby`thread_start_func_2(th=0x00007fc7b24d4f40, stack_start=<unavailable>) at thread.c:623
frame #37: 0x0000000108e474f8 ruby`thread_start_func_1(th_ptr=0x00007fc7b24d4f40) at thread_pthread.c:888:2
frame #38: 0x00007fff72d532eb libsystem_pthread.dylib`_pthread_body + 126
frame #39: 0x00007fff72d56249 libsystem_pthread.dylib`_pthread_start + 66
frame #40: 0x00007fff72d5240d libsystem_pthread.dylib`thread_start + 13