Git Product home page Git Product logo

loomio-deploy's Introduction

Deploy your own Loomio

This is what you need to run your own Loomio server.

It will run all Loomio services on a single host via docker and docker compose, complete with an SSL certificate via letsencrypt.

If you just want a local install of Loomio for development, see Setting up a Loomio development environment.

What you'll need

  • Root access to a server, on a public IP address, running Ubuntu with at least 1GB RAM (2GB recommended).

  • A domain name

  • An SMTP server

Network configuration

For this example, the hostname will be loomio.example.com and the IP address is 192.0.2.1

DNS Records

To allow people to access the site via your hostname you need an A record:

A loomio.example.com, 192.0.2.1

Loomio supports "Reply by email" and to enable this you need an MX record so mail servers know where to direct these emails.

MX loomio.example.com, loomio.example.com, priority 0

Additionally, create a CNAME record that points channels.loomio.example.com to loomio.example.com.

CNAME channels.loomio.example.com, loomio.example.com

Configure the server

Login as root

To login to the server, open a terminal window and type:

Install docker

These steps to install docker are copied from docs.docker.com

apt-get update
apt-get install -y ca-certificates curl gnupg
install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
echo \
  "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
  "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

Clone the loomio-deploy git repository

This is the place where all the configuration for your Loomio services will live. In this step you make a copy of this repo, so that you can modify the settings to work for your particular setup.

As root on your server, clone this repo:

git clone https://github.com/loomio/loomio-deploy.git
cd loomio-deploy

The commands below assume your working directory is this repo, on your server.

Setup a swapfile (optional)

There are some simple scripts within this repo to help you configure your server.

This script will create and mount a 4GB swapfile. If you have less than 2GB RAM on your server then this step is required.

./scripts/create_swapfile

SSL teriminating proxy

By default, docker-compose.yml includes an nginx proxy container that automatically handles fetching an SSL certificate via LetsEncrypt.org. If you don't need SSL termination, or you're running Loomio from behind a proxy, you can safely remove the nginx services from the docker-compose.yml file. The loomio app container will happily speak plain HTTP on port 3000 (by default). Configuring reverse proxies and other advanced configurations are outside the scope of this documentation, but at minimum it's suggested to preserve the HTTP host header and to set X-FORWARDED-PROTO if terminating SSL upstream.

Create your ENV files

This script creates env files configured for you. It also creates directories on the host to hold user data.

When you run this, remember to change loomio.example.com to your hostname, and give your contact email address, so you can recover your SSL keys later if required.

./scripts/create_env loomio.example.com [email protected]

Now have a look inside the files:

cat .env

OAuth2 and OIDC (optional)

The default environment file isn't configured for OAuth2 authentication out of the box. In order to enable it, there are several environment variables that need to be set to appropriate values:

  • OAUTH_AUTH_URL is used to specify the auth endpoint, for example https://sso.yourdomain.com/realms/YourRealm/protocol/openid-connect/auth.
  • OAUTH_TOKEN_URL is used to specify the token endpoint, for example https://sso.yourdomain.com/realms/YourRealm/protocol/openid-connect/token.
  • OAUTH_PROFILE_URL is used to fetch the user's profile data, for example https://sso.yourdomain.com/realms/YourRealm/protocol/openid-connect/userinfo.
  • OAUTH_SCOPE is the list of scopes passed in the auth request, for example openid email profile.
  • OAUTH_APP_KEY is what OIDC refers to as the Client ID. For example, loomio.
  • OAUTH_APP_SECRET is what OIDC refers to as the Client Secret. It's a long string of letters and numbers and other characters.
  • OAUTH_ATTR_UID specifies which user profile field is used for Loomio's internal unique identifier for this user. For example, email.
  • OAUTH_ATTR_NAME specifies which user profile field is used for Loomio's displayed name, for example name.
  • OAUTH_ATTR_EMAIL specifies which user profile field is used for the Loomio account email address, for example email.
  • OAUTH_LOGIN_PROVIDER_NAME is the label used for the SSO login button. The user will see this value when they're prompted to log in using SSO. For example, Your Domain SSO.

For the ATTR variables, if you're not sure what your OAuth provider is returning, you can attempt a login and check the Loomio logs to see the response.

If you do not wish to allow users to create non-SSO accounts, you should also use FEATURES_DISABLE_EMAIL_LOGIN=1 to disable non-SSO logins.

SAML (optional)

The default environment file isn't configured for SAML authentication out of the box. In order to enable it, there are several environment variables that need to be set to appropriate values:

  • SAML_IDP_METADATA_URL is used to specify the metadata endpoint, for example https://sso.yourdomain.com/realms/YourRealm/protocol/saml/descriptor. This setting is ignored if SAML_IDP_METADATA is set.
  • SAML_IDP_METADATA is used to directly specify the SAML configuration rather than fetching it from a URL. Useful if you don't want to hammer your SAML provider for this data, but not recommended for general use.
  • SAML_ISSUER is occasionally useful if you need to override the issuer value.
  • SAML_LOGIN_PROVIDER_NAME is the label used for the SSO login button. The user will see this value when they're prompted to log in using SSO. For example, Your Domain SSO.

Attribute mapping is not supported for SAML.

If you do not wish to allow users to create non-SSO accounts, you should also use FEATURES_DISABLE_EMAIL_LOGIN=1 to disable non-SSO logins.

Setup SMTP

You need to bring your own SMTP server for Loomio to send emails.

If you already have an SMTP server, that's great, put the settings into the env file.

For everyone else here are some options to consider:

Edit the .env file and enter the right SMTP settings for your setup.

You might also need to add an SPF DNS record to indicate that the SMTP can send mail for your domain.

Initialize the database

This command initializes a new database for your Loomio instance to use.

docker compose up -d db
docker compose run app rake db:setup

Install crontab

Doing this tells the server what regular tasks it needs to run. These tasks include:

  • Noticing which proposals are closing in 24 hours and notifying users.
  • Closing proposals and notifying users they have closed.
  • Sending "Yesterday on Loomio", a digest of activity users have not already read. This is sent to users at 6am in their local timezone.

Run crontab -e and append the following line:

0 * * * *  /usr/bin/docker exec loomio-worker bundle exec rake loomio:hourly_tasks > ~/rake.log 2>&1

Starting the services

This command starts the database, application, reply-by-email, and live-update services all at once.

docker compose up -d

Give it a minute to start, then visit your URL while crossing your fingers!

If you visit the url with your browser and the rails server is not yet running, but nginx is, you'll see a "503 bad gateway" error message.

You'll want to see the logs as it all starts, run the following command:

docker compose logs -f

Try it out

visit your hostname in your browser.

Once you have signed in (and confirmed your email), grant yourself admin rights

docker compose run app rails c
User.last.update(is_admin: true)

you can now access the admin interface at https://loomio.example.com/admin

If something goes wrong

To see system error messages as they happen run docker compose logs -f and make a request against the server.

If you want to be notified of system errors you could setup Sentry and add it to the env.

Confirm env settings are correct.

After you change your env files you need to restart the system:

docker compose down
docker compose up -d

To update Loomio to the latest stable version just run the update script.

./scripts/update

To login to your running rails app console:

docker compose run app rails c

A PostgreSQL shell to inspect the database:

docker exec -ti loomio-db su - postgres -c 'psql loomio_production'

Backups

The default docker-compose.yml includes automatic backups with prodrigestivill/docker-postgres-backup-local, however, you'll need to run mkdir -p pgdumps && chown -R 999:999 pgdumps to set the correct permissions for this to work.

You can test that the automatic backup permissions are correct with this command:

docker run --rm -v "$PWD:/backups" -u "$(id -u):$(id -g)" --network=loomio-deploy_main -e POSTGRES_HOST=db -e POSTGRES_DB=loomio_production -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=password  prodrigestivill/postgres-backup-local /backup.sh

However, sometimes you just want to make or restore an SQL snapshot directly.

Dump SQL

docker exec -ti loomio-db su - postgres -c 'pg_dump -c loomio_production' > loomio_production.sql

Restore SQL

cat loomio_production.sql | docker exec -i loomio-db su - postgres -c 'psql loomio_production'

Updating old versions of Loomio

Please upgrade through the following versions. You need to edit .env and change LOOMIO_CONTAINER_TAG to each version, then run ./scripts/update. When the migrations have completed, apply the next tag and repeat.

  • v2.4.2
  • v2.8.8
  • v2.11.13
  • v2.15.4
  • v2.17.1

loomio-deploy's People

Contributors

aym-frama avatar bkmgit avatar cripton avatar eternaltyro avatar gdpelican avatar gregorykan avatar jakkarth avatar ldidry avatar modulistic avatar ricks-ha avatar robguthrie avatar rohfle avatar sharils avatar thiras avatar tttp avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

loomio-deploy's Issues

Wrong version number (Worker)

Hi Guys,
I tried to install loomio-deploy as is and I see two problems:

  1. problem with letsencrypt, and I fix it with manually created a cert and key.
  2. its issue with Worker, its not working well and I get error : OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=error: wrong version number
    after that I got a lot of errors from Ruby and gems.

also, I cant send emails with my email account in office365 and from my Gmail, I tried any port but the only error I got is regarding OpenSSL.

Need your help to finish the installation, it's not must be docker BTW.

WELCOME_EMAIL_* in env

Database initialization requires WELCOME_EMAIL_SENDER_NAME and WELCOME_EMAIL_SENDER_EMAIL.

SSL Issue

I am having the following error after installing via loomio deploy.

WARN: OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=error: wrong version number

Could anyone point me in the right direction?

Deprecated links annotation on compose file

Hello.

As you can see here links notation is deprecated already. No need to create links between them since docker create a network between all containers by default.

Would you like to have a PR to fix it?

hourly cronjob - should be part of the worker container

currently, the hourly cronjob is supposed to run as crontab - requiring docker-compose

for kubernetes (and possibly, other orchestrators), it is not possible to run this way

I suggest to have the cronjob run as part of the worker node, which will then run the crontab inside the worker loomio container - it is just a matter of installing crontab daemon inside the container (if not already present) and running it in the background as part of the docker entrypoint for worker task

worker_1 should not be listed as an upstream in nginx_1

I haven't figured out yet how /etc/nginx/conf.d/default.conf is compsoed in loomiodeploy_nginx_1 but it defines two upstream servers for the main website:

upstream loomio.example.com {
			## Can be connect with "bridge" network
		# loomiodeploy_worker_1
		server 172.17.0.5:3000;
			## Can be connect with "bridge" network
		# loomiodeploy_loomio_1
		server 172.17.0.4:3000;
}

From what I get in my deployment, worker_1 is not listening on port 3000 and thus should not be listed as an upstream. This results in many noisy errors in the logs.

Missing environments list

Hello.

I've tried to look both loomio and loomio-deploy repos to find full list of environments loomio app accepts.

Could you guide us about that? Even pure list of the environments (without explanation) is OK.

Group's not accessible?

Hi @robguthrie,

I fear we closed the first Group-Issue a bit too fast, because it also doesn't work from the main dashboard page. Because of that I tried to create some groups on the admin page.

Today I tried it again from the dashboard-page. After clicking on "Gruppe anlegen" nothing happend. But in the Admin-Panel I see the Group "testGroup-Open". See attache a log-excerpt.

create-group-log.txt

speed-up loomio container start up time

currently the docker image builds all assets on start-up, should look into building assets as a docker build step or cache the build assets and rebuild only when necessary

You may have encountered a bug in the Ruby interpreter or extension libraries

Hi there and thank you for your amazing work on Loomio!

I've been using Loomio's Docker image happily for the past year. This morning, I tried to upgrade to https://github.com/loomio/loomio/releases/tag/v2019-10-10. However, when trying to apply the migrations, as I usually do, with sudo docker-compose run --rm app rake db:migrate, I get the following stack trace:

/srv/loomio$ sudo docker-compose run --rm app rake db:migrate
Starting loomio-redis ... done
Starting loomio-db    ... done
/usr/local/bundle/gems/ffi-1.11.1/lib/ffi/library.rb:112: [BUG] Illegal instruction at 0x00007f143e6237a2
ruby 2.6.3p62 (2019-04-16 revision 67580) [x86_64-linux]

-- Control frame information -----------------------------------------------
c:0084 p:---- s:0462 e:000461 CFUNC  :open
c:0083 p:0022 s:0456 e:000455 BLOCK  /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/library.rb:112 [FINISH]
c:0082 p:---- s:0447 e:000446 CFUNC  :each
c:0081 p:0113 s:0443 e:000442 BLOCK  /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/library.rb:109 [FINISH]
c:0080 p:---- s:0436 e:000435 CFUNC  :map
c:0079 p:0069 s:0432 e:000431 METHOD /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/library.rb:99
c:0078 p:0079 s:0425 e:000424 CLASS  /usr/local/bundle/gems/sassc-2.2.1/lib/sassc/native.rb:11
c:0077 p:0007 s:0421 e:000420 CLASS  /usr/local/bundle/gems/sassc-2.2.1/lib/sassc/native.rb:6
c:0076 p:0014 s:0418 e:000417 TOP    /usr/local/bundle/gems/sassc-2.2.1/lib/sassc/native.rb:5 [FINISH]
c:0075 p:---- s:0415 e:000414 CFUNC  :require
c:0074 p:0013 s:0410 e:000409 BLOCK  /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22
c:0073 p:0074 s:0407 e:000406 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/loaded_features_index.rb:92
c:0072 p:0023 s:0395 e:000394 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21
c:0071 p:0052 s:0389 e:000388 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30
c:0070 p:0008 s:0382 e:000381 BLOCK  /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291
c:0069 p:0068 s:0379 e:000378 METHOD /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:257
c:0068 p:0011 s:0372 e:000371 METHOD /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291
c:0067 p:0037 s:0366 e:000365 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:48
c:0066 p:0021 s:0360 e:000359 TOP    /usr/local/bundle/gems/sassc-2.2.1/lib/sassc.rb:31 [FINISH]
c:0065 p:---- s:0357 e:000356 CFUNC  :require
c:0064 p:0013 s:0352 e:000351 BLOCK  /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22
c:0063 p:0074 s:0349 e:000348 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/loaded_features_index.rb:92
c:0062 p:0023 s:0337 e:000336 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21
c:0061 p:0052 s:0331 e:000330 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30
c:0060 p:0008 s:0324 e:000323 BLOCK  /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291
c:0059 p:0068 s:0321 e:000320 METHOD /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:257
c:0058 p:0011 s:0314 e:000313 METHOD /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291
c:0057 p:0013 s:0308 e:000307 TOP    /usr/local/bundle/gems/sassc-rails-2.1.2/lib/sassc/rails.rb:5 [FINISH]
c:0056 p:---- s:0305 e:000304 CFUNC  :require
c:0055 p:0013 s:0300 e:000299 BLOCK  /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22
c:0054 p:0074 s:0297 e:000296 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/loaded_features_index.rb:92
c:0053 p:0023 s:0285 e:000284 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21
c:0052 p:0052 s:0279 e:000278 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30
c:0051 p:0008 s:0272 e:000271 BLOCK  /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291
c:0050 p:0068 s:0269 e:000268 METHOD /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:257
c:0049 p:0011 s:0262 e:000261 METHOD /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291
c:0048 p:0037 s:0256 e:000255 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:48
c:0047 p:0006 s:0250 e:000249 TOP    /usr/local/bundle/gems/sassc-rails-2.1.2/lib/sassc-rails.rb:3 [FINISH]
c:0046 p:---- s:0247 e:000246 CFUNC  :require
c:0045 p:0013 s:0242 e:000241 BLOCK  /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22
c:0044 p:0074 s:0239 e:000238 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/loaded_features_index.rb:92
c:0043 p:0023 s:0227 e:000226 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21
c:0042 p:0052 s:0221 e:000220 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30
c:0041 p:0008 s:0214 e:000213 BLOCK  /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291
c:0040 p:0068 s:0211 e:000210 METHOD /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:257
c:0039 p:0011 s:0204 e:000203 METHOD /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291
c:0038 p:0069 s:0198 e:000197 TOP    /usr/local/bundle/gems/activeadmin-2.4.0/lib/active_admin.rb:11 [FINISH]
c:0037 p:---- s:0195 e:000194 CFUNC  :require
c:0036 p:0013 s:0190 e:000189 BLOCK  /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22
c:0035 p:0074 s:0187 e:000186 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/loaded_features_index.rb:92
c:0034 p:0023 s:0175 e:000174 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21
c:0033 p:0052 s:0169 e:000168 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30
c:0032 p:0008 s:0162 e:000161 BLOCK  /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291
c:0031 p:0068 s:0159 e:000158 METHOD /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:257
c:0030 p:0011 s:0152 e:000151 METHOD /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291
c:0029 p:0006 s:0146 e:000145 TOP    /usr/local/bundle/gems/activeadmin-2.4.0/lib/activeadmin.rb:1 [FINISH]
c:0028 p:---- s:0143 e:000142 CFUNC  :require
c:0027 p:0013 s:0138 e:000137 BLOCK  /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22
c:0026 p:0074 s:0135 e:000134 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/loaded_features_index.rb:92
c:0025 p:0023 s:0123 e:000122 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21
c:0024 p:0052 s:0117 e:000116 METHOD /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30
c:0023 p:0033 s:0110 e:000109 BLOCK  /usr/local/lib/ruby/site_ruby/2.6.0/bundler/runtime.rb:81 [FINISH]
c:0022 p:---- s:0105 e:000104 CFUNC  :each
c:0021 p:0050 s:0101 e:000100 BLOCK  /usr/local/lib/ruby/site_ruby/2.6.0/bundler/runtime.rb:76 [FINISH]
c:0020 p:---- s:0094 e:000093 CFUNC  :each
c:0019 p:0030 s:0090 e:000089 METHOD /usr/local/lib/ruby/site_ruby/2.6.0/bundler/runtime.rb:65
c:0018 p:0015 s:0085 e:000084 METHOD /usr/local/lib/ruby/site_ruby/2.6.0/bundler.rb:114
c:0017 p:0048 s:0080 e:000079 TOP    /loomio/config/application.rb:5 [FINISH]
c:0016 p:---- s:0077 e:000076 CFUNC  :require
c:0015 p:0110 s:0072 e:000071 METHOD /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54
c:0014 p:0018 s:0060 e:000059 TOP    /loomio/Rakefile:5 [FINISH]
c:0013 p:---- s:0057 e:000056 CFUNC  :load
c:0012 p:0006 s:0052 e:000051 METHOD /usr/local/bundle/gems/rake-13.0.0/lib/rake/rake_module.rb:29
c:0011 p:0200 s:0047 e:000046 METHOD /usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:703
c:0010 p:0005 s:0041 e:000040 BLOCK  /usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:104
c:0009 p:0002 s:0038 e:000037 METHOD /usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:186
c:0008 p:0005 s:0033 e:000032 METHOD /usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:103
c:0007 p:0014 s:0029 e:000028 BLOCK  /usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:82
c:0006 p:0002 s:0026 e:000025 METHOD /usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:186
c:0005 p:0014 s:0021 e:000020 METHOD /usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:80
c:0004 p:0020 s:0016 e:000015 TOP    /usr/local/bundle/gems/rake-13.0.0/exe/rake:27 [FINISH]
c:0003 p:---- s:0013 e:000012 CFUNC  :load
c:0002 p:0109 s:0008 E:002070 EVAL   /usr/local/bundle/bin/rake:23 [FINISH]
c:0001 p:0000 s:0003 E:0001d0 (none) [FINISH]

-- Ruby level backtrace information ----------------------------------------
/usr/local/bundle/bin/rake:23:in `<main>'
/usr/local/bundle/bin/rake:23:in `load'
/usr/local/bundle/gems/rake-13.0.0/exe/rake:27:in `<top (required)>'
/usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:80:in `run'
/usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:186:in `standard_exception_handling'
/usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:82:in `block in run'
/usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:103:in `load_rakefile'
/usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:186:in `standard_exception_handling'
/usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:104:in `block in load_rakefile'
/usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb:703:in `raw_load_rakefile'
/usr/local/bundle/gems/rake-13.0.0/lib/rake/rake_module.rb:29:in `load_rakefile'
/usr/local/bundle/gems/rake-13.0.0/lib/rake/rake_module.rb:29:in `load'
/loomio/Rakefile:5:in `<top (required)>'
/usr/local/lib/ruby/site_ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/lib/ruby/site_ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/loomio/config/application.rb:5:in `<top (required)>'
/usr/local/lib/ruby/site_ruby/2.6.0/bundler.rb:114:in `require'
/usr/local/lib/ruby/site_ruby/2.6.0/bundler/runtime.rb:65:in `require'
/usr/local/lib/ruby/site_ruby/2.6.0/bundler/runtime.rb:65:in `each'
/usr/local/lib/ruby/site_ruby/2.6.0/bundler/runtime.rb:76:in `block in require'
/usr/local/lib/ruby/site_ruby/2.6.0/bundler/runtime.rb:76:in `each'
/usr/local/lib/ruby/site_ruby/2.6.0/bundler/runtime.rb:81:in `block (2 levels) in require'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30:in `require'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21:in `require_with_bootsnap_lfi'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/loaded_features_index.rb:92:in `register'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `block in require_with_bootsnap_lfi'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `require'
/usr/local/bundle/gems/activeadmin-2.4.0/lib/activeadmin.rb:1:in `<main>'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291:in `require'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:257:in `load_dependency'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291:in `block in require'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30:in `require'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21:in `require_with_bootsnap_lfi'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/loaded_features_index.rb:92:in `register'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `block in require_with_bootsnap_lfi'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `require'
/usr/local/bundle/gems/activeadmin-2.4.0/lib/active_admin.rb:11:in `<main>'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291:in `require'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:257:in `load_dependency'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291:in `block in require'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30:in `require'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21:in `require_with_bootsnap_lfi'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/loaded_features_index.rb:92:in `register'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `block in require_with_bootsnap_lfi'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `require'
/usr/local/bundle/gems/sassc-rails-2.1.2/lib/sassc-rails.rb:3:in `<main>'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:48:in `require_relative'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291:in `require'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:257:in `load_dependency'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291:in `block in require'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30:in `require'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21:in `require_with_bootsnap_lfi'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/loaded_features_index.rb:92:in `register'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `block in require_with_bootsnap_lfi'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `require'
/usr/local/bundle/gems/sassc-rails-2.1.2/lib/sassc/rails.rb:5:in `<main>'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291:in `require'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:257:in `load_dependency'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291:in `block in require'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30:in `require'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21:in `require_with_bootsnap_lfi'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/loaded_features_index.rb:92:in `register'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `block in require_with_bootsnap_lfi'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `require'
/usr/local/bundle/gems/sassc-2.2.1/lib/sassc.rb:31:in `<main>'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:48:in `require_relative'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291:in `require'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:257:in `load_dependency'
/usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb:291:in `block in require'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:30:in `require'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:21:in `require_with_bootsnap_lfi'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/loaded_features_index.rb:92:in `register'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `block in require_with_bootsnap_lfi'
/usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `require'
/usr/local/bundle/gems/sassc-2.2.1/lib/sassc/native.rb:5:in `<main>'
/usr/local/bundle/gems/sassc-2.2.1/lib/sassc/native.rb:6:in `<module:SassC>'
/usr/local/bundle/gems/sassc-2.2.1/lib/sassc/native.rb:11:in `<module:Native>'
/usr/local/bundle/gems/ffi-1.11.1/lib/ffi/library.rb:99:in `ffi_lib'
/usr/local/bundle/gems/ffi-1.11.1/lib/ffi/library.rb:99:in `map'
/usr/local/bundle/gems/ffi-1.11.1/lib/ffi/library.rb:109:in `block in ffi_lib'
/usr/local/bundle/gems/ffi-1.11.1/lib/ffi/library.rb:109:in `each'
/usr/local/bundle/gems/ffi-1.11.1/lib/ffi/library.rb:112:in `block (2 levels) in ffi_lib'
/usr/local/bundle/gems/ffi-1.11.1/lib/ffi/library.rb:112:in `open'

-- Machine register context ------------------------------------------------
 RIP: 0x00007f143e6237a2 RBP: 0x0000000000000003 RSP: 0x00007ffd9c1daf70
 RAX: 0x00007ffd9c1dafd0 RBX: 0x00007ffd9c1daf80 RCX: 0x000000007373632e
 RDX: 0x0000000000000003 RDI: 0x00007f143e7acb80 RSI: 0x00007ffd9c1daf80
  R8: 0x00007f14426a9d80  R9: 0x0000000000000000 R10: 0xfffffffffffffa4d
 R11: 0x00007f144258f020 R12: 0x00007ffd9c1e1308 R13: 0x0000560656ef1c60
 R14: 0x00007f143e794d38 R15: 0x0000000000000000 EFL: 0x0000000000010206

-- C level backtrace information -------------------------------------------
/usr/local/lib/libruby.so.2.6(rb_vm_bugreport+0x50d) [0x7f1442d995ed] vm_dump.c:715
[0x7f1442bfee7b]
/usr/local/lib/libruby.so.2.6(sigill+0x32) [0x7f1442d0a712] signal.c:1013
/lib/x86_64-linux-gnu/libpthread.so.0(__restore_rt+0x0) [0x7f1442911730]
/usr/local/bundle/gems/sassc-2.2.1/lib/sassc/libsass.so(0x7f143e6237a2) [0x7f143e6237a2]
/usr/local/bundle/gems/sassc-2.2.1/lib/sassc/libsass.so(0x7f143e62c174) [0x7f143e62c174]
/usr/local/bundle/gems/sassc-2.2.1/lib/sassc/libsass.so(0x7f143e62041f) [0x7f143e62041f]
/lib64/ld-linux-x86-64.so.2(0x7f1442eb637a) [0x7f1442eb637a]
/lib64/ld-linux-x86-64.so.2(0x7f1442eb6476) [0x7f1442eb6476]
/lib64/ld-linux-x86-64.so.2(0x7f1442eba2d3) [0x7f1442eba2d3]
/lib/x86_64-linux-gnu/libc.so.6(_dl_catch_exception+0x6f) [0x7f1442621b2f]
/lib64/ld-linux-x86-64.so.2(0x7f1442eb9bba) [0x7f1442eb9bba]
/lib/x86_64-linux-gnu/libdl.so.2(0x7f144286e256) [0x7f144286e256]
/lib/x86_64-linux-gnu/libc.so.6(_dl_catch_exception+0x6f) [0x7f1442621b2f]
/lib/x86_64-linux-gnu/libc.so.6(_dl_catch_error+0x2f) [0x7f1442621bbf]
/lib/x86_64-linux-gnu/libdl.so.2(0x7f144286e975) [0x7f144286e975]
/lib/x86_64-linux-gnu/libdl.so.2(dlopen+0x46) [0x7f144286e2e6]
/usr/local/bundle/gems/ffi-1.11.1/lib/ffi_c.so(library_initialize+0x5d) [0x7f143fbf83bd] DynamicLibrary.c:124
[0x7f1442d7b3bb]
[0x7f1442d8b90c]
/usr/local/lib/libruby.so.2.6(vm_call_method+0x55) [0x7f1442d8bfc5] vm_insnhelper.c:2369
[0x7f1442d84d13]
[0x7f1442d8a6f8]
/usr/local/lib/libruby.so.2.6(rb_yield+0x23b) [0x7f1442d9167b] vm.c:1021
/usr/local/lib/libruby.so.2.6(rb_ary_each+0x3c) [0x7f1442b7bccc] array.c:2086
[0x7f1442d7b3bb]
[0x7f1442d8b90c]
/usr/local/lib/libruby.so.2.6(vm_call_method+0x55) [0x7f1442d8bfc5] vm_insnhelper.c:2369
[0x7f1442d84db0]
[0x7f1442d8a6f8]
/usr/local/lib/libruby.so.2.6(rb_yield+0x23b) [0x7f1442d9167b] vm.c:1021
/usr/local/lib/libruby.so.2.6(rb_ary_collect+0x5c) [0x7f1442b80f6c] array.c:3016
[0x7f1442d7b3bb]
[0x7f1442d8b90c]
/usr/local/lib/libruby.so.2.6(vm_call_method+0x55) [0x7f1442d8bfc5] vm_insnhelper.c:2369
[0x7f1442d84db0]
[0x7f1442d8aeed]
[0x7f1442c50b47]
/usr/local/lib/libruby.so.2.6(rb_require_internal+0x401) [0x7f1442c52991] load.c:1029
/usr/local/lib/libruby.so.2.6(rb_require_safe+0x9) [0x7f1442c52a79] load.c:1075
[0x7f1442d7b3bb]
[0x7f1442d84d13]
[0x7f1442d8a6f8]
[0x7f1442c50b47]
/usr/local/lib/libruby.so.2.6(rb_require_internal+0x401) [0x7f1442c52991] load.c:1029
/usr/local/lib/libruby.so.2.6(rb_require_safe+0x9) [0x7f1442c52a79] load.c:1075
[0x7f1442d7b3bb]
[0x7f1442d84d13]
[0x7f1442d8aeed]
[0x7f1442c50b47]
/usr/local/lib/libruby.so.2.6(rb_require_internal+0x401) [0x7f1442c52991] load.c:1029
/usr/local/lib/libruby.so.2.6(rb_require_safe+0x9) [0x7f1442c52a79] load.c:1075
[0x7f1442d7b3bb]
[0x7f1442d84d13]
[0x7f1442d8a6f8]
[0x7f1442c50b47]
/usr/local/lib/libruby.so.2.6(rb_require_internal+0x401) [0x7f1442c52991] load.c:1029
/usr/local/lib/libruby.so.2.6(rb_require_safe+0x9) [0x7f1442c52a79] load.c:1075
[0x7f1442d7b3bb]
[0x7f1442d84d13]
[0x7f1442d8aeed]
[0x7f1442c50b47]
/usr/local/lib/libruby.so.2.6(rb_require_internal+0x401) [0x7f1442c52991] load.c:1029
/usr/local/lib/libruby.so.2.6(rb_require_safe+0x9) [0x7f1442c52a79] load.c:1075
[0x7f1442d7b3bb]
[0x7f1442d8b90c]
/usr/local/lib/libruby.so.2.6(vm_call_method+0x55) [0x7f1442d8bfc5] vm_insnhelper.c:2369
[0x7f1442d84d13]
[0x7f1442d8aeed]
[0x7f1442c50b47]
/usr/local/lib/libruby.so.2.6(rb_require_internal+0x401) [0x7f1442c52991] load.c:1029
/usr/local/lib/libruby.so.2.6(rb_require_safe+0x9) [0x7f1442c52a79] load.c:1075
[0x7f1442d7b3bb]
[0x7f1442d8b90c]
/usr/local/lib/libruby.so.2.6(vm_call_method+0x55) [0x7f1442d8bfc5] vm_insnhelper.c:2369
[0x7f1442d84d13]
[0x7f1442d8aeed]
/usr/local/lib/libruby.so.2.6(rb_yield+0x23b) [0x7f1442d9167b] vm.c:1021
/usr/local/lib/libruby.so.2.6(rb_ary_each+0x3c) [0x7f1442b7bccc] array.c:2086
[0x7f1442d7b3bb]
[0x7f1442d84db0]
[0x7f1442d8a6f8]
/usr/local/lib/libruby.so.2.6(rb_yield+0x23b) [0x7f1442d9167b] vm.c:1021
/usr/local/lib/libruby.so.2.6(rb_ary_each+0x3c) [0x7f1442b7bccc] array.c:2086
[0x7f1442d7b3bb]
[0x7f1442d8b90c]
/usr/local/lib/libruby.so.2.6(vm_call_method+0x55) [0x7f1442d8bfc5] vm_insnhelper.c:2369
[0x7f1442d84db0]
[0x7f1442d8aeed]
[0x7f1442c50b47]
/usr/local/lib/libruby.so.2.6(rb_require_internal+0x401) [0x7f1442c52991] load.c:1029
/usr/local/lib/libruby.so.2.6(rb_require_safe+0x9) [0x7f1442c52a79] load.c:1075
[0x7f1442d7b3bb]
[0x7f1442d84d13]
[0x7f1442d8a6f8]
[0x7f1442c50b47]
/usr/local/lib/libruby.so.2.6(rb_f_load+0x8b) [0x7f1442c50e0b] load.c:643
[0x7f1442d7b3bb]
[0x7f1442d8b90c]
/usr/local/lib/libruby.so.2.6(vm_call_method+0x55) [0x7f1442d8bfc5] vm_insnhelper.c:2369
[0x7f1442d84d13]
[0x7f1442d8aeed]
[0x7f1442c50b47]
/usr/local/lib/libruby.so.2.6(rb_f_load+0x8b) [0x7f1442c50e0b] load.c:643
[0x7f1442d7b3bb]
[0x7f1442d8b90c]
/usr/local/lib/libruby.so.2.6(vm_call_method+0x55) [0x7f1442d8bfc5] vm_insnhelper.c:2369
[0x7f1442d84d13]
[0x7f1442d8a6f8]
/usr/local/lib/libruby.so.2.6(ruby_exec_internal+0xd6) [0x7f1442c03716] eval.c:262
/usr/local/lib/libruby.so.2.6(ruby_exec_node+0x1d) [0x7f1442c0575d] eval.c:326
/usr/local/lib/libruby.so.2.6(ruby_run_node+0x2e) [0x7f1442c0861e] eval.c:318
/usr/local/bin/ruby(main+0x5b) [0x560654fe210b] ./main.c:42

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

* Loaded script: /usr/local/bundle/bin/rake

* Loaded features:

    0 enumerator.so
    1 thread.rb
    2 rational.so
    3 complex.so
    4 /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
    5 /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
    6 /usr/local/lib/ruby/2.6.0/x86_64-linux/rbconfig.rb
    7 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/compatibility.rb
    8 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/defaults.rb
    9 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/deprecate.rb
   10 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/errors.rb
   11 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/path_support.rb
   12 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/version.rb
   13 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/requirement.rb
   14 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/platform.rb
   15 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/basic_specification.rb
   16 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/stub_specification.rb
   17 /usr/local/lib/ruby/2.6.0/delegate.rb
   18 /usr/local/lib/ruby/2.6.0/uri/rfc2396_parser.rb
   19 /usr/local/lib/ruby/2.6.0/uri/rfc3986_parser.rb
   20 /usr/local/lib/ruby/2.6.0/uri/common.rb
   21 /usr/local/lib/ruby/2.6.0/uri/generic.rb
   22 /usr/local/lib/ruby/2.6.0/uri/file.rb
   23 /usr/local/lib/ruby/2.6.0/uri/ftp.rb
   24 /usr/local/lib/ruby/2.6.0/uri/http.rb
   25 /usr/local/lib/ruby/2.6.0/uri/https.rb
   26 /usr/local/lib/ruby/2.6.0/uri/ldap.rb
   27 /usr/local/lib/ruby/2.6.0/uri/ldaps.rb
   28 /usr/local/lib/ruby/2.6.0/uri/mailto.rb
   29 /usr/local/lib/ruby/2.6.0/uri.rb
   30 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/specification_policy.rb
   31 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/util/list.rb
   32 /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
   33 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/specification.rb
   34 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/exceptions.rb
   35 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/util.rb
   36 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/bundler_version_finder.rb
   37 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/dependency.rb
   38 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/core_ext/kernel_gem.rb
   39 /usr/local/lib/ruby/2.6.0/monitor.rb
   40 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/core_ext/kernel_require.rb
   41 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/core_ext/kernel_warn.rb
   42 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems.rb
   43 /usr/local/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/version.rb
   44 /usr/local/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/core_ext/name_error.rb
   45 /usr/local/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/levenshtein.rb
   46 /usr/local/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/jaro_winkler.rb
   47 /usr/local/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checker.rb
   48 /usr/local/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb
   49 /usr/local/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb
   50 /usr/local/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/name_error_checkers.rb
   51 /usr/local/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/method_name_checker.rb
   52 /usr/local/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/key_error_checker.rb
   53 /usr/local/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/spell_checkers/null_checker.rb
   54 /usr/local/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean/formatters/plain_formatter.rb
   55 /usr/local/lib/ruby/gems/2.6.0/gems/did_you_mean-1.3.0/lib/did_you_mean.rb
   56 /usr/local/lib/ruby/2.6.0/tsort.rb
   57 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/request_set/gem_dependency_api.rb
   58 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/request_set/lockfile/parser.rb
   59 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/request_set/lockfile/tokenizer.rb
   60 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/request_set/lockfile.rb
   61 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/request_set.rb
   62 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb
   63 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/errors.rb
   64 /usr/local/lib/ruby/2.6.0/set.rb
   65 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb
   66 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb
   67 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb
   68 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb
   69 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb
   70 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb
   71 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb
   72 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb
   73 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb
   74 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb
   75 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/state.rb
   76 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb
   77 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb
   78 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb
   79 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/resolution.rb
   80 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/resolver.rb
   81 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb
   82 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo/lib/molinillo.rb
   83 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/molinillo.rb
   84 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/activation_request.rb
   85 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/conflict.rb
   86 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/dependency_request.rb
   87 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/requirement_list.rb
   88 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/stats.rb
   89 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/set.rb
   90 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/api_set.rb
   91 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/composed_set.rb
   92 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/best_set.rb
   93 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/current_set.rb
   94 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/git_set.rb
   95 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/index_set.rb
   96 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/installer_set.rb
   97 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/lock_set.rb
   98 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/vendor_set.rb
   99 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/source_set.rb
  100 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/specification.rb
  101 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/spec_specification.rb
  102 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/api_specification.rb
  103 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/git_specification.rb
  104 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/index_specification.rb
  105 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/installed_specification.rb
  106 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/local_specification.rb
  107 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/lock_specification.rb
  108 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver/vendor_specification.rb
  109 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/resolver.rb
  110 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/source/git.rb
  111 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/source/installed.rb
  112 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/source/specific_file.rb
  113 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/source/local.rb
  114 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/source/lock.rb
  115 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/source/vendor.rb
  116 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/source.rb
  117 /usr/local/bundle/gems/rake-13.0.0/lib/rake/version.rb
  118 /usr/local/lib/ruby/2.6.0/fileutils/version.rb
  119 /usr/local/lib/ruby/2.6.0/x86_64-linux/etc.so
  120 /usr/local/lib/ruby/2.6.0/fileutils.rb
  121 /usr/local/lib/ruby/2.6.0/singleton.rb
  122 /usr/local/lib/ruby/2.6.0/optparse.rb
  123 /usr/local/lib/ruby/2.6.0/ostruct.rb
  124 /usr/local/bundle/gems/rake-13.0.0/lib/rake/ext/core.rb
  125 /usr/local/bundle/gems/rake-13.0.0/lib/rake/ext/string.rb
  126 /usr/local/bundle/gems/rake-13.0.0/lib/rake/win32.rb
  127 /usr/local/bundle/gems/rake-13.0.0/lib/rake/linked_list.rb
  128 /usr/local/bundle/gems/rake-13.0.0/lib/rake/cpu_counter.rb
  129 /usr/local/bundle/gems/rake-13.0.0/lib/rake/scope.rb
  130 /usr/local/bundle/gems/rake-13.0.0/lib/rake/task_argument_error.rb
  131 /usr/local/bundle/gems/rake-13.0.0/lib/rake/rule_recursion_overflow_error.rb
  132 /usr/local/bundle/gems/rake-13.0.0/lib/rake/task_manager.rb
  133 /usr/local/bundle/gems/rake-13.0.0/lib/rake/cloneable.rb
  134 /usr/local/bundle/gems/rake-13.0.0/lib/rake/file_utils.rb
  135 /usr/local/bundle/gems/rake-13.0.0/lib/rake/file_utils_ext.rb
  136 /usr/local/bundle/gems/rake-13.0.0/lib/rake/file_list.rb
  137 /usr/local/bundle/gems/rake-13.0.0/lib/rake/promise.rb
  138 /usr/local/bundle/gems/rake-13.0.0/lib/rake/thread_pool.rb
  139 /usr/local/bundle/gems/rake-13.0.0/lib/rake/private_reader.rb
  140 /usr/local/bundle/gems/rake-13.0.0/lib/rake/thread_history_display.rb
  141 /usr/local/bundle/gems/rake-13.0.0/lib/rake/trace_output.rb
  142 /usr/local/bundle/gems/rake-13.0.0/lib/rake/application.rb
  143 /usr/local/bundle/gems/rake-13.0.0/lib/rake/rake_module.rb
  144 /usr/local/bundle/gems/rake-13.0.0/lib/rake/pseudo_status.rb
  145 /usr/local/bundle/gems/rake-13.0.0/lib/rake/task_arguments.rb
  146 /usr/local/bundle/gems/rake-13.0.0/lib/rake/invocation_chain.rb
  147 /usr/local/bundle/gems/rake-13.0.0/lib/rake/invocation_exception_mixin.rb
  148 /usr/local/bundle/gems/rake-13.0.0/lib/rake/task.rb
  149 /usr/local/bundle/gems/rake-13.0.0/lib/rake/early_time.rb
  150 /usr/local/bundle/gems/rake-13.0.0/lib/rake/file_task.rb
  151 /usr/local/bundle/gems/rake-13.0.0/lib/rake/file_creation_task.rb
  152 /usr/local/bundle/gems/rake-13.0.0/lib/rake/multi_task.rb
  153 /usr/local/bundle/gems/rake-13.0.0/lib/rake/dsl_definition.rb
  154 /usr/local/bundle/gems/rake-13.0.0/lib/rake/default_loader.rb
  155 /usr/local/bundle/gems/rake-13.0.0/lib/rake/late_time.rb
  156 /usr/local/bundle/gems/rake-13.0.0/lib/rake/name_space.rb
  157 /usr/local/bundle/gems/rake-13.0.0/lib/rake/backtrace.rb
  158 /usr/local/bundle/gems/rake-13.0.0/lib/rake.rb
  159 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/version.rb
  160 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/compatibility_guard.rb
  161 /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
  162 /usr/local/lib/ruby/2.6.0/pathname.rb
  163 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/constants.rb
  164 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/text.rb
  165 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/user_interaction.rb
  166 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/config_file.rb
  167 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/rubygems_integration.rb
  168 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/current_ruby.rb
  169 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/shared_helpers.rb
  170 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/fileutils/lib/fileutils.rb
  171 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendored_fileutils.rb
  172 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/errors.rb
  173 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/environment_preserver.rb
  174 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/plugin/api.rb
  175 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/plugin.rb
  176 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/gem_helpers.rb
  177 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/match_platform.rb
  178 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/rubygems_ext.rb
  179 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/build_metadata.rb
  180 /usr/local/lib/ruby/site_ruby/2.6.0/bundler.rb
  181 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/settings.rb
  182 /usr/local/lib/ruby/site_ruby/2.6.0/rubygems/ext/builder.rb
  183 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/feature_flag.rb
  184 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/source.rb
  185 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/source/path.rb
  186 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/source/git.rb
  187 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/source/rubygems.rb
  188 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/lockfile_parser.rb
  189 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/definition.rb
  190 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/dependency.rb
  191 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/ruby_dsl.rb
  192 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/dsl.rb
  193 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/source_list.rb
  194 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/source/metadata.rb
  195 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/ruby_version.rb
  196 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/uri_credentials_filter.rb
  197 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/ui.rb
  198 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/ui/silent.rb
  199 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/ui/rg_proxy.rb
  200 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/lazy_specification.rb
  201 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/index.rb
  202 /usr/local/lib/ruby/2.6.0/forwardable/impl.rb
  203 /usr/local/lib/ruby/2.6.0/forwardable.rb
  204 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/spec_set.rb
  205 /usr/local/lib/ruby/2.6.0/shellwords.rb
  206 /usr/local/lib/ruby/2.6.0/tmpdir.rb
  207 /usr/local/lib/ruby/2.6.0/tempfile.rb
  208 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/source/git/git_proxy.rb
  209 /usr/local/lib/ruby/2.6.0/x86_64-linux/digest.so
  210 /usr/local/lib/ruby/2.6.0/digest.rb
  211 /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
  212 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/compatibility.rb
  213 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb
  214 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb
  215 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/errors.rb
  216 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb
  217 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb
  218 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb
  219 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb
  220 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb
  221 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb
  222 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb
  223 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb
  224 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb
  225 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb
  226 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/state.rb
  227 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb
  228 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb
  229 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/resolution.rb
  230 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/resolver.rb
  231 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb
  232 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendor/molinillo/lib/molinillo.rb
  233 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/vendored_molinillo.rb
  234 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/resolver/spec_group.rb
  235 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/resolver.rb
  236 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/source/gemspec.rb
  237 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/runtime.rb
  238 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/dep_proxy.rb
  239 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/remote_specification.rb
  240 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/stub_specification.rb
  241 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/endpoint_specification.rb
  242 /usr/local/lib/ruby/site_ruby/2.6.0/bundler/setup.rb
  243 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/version.rb
  244 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/bundler.rb
  245 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/explicit_require.rb
  246 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/path_scanner.rb
  247 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/path.rb
  248 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/cache.rb
  249 /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/version.rb
  250 /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/msgpack.so
  251 /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/packer.rb
  252 /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/unpacker.rb
  253 /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/factory.rb
  254 /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/symbol.rb
  255 /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/core_ext.rb
  256 /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/timestamp.rb
  257 /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/time.rb
  258 /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack.rb
  259 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/store.rb
  260 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/change_observer.rb
  261 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/loaded_features_index.rb
  262 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/realpath_cache.rb
  263 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache.rb
  264 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/compile_cache.rb
  265 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap.rb
  266 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb
  267 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/loaded_features.rb
  268 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/constants.rb
  269 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/engine.rb
  270 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/abstract_object.rb
  271 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/native_extension_loader.rb
  272 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/mri_object.rb
  273 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/jruby_object.rb
  274 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/rbx_object.rb
  275 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/truffleruby_object.rb
  276 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/object.rb
  277 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/volatile.rb
  278 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/abstract_lockable_object.rb
  279 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/mutex_lockable_object.rb
  280 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/jruby_lockable_object.rb
  281 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/rbx_lockable_object.rb
  282 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/lockable_object.rb
  283 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/condition.rb
  284 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/lock.rb
  285 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization.rb
  286 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map/non_concurrent_map_backend.rb
  287 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/map/mri_map_backend.rb
  288 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/map.rb
  289 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/module/aliasing.rb
  290 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/array/extract_options.rb
  291 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/regexp.rb
  292 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/module/attribute_accessors.rb
  293 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/array/prepend_and_append.rb
  294 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/deep_merge.rb
  295 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/except.rb
  296 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/slice.rb
  297 /usr/local/bundle/gems/i18n-1.6.0/lib/i18n/version.rb
  298 /usr/local/lib/ruby/2.6.0/cgi/core.rb
  299 /usr/local/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
  300 /usr/local/lib/ruby/2.6.0/cgi/util.rb
  301 /usr/local/lib/ruby/2.6.0/cgi/cookie.rb
  302 /usr/local/lib/ruby/2.6.0/cgi.rb
  303 /usr/local/bundle/gems/i18n-1.6.0/lib/i18n/exceptions.rb
  304 /usr/local/bundle/gems/i18n-1.6.0/lib/i18n/interpolate/ruby.rb
  305 /usr/local/bundle/gems/i18n-1.6.0/lib/i18n.rb
  306 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/lazy_load_hooks.rb
  307 /usr/local/bundle/gems/i18n-1.6.0/lib/i18n/config.rb
  308 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/i18n.rb
  309 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel/singleton_class.rb
  310 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/module/delegation.rb
  311 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/deprecation/instance_delegator.rb
  312 /usr/local/lib/ruby/2.6.0/securerandom.rb
  313 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/notifications/instrumenter.rb
  314 /usr/local/lib/ruby/2.6.0/mutex_m.rb
  315 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/notifications/fanout.rb
  316 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/per_thread_registry.rb
  317 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/notifications.rb
  318 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/deprecation/behaviors.rb
  319 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/deprecation/reporting.rb
  320 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/deprecation/constant_accessor.rb
  321 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/deprecation/method_wrappers.rb
  322 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/deprecation/proxy_wrappers.rb
  323 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/module/deprecation.rb
  324 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/deprecation.rb
  325 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/inflector/inflections.rb
  326 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/multibyte.rb
  327 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string/multibyte.rb
  328 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/inflector/transliterate.rb
  329 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/inflections.rb
  330 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/inflector/methods.rb
  331 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string/inflections.rb
  332 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/inflector.rb
  333 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/module/introspection.rb
  334 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/module/anonymous.rb
  335 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/object/blank.rb
  336 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel/reporting.rb
  337 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/load_error.rb
  338 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/name_error.rb
  339 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string/starts_ends_with.rb
  340 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/concurrency/share_lock.rb
  341 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies/interlock.rb
  342 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies.rb
  343 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/active_support.rb
  344 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/bootsnap.so
  345 /usr/local/lib/ruby/2.6.0/x86_64-linux/zlib.so
  346 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/compile_cache/iseq.rb
  347 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/compile_cache/yaml.rb
  348 /usr/local/lib/ruby/2.6.0/psych/versions.rb
  349 /usr/local/lib/ruby/2.6.0/psych/exception.rb
  350 /usr/local/lib/ruby/2.6.0/psych/syntax_error.rb
  351 /usr/local/lib/ruby/2.6.0/x86_64-linux/psych.so
  352 /usr/local/lib/ruby/2.6.0/psych/omap.rb
  353 /usr/local/lib/ruby/2.6.0/psych/set.rb
  354 /usr/local/lib/ruby/2.6.0/psych/class_loader.rb
  355 /usr/local/lib/ruby/2.6.0/x86_64-linux/strscan.so
  356 /usr/local/lib/ruby/2.6.0/psych/scalar_scanner.rb
  357 /usr/local/lib/ruby/2.6.0/psych/nodes/node.rb
  358 /usr/local/lib/ruby/2.6.0/psych/nodes/stream.rb
  359 /usr/local/lib/ruby/2.6.0/psych/nodes/document.rb
  360 /usr/local/lib/ruby/2.6.0/psych/nodes/sequence.rb
  361 /usr/local/lib/ruby/2.6.0/psych/nodes/scalar.rb
  362 /usr/local/lib/ruby/2.6.0/psych/nodes/mapping.rb
  363 /usr/local/lib/ruby/2.6.0/psych/nodes/alias.rb
  364 /usr/local/lib/ruby/2.6.0/psych/nodes.rb
  365 /usr/local/lib/ruby/2.6.0/psych/streaming.rb
  366 /usr/local/lib/ruby/2.6.0/psych/visitors/visitor.rb
  367 /usr/local/lib/ruby/2.6.0/psych/visitors/to_ruby.rb
  368 /usr/local/lib/ruby/2.6.0/psych/visitors/emitter.rb
  369 /usr/local/lib/ruby/2.6.0/psych/handler.rb
  370 /usr/local/lib/ruby/2.6.0/psych/tree_builder.rb
  371 /usr/local/lib/ruby/2.6.0/psych/visitors/yaml_tree.rb
  372 /usr/local/lib/ruby/2.6.0/psych/json/ruby_events.rb
  373 /usr/local/lib/ruby/2.6.0/psych/visitors/json_tree.rb
  374 /usr/local/lib/ruby/2.6.0/psych/visitors/depth_first.rb
  375 /usr/local/lib/ruby/2.6.0/psych/visitors.rb
  376 /usr/local/lib/ruby/2.6.0/psych/parser.rb
  377 /usr/local/lib/ruby/2.6.0/psych/coder.rb
  378 /usr/local/lib/ruby/2.6.0/psych/core_ext.rb
  379 /usr/local/lib/ruby/2.6.0/psych/stream.rb
  380 /usr/local/lib/ruby/2.6.0/psych/json/yaml_events.rb
  381 /usr/local/lib/ruby/2.6.0/psych/json/tree_builder.rb
  382 /usr/local/lib/ruby/2.6.0/psych/json/stream.rb
  383 /usr/local/lib/ruby/2.6.0/psych/handlers/document_stream.rb
  384 /usr/local/lib/ruby/2.6.0/psych.rb
  385 /usr/local/lib/ruby/2.6.0/yaml.rb
  386 /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/setup.rb
  387 /loomio/config/boot.rb
  388 /usr/local/bundle/gems/railties-5.2.3/lib/rails/ruby_version_check.rb
  389 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/dependencies/autoload.rb
  390 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/gem_version.rb
  391 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/version.rb
  392 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/concern.rb
  393 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/version.rb
  394 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/errors.rb
  395 /usr/local/lib/ruby/2.6.0/timeout.rb
  396 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/event.rb
  397 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/dereferenceable.rb
  398 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/obligation.rb
  399 /usr/local/lib/ruby/2.6.0/logger.rb
  400 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/logging.rb
  401 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/executor_service.rb
  402 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/at_exit.rb
  403 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/abstract_executor_service.rb
  404 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/serial_executor_service.rb
  405 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/immediate_executor.rb
  406 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/delay.rb
  407 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic_reference/numeric_cas_wrapper.rb
  408 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic_reference/mutex_atomic.rb
  409 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/atomic_reference.rb
  410 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/ruby_executor_service.rb
  411 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/monotonic_time.rb
  412 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/ruby_thread_pool_executor.rb
  413 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/thread_pool_executor.rb
  414 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/cached_thread_pool.rb
  415 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/processor_counter.rb
  416 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/configuration.rb
  417 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/mutex_atomic_boolean.rb
  418 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/atomic_boolean.rb
  419 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/utility/native_integer.rb
  420 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/mutex_atomic_fixnum.rb
  421 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/atomic_fixnum.rb
  422 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/cyclic_barrier.rb
  423 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/mutex_count_down_latch.rb
  424 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/java_count_down_latch.rb
  425 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/count_down_latch.rb
  426 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/read_write_lock.rb
  427 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/abstract_thread_local_var.rb
  428 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/ruby_thread_local_var.rb
  429 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/java_thread_local_var.rb
  430 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/thread_local_var.rb
  431 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/reentrant_read_write_lock.rb
  432 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/mutex_semaphore.rb
  433 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/semaphore.rb
  434 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomics.rb
  435 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/fixed_thread_pool.rb
  436 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/simple_executor_service.rb
  437 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/indirect_immediate_executor.rb
  438 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/java_executor_service.rb
  439 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/java_single_thread_executor.rb
  440 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/java_thread_pool_executor.rb
  441 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/ruby_single_thread_executor.rb
  442 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/safe_task_executor.rb
  443 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/serialized_execution.rb
  444 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/serialized_execution_delegator.rb
  445 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/single_thread_executor.rb
  446 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_write_observer_set.rb
  447 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_notify_observer_set.rb
  448 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/concern/observable.rb
  449 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/ivar.rb
  450 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/options.rb
  451 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/scheduled_task.rb
  452 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/java_non_concurrent_priority_queue.rb
  453 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/ruby_non_concurrent_priority_queue.rb
  454 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/non_concurrent_priority_queue.rb
  455 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executor/timer_set.rb
  456 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/executors.rb
  457 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atomic/atomic_markable_reference.rb
  458 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/agent.rb
  459 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/atom.rb
  460 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/util.rb
  461 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/array.rb
  462 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/hash.rb
  463 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/set.rb
  464 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/tuple.rb
  465 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/async.rb
  466 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/future.rb
  467 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/dataflow.rb
  468 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/maybe.rb
  469 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/exchanger.rb
  470 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/abstract_struct.rb
  471 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/immutable_struct.rb
  472 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/mutable_struct.rb
  473 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/mvar.rb
  474 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/promise.rb
  475 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/settable_struct.rb
  476 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/timer_task.rb
  477 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/tvar.rb
  478 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/collection/lock_free_stack.rb
  479 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/re_include.rb
  480 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
  481 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent/thread_safe/synchronized_delegator.rb
  482 /usr/local/bundle/gems/concurrent-ruby-1.1.5/lib/concurrent.rb
  483 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/logger_silence.rb
  484 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/logger_thread_safe_level.rb
  485 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/logger.rb
  486 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date_and_time/compatibility.rb
  487 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support.rb
  488 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/keys.rb
  489 /usr/local/lib/ruby/2.6.0/x86_64-linux/openssl.so
  490 /usr/local/lib/ruby/2.6.0/openssl/bn.rb
  491 /usr/local/lib/ruby/2.6.0/openssl/pkey.rb
  492 /usr/local/lib/ruby/2.6.0/openssl/cipher.rb
  493 /usr/local/lib/ruby/2.6.0/openssl/config.rb
  494 /usr/local/lib/ruby/2.6.0/openssl/digest.rb
  495 /usr/local/lib/ruby/2.6.0/openssl/x509.rb
  496 /usr/local/lib/ruby/2.6.0/openssl/buffering.rb
  497 /usr/local/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
  498 /usr/local/lib/ruby/2.6.0/x86_64-linux/socket.so
  499 /usr/local/lib/ruby/2.6.0/x86_64-linux/io/wait.so
  500 /usr/local/lib/ruby/2.6.0/socket.rb
  501 /usr/local/lib/ruby/2.6.0/ipaddr.rb
  502 /usr/local/lib/ruby/2.6.0/openssl/ssl.rb
  503 /usr/local/lib/ruby/2.6.0/openssl/pkcs5.rb
  504 /usr/local/lib/ruby/2.6.0/openssl.rb
  505 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/key_generator.rb
  506 /usr/local/lib/ruby/2.6.0/base64.rb
  507 /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
  508 /usr/local/lib/ruby/2.6.0/digest/sha2.rb
  509 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/security_utils.rb
  510 /usr/local/lib/ruby/2.6.0/x86_64-linux/date_core.so
  511 /usr/local/lib/ruby/2.6.0/date.rb
  512 /usr/local/lib/ruby/2.6.0/time.rb
  513 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/messages/metadata.rb
  514 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/messages/rotator.rb
  515 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/message_verifier.rb
  516 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/message_encryptor.rb
  517 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/encrypted_file.rb
  518 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/ordered_options.rb
  519 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/object/inclusion.rb
  520 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/encrypted_configuration.rb
  521 /usr/local/bundle/gems/railties-5.2.3/lib/rails/initializable.rb
  522 /usr/local/bundle/gems/railties-5.2.3/lib/rails/railtie.rb
  523 /usr/local/bundle/gems/railties-5.2.3/lib/rails/engine/railties.rb
  524 /usr/local/bundle/gems/railties-5.2.3/lib/rails/engine.rb
  525 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string/strip.rb
  526 /usr/local/bundle/gems/railties-5.2.3/lib/rails/secrets.rb
  527 /usr/local/bundle/gems/railties-5.2.3/lib/rails/application.rb
  528 /usr/local/bundle/gems/railties-5.2.3/lib/rails/gem_version.rb
  529 /usr/local/bundle/gems/railties-5.2.3/lib/rails/version.rb
  530 /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
  531 /usr/local/lib/ruby/2.6.0/bigdecimal.rb
  532 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/calculations.rb
  533 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/xml_mini/rexml.rb
  534 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/xml_mini.rb
  535 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/object/to_query.rb
  536 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/object/to_param.rb
  537 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/array/conversions.rb
  538 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/object/acts_like.rb
  539 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string/filters.rb
  540 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/duration.rb
  541 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/ruby_core_support.rb
  542 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/offset_rationals.rb
  543 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/time_or_datetime.rb
  544 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_definition.rb
  545 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_offset.rb
  546 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_transition.rb
  547 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_transition_definition.rb
  548 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_index_definition.rb
  549 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_info.rb
  550 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/data_timezone_info.rb
  551 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/linked_timezone_info.rb
  552 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/transition_data_timezone_info.rb
  553 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_timezone_info.rb
  554 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb
  555 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/ruby_data_source.rb
  556 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_data_source.rb
  557 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_period.rb
  558 /usr/local/bundle/gems/thread_safe-0.3.6/lib/thread_safe/version.rb
  559 /usr/local/bundle/gems/thread_safe-0.3.6/lib/thread_safe/synchronized_delegator.rb
  560 /usr/local/bundle/gems/thread_safe-0.3.6/lib/thread_safe.rb
  561 /usr/local/bundle/gems/thread_safe-0.3.6/lib/thread_safe/non_concurrent_cache_backend.rb
  562 /usr/local/bundle/gems/thread_safe-0.3.6/lib/thread_safe/mri_cache_backend.rb
  563 /usr/local/bundle/gems/thread_safe-0.3.6/lib/thread_safe/cache.rb
  564 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone.rb
  565 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/info_timezone.rb
  566 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/data_timezone.rb
  567 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/linked_timezone.rb
  568 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/timezone_proxy.rb
  569 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/country_index_definition.rb
  570 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/country_info.rb
  571 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/ruby_country_info.rb
  572 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_country_info.rb
  573 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/country.rb
  574 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo/country_timezone.rb
  575 /usr/local/bundle/gems/tzinfo-1.2.5/lib/tzinfo.rb
  576 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/values/time_zone.rb
  577 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/time/conversions.rb
  578 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/time_with_zone.rb
  579 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/time/acts_like.rb
  580 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date_and_time/zones.rb
  581 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/time/zones.rb
  582 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/object/try.rb
  583 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date_and_time/calculations.rb
  584 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date/zones.rb
  585 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date/calculations.rb
  586 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/time/calculations.rb
  587 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/file_update_checker.rb
  588 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/array/wrap.rb
  589 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/object/duplicable.rb
  590 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/object/deep_dup.rb
  591 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/module/redefine_method.rb
  592 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/time/compatibility.rb
  593 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/time.rb
  594 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date/acts_like.rb
  595 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date/blank.rb
  596 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date/conversions.rb
  597 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date.rb
  598 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/acts_like.rb
  599 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/blank.rb
  600 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/compatibility.rb
  601 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time/conversions.rb
  602 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/date_time.rb
  603 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric/time.rb
  604 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/integer/time.rb
  605 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string/conversions.rb
  606 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string/zones.rb
  607 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/time.rb
  608 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/reverse_merge.rb
  609 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/conversions.rb
  610 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/object/conversions.rb
  611 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/object/instance_variables.rb
  612 /usr/local/bundle/gems/json-2.2.0/lib/json/version.rb
  613 /usr/local/bundle/gems/json-2.2.0/lib/json/generic_object.rb
  614 /usr/local/bundle/gems/json-2.2.0/lib/json/common.rb
  615 /usr/local/bundle/gems/json-2.2.0/lib/json/ext/parser.so
  616 /usr/local/bundle/gems/json-2.2.0/lib/json/ext/generator.so
  617 /usr/local/bundle/gems/json-2.2.0/lib/json/ext.rb
  618 /usr/local/bundle/gems/json-2.2.0/lib/json.rb
  619 /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
  620 /usr/local/lib/ruby/2.6.0/bigdecimal/util.rb
  621 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/big_decimal/conversions.rb
  622 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/object/json.rb
  623 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/option_merger.rb
  624 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/object/with_options.rb
  625 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/object.rb
  626 /usr/local/bundle/gems/railties-5.2.3/lib/rails/paths.rb
  627 /usr/local/bundle/gems/railties-5.2.3/lib/rails/rack.rb
  628 /usr/local/bundle/gems/railties-5.2.3/lib/rails/configuration.rb
  629 /usr/local/bundle/gems/railties-5.2.3/lib/rails/railtie/configuration.rb
  630 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/i18n_railtie.rb
  631 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/railtie.rb
  632 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/class/attribute.rb
  633 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/rails.rb
  634 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_pack/gem_version.rb
  635 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_pack/version.rb
  636 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_pack.rb
  637 /usr/local/bundle/gems/rack-2.0.7/lib/rack.rb
  638 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch.rb
  639 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/messages/rotation_configuration.rb
  640 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/railtie.rb
  641 /usr/local/bundle/gems/railties-5.2.3/lib/rails.rb
  642 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/gem_version.rb
  643 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/version.rb
  644 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model.rb
  645 /usr/local/bundle/gems/arel-9.0.0/lib/arel/errors.rb
  646 /usr/local/bundle/gems/arel-9.0.0/lib/arel/crud.rb
  647 /usr/local/bundle/gems/arel-9.0.0/lib/arel/factory_methods.rb
  648 /usr/local/bundle/gems/arel-9.0.0/lib/arel/expressions.rb
  649 /usr/local/bundle/gems/arel-9.0.0/lib/arel/predications.rb
  650 /usr/local/bundle/gems/arel-9.0.0/lib/arel/window_predications.rb
  651 /usr/local/bundle/gems/arel-9.0.0/lib/arel/math.rb
  652 /usr/local/bundle/gems/arel-9.0.0/lib/arel/alias_predication.rb
  653 /usr/local/bundle/gems/arel-9.0.0/lib/arel/order_predications.rb
  654 /usr/local/bundle/gems/arel-9.0.0/lib/arel/table.rb
  655 /usr/local/bundle/gems/arel-9.0.0/lib/arel/attributes/attribute.rb
  656 /usr/local/bundle/gems/arel-9.0.0/lib/arel/attributes.rb
  657 /usr/local/bundle/gems/arel-9.0.0/lib/arel/compatibility/wheres.rb
  658 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/visitor.rb
  659 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/depth_first.rb
  660 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/reduce.rb
  661 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/to_sql.rb
  662 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/sqlite.rb
  663 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/postgresql.rb
  664 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/mysql.rb
  665 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/mssql.rb
  666 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/oracle.rb
  667 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/oracle12.rb
  668 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/where_sql.rb
  669 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/dot.rb
  670 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/ibm_db.rb
  671 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors/informix.rb
  672 /usr/local/bundle/gems/arel-9.0.0/lib/arel/visitors.rb
  673 /usr/local/bundle/gems/arel-9.0.0/lib/arel/collectors/plain_string.rb
  674 /usr/local/bundle/gems/arel-9.0.0/lib/arel/collectors/sql_string.rb
  675 /usr/local/bundle/gems/arel-9.0.0/lib/arel/tree_manager.rb
  676 /usr/local/bundle/gems/arel-9.0.0/lib/arel/insert_manager.rb
  677 /usr/local/bundle/gems/arel-9.0.0/lib/arel/select_manager.rb
  678 /usr/local/bundle/gems/arel-9.0.0/lib/arel/update_manager.rb
  679 /usr/local/bundle/gems/arel-9.0.0/lib/arel/delete_manager.rb
  680 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/node.rb
  681 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/select_statement.rb
  682 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/select_core.rb
  683 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/insert_statement.rb
  684 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/update_statement.rb
  685 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/bind_param.rb
  686 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/terminal.rb
  687 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/true.rb
  688 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/false.rb
  689 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/unary.rb
  690 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/grouping.rb
  691 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/ascending.rb
  692 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/descending.rb
  693 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/unqualified_column.rb
  694 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/with.rb
  695 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/binary.rb
  696 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/equality.rb
  697 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/in.rb
  698 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/join_source.rb
  699 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/delete_statement.rb
  700 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/table_alias.rb
  701 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/infix_operation.rb
  702 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/unary_operation.rb
  703 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/over.rb
  704 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/matches.rb
  705 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/regexp.rb
  706 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/and.rb
  707 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/function.rb
  708 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/count.rb
  709 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/extract.rb
  710 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/values.rb
  711 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/values_list.rb
  712 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/named_function.rb
  713 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/window.rb
  714 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/case.rb
  715 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/full_outer_join.rb
  716 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/inner_join.rb
  717 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/outer_join.rb
  718 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/right_outer_join.rb
  719 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/string_join.rb
  720 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/sql_literal.rb
  721 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes/casted.rb
  722 /usr/local/bundle/gems/arel-9.0.0/lib/arel/nodes.rb
  723 /usr/local/bundle/gems/arel-9.0.0/lib/arel.rb
  724 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/gem_version.rb
  725 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/version.rb
  726 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/attribute.rb
  727 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/attribute_set/builder.rb
  728 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/attribute_set/yaml_encoder.rb
  729 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/attribute_set.rb
  730 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/attribute_methods.rb
  731 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/attribute_methods.rb
  732 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb
  733 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/schema_cache.rb
  734 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/sql_type_metadata.rb
  735 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/compact.rb
  736 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/schema_dumper.rb
  737 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/abstract/schema_dumper.rb
  738 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/abstract/schema_creation.rb
  739 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/concurrency/load_interlock_aware_monitor.rb
  740 /usr/local/bundle/gems/arel-9.0.0/lib/arel/collectors/bind.rb
  741 /usr/local/bundle/gems/arel-9.0.0/lib/arel/collectors/composite.rb
  742 /usr/local/bundle/gems/arel-9.0.0/lib/arel/collectors/substitute_binds.rb
  743 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/descendants_tracker.rb
  744 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/callbacks.rb
  745 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/json/decoding.rb
  746 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/json/encoding.rb
  747 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/json.rb
  748 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string/access.rb
  749 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string/behavior.rb
  750 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/multibyte/chars.rb
  751 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/abstract/quoting.rb
  752 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/abstract/database_statements.rb
  753 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/errors.rb
  754 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/errors.rb
  755 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/migration.rb
  756 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/migration/join_table.rb
  757 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/abstract/schema_statements.rb
  758 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/abstract/database_limits.rb
  759 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/abstract/query_cache.rb
  760 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/abstract/savepoints.rb
  761 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/abstract_adapter.rb
  762 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/scoping.rb
  763 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record.rb
  764 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/railtie.rb
  765 /usr/local/bundle/gems/actionpack-5.2.3/lib/abstract_controller.rb
  766 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/filter_redirect.rb
  767 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/cache.rb
  768 /usr/local/bundle/gems/rack-2.0.7/lib/rack/query_parser.rb
  769 /usr/local/bundle/gems/rack-2.0.7/lib/rack/utils.rb
  770 /usr/local/bundle/gems/rack-2.0.7/lib/rack/media_type.rb
  771 /usr/local/bundle/gems/rack-2.0.7/lib/rack/request.rb
  772 /usr/local/bundle/gems/rack-2.0.7/lib/rack/body_proxy.rb
  773 /usr/local/bundle/gems/rack-2.0.7/lib/rack/response.rb
  774 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/response.rb
  775 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_controller/metal/live.rb
  776 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/hash_with_indifferent_access.rb
  777 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/indifferent_access.rb
  778 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/transform_values.rb
  779 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/rescuable.rb
  780 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/upload.rb
  781 /usr/local/bundle/gems/rack-test-1.1.0/lib/rack/mock_session.rb
  782 /usr/local/bundle/gems/rack-test-1.1.0/lib/rack/test/cookie_jar.rb
  783 /usr/local/bundle/gems/rack-test-1.1.0/lib/rack/test/mock_digest_request.rb
  784 /usr/local/bundle/gems/rack-test-1.1.0/lib/rack/test/utils.rb
  785 /usr/local/bundle/gems/rack-test-1.1.0/lib/rack/test/methods.rb
  786 /usr/local/bundle/gems/rack-test-1.1.0/lib/rack/test/uploaded_file.rb
  787 /usr/local/bundle/gems/rack-test-1.1.0/lib/rack/test/version.rb
  788 /usr/local/bundle/gems/rack-test-1.1.0/lib/rack/test.rb
  789 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_controller/metal/strong_parameters.rb
  790 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/module/attr_internal.rb
  791 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/uri.rb
  792 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_controller.rb
  793 /usr/local/bundle/gems/actionpack-5.2.3/lib/abstract_controller/railties/routes_helpers.rb
  794 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_controller/railties/helpers.rb
  795 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/gem_version.rb
  796 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/version.rb
  797 /usr/local/lib/ruby/2.6.0/erb.rb
  798 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/multibyte/unicode.rb
  799 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string/output_safety.rb
  800 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view.rb
  801 /usr/local/bundle/gems/railties-5.2.3/lib/rails/engine/configuration.rb
  802 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/railtie.rb
  803 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_controller/railtie.rb
  804 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/railtie.rb
  805 /usr/local/bundle/gems/activestorage-5.2.3/lib/active_storage/gem_version.rb
  806 /usr/local/bundle/gems/activestorage-5.2.3/lib/active_storage/version.rb
  807 /usr/local/bundle/gems/activestorage-5.2.3/lib/active_storage/errors.rb
  808 /usr/local/bundle/gems/marcel-0.3.3/lib/marcel.rb
  809 /usr/local/bundle/gems/activestorage-5.2.3/lib/active_storage.rb
  810 /usr/local/bundle/gems/activestorage-5.2.3/lib/active_storage/downloading.rb
  811 /usr/local/bundle/gems/activestorage-5.2.3/lib/active_storage/previewer.rb
  812 /usr/local/bundle/gems/activestorage-5.2.3/lib/active_storage/previewer/poppler_pdf_previewer.rb
  813 /usr/local/bundle/gems/activestorage-5.2.3/lib/active_storage/previewer/mupdf_previewer.rb
  814 /usr/local/bundle/gems/activestorage-5.2.3/lib/active_storage/previewer/video_previewer.rb
  815 /usr/local/bundle/gems/activestorage-5.2.3/lib/active_storage/analyzer.rb
  816 /usr/local/bundle/gems/activestorage-5.2.3/lib/active_storage/analyzer/image_analyzer.rb
  817 /usr/local/bundle/gems/activestorage-5.2.3/lib/active_storage/analyzer/video_analyzer.rb
  818 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/routing.rb
  819 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/router/utils.rb
  820 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/routes.rb
  821 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_controller/metal/exceptions.rb
  822 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/formatter.rb
  823 /usr/local/lib/ruby/2.6.0/x86_64-linux/racc/cparse.so
  824 /usr/local/lib/ruby/2.6.0/racc/parser.rb
  825 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/scanner.rb
  826 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/visitors.rb
  827 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/nodes/node.rb
  828 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/parser_extras.rb
  829 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/parser.rb
  830 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/route.rb
  831 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/path/pattern.rb
  832 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/router.rb
  833 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/nfa/dot.rb
  834 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/gtg/transition_table.rb
  835 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/gtg/builder.rb
  836 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/gtg/simulator.rb
  837 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/nfa/transition_table.rb
  838 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/nfa/builder.rb
  839 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey/nfa/simulator.rb
  840 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/journey.rb
  841 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/module/remove_method.rb
  842 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/headers.rb
  843 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/mime_negotiation.rb
  844 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/mime_types.rb
  845 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/mime_type.rb
  846 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/parameters.rb
  847 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/parameter_filter.rb
  848 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/filter_parameters.rb
  849 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/url.rb
  850 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/content_security_policy.rb
  851 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/http/request.rb
  852 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/routing/endpoint.rb
  853 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/routing/polymorphic_routes.rb
  854 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/routing/url_for.rb
  855 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/routing/route_set.rb
  856 /usr/local/bundle/gems/activestorage-5.2.3/lib/active_storage/engine.rb
  857 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/array/access.rb
  858 /usr/local/bundle/gems/globalid-0.4.2/lib/global_id/uri/gid.rb
  859 /usr/local/bundle/gems/globalid-0.4.2/lib/global_id/global_id.rb
  860 /usr/local/bundle/gems/globalid-0.4.2/lib/global_id.rb
  861 /usr/local/bundle/gems/globalid-0.4.2/lib/global_id/railtie.rb
  862 /usr/local/bundle/gems/activejob-5.2.3/lib/active_job/gem_version.rb
  863 /usr/local/bundle/gems/activejob-5.2.3/lib/active_job/version.rb
  864 /usr/local/bundle/gems/activejob-5.2.3/lib/active_job.rb
  865 /usr/local/bundle/gems/activejob-5.2.3/lib/active_job/railtie.rb
  866 /usr/local/bundle/gems/actionmailer-5.2.3/lib/action_mailer/gem_version.rb
  867 /usr/local/bundle/gems/actionmailer-5.2.3/lib/action_mailer/version.rb
  868 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/class/subclasses.rb
  869 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/class.rb
  870 /usr/local/bundle/gems/actionmailer-5.2.3/lib/action_mailer.rb
  871 /usr/local/bundle/gems/actionmailer-5.2.3/lib/action_mailer/railtie.rb
  872 /usr/local/bundle/gems/actioncable-5.2.3/lib/action_cable/gem_version.rb
  873 /usr/local/bundle/gems/actioncable-5.2.3/lib/action_cable/version.rb
  874 /usr/local/bundle/gems/actioncable-5.2.3/lib/action_cable.rb
  875 /usr/local/bundle/gems/actioncable-5.2.3/lib/action_cable/helpers/action_cable_helper.rb
  876 /usr/local/bundle/gems/actioncable-5.2.3/lib/action_cable/engine.rb
  877 /usr/local/bundle/gems/method_source-0.9.2/lib/method_source/version.rb
  878 /usr/local/bundle/gems/method_source-0.9.2/lib/method_source/source_location.rb
  879 /usr/local/bundle/gems/method_source-0.9.2/lib/method_source/code_helpers.rb
  880 /usr/local/bundle/gems/method_source-0.9.2/lib/method_source.rb
  881 /usr/local/bundle/gems/railties-5.2.3/lib/rails/test_unit/runner.rb
  882 /usr/local/bundle/gems/railties-5.2.3/lib/rails/test_unit/line_filtering.rb
  883 /usr/local/bundle/gems/railties-5.2.3/lib/rails/test_unit/railtie.rb
  884 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric/bytes.rb
  885 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/version.rb
  886 /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
  887 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/digest_utils.rb
  888 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/cache.rb
  889 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/asset.rb
  890 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/bower.rb
  891 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/utils.rb
  892 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/compressing.rb
  893 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/path_utils.rb
  894 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/path_digest_utils.rb
  895 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/uri_utils.rb
  896 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/dependencies.rb
  897 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/legacy_tilt_processor.rb
  898 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/engines.rb
  899 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/encoding_utils.rb
  900 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/http_utils.rb
  901 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/mime.rb
  902 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/paths.rb
  903 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/file_reader.rb
  904 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/legacy_proc_processor.rb
  905 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/processor_utils.rb
  906 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/processing.rb
  907 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/transformers.rb
  908 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/configuration.rb
  909 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/errors.rb
  910 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/path_dependency_utils.rb
  911 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/resolve.rb
  912 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/uri_tar.rb
  913 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/unloaded_asset.rb
  914 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/loader.rb
  915 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/server.rb
  916 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/base.rb
  917 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/cache/memory_store.rb
  918 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/cached_environment.rb
  919 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/environment.rb
  920 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/manifest_utils.rb
  921 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/utils/gzip.rb
  922 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/manifest.rb
  923 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/deprecation.rb
  924 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/context.rb
  925 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/directive_processor.rb
  926 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/bundle.rb
  927 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/autoload.rb
  928 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/closure_compressor.rb
  929 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/sass_compressor.rb
  930 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/uglifier_compressor.rb
  931 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/yui_compressor.rb
  932 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/coffee_script_processor.rb
  933 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/eco_processor.rb
  934 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/ejs_processor.rb
  935 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/jst_processor.rb
  936 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/sass_processor.rb
  937 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/erb_processor.rb
  938 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets/legacy.rb
  939 /usr/local/bundle/gems/sprockets-3.7.2/lib/sprockets.rb
  940 /usr/local/lib/ruby/2.6.0/benchmark.rb
  941 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/benchmark.rb
  942 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/benchmarkable.rb
  943 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/enumerable.rb
  944 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/active_model_helper.rb
  945 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/asset_url_helper.rb
  946 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/capture_helper.rb
  947 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/output_safety_helper.rb
  948 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/tag_helper.rb
  949 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/asset_tag_helper.rb
  950 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/atom_feed_helper.rb
  951 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/cache_helper.rb
  952 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/controller_helper.rb
  953 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/csp_helper.rb
  954 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/csrf_helper.rb
  955 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/date_helper.rb
  956 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/debug_helper.rb
  957 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/javascript_helper.rb
  958 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/url_helper.rb
  959 /usr/local/bundle/gems/rails-html-sanitizer-1.2.0/lib/rails/html/sanitizer/version.rb
  960 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/nokogiri.so
  961 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/version.rb
  962 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/syntax_error.rb
  963 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/pp/node.rb
  964 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/pp/character_data.rb
  965 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/pp.rb
  966 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/parse_options.rb
  967 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/sax/document.rb
  968 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/sax/parser_context.rb
  969 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/sax/parser.rb
  970 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/sax/push_parser.rb
  971 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/sax.rb
  972 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/searchable.rb
  973 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/node/save_options.rb
  974 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/node.rb
  975 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/attribute_decl.rb
  976 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/element_decl.rb
  977 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/element_content.rb
  978 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/character_data.rb
  979 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/namespace.rb
  980 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/attr.rb
  981 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/dtd.rb
  982 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/cdata.rb
  983 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/text.rb
  984 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/document.rb
  985 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/document_fragment.rb
  986 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/processing_instruction.rb
  987 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/node_set.rb
  988 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/syntax_error.rb
  989 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/xpath/syntax_error.rb
  990 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/xpath.rb
  991 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/xpath_context.rb
  992 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/builder.rb
  993 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/reader.rb
  994 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/notation.rb
  995 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/entity_decl.rb
  996 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/entity_reference.rb
  997 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/schema.rb
  998 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml/relax_ng.rb
  999 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xml.rb
 1000 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xslt/stylesheet.rb
 1001 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/xslt.rb
 1002 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/html/entity_lookup.rb
 1003 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/html/document.rb
 1004 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/html/document_fragment.rb
 1005 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/html/sax/parser_context.rb
 1006 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/html/sax/parser.rb
 1007 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/html/sax/push_parser.rb
 1008 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/html/element_description.rb
 1009 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/html/element_description_defaults.rb
 1010 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/html.rb
 1011 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/decorators/slop.rb
 1012 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/css/node.rb
 1013 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/css/xpath_visitor.rb
 1014 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/css/parser_extras.rb
 1015 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/css/parser.rb
 1016 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/css/tokenizer.rb
 1017 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/css/syntax_error.rb
 1018 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/css.rb
 1019 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/html/builder.rb
 1020 /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri.rb
 1021 /usr/local/bundle/gems/loofah-2.3.0/lib/loofah/metahelpers.rb
 1022 /usr/local/bundle/gems/loofah-2.3.0/lib/loofah/elements.rb
 1023 /usr/local/bundle/gems/loofah-2.3.0/lib/loofah/html5/safelist.rb
 1024 /usr/local/bundle/gems/loofah-2.3.0/lib/loofah/html5/libxml2_workarounds.rb
 1025 /usr/local/bundle/gems/crass-1.0.4/lib/crass/token-scanner.rb
 1026 /usr/local/bundle/gems/crass-1.0.4/lib/crass/scanner.rb
 1027 /usr/local/bundle/gems/crass-1.0.4/lib/crass/tokenizer.rb
 1028 /usr/local/bundle/gems/crass-1.0.4/lib/crass/parser.rb
 1029 /usr/local/bundle/gems/crass-1.0.4/lib/crass.rb
 1030 /usr/local/bundle/gems/loofah-2.3.0/lib/loofah/html5/scrub.rb
 1031 /usr/local/bundle/gems/loofah-2.3.0/lib/loofah/scrubber.rb
 1032 /usr/local/bundle/gems/loofah-2.3.0/lib/loofah/scrubbers.rb
 1033 /usr/local/bundle/gems/loofah-2.3.0/lib/loofah/instance_methods.rb
 1034 /usr/local/bundle/gems/loofah-2.3.0/lib/loofah/xml/document.rb
 1035 /usr/local/bundle/gems/loofah-2.3.0/lib/loofah/xml/document_fragment.rb
 1036 /usr/local/bundle/gems/loofah-2.3.0/lib/loofah/html/document.rb
 1037 /usr/local/bundle/gems/loofah-2.3.0/lib/loofah/html/document_fragment.rb
 1038 /usr/local/bundle/gems/loofah-2.3.0/lib/loofah.rb
 1039 /usr/local/bundle/gems/rails-html-sanitizer-1.2.0/lib/rails/html/scrubbers.rb
 1040 /usr/local/bundle/gems/rails-html-sanitizer-1.2.0/lib/rails/html/sanitizer.rb
 1041 /usr/local/bundle/gems/rails-html-sanitizer-1.2.0/lib/rails-html-sanitizer.rb
 1042 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/sanitize_helper.rb
 1043 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/text_helper.rb
 1044 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/form_tag_helper.rb
 1045 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/model_naming.rb
 1046 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/module/reachable.rb
 1047 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb
 1048 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/module/concerning.rb
 1049 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/module.rb
 1050 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/record_identifier.rb
 1051 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/form_helper.rb
 1052 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/form_options_helper.rb
 1053 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/number_helper.rb
 1054 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/number_helper.rb
 1055 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/record_tag_helper.rb
 1056 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/rendering_helper.rb
 1057 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/translation_helper.rb
 1058 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers.rb
 1059 /usr/local/bundle/gems/sprockets-rails-3.2.1/lib/sprockets/rails/context.rb
 1060 /usr/local/bundle/gems/sprockets-rails-3.2.1/lib/sprockets/rails/utils.rb
 1061 /usr/local/bundle/gems/sprockets-rails-3.2.1/lib/sprockets/rails/helper.rb
 1062 /usr/local/bundle/gems/sprockets-rails-3.2.1/lib/sprockets/rails/quiet_assets.rb
 1063 /usr/local/bundle/gems/sprockets-rails-3.2.1/lib/sprockets/rails/route_wrapper.rb
 1064 /usr/local/bundle/gems/sprockets-rails-3.2.1/lib/sprockets/rails/version.rb
 1065 /usr/local/bundle/gems/railties-5.2.3/lib/rails/source_annotation_extractor.rb
 1066 /usr/local/bundle/gems/railties-5.2.3/lib/rails/application/configuration.rb
 1067 /usr/local/bundle/gems/sprockets-rails-3.2.1/lib/sprockets/railtie.rb
 1068 /usr/local/bundle/gems/railties-5.2.3/lib/rails/all.rb
 1069 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/string_inquirer.rb
 1070 /usr/local/bundle/gems/pg-1.1.4/lib/pg_ext.so
 1071 /usr/local/bundle/gems/pg-1.1.4/lib/pg/exceptions.rb
 1072 /usr/local/bundle/gems/pg-1.1.4/lib/pg/constants.rb
 1073 /usr/local/bundle/gems/pg-1.1.4/lib/pg/coder.rb
 1074 /usr/local/bundle/gems/pg-1.1.4/lib/pg/binary_decoder.rb
 1075 /usr/local/bundle/gems/pg-1.1.4/lib/pg/text_encoder.rb
 1076 /usr/local/bundle/gems/pg-1.1.4/lib/pg/text_decoder.rb
 1077 /usr/local/bundle/gems/pg-1.1.4/lib/pg/basic_type_mapping.rb
 1078 /usr/local/bundle/gems/pg-1.1.4/lib/pg/type_map_by_column.rb
 1079 /usr/local/bundle/gems/pg-1.1.4/lib/pg/connection.rb
 1080 /usr/local/bundle/gems/pg-1.1.4/lib/pg/result.rb
 1081 /usr/local/bundle/gems/pg-1.1.4/lib/pg/tuple.rb
 1082 /usr/local/bundle/gems/pg-1.1.4/lib/pg.rb
 1083 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/attribute_decorators.rb
 1084 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/callbacks.rb
 1085 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/define_callbacks.rb
 1086 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/subscriber.rb
 1087 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/log_subscriber.rb
 1088 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/log_subscriber.rb
 1089 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/explain_registry.rb
 1090 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/explain_subscriber.rb
 1091 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/relation/delegation.rb
 1092 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/attribute/user_provided_default.rb
 1093 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/attributes.rb
 1094 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type_caster/map.rb
 1095 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type_caster/connection.rb
 1096 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type_caster.rb
 1097 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/naming.rb
 1098 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_handling.rb
 1099 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/query_cache.rb
 1100 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/querying.rb
 1101 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/translation.rb
 1102 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/translation.rb
 1103 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/dynamic_matchers.rb
 1104 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/explain.rb
 1105 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/helpers/accepts_multiparameter_time.rb
 1106 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/helpers/numeric.rb
 1107 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/helpers/mutable.rb
 1108 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/helpers/time_value.rb
 1109 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/helpers/timezone.rb
 1110 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/helpers.rb
 1111 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/value.rb
 1112 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/integer.rb
 1113 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/big_integer.rb
 1114 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/binary.rb
 1115 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/boolean.rb
 1116 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/date.rb
 1117 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/date_time.rb
 1118 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/decimal.rb
 1119 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/float.rb
 1120 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/immutable_string.rb
 1121 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/string.rb
 1122 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/time.rb
 1123 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type/registry.rb
 1124 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/type.rb
 1125 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type/internal/timezone.rb
 1126 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type/date.rb
 1127 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type/date_time.rb
 1128 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type/decimal_without_scale.rb
 1129 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type/json.rb
 1130 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type/time.rb
 1131 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type/text.rb
 1132 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type/unsigned_integer.rb
 1133 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type/serialized.rb
 1134 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type/adapter_specific_registry.rb
 1135 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type/type_map.rb
 1136 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type/hash_lookup_type_map.rb
 1137 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/type.rb
 1138 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/enum.rb
 1139 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/collection_cache_key.rb
 1140 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/core.rb
 1141 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/connection_specification.rb
 1142 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/abstract/connection_pool.rb
 1143 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/persistence.rb
 1144 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/readonly_attributes.rb
 1145 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/model_schema.rb
 1146 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/inheritance.rb
 1147 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/scoping/default.rb
 1148 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/array/grouping.rb
 1149 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/array_inquirer.rb
 1150 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/array/inquiry.rb
 1151 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/array.rb
 1152 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/scoping/named.rb
 1153 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/sanitization.rb
 1154 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/forbidden_attributes_protection.rb
 1155 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/attribute_assignment.rb
 1156 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/attribute_assignment.rb
 1157 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/conversion.rb
 1158 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/integration.rb
 1159 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validator.rb
 1160 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/numericality.rb
 1161 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/range/conversions.rb
 1162 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/range/compare_range.rb
 1163 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/range/include_time_with_zone.rb
 1164 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/range/overlaps.rb
 1165 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/range/each.rb
 1166 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/range.rb
 1167 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/clusivity.rb
 1168 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/confirmation.rb
 1169 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/helper_methods.rb
 1170 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/presence.rb
 1171 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/length.rb
 1172 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/acceptance.rb
 1173 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/absence.rb
 1174 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/format.rb
 1175 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/validates.rb
 1176 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/exclusion.rb
 1177 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/callbacks.rb
 1178 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/with.rb
 1179 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations/inclusion.rb
 1180 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/validations.rb
 1181 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/validations/associated.rb
 1182 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/validations/uniqueness.rb
 1183 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/validations/presence.rb
 1184 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/validations/absence.rb
 1185 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/validations/length.rb
 1186 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/validations.rb
 1187 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/counter_cache.rb
 1188 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/locking/optimistic.rb
 1189 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/locking/pessimistic.rb
 1190 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/attribute_methods/read.rb
 1191 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/attribute_methods/write.rb
 1192 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/attribute_methods/before_type_cast.rb
 1193 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/attribute_methods/query.rb
 1194 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/attribute_methods/primary_key.rb
 1195 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/attribute_methods/time_zone_conversion.rb
 1196 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/attribute_mutation_tracker.rb
 1197 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/dirty.rb
 1198 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/attribute_methods/dirty.rb
 1199 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/timestamp.rb
 1200 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/attribute_methods/serialization.rb
 1201 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/callbacks.rb
 1202 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/associations.rb
 1203 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/secure_password.rb
 1204 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/autosave_association.rb
 1205 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/associations/builder/association.rb
 1206 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/nested_attributes.rb
 1207 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/aggregations.rb
 1208 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/transactions.rb
 1209 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/touch_later.rb
 1210 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/no_touching.rb
 1211 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/reflection.rb
 1212 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/serialization.rb
 1213 /usr/local/bundle/gems/activemodel-5.2.3/lib/active_model/serializers/json.rb
 1214 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/serialization.rb
 1215 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/store.rb
 1216 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/secure_token.rb
 1217 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/suppressor.rb
 1218 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/base.rb
 1219 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/nulldb/extensions.rb
 1220 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/active_record/connection_adapters/nulldb_adapter/core.rb
 1221 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/active_record/connection_adapters/nulldb_adapter/statement.rb
 1222 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/active_record/connection_adapters/nulldb_adapter/checkpoint.rb
 1223 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/column.rb
 1224 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/active_record/connection_adapters/nulldb_adapter/column.rb
 1225 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/active_record/connection_adapters/nulldb_adapter/configuration.rb
 1226 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/active_record/connection_adapters/nulldb_adapter/empty_result.rb
 1227 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/active_record/connection_adapters/nulldb_adapter/index_definition.rb
 1228 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/active_record/connection_adapters/nulldb_adapter/null_object.rb
 1229 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/connection_adapters/abstract/schema_definitions.rb
 1230 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/active_record/connection_adapters/nulldb_adapter/table_definition.rb
 1231 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/active_record/tasks/nulldb_database_tasks.rb
 1232 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/active_record/connection_adapters/nulldb_adapter.rb
 1233 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/nulldb/core.rb
 1234 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/tasks/database_tasks.rb
 1235 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/nulldb/rails.rb
 1236 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/nulldb.rb
 1237 /usr/local/bundle/gems/activerecord-nulldb-adapter-0.4.0/lib/activerecord-nulldb-adapter.rb
 1238 /usr/local/bundle/gems/haml-5.1.0/lib/haml/version.rb
 1239 /usr/local/bundle/gems/erubis-2.7.0/lib/erubis/tiny.rb
 1240 /usr/local/bundle/gems/haml-5.1.0/lib/haml/util.rb
 1241 /usr/local/bundle/gems/haml-5.1.0/lib/haml/parser.rb
 1242 /usr/local/bundle/gems/haml-5.1.0/lib/haml/attribute_builder.rb
 1243 /usr/local/lib/ruby/2.6.0/x86_64-linux/ripper.so
 1244 /usr/local/lib/ruby/2.6.0/ripper/core.rb
 1245 /usr/local/lib/ruby/2.6.0/ripper/lexer.rb
 1246 /usr/local/lib/ruby/2.6.0/ripper/filter.rb
 1247 /usr/local/lib/ruby/2.6.0/ripper/sexp.rb
 1248 /usr/local/lib/ruby/2.6.0/ripper.rb
 1249 /usr/local/bundle/gems/temple-0.8.1/lib/temple/static_analyzer.rb
 1250 /usr/local/bundle/gems/haml-5.1.0/lib/haml/attribute_parser.rb
 1251 /usr/local/bundle/gems/haml-5.1.0/lib/haml/attribute_compiler.rb
 1252 /usr/local/bundle/gems/haml-5.1.0/lib/haml/temple_line_counter.rb
 1253 /usr/local/bundle/gems/haml-5.1.0/lib/haml/compiler.rb
 1254 /usr/local/bundle/gems/haml-5.1.0/lib/haml/options.rb
 1255 /usr/local/bundle/gems/haml-5.1.0/lib/haml/helpers.rb
 1256 /usr/local/bundle/gems/haml-5.1.0/lib/haml/buffer.rb
 1257 /usr/local/bundle/gems/tilt-2.0.10/lib/tilt/dummy.rb
 1258 /usr/local/bundle/gems/tilt-2.0.10/lib/tilt/mapping.rb
 1259 /usr/local/bundle/gems/tilt-2.0.10/lib/tilt/template.rb
 1260 /usr/local/bundle/gems/tilt-2.0.10/lib/tilt.rb
 1261 /usr/local/bundle/gems/haml-5.1.0/lib/haml/filters.rb
 1262 /usr/local/bundle/gems/haml-5.1.0/lib/haml/error.rb
 1263 /usr/local/bundle/gems/temple-0.8.1/lib/temple/version.rb
 1264 /usr/local/bundle/gems/temple-0.8.1/lib/temple.rb
 1265 /usr/local/bundle/gems/temple-0.8.1/lib/temple/utils.rb
 1266 /usr/local/bundle/gems/temple-0.8.1/lib/temple/mixins/dispatcher.rb
 1267 /usr/local/bundle/gems/temple-0.8.1/lib/temple/mixins/options.rb
 1268 /usr/local/bundle/gems/temple-0.8.1/lib/temple/filter.rb
 1269 /usr/local/bundle/gems/haml-5.1.0/lib/haml/escapable.rb
 1270 /usr/local/bundle/gems/temple-0.8.1/lib/temple/map.rb
 1271 /usr/local/bundle/gems/haml-5.1.0/lib/haml/generator.rb
 1272 /usr/local/bundle/gems/temple-0.8.1/lib/temple/mixins/engine_dsl.rb
 1273 /usr/local/bundle/gems/temple-0.8.1/lib/temple/engine.rb
 1274 /usr/local/bundle/gems/temple-0.8.1/lib/temple/filters/control_flow.rb
 1275 /usr/local/bundle/gems/temple-0.8.1/lib/temple/filters/multi_flattener.rb
 1276 /usr/local/bundle/gems/temple-0.8.1/lib/temple/filters/static_merger.rb
 1277 /usr/local/bundle/gems/haml-5.1.0/lib/haml/temple_engine.rb
 1278 /usr/local/bundle/gems/haml-5.1.0/lib/haml/engine.rb
 1279 /usr/local/bundle/gems/haml-5.1.0/lib/haml/template/options.rb
 1280 /usr/local/bundle/gems/haml-5.1.0/lib/haml/railtie.rb
 1281 /usr/local/bundle/gems/haml-5.1.0/lib/haml.rb
 1282 /usr/local/bundle/gems/haml-rails-2.0.1/lib/haml-rails.rb
 1283 /usr/local/bundle/gems/orm_adapter-0.5.0/lib/orm_adapter/base.rb
 1284 /usr/local/bundle/gems/orm_adapter-0.5.0/lib/orm_adapter/to_adapter.rb
 1285 /usr/local/bundle/gems/orm_adapter-0.5.0/lib/orm_adapter/version.rb
 1286 /usr/local/bundle/gems/orm_adapter-0.5.0/lib/orm_adapter/adapters/active_record.rb
 1287 /usr/local/bundle/gems/orm_adapter-0.5.0/lib/orm_adapter.rb
 1288 /usr/local/bundle/gems/responders-3.0.0/lib/responders/controller_method.rb
 1289 /usr/local/bundle/gems/responders-3.0.0/lib/responders.rb
 1290 /usr/local/bundle/gems/devise-4.7.1/lib/devise/controllers/sign_in_out.rb
 1291 /usr/local/bundle/gems/devise-4.7.1/lib/devise/controllers/store_location.rb
 1292 /usr/local/bundle/gems/devise-4.7.1/lib/devise/controllers/helpers.rb
 1293 /usr/local/bundle/gems/warden-1.2.8/lib/warden/mixins/common.rb
 1294 /usr/local/bundle/gems/warden-1.2.8/lib/warden/proxy.rb
 1295 /usr/local/bundle/gems/warden-1.2.8/lib/warden/hooks.rb
 1296 /usr/local/bundle/gems/warden-1.2.8/lib/warden/config.rb
 1297 /usr/local/bundle/gems/warden-1.2.8/lib/warden/manager.rb
 1298 /usr/local/bundle/gems/warden-1.2.8/lib/warden/errors.rb
 1299 /usr/local/bundle/gems/warden-1.2.8/lib/warden/session_serializer.rb
 1300 /usr/local/bundle/gems/warden-1.2.8/lib/warden/strategies.rb
 1301 /usr/local/bundle/gems/warden-1.2.8/lib/warden/strategies/base.rb
 1302 /usr/local/bundle/gems/warden-1.2.8/lib/warden.rb
 1303 /usr/local/bundle/gems/devise-4.7.1/lib/devise/mapping.rb
 1304 /usr/local/bundle/gems/devise-4.7.1/lib/devise/hooks/activatable.rb
 1305 /usr/local/bundle/gems/devise-4.7.1/lib/devise/hooks/csrf_cleaner.rb
 1306 /usr/local/bundle/gems/devise-4.7.1/lib/devise/models/authenticatable.rb
 1307 /usr/local/bundle/gems/devise-4.7.1/lib/devise/models.rb
 1308 /usr/local/bundle/gems/devise-4.7.1/lib/devise/modules.rb
 1309 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/routing/redirection.rb
 1310 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_dispatch/routing/mapper.rb
 1311 /usr/local/bundle/gems/devise-4.7.1/lib/devise/rails/routes.rb
 1312 /usr/local/bundle/gems/devise-4.7.1/lib/devise/rails/warden_compat.rb
 1313 /usr/local/bundle/gems/devise-4.7.1/lib/devise/rails.rb
 1314 /usr/local/bundle/gems/devise-4.7.1/lib/devise.rb
 1315 /usr/local/bundle/gems/devise-i18n-1.8.2/lib/devise-i18n/railtie.rb
 1316 /usr/local/bundle/gems/devise-i18n-1.8.2/lib/devise-i18n.rb
 1317 /usr/local/bundle/gems/active_model_serializers-0.8.4/lib/active_model/array_serializer.rb
 1318 /usr/local/bundle/gems/active_model_serializers-0.8.4/lib/active_model/serializer.rb
 1319 /usr/local/bundle/gems/active_model_serializers-0.8.4/lib/active_model/serializer/associations.rb
 1320 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/relation/finder_methods.rb
 1321 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/relation/calculations.rb
 1322 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/relation/merger.rb
 1323 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/relation/spawn_methods.rb
 1324 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/relation/from_clause.rb
 1325 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/relation/query_attribute.rb
 1326 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/relation/where_clause.rb
 1327 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/relation/where_clause_factory.rb
 1328 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/relation/query_methods.rb
 1329 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/relation/batches/batch_enumerator.rb
 1330 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/relation/batches.rb
 1331 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/relation.rb
 1332 /usr/local/bundle/gems/actionpack-5.2.3/lib/action_controller/metal/renderers.rb
 1333 /usr/local/bundle/gems/active_model_serializers-0.8.4/lib/action_controller/serialization.rb
 1334 /usr/local/bundle/gems/active_model_serializers-0.8.4/lib/active_model_serializers.rb
 1335 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/version.rb
 1336 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/parameter_validators.rb
 1337 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/ability/rules.rb
 1338 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/ability/actions.rb
 1339 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/unauthorized_message_resolver.rb
 1340 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/ability/strong_parameter_support.rb
 1341 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/ability.rb
 1342 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/conditions_matcher.rb
 1343 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/rule.rb
 1344 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/controller_resource_finder.rb
 1345 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/controller_resource_name_finder.rb
 1346 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/controller_resource_builder.rb
 1347 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/controller_resource_sanitizer.rb
 1348 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/controller_resource_loader.rb
 1349 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/controller_resource.rb
 1350 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/controller_additions.rb
 1351 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/model_additions.rb
 1352 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/exceptions.rb
 1353 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/model_adapters/abstract_adapter.rb
 1354 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/model_adapters/default_adapter.rb
 1355 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/rules_compressor.rb
 1356 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/model_adapters/conditions_extractor.rb
 1357 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/model_adapters/conditions_normalizer.rb
 1358 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/model_adapters/active_record_adapter.rb
 1359 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/model_adapters/active_record_4_adapter.rb
 1360 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan/model_adapters/active_record_5_adapter.rb
 1361 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancan.rb
 1362 /usr/local/bundle/gems/cancancan-3.0.1/lib/cancancan.rb
 1363 /usr/local/bundle/gems/gravtastic-3.2.6/lib/gravtastic/version.rb
 1364 /usr/local/bundle/gems/gravtastic-3.2.6/lib/gravtastic/engine.rb
 1365 /usr/local/bundle/gems/gravtastic-3.2.6/lib/gravtastic.rb
 1366 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/version.rb
 1367 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/geometry_parser_factory.rb
 1368 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/geometry_detector_factory.rb
 1369 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/geometry.rb
 1370 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/processor.rb
 1371 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/processor_helpers.rb
 1372 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/tempfile.rb
 1373 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/thumbnail.rb
 1374 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/interpolations/plural_cache.rb
 1375 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/interpolations.rb
 1376 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/tempfile_factory.rb
 1377 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/style.rb
 1378 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/url_generator.rb
 1379 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/attachment.rb
 1380 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/storage/filesystem.rb
 1381 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/storage/fog.rb
 1382 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/storage/s3.rb
 1383 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/storage.rb
 1384 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/callbacks.rb
 1385 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/file_command_content_type_detector.rb
 1386 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/media_type_spoof_detector.rb
 1387 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/content_type_detector.rb
 1388 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/validators/attachment_content_type_validator.rb
 1389 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/validators/attachment_file_name_validator.rb
 1390 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/validators/attachment_presence_validator.rb
 1391 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/validators/attachment_size_validator.rb
 1392 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/validators/media_type_spoof_detection_validator.rb
 1393 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/validators/attachment_file_type_ignorance_validator.rb
 1394 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/validators.rb
 1395 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/schema.rb
 1396 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/glue.rb
 1397 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/errors.rb
 1398 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/attachment_registry.rb
 1399 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/missing_attachment_styles.rb
 1400 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/logger.rb
 1401 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/helpers.rb
 1402 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/has_attached_file.rb
 1403 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/filename_cleaner.rb
 1404 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/rails_environment.rb
 1405 /usr/local/bundle/gems/mime-types-3.3/lib/mime/type.rb
 1406 /usr/local/bundle/gems/mime-types-3.3/lib/mime/types/cache.rb
 1407 /usr/local/bundle/gems/mime-types-3.3/lib/mime/types/container.rb
 1408 /usr/local/bundle/gems/mime-types-data-3.2019.0904/lib/mime/types/data.rb
 1409 /usr/local/bundle/gems/mime-types-3.3/lib/mime/types/loader.rb
 1410 /usr/local/bundle/gems/mime-types-3.3/lib/mime/types/logger.rb
 1411 /usr/local/bundle/gems/mime-types-3.3/lib/mime/type/columnar.rb
 1412 /usr/local/bundle/gems/mime-types-3.3/lib/mime/types/_columnar.rb
 1413 /usr/local/bundle/gems/mime-types-3.3/lib/mime/types/registry.rb
 1414 /usr/local/bundle/gems/mime-types-3.3/lib/mime/types.rb
 1415 /usr/local/bundle/gems/mime-types-3.3/lib/mime/types/columnar.rb
 1416 /usr/local/bundle/gems/mimemagic-0.3.3/lib/mimemagic/tables.rb
 1417 /usr/local/bundle/gems/mimemagic-0.3.3/lib/mimemagic/version.rb
 1418 /usr/local/bundle/gems/mimemagic-0.3.3/lib/mimemagic.rb
 1419 /usr/local/bundle/gems/mimemagic-0.3.3/lib/mimemagic/overlay.rb
 1420 /usr/local/bundle/gems/terrapin-0.6.0/lib/terrapin/os_detector.rb
 1421 /usr/local/bundle/gems/terrapin-0.6.0/lib/terrapin/command_line.rb
 1422 /usr/local/bundle/gems/terrapin-0.6.0/lib/terrapin/command_line/output.rb
 1423 /usr/local/bundle/gems/terrapin-0.6.0/lib/terrapin/command_line/multi_pipe.rb
 1424 /usr/local/bundle/gems/climate_control-0.2.0/lib/climate_control/environment.rb
 1425 /usr/local/bundle/gems/climate_control-0.2.0/lib/climate_control/errors.rb
 1426 /usr/local/bundle/gems/climate_control-0.2.0/lib/climate_control/modifier.rb
 1427 /usr/local/bundle/gems/climate_control-0.2.0/lib/climate_control/version.rb
 1428 /usr/local/bundle/gems/climate_control-0.2.0/lib/climate_control.rb
 1429 /usr/local/bundle/gems/terrapin-0.6.0/lib/terrapin/command_line/runners/backticks_runner.rb
 1430 /usr/local/bundle/gems/terrapin-0.6.0/lib/terrapin/command_line/runners/process_runner.rb
 1431 /usr/local/bundle/gems/terrapin-0.6.0/lib/terrapin/command_line/runners/posix_runner.rb
 1432 /usr/local/bundle/gems/terrapin-0.6.0/lib/terrapin/command_line/runners/popen_runner.rb
 1433 /usr/local/bundle/gems/terrapin-0.6.0/lib/terrapin/command_line/runners/fake_runner.rb
 1434 /usr/local/bundle/gems/terrapin-0.6.0/lib/terrapin/command_line/runners.rb
 1435 /usr/local/bundle/gems/terrapin-0.6.0/lib/terrapin/exceptions.rb
 1436 /usr/local/bundle/gems/terrapin-0.6.0/lib/terrapin.rb
 1437 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/railtie.rb
 1438 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/io_adapters/registry.rb
 1439 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/io_adapters/abstract_adapter.rb
 1440 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/io_adapters/empty_string_adapter.rb
 1441 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/io_adapters/identity_adapter.rb
 1442 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/io_adapters/file_adapter.rb
 1443 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/io_adapters/stringio_adapter.rb
 1444 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/io_adapters/data_uri_adapter.rb
 1445 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/io_adapters/nil_adapter.rb
 1446 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/io_adapters/attachment_adapter.rb
 1447 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/io_adapters/uploaded_file_adapter.rb
 1448 /usr/local/lib/ruby/2.6.0/open-uri.rb
 1449 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/io_adapters/uri_adapter.rb
 1450 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip/io_adapters/http_url_proxy_adapter.rb
 1451 /usr/local/bundle/gems/paperclip-6.1.0/lib/paperclip.rb
 1452 /usr/local/bundle/gems/excon-0.64.0/lib/excon/version.rb
 1453 /usr/local/bundle/gems/excon-0.64.0/lib/excon/extensions/uri.rb
 1454 /usr/local/bundle/gems/excon-0.64.0/lib/excon/middlewares/base.rb
 1455 /usr/local/bundle/gems/excon-0.64.0/lib/excon/middlewares/expects.rb
 1456 /usr/local/bundle/gems/excon-0.64.0/lib/excon/middlewares/idempotent.rb
 1457 /usr/local/bundle/gems/excon-0.64.0/lib/excon/middlewares/instrumentor.rb
 1458 /usr/local/bundle/gems/excon-0.64.0/lib/excon/middlewares/mock.rb
 1459 /usr/local/bundle/gems/excon-0.64.0/lib/excon/middlewares/response_parser.rb
 1460 /usr/local/bundle/gems/excon-0.64.0/lib/excon/error.rb
 1461 /usr/local/bundle/gems/excon-0.64.0/lib/excon/constants.rb
 1462 /usr/local/bundle/gems/excon-0.64.0/lib/excon/utils.rb
 1463 /usr/local/bundle/gems/excon-0.64.0/lib/excon/connection.rb
 1464 /usr/local/bundle/gems/excon-0.64.0/lib/excon/headers.rb
 1465 /usr/local/bundle/gems/excon-0.64.0/lib/excon/response.rb
 1466 /usr/local/bundle/gems/excon-0.64.0/lib/excon/middlewares/decompress.rb
 1467 /usr/local/bundle/gems/excon-0.64.0/lib/excon/middlewares/escape_path.rb
 1468 /usr/local/bundle/gems/excon-0.64.0/lib/excon/middlewares/redirect_follower.rb
 1469 /usr/local/bundle/gems/excon-0.64.0/lib/excon/middlewares/capture_cookies.rb
 1470 /usr/local/bundle/gems/excon-0.64.0/lib/excon/pretty_printer.rb
 1471 /usr/local/bundle/gems/excon-0.64.0/lib/excon/socket.rb
 1472 /usr/local/bundle/gems/excon-0.64.0/lib/excon/ssl_socket.rb
 1473 /usr/local/bundle/gems/excon-0.64.0/lib/excon/instrumentors/standard_instrumentor.rb
 1474 /usr/local/bundle/gems/excon-0.64.0/lib/excon/instrumentors/logging_instrumentor.rb
 1475 /usr/local/bundle/gems/excon-0.64.0/lib/excon/unix_socket.rb
 1476 /usr/local/bundle/gems/excon-0.64.0/lib/excon.rb
 1477 /usr/local/bundle/gems/formatador-0.2.5/lib/formatador/table.rb
 1478 /usr/local/bundle/gems/formatador-0.2.5/lib/formatador/progressbar.rb
 1479 /usr/local/bundle/gems/formatador-0.2.5/lib/formatador.rb
 1480 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/version.rb
 1481 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/services_mixin.rb
 1482 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/attributes.rb
 1483 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/attributes/default.rb
 1484 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/attributes/array.rb
 1485 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/attributes/boolean.rb
 1486 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/attributes/float.rb
 1487 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/attributes/integer.rb
 1488 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/attributes/string.rb
 1489 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/attributes/time.rb
 1490 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/attributes/timestamp.rb
 1491 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/associations/default.rb
 1492 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/associations/many_identities.rb
 1493 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/associations/many_models.rb
 1494 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/associations/one_model.rb
 1495 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/associations/one_identity.rb
 1496 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/deprecated_connection_accessors.rb
 1497 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/collection.rb
 1498 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/association.rb
 1499 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/connection.rb
 1500 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/deprecation.rb
 1501 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/credentials.rb
 1502 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/current_machine.rb
 1503 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/errors.rb
 1504 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/hmac.rb
 1505 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/logger.rb
 1506 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/cache.rb
 1507 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/model.rb
 1508 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/mock.rb
 1509 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/provider.rb
 1510 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/utils.rb
 1511 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/service.rb
 1512 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/ssh.rb
 1513 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/scp.rb
 1514 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/time.rb
 1515 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/wait_for.rb
 1516 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/wait_for_defaults.rb
 1517 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/uuid.rb
 1518 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/stringify_keys.rb
 1519 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core/whitelist_keys.rb
 1520 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/account.rb
 1521 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/baremetal.rb
 1522 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/billing.rb
 1523 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/cdn.rb
 1524 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/compute.rb
 1525 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/dns.rb
 1526 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/identity.rb
 1527 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/image.rb
 1528 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/introspection.rb
 1529 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/metering.rb
 1530 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/monitoring.rb
 1531 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/nfv.rb
 1532 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/network.rb
 1533 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/orchestration.rb
 1534 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/storage.rb
 1535 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/support.rb
 1536 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/volume.rb
 1537 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/vpn.rb
 1538 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/formatador.rb
 1539 /usr/local/bundle/gems/fog-core-2.1.2/lib/fog/core.rb
 1540 /usr/local/bundle/gems/fog-xml-0.1.3/lib/fog/xml/version.rb
 1541 /usr/local/bundle/gems/fog-xml-0.1.3/lib/fog/xml.rb
 1542 /usr/local/bundle/gems/multi_json-1.13.1/lib/multi_json/options.rb
 1543 /usr/local/bundle/gems/multi_json-1.13.1/lib/multi_json/version.rb
 1544 /usr/local/bundle/gems/multi_json-1.13.1/lib/multi_json/adapter_error.rb
 1545 /usr/local/bundle/gems/multi_json-1.13.1/lib/multi_json/parse_error.rb
 1546 /usr/local/bundle/gems/multi_json-1.13.1/lib/multi_json/options_cache.rb
 1547 /usr/local/bundle/gems/multi_json-1.13.1/lib/multi_json.rb
 1548 /usr/local/bundle/gems/fog-json-1.2.0/lib/fog/json/version.rb
 1549 /usr/local/bundle/gems/fog-json-1.2.0/lib/fog/json.rb
 1550 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/version.rb
 1551 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/credential_fetcher.rb
 1552 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/auto_scaling.rb
 1553 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/beanstalk.rb
 1554 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/cdn.rb
 1555 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/cloud_formation.rb
 1556 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/cloud_watch.rb
 1557 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/compute.rb
 1558 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/data_pipeline.rb
 1559 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/dns.rb
 1560 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/dynamodb.rb
 1561 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/elasticache.rb
 1562 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/ecs.rb
 1563 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/efs.rb
 1564 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/elb/policy_types.rb
 1565 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/elb.rb
 1566 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/emr.rb
 1567 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/federation.rb
 1568 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/glacier.rb
 1569 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/iam/default_policies.rb
 1570 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/iam.rb
 1571 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/kinesis.rb
 1572 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/kms.rb
 1573 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/lambda.rb
 1574 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/rds.rb
 1575 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/redshift.rb
 1576 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/ses.rb
 1577 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/simpledb.rb
 1578 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/sns.rb
 1579 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/sqs.rb
 1580 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/storage.rb
 1581 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/sts.rb
 1582 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws/support.rb
 1583 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog/aws.rb
 1584 /usr/local/bundle/gems/fog-aws-3.5.2/lib/fog-aws.rb
 1585 /usr/local/bundle/gems/execjs-2.7.0/lib/execjs/version.rb
 1586 /usr/local/bundle/gems/execjs-2.7.0/lib/execjs/module.rb
 1587 /usr/local/bundle/gems/execjs-2.7.0/lib/execjs/encoding.rb
 1588 /usr/local/bundle/gems/execjs-2.7.0/lib/execjs/runtime.rb
 1589 /usr/local/bundle/gems/execjs-2.7.0/lib/execjs/disabled_runtime.rb
 1590 /usr/local/bundle/gems/execjs-2.7.0/lib/execjs/duktape_runtime.rb
 1591 /usr/local/bundle/gems/execjs-2.7.0/lib/execjs/external_runtime.rb
 1592 /usr/local/bundle/gems/execjs-2.7.0/lib/execjs/ruby_racer_runtime.rb
 1593 /usr/local/bundle/gems/execjs-2.7.0/lib/execjs/ruby_rhino_runtime.rb
 1594 /usr/local/bundle/gems/execjs-2.7.0/lib/execjs/mini_racer_runtime.rb
 1595 /usr/local/bundle/gems/execjs-2.7.0/lib/execjs/runtimes.rb
 1596 /usr/local/bundle/gems/execjs-2.7.0/lib/execjs.rb
 1597 /usr/local/bundle/gems/coffee-script-source-1.12.2/lib/coffee_script/source.rb
 1598 /usr/local/bundle/gems/coffee-script-2.4.1/lib/coffee_script.rb
 1599 /usr/local/bundle/gems/coffee-script-2.4.1/lib/coffee-script.rb
 1600 /usr/local/bundle/gems/thor-0.20.3/lib/thor/command.rb
 1601 /usr/local/bundle/gems/thor-0.20.3/lib/thor/core_ext/hash_with_indifferent_access.rb
 1602 /usr/local/bundle/gems/thor-0.20.3/lib/thor/core_ext/ordered_hash.rb
 1603 /usr/local/bundle/gems/thor-0.20.3/lib/thor/error.rb
 1604 /usr/local/bundle/gems/thor-0.20.3/lib/thor/invocation.rb
 1605 /usr/local/bundle/gems/thor-0.20.3/lib/thor/parser/argument.rb
 1606 /usr/local/bundle/gems/thor-0.20.3/lib/thor/parser/arguments.rb
 1607 /usr/local/bundle/gems/thor-0.20.3/lib/thor/parser/option.rb
 1608 /usr/local/bundle/gems/thor-0.20.3/lib/thor/parser/options.rb
 1609 /usr/local/bundle/gems/thor-0.20.3/lib/thor/parser.rb
 1610 /usr/local/bundle/gems/thor-0.20.3/lib/thor/shell.rb
 1611 /usr/local/bundle/gems/thor-0.20.3/lib/thor/line_editor/basic.rb
 1612 /usr/local/lib/ruby/2.6.0/x86_64-linux/readline.so
 1613 /usr/local/bundle/gems/thor-0.20.3/lib/thor/line_editor/readline.rb
 1614 /usr/local/bundle/gems/thor-0.20.3/lib/thor/line_editor.rb
 1615 /usr/local/bundle/gems/thor-0.20.3/lib/thor/util.rb
 1616 /usr/local/bundle/gems/thor-0.20.3/lib/thor/base.rb
 1617 /usr/local/bundle/gems/thor-0.20.3/lib/thor/group.rb
 1618 /usr/local/bundle/gems/thor-0.20.3/lib/thor.rb
 1619 /usr/local/bundle/gems/railties-5.2.3/lib/rails/command/behavior.rb
 1620 /usr/local/bundle/gems/railties-5.2.3/lib/rails/command.rb
 1621 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string/indent.rb
 1622 /usr/local/bundle/gems/railties-5.2.3/lib/rails/generators.rb
 1623 /usr/local/bundle/gems/coffee-rails-5.0.0/lib/coffee/rails/js_hook.rb
 1624 /usr/local/bundle/gems/coffee-rails-5.0.0/lib/coffee/rails/engine.rb
 1625 /usr/local/bundle/gems/coffee-rails-5.0.0/lib/coffee/rails/template_handler.rb
 1626 /usr/local/bundle/gems/coffee-rails-5.0.0/lib/coffee/rails/version.rb
 1627 /usr/local/bundle/gems/coffee-rails-5.0.0/lib/coffee-rails.rb
 1628 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/securerandom.rb
 1629 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/marshal.rb
 1630 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/file/atomic.rb
 1631 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/file.rb
 1632 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/integer/multiple.rb
 1633 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/integer/inflections.rb
 1634 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/integer.rb
 1635 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/big_decimal.rb
 1636 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string/exclude.rb
 1637 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string/inquiry.rb
 1638 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/string.rb
 1639 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/hash.rb
 1640 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric/inquiry.rb
 1641 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric/conversions.rb
 1642 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/numeric.rb
 1643 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel/agnostics.rb
 1644 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel/concern.rb
 1645 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext/kernel.rb
 1646 /usr/local/bundle/gems/activesupport-5.2.3/lib/active_support/core_ext.rb
 1647 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/constants.rb
 1648 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/predicate.rb
 1649 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/configuration.rb
 1650 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/adapters.rb
 1651 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/associations/join_dependency.rb
 1652 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/associations/join_dependency/join_part.rb
 1653 /usr/local/bundle/gems/activerecord-5.2.3/lib/active_record/associations/join_dependency/join_association.rb
 1654 /usr/local/bundle/gems/polyamorous-2.3.0/lib/polyamorous/tree_node.rb
 1655 /usr/local/bundle/gems/polyamorous-2.3.0/lib/polyamorous/join.rb
 1656 /usr/local/bundle/gems/polyamorous-2.3.0/lib/polyamorous/swapping_reflection_class.rb
 1657 /usr/local/bundle/gems/polyamorous-2.3.0/lib/polyamorous/activerecord_5.2.1_ruby_2/join_association.rb
 1658 /usr/local/bundle/gems/polyamorous-2.3.0/lib/polyamorous/activerecord_5.2.1_ruby_2/join_dependency.rb
 1659 /usr/local/bundle/gems/polyamorous-2.3.0/lib/polyamorous/activerecord_5.2.0_ruby_2/reflection.rb
 1660 /usr/local/bundle/gems/polyamorous-2.3.0/lib/polyamorous/activerecord_5.2.1_ruby_2/reflection.rb
 1661 /usr/local/bundle/gems/polyamorous-2.3.0/lib/polyamorous.rb
 1662 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/adapters/active_record/ransack/constants.rb
 1663 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/nodes/bindable.rb
 1664 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/nodes/node.rb
 1665 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/nodes/attribute.rb
 1666 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/nodes/value.rb
 1667 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/nodes/condition.rb
 1668 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/adapters/active_record/ransack/nodes/condition.rb
 1669 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/nodes/sort.rb
 1670 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/nodes/grouping.rb
 1671 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/nodes.rb
 1672 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/visitor.rb
 1673 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/adapters/active_record/ransack/visitor.rb
 1674 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/context.rb
 1675 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/adapters/active_record/ransack/context.rb
 1676 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/naming.rb
 1677 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/search.rb
 1678 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/ransacker.rb
 1679 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/tags.rb
 1680 /usr/local/bundle/gems/actionview-5.2.3/lib/action_view/helpers/tags/base.rb
 1681 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/helpers/form_builder.rb
 1682 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/helpers/form_helper.rb
 1683 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/helpers.rb
 1684 /usr/local/bundle/gems/i18n-1.6.0/lib/i18n/backend.rb
 1685 /usr/local/bundle/gems/i18n-1.6.0/lib/i18n/core_ext/hash.rb
 1686 /usr/local/bundle/gems/i18n-1.6.0/lib/i18n/backend/transliterator.rb
 1687 /usr/local/bundle/gems/i18n-1.6.0/lib/i18n/backend/base.rb
 1688 /usr/local/bundle/gems/i18n-1.6.0/lib/i18n/backend/simple.rb
 1689 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/translate.rb
 1690 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/adapters/active_record/ransack/translate.rb
 1691 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/adapters/active_record/base.rb
 1692 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/adapters/active_record/context.rb
 1693 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack/adapters/active_record.rb
 1694 /usr/local/bundle/gems/ransack-2.3.0/lib/ransack.rb
 1695 /usr/local/bundle/gems/activeadmin-2.4.0/lib/ransack_ext.rb
 1696 /usr/local/bundle/gems/kaminari-core-1.1.1/lib/kaminari/config.rb
 1697 /usr/local/bundle/gems/kaminari-core-1.1.1/lib/kaminari/exceptions.rb
 1698 /usr/local/bundle/gems/kaminari-core-1.1.1/lib/kaminari/helpers/tags.rb
 1699 /usr/local/bundle/gems/kaminari-core-1.1.1/lib/kaminari/helpers/paginator.rb
 1700 /usr/local/bundle/gems/kaminari-core-1.1.1/lib/kaminari/models/page_scope_methods.rb
 1701 /usr/local/bundle/gems/kaminari-core-1.1.1/lib/kaminari/models/configuration_methods.rb
 1702 /usr/local/bundle/gems/kaminari-core-1.1.1/lib/kaminari/models/array_extension.rb
 1703 /usr/local/bundle/gems/kaminari-core-1.1.1/lib/kaminari/railtie.rb
 1704 /usr/local/bundle/gems/kaminari-core-1.1.1/lib/kaminari/engine.rb
 1705 /usr/local/bundle/gems/kaminari-core-1.1.1/lib/kaminari/core.rb
 1706 /usr/local/bundle/gems/kaminari-actionview-1.1.1/lib/kaminari/actionview/version.rb
 1707 /usr/local/bundle/gems/kaminari-actionview-1.1.1/lib/kaminari/actionview.rb
 1708 /usr/local/bundle/gems/kaminari-activerecord-1.1.1/lib/kaminari/activerecord/version.rb
 1709 /usr/local/bundle/gems/kaminari-activerecord-1.1.1/lib/kaminari/activerecord/active_record_relation_methods.rb
 1710 /usr/local/bundle/gems/kaminari-activerecord-1.1.1/lib/kaminari/activerecord/active_record_model_extension.rb
 1711 /usr/local/bundle/gems/kaminari-activerecord-1.1.1/lib/kaminari/activerecord/active_record_extension.rb
 1712 /usr/local/bundle/gems/kaminari-activerecord-1.1.1/lib/kaminari/activerecord.rb
 1713 /usr/local/bundle/gems/kaminari-1.1.1/lib/kaminari.rb
 1714 /usr/local/bundle/gems/formtastic-3.1.5/lib/formtastic/engine.rb
 1715 /usr/local/bundle/gems/formtastic-3.1.5/lib/formtastic/deprecation.rb
 1716 /usr/local/bundle/gems/formtastic-3.1.5/lib/formtastic/util.rb
 1717 /usr/local/bundle/gems/formtastic-3.1.5/lib/formtastic.rb
 1718 /usr/local/bundle/gems/formtastic_i18n-0.6.0/lib/formtastic_i18n/engine.rb
 1719 /usr/local/bundle/gems/formtastic_i18n-0.6.0/lib/formtastic_i18n/version.rb
 1720 /usr/local/bundle/gems/formtastic_i18n-0.6.0/lib/formtastic_i18n.rb
 1721 /usr/local/bundle/gems/inherited_resources-1.11.0/lib/inherited_resources/engine.rb
 1722 /usr/local/bundle/gems/inherited_resources-1.11.0/lib/inherited_resources/blank_slate.rb
 1723 /usr/local/bundle/gems/responders-3.0.0/lib/action_controller/responder.rb
 1724 /usr/local/bundle/gems/responders-3.0.0/lib/responders/flash_responder.rb
 1725 /usr/local/bundle/gems/inherited_resources-1.11.0/lib/inherited_resources/responder.rb
 1726 /usr/local/bundle/gems/inherited_resources-1.11.0/lib/inherited_resources.rb
 1727 /usr/local/bundle/gems/jquery-rails-4.3.5/lib/jquery/rails/engine.rb
 1728 /usr/local/bundle/gems/jquery-rails-4.3.5/lib/jquery/rails/version.rb
 1729 /usr/local/bundle/gems/jquery-rails-4.3.5/lib/jquery/rails.rb
 1730 /usr/local/bundle/gems/jquery-rails-4.3.5/lib/jquery-rails.rb
 1731 /usr/local/bundle/gems/sassc-rails-2.1.2/lib/sassc/rails/version.rb
 1732 /usr/local/bundle/gems/sassc-2.2.1/lib/sassc/version.rb
 1733 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi_c.so
 1734 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/platform.rb
 1735 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/data_converter.rb
 1736 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/types.rb
 1737 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/library.rb
 1738 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/errno.rb
 1739 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/pointer.rb
 1740 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/memorypointer.rb
 1741 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/struct_layout.rb
 1742 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/struct_layout_builder.rb
 1743 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/struct_by_reference.rb
 1744 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/struct.rb
 1745 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/union.rb
 1746 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/managedstruct.rb
 1747 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/callback.rb
 1748 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/io.rb
 1749 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/autopointer.rb
 1750 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/variadic.rb
 1751 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/enum.rb
 1752 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi/ffi.rb
 1753 /usr/local/bundle/gems/ffi-1.11.1/lib/ffi.rb

* Process memory map:

560654fe1000-560654fe2000 r--p 00000000 fe:01 3859378                    /usr/local/bin/ruby
560654fe2000-560654fe3000 r-xp 00001000 fe:01 3859378                    /usr/local/bin/ruby
560654fe3000-560654fe4000 r--p 00002000 fe:01 3859378                    /usr/local/bin/ruby
560654fe4000-560654fe5000 r--p 00002000 fe:01 3859378                    /usr/local/bin/ruby
560654fe5000-560654fe6000 rw-p 00003000 fe:01 3859378                    /usr/local/bin/ruby
560656371000-560656392000 rw-p 00000000 00:00 0                          [heap]
560656392000-56065aa07000 rw-p 00000000 00:00 0                          [heap]
7f143cfe2000-7f143d1a0000 r--s 00000000 fe:01 3374339                    /lib/x86_64-linux-gnu/libc-2.28.so
7f143d1a0000-7f143d1c9000 r--s 00000000 fe:01 3374325                    /lib/x86_64-linux-gnu/ld-2.28.so
7f143d1c9000-7f143d418000 r--s 00000000 fe:01 2216012                    /usr/local/bundle/gems/sassc-2.2.1/lib/sassc/libsass.so
7f143d418000-7f143d43c000 r--s 00000000 fe:01 3374398                    /lib/x86_64-linux-gnu/libpthread-2.28.so
7f143d43c000-7f143dcd0000 rw-p 00000000 00:00 0 
7f143dcd0000-7f143e58e000 r--s 00000000 fe:01 2334439                    /usr/local/lib/libruby.so.2.6.3
7f143e58e000-7f143e5f6000 r--p 00000000 fe:01 2216012                    /usr/local/bundle/gems/sassc-2.2.1/lib/sassc/libsass.so
7f143e5f6000-7f143e748000 r-xp 00068000 fe:01 2216012                    /usr/local/bundle/gems/sassc-2.2.1/lib/sassc/libsass.so
7f143e748000-7f143e794000 r--p 001ba000 fe:01 2216012                    /usr/local/bundle/gems/sassc-2.2.1/lib/sassc/libsass.so
7f143e794000-7f143e7a0000 r--p 00205000 fe:01 2216012                    /usr/local/bundle/gems/sassc-2.2.1/lib/sassc/libsass.so
7f143e7a0000-7f143e7a3000 rw-p 00211000 fe:01 2216012                    /usr/local/bundle/gems/sassc-2.2.1/lib/sassc/libsass.so
7f143e7a3000-7f143e7ae000 rw-p 00000000 00:00 0 
7f143e7ae000-7f143ebb0000 rw-p 00000000 00:00 0 
7f143ebb0000-7f143ebbe000 r--p 00000000 fe:01 3374415                    /lib/x86_64-linux-gnu/libtinfo.so.6.1
7f143ebbe000-7f143ebcc000 r-xp 0000e000 fe:01 3374415                    /lib/x86_64-linux-gnu/libtinfo.so.6.1
7f143ebcc000-7f143ebd9000 r--p 0001c000 fe:01 3374415                    /lib/x86_64-linux-gnu/libtinfo.so.6.1
7f143ebd9000-7f143ebdd000 r--p 00028000 fe:01 3374415                    /lib/x86_64-linux-gnu/libtinfo.so.6.1
7f143ebdd000-7f143ebde000 rw-p 0002c000 fe:01 3374415                    /lib/x86_64-linux-gnu/libtinfo.so.6.1
7f143ebde000-7f143ebe6000 r--p 00000000 fe:01 2334020                    /lib/x86_64-linux-gnu/libncurses.so.6.1
7f143ebe6000-7f143ebfe000 r-xp 00008000 fe:01 2334020                    /lib/x86_64-linux-gnu/libncurses.so.6.1
7f143ebfe000-7f143ec04000 r--p 00020000 fe:01 2334020                    /lib/x86_64-linux-gnu/libncurses.so.6.1
7f143ec04000-7f143ec05000 ---p 00026000 fe:01 2334020                    /lib/x86_64-linux-gnu/libncurses.so.6.1
7f143ec05000-7f143ec06000 r--p 00026000 fe:01 2334020                    /lib/x86_64-linux-gnu/libncurses.so.6.1
7f143ec06000-7f143ec07000 rw-p 00027000 fe:01 2334020                    /lib/x86_64-linux-gnu/libncurses.so.6.1
7f143ec07000-7f143ec4b000 r-xp 00000000 fe:01 1710273                    /lib/x86_64-linux-gnu/libreadline.so.7.0
7f143ec4b000-7f143ee4a000 ---p 00044000 fe:01 1710273                    /lib/x86_64-linux-gnu/libreadline.so.7.0
7f143ee4a000-7f143ee4c000 r--p 00043000 fe:01 1710273                    /lib/x86_64-linux-gnu/libreadline.so.7.0
7f143ee4c000-7f143ee52000 rw-p 00045000 fe:01 1710273                    /lib/x86_64-linux-gnu/libreadline.so.7.0
7f143ee52000-7f143ee54000 rw-p 00000000 00:00 0 
7f143ee54000-7f143ee57000 r--p 00000000 fe:01 1209128                    /usr/local/lib/ruby/2.6.0/x86_64-linux/readline.so
7f143ee57000-7f143ee5b000 r-xp 00003000 fe:01 1209128                    /usr/local/lib/ruby/2.6.0/x86_64-linux/readline.so
7f143ee5b000-7f143ee5d000 r--p 00007000 fe:01 1209128                    /usr/local/lib/ruby/2.6.0/x86_64-linux/readline.so
7f143ee5d000-7f143ee5e000 r--p 00008000 fe:01 1209128                    /usr/local/lib/ruby/2.6.0/x86_64-linux/readline.so
7f143ee5e000-7f143ee5f000 rw-p 00009000 fe:01 1209128                    /usr/local/lib/ruby/2.6.0/x86_64-linux/readline.so
7f143ee5f000-7f143ee64000 r--p 00000000 fe:01 1209129                    /usr/local/lib/ruby/2.6.0/x86_64-linux/ripper.so
7f143ee64000-7f143ee80000 r-xp 00005000 fe:01 1209129                    /usr/local/lib/ruby/2.6.0/x86_64-linux/ripper.so
7f143ee80000-7f143ee95000 r--p 00021000 fe:01 1209129                    /usr/local/lib/ruby/2.6.0/x86_64-linux/ripper.so
7f143ee95000-7f143ee96000 ---p 00036000 fe:01 1209129                    /usr/local/lib/ruby/2.6.0/x86_64-linux/ripper.so
7f143ee96000-7f143ee97000 r--p 00036000 fe:01 1209129                    /usr/local/lib/ruby/2.6.0/x86_64-linux/ripper.so
7f143ee97000-7f143ee98000 rw-p 00037000 fe:01 1209129                    /usr/local/lib/ruby/2.6.0/x86_64-linux/ripper.so
7f143ee98000-7f143ee9a000 r--p 00000000 fe:01 3479675                    /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f143ee9a000-7f143ee9f000 r-xp 00002000 fe:01 3479675                    /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f143ee9f000-7f143eea0000 r--p 00007000 fe:01 3479675                    /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f143eea0000-7f143eea1000 r--p 00007000 fe:01 3479675                    /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f143eea1000-7f143eea2000 rw-p 00008000 fe:01 3479675                    /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f143eea2000-7f143eeaa000 r--p 00000000 fe:01 3479683                    /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f143eeaa000-7f143eeba000 r-xp 00008000 fe:01 3479683                    /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f143eeba000-7f143eed8000 r--p 00018000 fe:01 3479683                    /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f143eed8000-7f143eed9000 ---p 00036000 fe:01 3479683                    /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f143eed9000-7f143eeda000 r--p 00036000 fe:01 3479683                    /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f143eeda000-7f143eedb000 rw-p 00037000 fe:01 3479683                    /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f143eedb000-7f143eee4000 r--p 00000000 fe:01 3479691                    /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f143eee4000-7f143ef01000 r-xp 00009000 fe:01 3479691                    /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f143ef01000-7f143ef10000 r--p 00026000 fe:01 3479691                    /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f143ef10000-7f143ef12000 r--p 00034000 fe:01 3479691                    /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f143ef12000-7f143ef13000 rw-p 00036000 fe:01 3479691                    /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f143ef13000-7f143ef24000 r-xp 00000000 fe:01 3479704                    /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7f143ef24000-7f143f124000 ---p 00011000 fe:01 3479704                    /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7f143f124000-7f143f125000 r--p 00011000 fe:01 3479704                    /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7f143f125000-7f143f126000 rw-p 00012000 fe:01 3479704                    /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7f143f126000-7f143f137000 r--p 00000000 fe:01 3479708                    /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f143f137000-7f143f16e000 r-xp 00011000 fe:01 3479708                    /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f143f16e000-7f143f2a5000 r--p 00048000 fe:01 3479708                    /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f143f2a5000-7f143f2a9000 r--p 0017e000 fe:01 3479708                    /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f143f2a9000-7f143f2aa000 rw-p 00182000 fe:01 3479708                    /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f143f2aa000-7f143f2ac000 r--p 00000000 fe:01 3479685                    /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4
7f143f2ac000-7f143f2b0000 r-xp 00002000 fe:01 3479685                    /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4
7f143f2b0000-7f143f2c7000 r--p 00006000 fe:01 3479685                    /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4
7f143f2c7000-7f143f2c8000 r--p 0001c000 fe:01 3479685                    /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4
7f143f2c8000-7f143f2c9000 rw-p 0001d000 fe:01 3479685                    /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4
7f143f2c9000-7f143f2f4000 r--p 00000000 fe:01 3479693                    /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f143f2f4000-7f143f388000 r-xp 0002b000 fe:01 3479693                    /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f143f388000-7f143f3e3000 r--p 000bf000 fe:01 3479693                    /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f143f3e3000-7f143f3ee000 r--p 00119000 fe:01 3479693                    /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f143f3ee000-7f143f3f8000 rw-p 00124000 fe:01 3479693                    /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f143f3f8000-7f143f428000 r--p 00000000 fe:01 3479681                    /usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2
7f143f428000-7f143f52c000 r-xp 00030000 fe:01 3479681                    /usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2
7f143f52c000-7f143f592000 r--p 00134000 fe:01 3479681                    /usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2
7f143f592000-7f143f5a2000 r--p 00199000 fe:01 3479681                    /usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2
7f143f5a2000-7f143f5a3000 rw-p 001a9000 fe:01 3479681                    /usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2
7f143f5a3000-7f143f5a4000 rw-p 00000000 00:00 0 
7f143f5a4000-7f143f5a7000 r--p 00000000 fe:01 3224213                    /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f143f5a7000-7f143f5b9000 r-xp 00003000 fe:01 3224213                    /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f143f5b9000-7f143f5bf000 r--p 00015000 fe:01 3224213                    /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f143f5bf000-7f143f5c0000 r--p 0001a000 fe:01 3224213                    /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f143f5c0000-7f143f5c1000 rw-p 0001b000 fe:01 3224213                    /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f143f5c1000-7f143f5c5000 r--p 00000000 fe:01 3374400                    /lib/x86_64-linux-gnu/libresolv-2.28.so
7f143f5c5000-7f143f5d2000 r-xp 00004000 fe:01 3374400                    /lib/x86_64-linux-gnu/libresolv-2.28.so
7f143f5d2000-7f143f5d6000 r--p 00011000 fe:01 3374400                    /lib/x86_64-linux-gnu/libresolv-2.28.so
7f143f5d6000-7f143f5d7000 ---p 00015000 fe:01 3374400                    /lib/x86_64-linux-gnu/libresolv-2.28.so
7f143f5d7000-7f143f5d8000 r--p 00015000 fe:01 3374400                    /lib/x86_64-linux-gnu/libresolv-2.28.so
7f143f5d8000-7f143f5d9000 rw-p 00016000 fe:01 3374400                    /lib/x86_64-linux-gnu/libresolv-2.28.so
7f143f5d9000-7f143f5db000 rw-p 00000000 00:00 0 
7f143f5db000-7f143f5e0000 r--p 00000000 fe:01 3224193                    /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f143f5e0000-7f143f5fd000 r-xp 00005000 fe:01 3224193                    /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f143f5fd000-7f143f60b000 r--p 00022000 fe:01 3224193                    /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f143f60b000-7f143f60d000 r--p 0002f000 fe:01 3224193                    /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f143f60d000-7f143f60e000 rw-p 00031000 fe:01 3224193                    /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f143f60e000-7f143f60f000 rw-p 00000000 00:00 0 
7f143f60f000-7f143f633000 r--p 00000000 fe:01 3224197                    /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f143f633000-7f143f694000 r-xp 00024000 fe:01 3224197                    /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f143f694000-7f143f6dd000 r--p 00085000 fe:01 3224197                    /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f143f6dd000-7f143f6de000 ---p 000ce000 fe:01 3224197                    /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f143f6de000-7f143f6ec000 r--p 000ce000 fe:01 3224197                    /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f143f6ec000-7f143f6ef000 rw-p 000dc000 fe:01 3224197                    /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f143f6ef000-7f143f6fd000 r--p 00000000 fe:01 3224204                    /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10
7f143f6fd000-7f143f72f000 r-xp 0000e000 fe:01 3224204                    /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10
7f143f72f000-7f143f73d000 r--p 00040000 fe:01 3224204                    /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10
7f143f73d000-7f143f73e000 ---p 0004e000 fe:01 3224204                    /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10
7f143f73e000-7f143f740000 r--p 0004e000 fe:01 3224204                    /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10
7f143f740000-7f143f741000 rw-p 00050000 fe:01 3224204                    /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10
7f143f741000-7f143f743000 rw-p 00000000 00:00 0 
7f143f743000-7f143f74e000 r--p 00000000 fe:01 3224191                    /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f143f74e000-7f143f780000 r-xp 0000b000 fe:01 3224191                    /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f143f780000-7f143f78c000 r--p 0003d000 fe:01 3224191                    /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f143f78c000-7f143f78e000 r--p 00048000 fe:01 3224191                    /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f143f78e000-7f143f790000 rw-p 0004a000 fe:01 3224191                    /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f143f790000-7f143f79a000 r--p 00000000 fe:01 3859165                    /usr/lib/x86_64-linux-gnu/libpq.so.5.11
7f143f79a000-7f143f7b9000 r-xp 0000a000 fe:01 3859165                    /usr/lib/x86_64-linux-gnu/libpq.so.5.11
7f143f7b9000-7f143f7d6000 r--p 00029000 fe:01 3859165                    /usr/lib/x86_64-linux-gnu/libpq.so.5.11
7f143f7d6000-7f143f7d7000 ---p 00046000 fe:01 3859165                    /usr/lib/x86_64-linux-gnu/libpq.so.5.11
7f143f7d7000-7f143f7da000 r--p 00046000 fe:01 3859165                    /usr/lib/x86_64-linux-gnu/libpq.so.5.11
7f143f7da000-7f143f7db000 rw-p 00049000 fe:01 3859165                    /usr/lib/x86_64-linux-gnu/libpq.so.5.11
7f143f7db000-7f143f814000 r--p 00000000 fe:01 2213066                    /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/nokogiri.so
7f143f814000-7f143f9a8000 r-xp 00039000 fe:01 2213066                    /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/nokogiri.so
7f143f9a8000-7f143f9fb000 r--p 001cd000 fe:01 2213066                    /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/nokogiri.so
7f143f9fb000-7f143f9fc000 ---p 00220000 fe:01 2213066                    /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/nokogiri.so
7f143f9fc000-7f143fa04000 r--p 00220000 fe:01 2213066                    /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/nokogiri.so
7f143fa04000-7f143fa08000 rw-p 00228000 fe:01 2213066                    /usr/local/bundle/gems/nokogiri-1.10.4/lib/nokogiri/nokogiri.so
7f143fa08000-7f143fa0a000 rw-p 00000000 00:00 0 
7f143fa21000-7f143fa4a000 r--s 00000000 fe:01 3859378                    /usr/local/bin/ruby
7f143fa4a000-7f143fa4d000 r--p 00000000 fe:01 3374357                    /lib/x86_64-linux-gnu/libgcc_s.so.1
7f143fa4d000-7f143fa5e000 r-xp 00003000 fe:01 3374357                    /lib/x86_64-linux-gnu/libgcc_s.so.1
7f143fa5e000-7f143fa61000 r--p 00014000 fe:01 3374357                    /lib/x86_64-linux-gnu/libgcc_s.so.1
7f143fa61000-7f143fa62000 ---p 00017000 fe:01 3374357                    /lib/x86_64-linux-gnu/libgcc_s.so.1
7f143fa62000-7f143fa63000 r--p 00017000 fe:01 3374357                    /lib/x86_64-linux-gnu/libgcc_s.so.1
7f143fa63000-7f143fa64000 rw-p 00018000 fe:01 3374357                    /lib/x86_64-linux-gnu/libgcc_s.so.1
7f143fa64000-7f143faed000 r--p 00000000 fe:01 3479702                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f143faed000-7f143fb99000 r-xp 00089000 fe:01 3479702                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f143fb99000-7f143fbd7000 r--p 00135000 fe:01 3479702                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f143fbd7000-7f143fbd8000 ---p 00173000 fe:01 3479702                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f143fbd8000-7f143fbe2000 r--p 00173000 fe:01 3479702                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f143fbe2000-7f143fbe4000 rw-p 0017d000 fe:01 3479702                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f143fbe4000-7f143fbe8000 rw-p 00000000 00:00 0 
7f143fbe8000-7f143fbed000 r--p 00000000 fe:01 2210735                    /usr/local/bundle/gems/ffi-1.11.1/lib/ffi_c.so
7f143fbed000-7f143fc02000 r-xp 00005000 fe:01 2210735                    /usr/local/bundle/gems/ffi-1.11.1/lib/ffi_c.so
7f143fc02000-7f143fc09000 r--p 0001a000 fe:01 2210735                    /usr/local/bundle/gems/ffi-1.11.1/lib/ffi_c.so
7f143fc09000-7f143fc0a000 ---p 00021000 fe:01 2210735                    /usr/local/bundle/gems/ffi-1.11.1/lib/ffi_c.so
7f143fc0a000-7f143fc0b000 r--p 00021000 fe:01 2210735                    /usr/local/bundle/gems/ffi-1.11.1/lib/ffi_c.so
7f143fc0b000-7f143fc0c000 rw-p 00022000 fe:01 2210735                    /usr/local/bundle/gems/ffi-1.11.1/lib/ffi_c.so
7f143fc0c000-7f143fc0e000 r--p 00000000 fe:01 2211980                    /usr/local/bundle/gems/json-2.2.0/lib/json/ext/generator.so
7f143fc0e000-7f143fc14000 r-xp 00002000 fe:01 2211980                    /usr/local/bundle/gems/json-2.2.0/lib/json/ext/generator.so
7f143fc14000-7f143fc16000 r--p 00008000 fe:01 2211980                    /usr/local/bundle/gems/json-2.2.0/lib/json/ext/generator.so
7f143fc16000-7f143fc17000 r--p 00009000 fe:01 2211980                    /usr/local/bundle/gems/json-2.2.0/lib/json/ext/generator.so
7f143fc17000-7f143fc18000 rw-p 0000a000 fe:01 2211980                    /usr/local/bundle/gems/json-2.2.0/lib/json/ext/generator.so
7f143fc18000-7f143fc1b000 r--p 00000000 fe:01 1209106                    /usr/local/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f143fc1b000-7f143fc44000 r-xp 00003000 fe:01 1209106                    /usr/local/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f143fc44000-7f143fc4c000 r--p 0002c000 fe:01 1209106                    /usr/local/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f143fc4c000-7f143fc4d000 r--p 00033000 fe:01 1209106                    /usr/local/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f143fc4d000-7f143fc4e000 rw-p 00034000 fe:01 1209106                    /usr/local/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f143fc4e000-7f143fc4f000 rw-p 00000000 00:00 0 
7f143fc4f000-7f143fc55000 r--p 00000000 fe:01 1209131                    /usr/local/lib/ruby/2.6.0/x86_64-linux/socket.so
7f143fc55000-7f143fc74000 r-xp 00006000 fe:01 1209131                    /usr/local/lib/ruby/2.6.0/x86_64-linux/socket.so
7f143fc74000-7f143fc7b000 r--p 00025000 fe:01 1209131                    /usr/local/lib/ruby/2.6.0/x86_64-linux/socket.so
7f143fc7b000-7f143fc7c000 ---p 0002c000 fe:01 1209131                    /usr/local/lib/ruby/2.6.0/x86_64-linux/socket.so
7f143fc7c000-7f143fc7d000 r--p 0002c000 fe:01 1209131                    /usr/local/lib/ruby/2.6.0/x86_64-linux/socket.so
7f143fc7d000-7f143fc7e000 rw-p 0002d000 fe:01 1209131                    /usr/local/lib/ruby/2.6.0/x86_64-linux/socket.so
7f143fc7e000-7f143fc92000 r--p 00000000 fe:01 1209121                    /usr/local/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f143fc92000-7f143fcc2000 r-xp 00014000 fe:01 1209121                    /usr/local/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f143fcc2000-7f143fcd2000 r--p 00044000 fe:01 1209121                    /usr/local/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f143fcd2000-7f143fcd4000 r--p 00053000 fe:01 1209121                    /usr/local/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f143fcd4000-7f143fcd6000 rw-p 00055000 fe:01 1209121                    /usr/local/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f143fcd6000-7f143fcd7000 rw-p 00000000 00:00 0 
7f143fcd7000-7f143fcf4000 r-xp 00000000 fe:01 3859263                    /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5
7f143fcf4000-7f143fef3000 ---p 0001d000 fe:01 3859263                    /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5
7f143fef3000-7f143fef4000 r--p 0001c000 fe:01 3859263                    /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5
7f143fef4000-7f143fef5000 rw-p 0001d000 fe:01 3859263                    /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5
7f143fef7000-7f143fefa000 r--p 00000000 fe:01 3224201                    /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10
7f143fefa000-7f143ff02000 r-xp 00003000 fe:01 3224201                    /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10
7f143ff02000-7f143ff05000 r--p 0000b000 fe:01 3224201                    /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10
7f143ff05000-7f143ff06000 ---p 0000e000 fe:01 3224201                    /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10
7f143ff06000-7f143ff07000 r--p 0000e000 fe:01 3224201                    /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10
7f143ff07000-7f143ff08000 rw-p 0000f000 fe:01 3224201                    /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10
7f143ff08000-7f143ff0a000 r--p 00000000 fe:01 3224155                    /lib/x86_64-linux-gnu/libkeyutils.so.1.8
7f143ff0a000-7f143ff0c000 r-xp 00002000 fe:01 3224155                    /lib/x86_64-linux-gnu/libkeyutils.so.1.8
7f143ff0c000-7f143ff0d000 r--p 00004000 fe:01 3224155                    /lib/x86_64-linux-gnu/libkeyutils.so.1.8
7f143ff0d000-7f143ff0e000 r--p 00004000 fe:01 3224155                    /lib/x86_64-linux-gnu/libkeyutils.so.1.8
7f143ff0e000-7f143ff0f000 rw-p 00005000 fe:01 3224155                    /lib/x86_64-linux-gnu/libkeyutils.so.1.8
7f143ff0f000-7f143ff12000 r--p 00000000 fe:01 3224199                    /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f143ff12000-7f143ff19000 r-xp 00003000 fe:01 3224199                    /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f143ff19000-7f143ff1c000 r--p 0000a000 fe:01 3224199                    /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f143ff1c000-7f143ff1d000 r--p 0000c000 fe:01 3224199                    /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f143ff1d000-7f143ff1e000 rw-p 0000d000 fe:01 3224199                    /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f143ff1e000-7f143ff20000 r--p 00000000 fe:01 3374346                    /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f143ff20000-7f143ff21000 r-xp 00002000 fe:01 3374346                    /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f143ff21000-7f143ff22000 r--p 00003000 fe:01 3374346                    /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f143ff22000-7f143ff23000 r--p 00003000 fe:01 3374346                    /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f143ff23000-7f143ff24000 rw-p 00004000 fe:01 3374346                    /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f143ff2d000-7f143ff35000 r--p 00000000 fe:01 2213579                    /usr/local/bundle/gems/pg-1.1.4/lib/pg_ext.so
7f143ff35000-7f143ff52000 r-xp 00008000 fe:01 2213579                    /usr/local/bundle/gems/pg-1.1.4/lib/pg_ext.so
7f143ff52000-7f143ff5c000 r--p 00025000 fe:01 2213579                    /usr/local/bundle/gems/pg-1.1.4/lib/pg_ext.so
7f143ff5c000-7f143ff5d000 ---p 0002f000 fe:01 2213579                    /usr/local/bundle/gems/pg-1.1.4/lib/pg_ext.so
7f143ff5d000-7f143ff5e000 r--p 0002f000 fe:01 2213579                    /usr/local/bundle/gems/pg-1.1.4/lib/pg_ext.so
7f143ff5e000-7f143ff5f000 rw-p 00030000 fe:01 2213579                    /usr/local/bundle/gems/pg-1.1.4/lib/pg_ext.so
7f143ff5f000-7f143ff60000 r--p 00000000 fe:01 3479430                    /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f143ff60000-7f143ff62000 r-xp 00001000 fe:01 3479430                    /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f143ff62000-7f143ff77000 r--p 00003000 fe:01 3479430                    /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f143ff77000-7f143ff78000 r--p 00017000 fe:01 3479430                    /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f143ff78000-7f143ff79000 rw-p 00018000 fe:01 3479430                    /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f143ff79000-7f143ff7c000 r--p 00000000 fe:01 3374363                    /lib/x86_64-linux-gnu/liblzma.so.5.2.4
7f143ff7c000-7f143ff94000 r-xp 00003000 fe:01 3374363                    /lib/x86_64-linux-gnu/liblzma.so.5.2.4
7f143ff94000-7f143ff9f000 r--p 0001b000 fe:01 3374363                    /lib/x86_64-linux-gnu/liblzma.so.5.2.4
7f143ff9f000-7f143ffa0000 r--p 00025000 fe:01 3374363                    /lib/x86_64-linux-gnu/liblzma.so.5.2.4
7f143ffa0000-7f143ffa1000 rw-p 00026000 fe:01 3374363                    /lib/x86_64-linux-gnu/liblzma.so.5.2.4
7f143ffa3000-7f143ffaa000 r--s 00000000 fe:01 3479654                    /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
7f143ffaa000-7f143ffab000 r--p 00000000 fe:01 1711023                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f143ffab000-7f143ffac000 r-xp 00001000 fe:01 1711023                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f143ffac000-7f143ffad000 r--p 00002000 fe:01 1711023                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f143ffad000-7f143ffae000 r--p 00002000 fe:01 1711023                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f143ffae000-7f143ffaf000 rw-p 00003000 fe:01 1711023                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f143ffaf000-7f143ffb0000 r--p 00000000 fe:01 1209125                    /usr/local/lib/ruby/2.6.0/x86_64-linux/racc/cparse.so
7f143ffb0000-7f143ffb3000 r-xp 00001000 fe:01 1209125                    /usr/local/lib/ruby/2.6.0/x86_64-linux/racc/cparse.so
7f143ffb3000-7f143ffb4000 r--p 00004000 fe:01 1209125                    /usr/local/lib/ruby/2.6.0/x86_64-linux/racc/cparse.so
7f143ffb4000-7f143ffb5000 r--p 00004000 fe:01 1209125                    /usr/local/lib/ruby/2.6.0/x86_64-linux/racc/cparse.so
7f143ffb5000-7f143ffb6000 rw-p 00005000 fe:01 1209125                    /usr/local/lib/ruby/2.6.0/x86_64-linux/racc/cparse.so
7f143ffb6000-7f143ffba000 r--p 00000000 fe:01 3749153                    /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/msgpack.so
7f143ffba000-7f143ffc6000 r-xp 00004000 fe:01 3749153                    /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/msgpack.so
7f143ffc6000-7f143ffc9000 r--p 00010000 fe:01 3749153                    /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/msgpack.so
7f143ffc9000-7f143ffca000 ---p 00013000 fe:01 3749153                    /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/msgpack.so
7f143ffca000-7f143ffcb000 r--p 00013000 fe:01 3749153                    /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/msgpack.so
7f143ffcb000-7f143ffcc000 rw-p 00014000 fe:01 3749153                    /usr/local/bundle/gems/msgpack-1.3.1/lib/msgpack/msgpack.so
7f143ffcc000-7f1440051000 r--p 00000000 fe:01 3224185                    /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f1440051000-7f14401f3000 r-xp 00085000 fe:01 3224185                    /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f14401f3000-7f1440280000 r--p 00227000 fe:01 3224185                    /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f1440280000-7f1440281000 ---p 002b4000 fe:01 3224185                    /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f1440281000-7f14402b1000 r--p 002b4000 fe:01 3224185                    /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f14402b1000-7f14402b3000 rw-p 002e4000 fe:01 3224185                    /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f14402b3000-7f14402b6000 rw-p 00000000 00:00 0 
7f14402b6000-7f14402d3000 r--p 00000000 fe:01 3224216                    /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f14402d3000-7f1440320000 r-xp 0001d000 fe:01 3224216                    /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f1440320000-7f144033a000 r--p 0006a000 fe:01 3224216                    /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f144033a000-7f1440343000 r--p 00083000 fe:01 3224216                    /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f1440343000-7f1440347000 rw-p 0008c000 fe:01 3224216                    /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f144034b000-7f144034c000 r--p 00000000 fe:01 1319601                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f144034c000-7f144034d000 r-xp 00001000 fe:01 1319601                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f144034d000-7f144034e000 r--p 00002000 fe:01 1319601                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f144034e000-7f144034f000 r--p 00002000 fe:01 1319601                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f144034f000-7f1440350000 rw-p 00003000 fe:01 1319601                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f1440350000-7f1440351000 r--p 00000000 fe:01 1711025                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f1440351000-7f1440352000 r-xp 00001000 fe:01 1711025                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f1440352000-7f1440353000 r--p 00002000 fe:01 1711025                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f1440353000-7f1440354000 r--p 00002000 fe:01 1711025                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f1440354000-7f1440355000 rw-p 00003000 fe:01 1711025                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f1440355000-7f1440356000 r--p 00000000 fe:01 1209108                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest.so
7f1440356000-7f1440358000 r-xp 00001000 fe:01 1209108                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest.so
7f1440358000-7f1440359000 r--p 00003000 fe:01 1209108                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest.so
7f1440359000-7f144035a000 r--p 00003000 fe:01 1209108                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest.so
7f144035a000-7f144035b000 rw-p 00004000 fe:01 1209108                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest.so
7f144035b000-7f144035d000 r--p 00000000 fe:01 1209122                    /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f144035d000-7f1440362000 r-xp 00002000 fe:01 1209122                    /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f1440362000-7f1440364000 r--p 00007000 fe:01 1209122                    /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f1440364000-7f1440365000 r--p 00008000 fe:01 1209122                    /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f1440365000-7f1440366000 rw-p 00009000 fe:01 1209122                    /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f1440366000-7f1440368000 r--p 00000000 fe:01 1209109                    /usr/local/lib/ruby/2.6.0/x86_64-linux/etc.so
7f1440368000-7f144036b000 r-xp 00002000 fe:01 1209109                    /usr/local/lib/ruby/2.6.0/x86_64-linux/etc.so
7f144036b000-7f144036d000 r--p 00005000 fe:01 1209109                    /usr/local/lib/ruby/2.6.0/x86_64-linux/etc.so
7f144036d000-7f144036e000 r--p 00006000 fe:01 1209109                    /usr/local/lib/ruby/2.6.0/x86_64-linux/etc.so
7f144036e000-7f144036f000 rw-p 00007000 fe:01 1209109                    /usr/local/lib/ruby/2.6.0/x86_64-linux/etc.so
7f144036f000-7f1440371000 r--p 00000000 fe:01 2211981                    /usr/local/bundle/gems/json-2.2.0/lib/json/ext/parser.so
7f1440371000-7f1440374000 r-xp 00002000 fe:01 2211981                    /usr/local/bundle/gems/json-2.2.0/lib/json/ext/parser.so
7f1440374000-7f1440375000 r--p 00005000 fe:01 2211981                    /usr/local/bundle/gems/json-2.2.0/lib/json/ext/parser.so
7f1440375000-7f1440376000 ---p 00006000 fe:01 2211981                    /usr/local/bundle/gems/json-2.2.0/lib/json/ext/parser.so
7f1440376000-7f1440377000 r--p 00006000 fe:01 2211981                    /usr/local/bundle/gems/json-2.2.0/lib/json/ext/parser.so
7f1440377000-7f1440378000 rw-p 00007000 fe:01 2211981                    /usr/local/bundle/gems/json-2.2.0/lib/json/ext/parser.so
7f1440378000-7f144037a000 r--p 00000000 fe:01 1209103                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f144037a000-7f144038a000 r-xp 00002000 fe:01 1209103                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f144038a000-7f144038d000 r--p 00012000 fe:01 1209103                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f144038d000-7f144038e000 ---p 00015000 fe:01 1209103                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f144038e000-7f144038f000 r--p 00015000 fe:01 1209103                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f144038f000-7f1440390000 rw-p 00016000 fe:01 1209103                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f1440390000-7f1440391000 r--p 00000000 fe:01 1711026                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f1440391000-7f1440392000 r-xp 00001000 fe:01 1711026                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f1440392000-7f1440393000 r--p 00002000 fe:01 1711026                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f1440393000-7f1440394000 r--p 00002000 fe:01 1711026                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f1440394000-7f1440395000 rw-p 00003000 fe:01 1711026                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f1440395000-7f1440396000 r--p 00000000 fe:01 1209116                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f1440396000-7f1440397000 r-xp 00001000 fe:01 1209116                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f1440397000-7f1440398000 r--p 00002000 fe:01 1209116                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f1440398000-7f1440399000 r--p 00002000 fe:01 1209116                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f1440399000-7f144039a000 rw-p 00003000 fe:01 1209116                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f144039a000-7f144039b000 r--p 00000000 fe:01 1209115                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f144039b000-7f144039c000 r-xp 00001000 fe:01 1209115                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f144039c000-7f144039d000 r--p 00002000 fe:01 1209115                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f144039d000-7f144039e000 r--p 00002000 fe:01 1209115                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f144039e000-7f144039f000 rw-p 00003000 fe:01 1209115                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f144039f000-7f14403a1000 r--p 00000000 fe:01 1209133                    /usr/local/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f14403a1000-7f14403a5000 r-xp 00002000 fe:01 1209133                    /usr/local/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f14403a5000-7f14403a7000 r--p 00006000 fe:01 1209133                    /usr/local/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f14403a7000-7f14403a8000 r--p 00007000 fe:01 1209133                    /usr/local/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f14403a8000-7f14403a9000 rw-p 00008000 fe:01 1209133                    /usr/local/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f14403a9000-7f14403ac000 r--p 00000000 fe:01 1209123                    /usr/local/lib/ruby/2.6.0/x86_64-linux/psych.so
7f14403ac000-7f14403af000 r-xp 00003000 fe:01 1209123                    /usr/local/lib/ruby/2.6.0/x86_64-linux/psych.so
7f14403af000-7f14403b0000 r--p 00006000 fe:01 1209123                    /usr/local/lib/ruby/2.6.0/x86_64-linux/psych.so
7f14403b0000-7f14403b1000 r--p 00006000 fe:01 1209123                    /usr/local/lib/ruby/2.6.0/x86_64-linux/psych.so
7f14403b1000-7f14403b2000 rw-p 00007000 fe:01 1209123                    /usr/local/lib/ruby/2.6.0/x86_64-linux/psych.so
7f14403b2000-7f14403b5000 r--p 00000000 fe:01 1209135                    /usr/local/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f14403b5000-7f14403bf000 r-xp 00003000 fe:01 1209135                    /usr/local/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f14403bf000-7f14403c2000 r--p 0000d000 fe:01 1209135                    /usr/local/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f14403c2000-7f14403c3000 r--p 0000f000 fe:01 1209135                    /usr/local/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f14403c3000-7f14403c4000 rw-p 00010000 fe:01 1209135                    /usr/local/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f14403c4000-7f14403c5000 r--p 00000000 fe:01 2207996                    /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/bootsnap.so
7f14403c5000-7f14403c7000 r-xp 00001000 fe:01 2207996                    /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/bootsnap.so
7f14403c7000-7f14403c8000 r--p 00003000 fe:01 2207996                    /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/bootsnap.so
7f14403c8000-7f14403c9000 r--p 00003000 fe:01 2207996                    /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/bootsnap.so
7f14403c9000-7f14403ca000 rw-p 00004000 fe:01 2207996                    /usr/local/bundle/gems/bootsnap-1.4.5/lib/bootsnap/bootsnap.so
7f14403ca000-7f14403cb000 r--p 00000000 fe:01 1458470                    /usr/local/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f14403cb000-7f14403cd000 r-xp 00001000 fe:01 1458470                    /usr/local/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f14403cd000-7f14403ce000 r--p 00003000 fe:01 1458470                    /usr/local/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f14403ce000-7f14403cf000 r--p 00003000 fe:01 1458470                    /usr/local/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f14403cf000-7f14403d0000 rw-p 00004000 fe:01 1458470                    /usr/local/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f14403d0000-7f14403d2000 r--p 00000000 fe:01 1209132                    /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f14403d2000-7f14403d7000 r-xp 00002000 fe:01 1209132                    /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f14403d7000-7f14403d9000 r--p 00007000 fe:01 1209132                    /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f14403d9000-7f14403da000 r--p 00008000 fe:01 1209132                    /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f14403da000-7f14403db000 rw-p 00009000 fe:01 1209132                    /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f14403db000-7f14403dc000 r--p 00000000 fe:01 2840201                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f14403dc000-7f14403de000 r-xp 00001000 fe:01 2840201                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f14403de000-7f14403df000 r--p 00003000 fe:01 2840201                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f14403df000-7f14403e0000 r--p 00003000 fe:01 2840201                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f14403e0000-7f14403e1000 rw-p 00004000 fe:01 2840201                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f14403e1000-7f14424eb000 rw-p 00000000 00:00 0 
7f14424eb000-7f14424ed000 rw-p 00000000 00:00 0 
7f14424ed000-7f144250f000 r--p 00000000 fe:01 3374339                    /lib/x86_64-linux-gnu/libc-2.28.so
7f144250f000-7f1442657000 r-xp 00022000 fe:01 3374339                    /lib/x86_64-linux-gnu/libc-2.28.so
7f1442657000-7f14426a3000 r--p 0016a000 fe:01 3374339                    /lib/x86_64-linux-gnu/libc-2.28.so
7f14426a3000-7f14426a4000 ---p 001b6000 fe:01 3374339                    /lib/x86_64-linux-gnu/libc-2.28.so
7f14426a4000-7f14426a8000 r--p 001b6000 fe:01 3374339                    /lib/x86_64-linux-gnu/libc-2.28.so
7f14426a8000-7f14426aa000 rw-p 001ba000 fe:01 3374339                    /lib/x86_64-linux-gnu/libc-2.28.so
7f14426aa000-7f14426ae000 rw-p 00000000 00:00 0 
7f14426ae000-7f14426bb000 r--p 00000000 fe:01 3374364                    /lib/x86_64-linux-gnu/libm-2.28.so
7f14426bb000-7f144275a000 r-xp 0000d000 fe:01 3374364                    /lib/x86_64-linux-gnu/libm-2.28.so
7f144275a000-7f144282f000 r--p 000ac000 fe:01 3374364                    /lib/x86_64-linux-gnu/libm-2.28.so
7f144282f000-7f1442830000 r--p 00180000 fe:01 3374364                    /lib/x86_64-linux-gnu/libm-2.28.so
7f1442830000-7f1442831000 rw-p 00181000 fe:01 3374364                    /lib/x86_64-linux-gnu/libm-2.28.so
7f1442831000-7f1442832000 r--p 00000000 fe:01 3374347                    /lib/x86_64-linux-gnu/libcrypt-2.28.so
7f1442832000-7f1442838000 r-xp 00001000 fe:01 3374347                    /lib/x86_64-linux-gnu/libcrypt-2.28.so
7f1442838000-7f144283a000 r--p 00007000 fe:01 3374347                    /lib/x86_64-linux-gnu/libcrypt-2.28.so
7f144283a000-7f144283b000 ---p 00009000 fe:01 3374347                    /lib/x86_64-linux-gnu/libcrypt-2.28.so
7f144283b000-7f144283c000 r--p 00009000 fe:01 3374347                    /lib/x86_64-linux-gnu/libcrypt-2.28.so
7f144283c000-7f144283d000 rw-p 0000a000 fe:01 3374347                    /lib/x86_64-linux-gnu/libcrypt-2.28.so
7f144283d000-7f144286b000 rw-p 00000000 00:00 0 
7f144286b000-7f144286d000 rw-p 00000000 00:00 0 
7f144286d000-7f144286e000 r--p 00000000 fe:01 3374349                    /lib/x86_64-linux-gnu/libdl-2.28.so
7f144286e000-7f144286f000 r-xp 00001000 fe:01 3374349                    /lib/x86_64-linux-gnu/libdl-2.28.so
7f144286f000-7f1442870000 r--p 00002000 fe:01 3374349                    /lib/x86_64-linux-gnu/libdl-2.28.so
7f1442870000-7f1442871000 r--p 00002000 fe:01 3374349                    /lib/x86_64-linux-gnu/libdl-2.28.so
7f1442871000-7f1442872000 rw-p 00003000 fe:01 3374349                    /lib/x86_64-linux-gnu/libdl-2.28.so
7f1442872000-7f144287d000 r--p 00000000 fe:01 3479679                    /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f144287d000-7f14428db000 r-xp 0000b000 fe:01 3479679                    /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f14428db000-7f14428f2000 r--p 00069000 fe:01 3479679                    /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f14428f2000-7f14428f3000 ---p 00080000 fe:01 3479679                    /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f14428f3000-7f14428f4000 r--p 00080000 fe:01 3479679                    /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f14428f4000-7f14428f5000 rw-p 00081000 fe:01 3479679                    /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f14428f5000-7f14428f7000 r--p 00000000 fe:01 3374402                    /lib/x86_64-linux-gnu/librt-2.28.so
7f14428f7000-7f14428fb000 r-xp 00002000 fe:01 3374402                    /lib/x86_64-linux-gnu/librt-2.28.so
7f14428fb000-7f14428fd000 r--p 00006000 fe:01 3374402                    /lib/x86_64-linux-gnu/librt-2.28.so
7f14428fd000-7f14428fe000 r--p 00007000 fe:01 3374402                    /lib/x86_64-linux-gnu/librt-2.28.so
7f14428fe000-7f14428ff000 rw-p 00008000 fe:01 3374402                    /lib/x86_64-linux-gnu/librt-2.28.so
7f14428ff000-7f1442905000 r--p 00000000 fe:01 3374398                    /lib/x86_64-linux-gnu/libpthread-2.28.so
7f1442905000-7f1442914000 r-xp 00006000 fe:01 3374398                    /lib/x86_64-linux-gnu/libpthread-2.28.so
7f1442914000-7f144291a000 r--p 00015000 fe:01 3374398                    /lib/x86_64-linux-gnu/libpthread-2.28.so
7f144291a000-7f144291b000 r--p 0001a000 fe:01 3374398                    /lib/x86_64-linux-gnu/libpthread-2.28.so
7f144291b000-7f144291c000 rw-p 0001b000 fe:01 3374398                    /lib/x86_64-linux-gnu/libpthread-2.28.so
7f144291c000-7f1442920000 rw-p 00000000 00:00 0 
7f1442920000-7f144293c000 r-xp 00000000 fe:01 3374423                    /lib/x86_64-linux-gnu/libz.so.1.2.11
7f144293c000-7f1442b3c000 ---p 0001c000 fe:01 3374423                    /lib/x86_64-linux-gnu/libz.so.1.2.11
7f1442b3c000-7f1442b3d000 r--p 0001c000 fe:01 3374423                    /lib/x86_64-linux-gnu/libz.so.1.2.11
7f1442b3d000-7f1442b3e000 rw-p 0001d000 fe:01 3374423                    /lib/x86_64-linux-gnu/libz.so.1.2.11
7f1442b3e000-7f1442b42000 r--s 00000000 fe:01 3374349                    /lib/x86_64-linux-gnu/libdl-2.28.so
7f1442b42000-7f1442b43000 r--p 00000000 fe:01 2070492                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f1442b43000-7f1442b44000 r-xp 00001000 fe:01 2070492                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f1442b44000-7f1442b45000 r--p 00002000 fe:01 2070492                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f1442b45000-7f1442b46000 r--p 00002000 fe:01 2070492                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f1442b46000-7f1442b47000 rw-p 00003000 fe:01 2070492                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f1442b47000-7f1442b72000 r--p 00000000 fe:01 2334439                    /usr/local/lib/libruby.so.2.6.3
7f1442b72000-7f1442da5000 r-xp 0002b000 fe:01 2334439                    /usr/local/lib/libruby.so.2.6.3
7f1442da5000-7f1442e8b000 r--p 0025e000 fe:01 2334439                    /usr/local/lib/libruby.so.2.6.3
7f1442e8b000-7f1442e91000 r--p 00343000 fe:01 2334439                    /usr/local/lib/libruby.so.2.6.3
7f1442e91000-7f1442e94000 rw-p 00349000 fe:01 2334439                    /usr/local/lib/libruby.so.2.6.3
7f1442e94000-7f1442ea5000 rw-p 00000000 00:00 0 
7f1442ea5000-7f1442ea7000 rw-p 00000000 00:00 0 
7f1442ea7000-7f1442ea8000 r--p 00000000 fe:01 3374325                    /lib/x86_64-linux-gnu/ld-2.28.so
7f1442ea8000-7f1442ec6000 r-xp 00001000 fe:01 3374325                    /lib/x86_64-linux-gnu/ld-2.28.so
7f1442ec6000-7f1442ece000 r--p 0001f000 fe:01 3374325                    /lib/x86_64-linux-gnu/ld-2.28.so
7f1442ece000-7f1442ecf000 r--p 00026000 fe:01 3374325                    /lib/x86_64-linux-gnu/ld-2.28.so
7f1442ecf000-7f1442ed0000 rw-p 00027000 fe:01 3374325                    /lib/x86_64-linux-gnu/ld-2.28.so
7f1442ed0000-7f1442ed1000 rw-p 00000000 00:00 0 
7ffd9b9e5000-7ffd9c1e4000 rw-p 00000000 00:00 0                          [stack]
7ffd9c1f1000-7ffd9c1f3000 r--p 00000000 00:00 0                          [vvar]
7ffd9c1f3000-7ffd9c1f5000 r-xp 00000000 00:00 0                          [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]


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

SEGV received in ILL handler

Context:

  • This is the Docker image digest: sha256:52745ef3735754ab13456052d138dbf0d7ec0973f0128eb865ce01f500ca9d5b
  • I've pulled the latest version with sudo docker pull loomio/loomio:stable
  • The docker host is a Debian 9 VM

Is there anything I can do to help you debug and fix this issue?

No feedback in UI for too big attachments

When trying to upload a not so small attachment in a thread, the upload attempt ends silently with no hint of the failure, or with a few attempts at uploading.

Some kind of error message would be great.

I would also suggest adding a variable to the env file, e.g. MAX_ATTACHMENT_SIZE_ALLOWED.

On the server logs you can see:

[error] 32#32: *291 client intended to send too large body: 1921632 bytes, [...] , request: "POST /api/v1/attachments HTTP/1.1" [...]

SMTP SSL

SMTP is unable to send e-mails via ssl.

Which setting does it need for it to work?

Not able to install following instructions

I get:

Attaching to loomiodeploy_letsencrypt_1, loomiodeploy_nginx_1, loomiodeploy_mailin_1, loomiodeploy_loomio_1, loomiodeploy_worker_1, loomiodeploy_faye_1, loomiodeploy_db_1
mailin_1       | info: Mailin v3.0.3
nginx_1        | forego     | starting dockergen.1 on port 5000
mailin_1       | info: Webhook url: http://loomio:3000/email_processor/
letsencrypt_1  | Sleep for 3600s
nginx_1        | forego     | starting nginx.1 on port 5100
mailin_1       | info: Log file: /var/log/mailin.log
letsencrypt_1  | 2017/02/16 18:32:49 Generated '/app/letsencrypt_service_data' from 6 containers
nginx_1        | dockergen.1 | 2017/02/16 18:32:48 Generated '/etc/nginx/conf.d/default.conf' from 6 containers
mailin_1       | info: Mailin Smtp server listening on port 25
letsencrypt_1  | 2017/02/16 18:32:49 Running '/app/update_certs'
nginx_1        | dockergen.1 | 2017/02/16 18:32:48 Running 'nginx -s reload'
mailin_1       | warn: Webhook http://loomio:3000/email_processor/ seems invalid or down. You may want to double check the webhook url.
letsencrypt_1  | 2017/02/16 18:32:49 Watching docker events
nginx_1        | dockergen.1 | 2017/02/16 18:32:48 Watching docker events
nginx_1        | dockergen.1 | 2017/02/16 18:32:48 Contents of /etc/nginx/conf.d/default.conf did not change. Skipping notification 'nginx -s reload'
letsencrypt_1  | Reloading nginx proxy...
nginx_1        | dockergen.1 | 2017/02/16 18:32:49 Received event start for container 0177ff90294f
loomio_1       | [7] Puma starting in cluster mode...
letsencrypt_1  | 2017/02/16 18:32:49 Contents of /app/letsencrypt_service_data did not change. Skipping notification '/app/update_certs'
worker_1       | [Worker(host:7c167e70de75 pid:1)] Starting job worker
nginx_1        | dockergen.1 | 2017/02/16 18:32:49 Contents of /etc/nginx/conf.d/default.conf did not change. Skipping notification 'nginx -s reload'
loomio_1       | [7] * Version 2.15.3 (ruby 2.3.0-p0), codename: Autumn Arbor Airbrush
letsencrypt_1  | �h2017/02/16 18:32:49 Contents of /etc/nginx/conf.d/default.conf did not change. Skipping notification ''
worker_1       | 2017-02-16T18:32:58+0000: [Worker(host:7c167e70de75 pid:1)] Starting job worker
nginx_1        | nginx.1    | 0.0.0.0 172.17.0.1 - - [16/Feb/2017:18:33:35 +0000] "GET / HTTP/1.1" 503 213 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:51.0) Gecko/20100101 Firefox/51.0"
loomio_1       | [7] * Min threads: 4, max threads: 4
letsencrypt_1  | �;2017/02/16 18:32:49 [notice] 45#45: signal process started
nginx_1        | nginx.1    | 0.0.0.0 172.17.0.1 - - [16/Feb/2017:18:33:41 +0000] "GET / HTTP/1.1" 503 213 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:51.0) Gecko/20100101 Firefox/51.0"
db_1           | LOG:  database system was shut down at 2017-02-16 18:31:17 UTC
letsencrypt_1  | Creating/renewal faye.loomio.example.local certificates... (faye.loomio.example.local)
loomio_1       | [7] * Environment: production
db_1           | LOG:  MultiXact member wraparound protections are now enabled
loomio_1       | [7] * Process workers: 1
db_1           | LOG:  database system is ready to accept connections
letsencrypt_1  | 2017-02-16 18:32:49,922:INFO:simp_le:1211: Generating new account key
db_1           | LOG:  autovacuum launcher started
loomio_1       | [7] * Preloading application
letsencrypt_1  | 2017-02-16 18:32:50,375:INFO:requests.packages.urllib3.connectionpool:756: Starting new HTTPS connection (1): acme-v01.api.letsencrypt.org
loomio_1       | [7] * Listening on tcp://0.0.0.0:3000
letsencrypt_1  | 2017-02-16 18:32:51,750:INFO:requests.packages.urllib3.connectionpool:756: Starting new HTTPS connection (1): letsencrypt.org
loomio_1       | [7] Use Ctrl-C to stop
letsencrypt_1  | ACME server returned an error: urn:acme:error:malformed :: The request message was malformed :: Name does not end in a public suffix
loomio_1       | [7] - Worker 0 (pid: 10) booted, phase: 0
letsencrypt_1  | 
letsencrypt_1  | 
letsencrypt_1  | Debugging tips: -v improves output verbosity. Help is available under --help.
letsencrypt_1  | Creating/renewal loomio.example.local certificates... (loomio.example.local)
letsencrypt_1  | 2017-02-16 18:32:53,596:INFO:simp_le:1211: Generating new account key
letsencrypt_1  | 2017-02-16 18:32:53,924:INFO:requests.packages.urllib3.connectionpool:756: Starting new HTTPS connection (1): acme-v01.api.letsencrypt.org
letsencrypt_1  | 2017-02-16 18:32:55,368:INFO:requests.packages.urllib3.connectionpool:756: Starting new HTTPS connection (1): letsencrypt.org
letsencrypt_1  | ACME server returned an error: urn:acme:error:malformed :: The request message was malformed :: Name does not end in a public suffix
letsencrypt_1  | 
letsencrypt_1  | 
letsencrypt_1  | Debugging tips: -v improves output verbosity. Help is available under --help.
letsencrypt_1  | Creating/renewal loomio.example.local certificates... (loomio.example.local)
letsencrypt_1  | 2017-02-16 18:32:57,183:INFO:simp_le:1211: Generating new account key
letsencrypt_1  | 2017-02-16 18:32:58,368:INFO:requests.packages.urllib3.connectionpool:756: Starting new HTTPS connection (1): acme-v01.api.letsencrypt.org
letsencrypt_1  | 2017-02-16 18:32:59,615:INFO:requests.packages.urllib3.connectionpool:756: Starting new HTTPS connection (1): letsencrypt.org
letsencrypt_1  | ACME server returned an error: urn:acme:error:malformed :: The request message was malformed :: Name does not end in a public suffix
letsencrypt_1  | 
letsencrypt_1  | 
letsencrypt_1  | Debugging tips: -v improves output verbosity. Help is available under --help.
letsencrypt_1  | Sleep for 3600s

But get error "Secure connection failed" when accessing: https://loomio.example.local/

redis warnings on boot

WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
loomio-redis | 1:M 16 Apr 2019 19:43:06.836 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.

Only Docker install ?

Hi,

If we are talking about production service, you cannot provide only a Docker installation process.
How do I maintain up to date this Docker black blox other the time ?

Please provide a documentation to explain how to install manualy and packaged versions for various systems.

Lost of uploaded files

In docker-compose.yml, the folder attachments is mounted in public/system/attachments but some others folders in public/system contains uploaded files like users and groups avatars.
These files are lost after a docker-compose down

I suggest to replace the line
- ./attachments:/loomio/public/system/attachments
by
- ./uploads:/loomio/public/system/

Would like to package this repository for Debian

Hi,
I am Manas Kashyap , an active Debian contributor and i wanted to package this repository in Debian,
So, i am asking the permission from the developers to do it plus it would be really grateful if you can list the dependencies required by this repository.
Thanking you

502 Bad Gateway

Hi, i have successfully installed Loomio and it started successfully as below:

loomio-deploy]# /usr/local/bin/docker-compose up -d
Creating loomiodeploy_db_1
Creating loomiodeploy_worker_1
Creating loomiodeploy_loomio_1
Creating loomiodeploy_mailin_1
Creating loomiodeploy_nginx_1
Creating loomiodeploy_letsencrypt_1
loomio-deploy]#

On the browser, when i hit the ip address:80 i am getting following error:

502 Bad Gateway
nginx/1.13.12

Backup database

Is there any way to backup the database and restore at a later time?

There are no instructions for using standard CA-issued certificates

I was noticing that there are a few shortcomings in the documentation. One of the most glaring being that the only SSL configuration instructions are for using Let's Encrypt.

While Let's Encrypt is a fine service and I applaud what they're trying to accomplish, I view their service as supplementary to the established CA-issued certificate method. Especially when one is trying to deploy behind a firewall where there may be a local CA, Let's Encrypt isn't the best choice.

I assume that the certificate needs to go in /root/loomio-deploy/certificates with a well-known name. Does the intermediate chain need to be included? Does the key need to be in the same file?

It would be nice if the README had a couple of lines for "advanced installs" of SSL certificates to point those of us with existing certificates to use them. :)

Backup : pgdumps permission denied

When launch backup script or pg_dump command, i have an error to write inro pgdumps directory :

root@loomio:/srv/loomio-deploy# docker exec loomio-db su - postgres -c 'pg_dump -O -Fc loomio_production -f /pgdumps/loomio_production.dump'

pg_dump: [custom archiver] could not open output file "/pgdumps/loomio_production.dump": Permission denied

if i change permissions like pgdata directory no problem.

Angular asset missing

When I installed loomio, it worked (mostly), but angular css and other scripts where missing.

1st issue during install was :
docker-compose run loomio rake db:setup
is to be changed by : (loomio entry does not exist anymore in the docker-composer.yml)
docker-compose run app rake db:setup

2nd issue during display, to correct it I had to :

docker exec -ti loomio-app /bin/bash
bundle exec rake plugins:install client:build

contact_messages doesn't work

Here are the logs:

loomio-app     | source=rack-timeout id=e16f8c18-eb77-4e3c-a48f-797f6e86d684 timeout=15000ms state=ready
loomio-app     | Started POST "/api/v1/contact_messages" for <<redacted>> at 2020-04-12 11:21:51 +0000
loomio-app     | Processing by API::ContactMessagesController#create as JSON
loomio-app     |   Parameters: {"contact_message"=>{"email"=>"manos@<<redacted>>", "subject"=>"i wnat to test that the send message works", "user_id"=>2, "message"=>"This is a test, yes", "name"=>"manos"}}
loomio-app     | Completed 500 Internal Server Error in 19ms (ActiveRecord: 1.9ms)
loomio-app     |   
loomio-app     | Addressable::URI::InvalidURIError (Invalid port number: "80api"):
loomio-app     |   
loomio-app     | app/extras/clients/request.rb:17:in `response'
loomio-app     | app/extras/clients/request.rb:12:in `perform!'
loomio-app     | app/extras/clients/base.rb:55:in `block in perform'
loomio-app     | app/extras/clients/base.rb:55:in `tap'
loomio-app     | app/extras/clients/base.rb:55:in `perform'
loomio-app     | app/extras/clients/base.rb:22:in `post'
loomio-app     | app/extras/clients/os_ticket.rb:3:in `post_message'
loomio-app     | app/models/contact_message.rb:13:in `save'
loomio-app     | app/services/contact_message_service.rb:3:in `create'
loomio-app     | app/controllers/api/restful_controller.rb:28:in `create_action'
loomio-app     | app/controllers/api/snorlax_base.rb:18:in `create'
loomio-app     | app/helpers/locales_helper.rb:8:in `use_preferred_locale'
loomio-app     | source=rack-timeout id=e16f8c18-eb77-4e3c-a48f-797f6e86d684 timeout=15000ms service=39ms state=completed
loomio-nginx   | nginx.1    | <<redacted>> <<redacted>> - - [12/Apr/2020:11:21:51 +0000] "POST /api/v1/contact_messages HTTP/2.0" 500 69 "https://<<redacted>>/contact" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:72.0) Gecko/20100101 Firefox/72.0"

Can't see Groups

On our local vpc installation (1000 thanks to @robguthrie for your help), we can now add groups in the admin panel. We also see some users. But we can't see these groups in the normal dashboard.

See Group-Export:
MyTestGroup.json.txt

If you need more infos, we could create some logfile-exports.

Following docker-compose instructions gives 'FATAL: database "loomio_production" does not exist'

Followed install instructions exactly on machine with 8Gb RAM and docker already up and running, and get exactly the same issue as described here with several errors that start with 'ActiveRecord::NoDatabaseError: FATAL: database "loomio_production" does not exist'

https://www.loomio.org/d/gKrpCZs3/installation-on-docker-database-loomio_production-does-not-exist

My full error message here: https://pastebin.com/apPVChS4

The remedy give by @robguthrie seemed to work, which is to first run:

docker exec -ti loomio-db su - postgres -c 'createdb loomio_production'

Then run

docker-compose run app rake db:setup

Getting SSL error on fresh loomio install

I followed the guide in the readme to set up a loomio deploy but I'm getting the following error:

loomio_1      | Started DELETE "/api/v1/sessions/" for 173.174.95.141 at 2017-01-20 03:13:32 +0000
loomio_1      | Processing by API::SessionsController#destroy as JSON
loomio_1      | Completed 500 Internal Server Error in 75ms (ActiveRecord: 2.2ms)
loomio_1      |
loomio_1      | OpenSSL::SSL::SSLError (SSL_connect returned=1 errno=0 state=SSLv2/v3 read server hello A: tlsv1 alert internal error):
loomio_1      |   app/services/message_channel_service.rb:16:in `publish'
loomio_1      |   app/controllers/api/sessions_controller.rb:18:in `destroy'
loomio_1      |   app/controllers/application_controller.rb:83:in `user_time_zone'

I have been trying to figure out how to fix this issue but I'm not well-versed in SSL. Any help would be greatly appreciated.

SMTP setup problem

Trying to setup Loomio instance on AWS lightspeed Ubuntu using the loomio-deploy docker image.

I have got Loomio running and can access the registration screens successfully, but cannot complete my registration or login due to SMTP delivery problem.

I've tried configuring both Gmail SMTP and SendGrid in env, and get this error every time. Not sure how to proceed from here, any help will be much appreciated

worker_1       | [Worker(host:c47a6c9ceaab pid:6)] Job UserMailer.login (id=12) FAILED (1 prior attempts) with Net::ReadTimeout: Net::ReadTimeout
worker_1       | 2017-12-26T23:08:12+0000: [Worker(host:c47a6c9ceaab pid:6)] Job UserMailer.login (id=12) FAILED (1 prior attempts) with Net::ReadTimeout: Net::ReadTimeout

How to set config files

Hey, thanks for providing this excellent deploy setup!

I've got loomio running on our server, but we've written a plugin that requires editing the config/providers.yml file. I don't think there's an other way of adding to the list of providers, since that's loaded directly from that file in models/identities/base.rb so I'm trying to figure out a way of making that file editable on our host without having to go into the container (cause we're likely to forget in that case).

Specifically we wrote a plugin for adding Auth0 to our identity providers, and want to add it to the list of identity providers:

# for providers which provide OAuth login capability
identity:
  - google
  - facebook
  - slack
  - saml
  - auth0

# for providers which provide additional API access
community:
  - facebook
  - slack

I've currently created my own file at config/providers.yml and edited the docker-compose.yml like so:

...
app:
  container_name: loomio-app
  restart: always
  image: ${LOOMIO_CONTAINER_IMAGE}:${LOOMIO_CONTAINER_TAG}
  expose:
    - 3000
  env_file: ./env
  links:
    - db
    - redis
  environment:
    - DATABASE_URL=postgresql://postgres:password@db/loomio_production
    - REDIS_URL=redis://redis:6379
  volumes:
    - ./client:/loomio/public/client
    - ./uploads:/loomio/public/system
    - ./files:/loomio/public/files
    - ./plugins:/loomio/plugins/docker
    - ./config/providers.yml:/loomio/config/providers.yml # <--- added this
    - ./import:/import
...

but maybe there's a better way?

Run loomio with SSO (keycloak)

Hi,

I would like to run dockerized Loomio with some others services (as nextcloud / rocketchat) with different domain behind a nginx-proxy, with SSO (manage by keycloak).

Is it possible to configure a SSO configuration for loomio ? I don't find any information about this...
Thank you :)

Shorten install instructions with getting rid of unnecessary DB create command

Hello.

As you can see here under the Environment Variables, there is a POSTGRES_DB variable which creates a database on the first start of the container. So technically there is no need to run docker exec -ti loomio-db su - postgres -c 'createdb loomio_production' command as documentation suggest. It's enough to put POSTGRES_DB into env file or docker-compose's environment section of db.

I can send a quick PR to fix it if it's OK for you. Please let me know.

letsencrypt doesn't autorenew

I managed to set up a loomio installation for myself on my VPS very easily, but after a few months my letsencrypt certificate expired and I've been trying unsuccessfully to renew it since.

(A main problem is that I'm not quite that familiar with docker)

I'm seeing this message constantly in the logs

loomio-letsencrypt | /etc/nginx/certs/loomio.dbzer0.com /app
loomio-letsencrypt | Creating/renewal loomio.dbzer0.com certificates... (loomio.dbzer0.com)
loomio-letsencrypt | 2019-03-19 09:55:14,671:INFO:simp_le:1479: Generating new certificate private key
loomio-letsencrypt | 2019-03-19 09:55:16,898:ERROR:simp_le:1446: CA marked some of the authorizations as invalid, which likely means it could not access http://example.com/.well-known/acme-challenge/X. Did you set correct path in -d example.com:path or --default_root? Are all your domains accessible from the internet? Please check your domains' DNS entries, your host's network/firewall setup and your webserver config. If a domain's DNS entry has both A and AAAA fields set up, some CAs such as Let's Encrypt will perform the challenge validation over IPv6. If your DNS provider does not answer correctly to CAA records request, Let's Encrypt won't issue a certificate for your domain (see https://letsencrypt.org/docs/caa/). Failing authorizations: https://acme-v01.api.letsencrypt.org/acme/authz/1X8LZlnKydfHIwbo1GjDr12_Uuu9NY8bWPaLF1vwctA
loomio-letsencrypt | Traceback (most recent call last):
loomio-letsencrypt |   File "/usr/lib/python2.7/site-packages/simp_le.py", line 1583, in main
loomio-letsencrypt |     return main_with_exceptions(cli_args)
loomio-letsencrypt |   File "/usr/lib/python2.7/site-packages/simp_le.py", line 1567, in main_with_exceptions
loomio-letsencrypt |     persist_new_data(args, existing_data)
loomio-letsencrypt |   File "/usr/lib/python2.7/site-packages/simp_le.py", line 1489, in persist_new_data
loomio-letsencrypt |     account_key=client.key, key=None, cert=None, chain=None))
loomio-letsencrypt |   File "/usr/lib/python2.7/site-packages/simp_le.py", line 1195, in persist_data
loomio-letsencrypt |     plugin.save(new_data)
loomio-letsencrypt |   File "/usr/lib/python2.7/site-packages/simp_le.py", line 493, in save
loomio-letsencrypt |     key = self.dump_key(data.key)
loomio-letsencrypt |   File "/usr/lib/python2.7/site-packages/simp_le.py", line 436, in dump_key
loomio-letsencrypt |     return OpenSSL.crypto.dump_privatekey(self.typ, data.wrapped).strip()
loomio-letsencrypt | AttributeError: 'NoneType' object has no attribute 'wrapped'
loomio-letsencrypt | 
loomio-letsencrypt | Unhandled error has happened, traceback is above
loomio-letsencrypt | 
loomio-letsencrypt | Debugging tips: -v improves output verbosity. Help is available under --help.
loomio-letsencrypt | /app
loomio-letsencrypt | Sleep for 3600s

It seems like the letsencrypt process is having trouble accessing my own site's challenge, but I don't understand how the process is working exactly and google searches were not really pointing me out in the right direction.

What I suspect is that this is caused because loomio for some reason is listening only on tcp6 and not at all in tcp4.

# netstat -aN | grep -e https -e 8000
tcp6       0      0 :::https                :::*                    LISTEN     
tcp6       0      0 :::8000                 :::*                    LISTEN  

I don't know why it defaults like that or how to modify that though. I use port 8000 instead of 80 because I'm also running an apache installation in the same host.

Thanks for the help

Optional nginx configuration

Hello. Thanks for great project, docker and companion scripts. But our machine that we are planning to deploy loomio on has nginx already. It would be great if we have alternative for non-nginx version of the deployment script.

Can't delete Groups

Hope this is only a short one.

Select some groups in Admin-Panel, select "Stapelverarbeitung" aka "Batchprocessing" press "Delete spam ausgewählte". This runs into a "We're sorry, but something went wrong." error-page.

See Logs for details.

cant-delete-groups.txt

SKYLIGHT unable to start

I have deployed the loomio on a linux, started successfully but while checking the logs i have noticed the following error

[SKYLIGHT] [1.6.0] Unable to start, see the Skylight logs for more details
loomio_1 | Warning: method update already defined
db_1 | ERROR: database "loomio_production" already exists
db_1 | STATEMENT: CREATE DATABASE "loomio_production" ENCODING = 'utf8'
loomio_1 | [121] * Listening on tcp://0.0.0.0:3000
loomio_1 | [121] Use Ctrl-C to stop
loomio_1 | [121] - Worker 0 (pid:

I cant find the skylight logs located, can you please help to resolve this issue.

loomio-db constantly throwing error

Hello.

loomio-db is constantly throwing some errors. Here is the output;

loomio-db | LOG:  received smart shutdown request
loomio-db | LOG:  autovacuum launcher shutting down
loomio-db | LOG:  database system was interrupted; last known up at 2019-11-09 18:17:40 UTC
loomio-db | LOG:  database system was not properly shut down; automatic recovery in progress
loomio-db | LOG:  invalid record length at 0/18026E0: wanted 24, got 0
loomio-db | LOG:  redo is not required
loomio-db | LOG:  MultiXact member wraparound protections are now enabled
loomio-db | LOG:  database system is ready to accept connections
loomio-db | LOG:  autovacuum launcher started
loomio-db | ERROR:  database "loomio_production" already exists
loomio-db | STATEMENT:  CREATE DATABASE "loomio_production" ENCODING = 'utf8'
loomio-db | ERROR:  database "loomio_production" already exists
loomio-db | STATEMENT:  CREATE DATABASE "loomio_production" ENCODING = 'utf8'
loomio-db | ERROR:  database "loomio_production" already exists
loomio-db | STATEMENT:  CREATE DATABASE "loomio_production" ENCODING = 'utf8'
loomio-db | ERROR:  database "loomio_production" already exists
loomio-db | STATEMENT:  CREATE DATABASE "loomio_production" ENCODING = 'utf8'
loomio-db | ERROR:  database "loomio_production" already exists
loomio-db | STATEMENT:  CREATE DATABASE "loomio_production" ENCODING = 'utf8'
loomio-db | ERROR:  database "loomio_production" already exists
loomio-db | STATEMENT:  CREATE DATABASE "loomio_production" ENCODING = 'utf8'
loomio-db | ERROR:  database "loomio_production" already exists
loomio-db | STATEMENT:  CREATE DATABASE "loomio_production" ENCODING = 'utf8'

Issues on first deploy

Hi there,

I had some issues while deploying a new install of loomio-deploy and following the install guide.
I'd be glad to make pull requests if needed but don't know docker too much, and I prefer ensuring my contribution would be useful before doing anything.

There were 2 points that were blocking and some things not completely clear in the process of the deploy.

Note that I now have a running instance after all, with only something like 4 hours between the start of the tutorial and the instance availability, which seems acceptable for a first deploy with tools I don't know. The guide is quite neat !

For the context, I :

  • Used sudo instead of the root account to setup the deploy : I never allow login with a root account on my servers, but it did not seem to be blocking for the installation process
  • Added all configurations to the env file (smtp, oauth credentials etc.) upfront, before upping the containers for the first time, and just after having generated the env and faye_env files with the provided script

Blocking points

Assets compilation

First, the assets precompiled by the worker container didn't seem to be shared with the loomio container. I had to create an assets folder in the lumio-deploy folder, and add it to the volumes of both container in the docker-compose.yml file like the following :

loomio:
  ...
  volumes:
    - ./uploads:/loomio/public/system
    - ./files:/loomio/public/files
    - ./assets:/loomio/public/assets

worker:
  ...
  volumes:
    - ./uploads:/loomio/public/system
    - ./files:/loomio/public/files
    - ./assets:/loomio/public/assets

this allowed the precompiled assets from one container to be used by the loomio one.

Note that I had to docker-compose restart the loomio container after the assets compilation so the Rails view's #asset_path helper used the hash based version of the asset.

Nginx Upstream

I also had an issue and saw in the logs errors that were saying

nginx_1        | nginx.1    | 2017/10/19 10:13:00 [error] 64#64: *74 upstream sent no valid HTTP/1.0 header while reading response header from upstream, client: XXX.XXX.XX.XX, server: loomio.respublica-conseil.fr, request: "GET /client/1.8.222/app.js HTTP/2.0", upstream: "http://172.17.0.6:25/client/1.8.222/app.js", host: "loomio.respublica-conseil.fr", referrer: "https://loomio.respublica-conseil.fr/dashboard"

It took me some time to understand that Nginx was trying to route some of my HTTP requests to the docker-mailin container that opens its port 25.

To fix that, I opened the nginx container and edited the generated config file by removing the mailin and worker containers from the list of available in the loomio upstream :

upstream loomio.<my_domain.tld> {
				## Can be connect with "bridge" network
			# loomiodeploy_mailin_1
			#server 172.17.0.6:25;
				## Can be connect with "bridge" network
			# loomiodeploy_loomio_1
			server 172.17.0.5:3000;
				## Can be connect with "bridge" network
			# loomiodeploy_worker_1
			#server 172.17.0.4:3000;
}

Note that we have two servers that are not needed here, that I had to manually comment out.

If I understand well how it works, the file is generated when the container is booted (docker-compose up) and iterates over every available container, finds the one that publicly open ports and maps those ports to the loomio upstream here.

But I don't understand the templating language used, and don't know how to fix it in the template so it is not generated at boot time.

Wrap up

I'd appreciate if you could help me understand if I did something wrong or if these are actual bugs, and would be glad to help fixing them.

Thanks for all your work !!

Error relation "delayed_jobs" does not exist after deploying loomio

After deploying fresh loomio from loomio_deploy using instructions in readme, i've got the following issue.

[Worker(host:fed16e7731db pid:7)] Error while reserving job: PG::UndefinedTable: ERROR: relation "delayed_jobs" does not exist
LINE 8: WHERE a.attrelid = '"delayed_jobs"'::regclass
^
: SELECT a.attname, format_type(a.atttypid, a.atttypmod),
pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod,
c.collname, col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a
LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum
LEFT JOIN pg_type t ON a.atttypid = t.oid
LEFT JOIN pg_collation c ON a.attcollation = c.oid AND a.attcollation <> t.typcollation
WHERE a.attrelid = '"delayed_jobs"'::regclass
AND a.attnum > 0 AND NOT a.attisdropped
ORDER BY a.attnum

Error starting userland proxy

Hello dear loomio Team,

probably I have only a simple config mismatch. But at the moment I can't figure out, where to dig deeper to solve the problem:

docker-compose up -d
Removing loomio-mailin
Starting loomio-db    ... done
Starting loomio-redis ... done
Starting loomio-app    ... done
Starting loomio-worker ... done
Starting loomio-nginx  ...
Starting d7f5041e4d10_loomio-mailin ... error

Starting loomio-nginx               ... error
ddd28dd7d5f52d2e687461e0b5154e09255330dc631): Error starting userland proxy: listen tcp 0.0.0.0:25: bind: address already in use'

ERROR: for loomio-nginx  Cannot start service nginx: b'Cannot link to a non running container: /b0e0319e8327_loomio-app AS /loomio-nginx/app'

ERROR: for mailin  Cannot start service mailin: b'driver failed programming external connectivity on endpoint d7f5041e4d10_loomio-mailin (c087a28ba90607a8dd622ddd28dd7d5f52d2e687461e0b5154e09255330dc631): Error starting userland proxy: listen tcp 0.0.0.0:25: bind: address already in use'

ERROR: for nginx  Cannot start service nginx: b'Cannot link to a non running container: /b0e0319e8327_loomio-app AS /loomio-nginx/app'
ERROR: Encountered errors while bringing up the project.

loomio-compose.log

Any ideas?

1000thx-in-advance

Create a 'Deploy to Heroku' Button

It would be super useful if we could get a Deploy to Heroku button which would enable users to easily deploy Loomio to a Heroku instance without ever leaving the web browser. And with just a little configuration on the users end they'll have something running almost instantly.

I propose the button because it is ideal for communities who need to make decisions quickly with the flexibility of something like Heroku.

More about Heroku deploy buttons here, https://devcenter.heroku.com/articles/heroku-button .

Unsure if this is the appropriate place for this ticket or here loomio/loomio#4074 .

500 Internal Server Error

Problem

All containers are up and running but when I try to access the app via the specified url I can see the conneciton attempt in the logs but I'm only getting the error code 500 back.

Is there a way of getting a more precise error description to fix it?

Connection attempt

loomio-nginx   | nginx.1    | loomio.mydomain.org 10.43.4.237 - - [19/Jun/2019:11:23:43 +0000] "GET / HTTP/2.0" 500 595 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36"
loomio-nginx   | nginx.1    | loomio.mydomain.org 10.43.4.237 - - [19/Jun/2019:11:23:43 +0000] "GET /favicon.ico HTTP/2.0" 500 595 "https://loomio.mydomain.org/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36"

Errors in the logs

# docker-compose logs | grep -i error
loomio-letsencrypt | 2019-06-19 11:15:11,328:ERROR:simp_le:1446: CA marked some of the authorizations as invalid, which likely means it could not access http://example.com/.well-known/acme-challenge/X. Did you set correct path in -d example.com:path or --default_root? Are all your domains accessible from the internet? Please check your domains' DNS entries, your host's network/firewall setup and your webserver config. If a domain's DNS entry has both A and AAAA fields set up, some CAs such as Let's Encrypt will perform the challenge validation over IPv6. If your DNS provider does not answer correctly to CAA records request, Let's Encrypt won't issue a certificate for your domain (see https://letsencrypt.org/docs/caa/). Failing authorizations: https://acme-v01.api.letsencrypt.org/acme/authz/ykN1qbJu8jJ4FBAiPEGQp3b9_kxVtVdn4It1uw_eQUI
loomio-letsencrypt | Challenge validation has failed, see error log.
loomio-letsencrypt | ACME server returned an error: urn:acme:error:rateLimited :: There were too many requests of a given type :: Error creating new authz :: too many failed authorizations recently: see https://letsencrypt.org/docs/rate-limits/
loomio-nginx   | nginx.1    | 2019/06/19 11:16:31 [error] 91#91: *6 connect() failed (111: Connection refused) while connecting to upstream, client: 10.43.4.237, server: loomio.mydomain.org, request: "GET /admin HTTP/1.1", upstream: "http://172.17.0.5:3000/admin", host: "loomio.mydomain.org"

upgrading the DB requires the container to be up

In the readme guide, it says to down the containers, pull then upgrade. However in this order it gives an error

# docker exec -ti loomio-app rake db:migrate
Error: No such container: loomio-app

I put everything up again, run the command which upgraded correctly, then restarted everything and it worked.

Mail-Server Setup / Config-Debug

Hello dear Loomio-Team,

with your help we have succsessfully installed a loomio server inside our vpc/intranet, and we can start user-registration. Unfortunately the Mailing Service seems to be broken:

root@875675b19c16:/var/log# cat mailin.log
2019-08-12T08:54:46.543Z - info: Webhook url: http://app:3000/email_processor/
2019-08-12T08:54:46.543Z - info: Log file: /var/log/mailin.log
2019-08-12T08:54:46.562Z - info: Mailin Smtp server listening on port 25
2019-08-12T08:54:46.567Z - warn: Webhook http://app:3000/email_processor/ seems invalid or down. You may want to double check the webhook url.

See attached an anonymised env and the used docker-compose.yml
env.txt
docker-compose_yml.txt

Any Ideas?

SSO available in self-hosted?

I tried to configure the SSO, but it says "This feature is only available to Pro plan customers. Please check out our upgrade page for more details." if I click upgrade, it goes no where.
Is there a way to setup SAML/OAUTH with Keyclock through the ENV file or something?
I've been able to setup SSO with Keycloak for a bunch of our other apps, like Wordpress, Doku-wiki, Nextcloud, and such. It would be nice to set this up for Loomio for our board members.

connection failed with https and error 503 with http

Hi

Following the installation procedure I got the following problems:

  • Accessing my server in HTTPS gives a "connection failed" error on my web browser (and nothing appear in the logs)
  • Accessing in HTTP give error 503.

Please also note that:

  • My server is not accessible from Internet (so certificate stuff with Let's Encrypt will not work, as far as I understand)
  • docker-compose.yml file contains WEBHOOK_URL=http://loomio:3000/email_processor/. Should I change it?

By the way, I do not need HTTPS (my server is accessible from a VPN only). Can I disable it?

Please see the attached logs:
docker-compose logs.txt

Rgds,
Louis

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.