Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Remove spec files from bundled gem #571

Closed
wants to merge 2 commits into from
Closed

Remove spec files from bundled gem #571

wants to merge 2 commits into from

Conversation

t-richards
Copy link
Contributor

Goal

This PR slims down the bundled gem by ~85%.

Compressed .gem size (bytes) Unpacked size (bytes)
Before 239,616 935,871
After 40,960 134,075
Difference (absolute) 93,115 801,796
Difference (relative) -69.45% -85.67%

Design

I believe these savings are worth having because this gem is downloaded millions of times.

Changeset

  • Omitted all files from the gem except for lib/ and other individually specified files.

Tests

Build gem before and after changes. Observe file sizes.

Before (details)
## Compressed .gem size
239616 bytes

## Gem contents
-rw-r--r-- wheel/wheel    2476 2019-10-22 00:17 .github/PULL_REQUEST_TEMPLATE.md
-rw-r--r-- wheel/wheel     874 2019-10-22 00:17 .gitignore
-rw-r--r-- wheel/wheel     462 2019-10-22 00:17 .rdoc_options
-rw-r--r-- wheel/wheel      32 2019-10-22 00:17 .rspec
-rw-r--r-- wheel/wheel      33 2019-10-22 00:17 .rubocop.yml
-rw-r--r-- wheel/wheel   19584 2019-10-22 00:17 .rubocop_todo.yml
-rw-r--r-- wheel/wheel    2627 2019-10-22 00:17 .travis.yml
-rw-r--r-- wheel/wheel   28183 2019-10-22 00:17 CHANGELOG.md
-rw-r--r-- wheel/wheel    1844 2019-10-22 00:17 CONTRIBUTING.md
-rw-r--r-- wheel/wheel    1232 2019-10-22 00:17 Gemfile
-rw-r--r-- wheel/wheel    1051 2019-10-22 00:17 LICENSE.txt
-rw-r--r-- wheel/wheel    2788 2019-10-22 00:17 README.md
-rw-r--r-- wheel/wheel    1013 2019-10-22 00:17 Rakefile
-rw-r--r-- wheel/wheel    2749 2019-10-22 00:17 UPGRADING.md
-rw-r--r-- wheel/wheel       7 2019-10-22 00:17 VERSION
-rw-r--r-- wheel/wheel     675 2019-10-22 00:17 bugsnag.gemspec
-rw-r--r-- wheel/wheel      16 2019-10-22 00:17 features/.gitignore
-rw-r--r-- wheel/wheel    2952 2019-10-22 00:17 features/delayed_job.feature
-rw-r--r-- wheel/wheel     357 2019-10-22 00:17 features/fixtures/delayed_job/Dockerfile
-rw-r--r-- wheel/wheel     543 2019-10-22 00:17 features/fixtures/delayed_job/app/.gitignore
-rw-r--r-- wheel/wheel    1981 2019-10-22 00:17 features/fixtures/delayed_job/app/Gemfile
-rw-r--r-- wheel/wheel     374 2019-10-22 00:17 features/fixtures/delayed_job/app/README.md
-rw-r--r-- wheel/wheel     227 2019-10-22 00:17 features/fixtures/delayed_job/app/Rakefile
-rw-r--r-- wheel/wheel     101 2019-10-22 00:17 features/fixtures/delayed_job/app/app/assets/config/manifest.js
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/app/assets/images/.keep
-rw-r--r-- wheel/wheel     742 2019-10-22 00:17 features/fixtures/delayed_job/app/app/assets/javascripts/application.js
-rw-r--r-- wheel/wheel     358 2019-10-22 00:17 features/fixtures/delayed_job/app/app/assets/javascripts/cable.js
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/app/assets/javascripts/channels/.keep
-rw-r--r-- wheel/wheel     736 2019-10-22 00:17 features/fixtures/delayed_job/app/app/assets/stylesheets/application.css
-rw-r--r-- wheel/wheel      79 2019-10-22 00:17 features/fixtures/delayed_job/app/app/channels/application_cable/channel.rb
-rw-r--r-- wheel/wheel      85 2019-10-22 00:17 features/fixtures/delayed_job/app/app/channels/application_cable/connection.rb
-rw-r--r-- wheel/wheel      97 2019-10-22 00:17 features/fixtures/delayed_job/app/app/controllers/application_controller.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/app/controllers/concerns/.keep
-rw-r--r-- wheel/wheel      29 2019-10-22 00:17 features/fixtures/delayed_job/app/app/helpers/application_helper.rb
-rw-r--r-- wheel/wheel      43 2019-10-22 00:17 features/fixtures/delayed_job/app/app/jobs/application_job.rb
-rw-r--r-- wheel/wheel     102 2019-10-22 00:17 features/fixtures/delayed_job/app/app/mailers/application_mailer.rb
-rw-r--r-- wheel/wheel      78 2019-10-22 00:17 features/fixtures/delayed_job/app/app/models/application_record.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/app/models/concerns/.keep
-rw-r--r-- wheel/wheel     190 2019-10-22 00:17 features/fixtures/delayed_job/app/app/models/test_model.rb
-rw-r--r-- wheel/wheel     317 2019-10-22 00:17 features/fixtures/delayed_job/app/app/views/layouts/application.html.erb
-rw-r--r-- wheel/wheel     229 2019-10-22 00:17 features/fixtures/delayed_job/app/app/views/layouts/mailer.html.erb
-rw-r--r-- wheel/wheel      13 2019-10-22 00:17 features/fixtures/delayed_job/app/app/views/layouts/mailer.text.erb
-rw-r--r-- wheel/wheel     130 2019-10-22 00:17 features/fixtures/delayed_job/app/config.ru
-rw-r--r-- wheel/wheel     480 2019-10-22 00:17 features/fixtures/delayed_job/app/config/application.rb
-rw-r--r-- wheel/wheel     128 2019-10-22 00:17 features/fixtures/delayed_job/app/config/boot.rb
-rw-r--r-- wheel/wheel     116 2019-10-22 00:17 features/fixtures/delayed_job/app/config/cable.yml
-rw-r--r-- wheel/wheel     552 2019-10-22 00:17 features/fixtures/delayed_job/app/config/database.yml
-rw-r--r-- wheel/wheel     128 2019-10-22 00:17 features/fixtures/delayed_job/app/config/environment.rb
-rw-r--r-- wheel/wheel    1882 2019-10-22 00:17 features/fixtures/delayed_job/app/config/environments/development.rb
-rw-r--r-- wheel/wheel    3576 2019-10-22 00:17 features/fixtures/delayed_job/app/config/environments/production.rb
-rw-r--r-- wheel/wheel    1748 2019-10-22 00:17 features/fixtures/delayed_job/app/config/environments/test.rb
-rw-r--r-- wheel/wheel     216 2019-10-22 00:17 features/fixtures/delayed_job/app/config/initializers/application_controller_renderer.rb
-rw-r--r-- wheel/wheel     486 2019-10-22 00:17 features/fixtures/delayed_job/app/config/initializers/assets.rb
-rw-r--r-- wheel/wheel     404 2019-10-22 00:17 features/fixtures/delayed_job/app/config/initializers/backtrace_silencers.rb
-rw-r--r-- wheel/wheel     999 2019-10-22 00:17 features/fixtures/delayed_job/app/config/initializers/bugsnag.rb
-rw-r--r-- wheel/wheel     244 2019-10-22 00:17 features/fixtures/delayed_job/app/config/initializers/cookies_serializer.rb
-rw-r--r-- wheel/wheel      55 2019-10-22 00:17 features/fixtures/delayed_job/app/config/initializers/delayed_job.rb
-rw-r--r-- wheel/wheel     194 2019-10-22 00:17 features/fixtures/delayed_job/app/config/initializers/filter_parameter_logging.rb
-rw-r--r-- wheel/wheel     647 2019-10-22 00:17 features/fixtures/delayed_job/app/config/initializers/inflections.rb
-rw-r--r-- wheel/wheel     156 2019-10-22 00:17 features/fixtures/delayed_job/app/config/initializers/mime_types.rb
-rw-r--r-- wheel/wheel    1196 2019-10-22 00:17 features/fixtures/delayed_job/app/config/initializers/new_framework_defaults.rb
-rw-r--r-- wheel/wheel     135 2019-10-22 00:17 features/fixtures/delayed_job/app/config/initializers/session_store.rb
-rw-r--r-- wheel/wheel     485 2019-10-22 00:17 features/fixtures/delayed_job/app/config/initializers/wrap_parameters.rb
-rw-r--r-- wheel/wheel     634 2019-10-22 00:17 features/fixtures/delayed_job/app/config/locales/en.yml
-rw-r--r-- wheel/wheel    2005 2019-10-22 00:17 features/fixtures/delayed_job/app/config/puma.rb
-rw-r--r-- wheel/wheel     139 2019-10-22 00:17 features/fixtures/delayed_job/app/config/routes.rb
-rw-r--r-- wheel/wheel     965 2019-10-22 00:17 features/fixtures/delayed_job/app/config/secrets.yml
-rw-r--r-- wheel/wheel     111 2019-10-22 00:17 features/fixtures/delayed_job/app/config/spring.rb
-rw-r--r-- wheel/wheel    1306 2019-10-22 00:17 features/fixtures/delayed_job/app/db/migrate/20181024232549_create_delayed_jobs.rb
-rw-r--r-- wheel/wheel     142 2019-10-22 00:17 features/fixtures/delayed_job/app/db/migrate/20181024232817_create_test_models.rb
-rw-r--r-- wheel/wheel    1282 2019-10-22 00:17 features/fixtures/delayed_job/app/db/schema.rb
-rw-r--r-- wheel/wheel     370 2019-10-22 00:17 features/fixtures/delayed_job/app/db/seeds.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/lib/assets/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/lib/tasks/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/log/.keep
-rw-r--r-- wheel/wheel    1722 2019-10-22 00:17 features/fixtures/delayed_job/app/public/404.html
-rw-r--r-- wheel/wheel    1705 2019-10-22 00:17 features/fixtures/delayed_job/app/public/422.html
-rw-r--r-- wheel/wheel    1635 2019-10-22 00:17 features/fixtures/delayed_job/app/public/500.html
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/public/apple-touch-icon-precomposed.png
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/public/apple-touch-icon.png
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/public/favicon.ico
-rw-r--r-- wheel/wheel     202 2019-10-22 00:17 features/fixtures/delayed_job/app/public/robots.txt
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/test/controllers/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/test/fixtures/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/test/fixtures/files/.keep
-rw-r--r-- wheel/wheel     353 2019-10-22 00:17 features/fixtures/delayed_job/app/test/fixtures/test_models.yml
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/test/helpers/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/test/integration/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/test/mailers/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/test/models/.keep
-rw-r--r-- wheel/wheel     123 2019-10-22 00:17 features/fixtures/delayed_job/app/test/models/test_model_test.rb
-rw-r--r-- wheel/wheel     312 2019-10-22 00:17 features/fixtures/delayed_job/app/test/test_helper.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/delayed_job/app/tmp/.keep
-rw-r--r-- wheel/wheel    7007 2019-10-22 00:17 features/fixtures/docker-compose.yml
-rw-r--r-- wheel/wheel      27 2019-10-22 00:17 features/fixtures/plain/.dockerignore
-rw-r--r-- wheel/wheel     180 2019-10-22 00:17 features/fixtures/plain/Dockerfile
-rw-r--r-- wheel/wheel      63 2019-10-22 00:17 features/fixtures/plain/app/Gemfile
-rw-r--r-- wheel/wheel    1854 2019-10-22 00:17 features/fixtures/plain/app/app.rb
-rw-r--r-- wheel/wheel     149 2019-10-22 00:17 features/fixtures/plain/app/configuration/api_key.rb
-rw-r--r-- wheel/wheel     348 2019-10-22 00:17 features/fixtures/plain/app/configuration/proxy.rb
-rw-r--r-- wheel/wheel     105 2019-10-22 00:17 features/fixtures/plain/app/configuration/send_handled.rb
-rw-r--r-- wheel/wheel     108 2019-10-22 00:17 features/fixtures/plain/app/configuration/send_unhandled.rb
-rw-r--r-- wheel/wheel     446 2019-10-22 00:17 features/fixtures/plain/app/delivery/fork_threadpool.rb
-rw-r--r-- wheel/wheel     247 2019-10-22 00:17 features/fixtures/plain/app/delivery/synchronous.rb
-rw-r--r-- wheel/wheel     249 2019-10-22 00:17 features/fixtures/plain/app/delivery/threadpool.rb
-rw-r--r-- wheel/wheel     678 2019-10-22 00:17 features/fixtures/plain/app/exception_data/crash.rb
-rw-r--r-- wheel/wheel     150 2019-10-22 00:17 features/fixtures/plain/app/exception_data/handled_context.rb
-rw-r--r-- wheel/wheel     147 2019-10-22 00:17 features/fixtures/plain/app/exception_data/handled_hash.rb
-rw-r--r-- wheel/wheel     152 2019-10-22 00:17 features/fixtures/plain/app/exception_data/handled_meta_data.rb
-rw-r--r-- wheel/wheel     150 2019-10-22 00:17 features/fixtures/plain/app/exception_data/handled_user_id.rb
-rw-r--r-- wheel/wheel     102 2019-10-22 00:17 features/fixtures/plain/app/exception_data/unhandled_context.rb
-rw-r--r-- wheel/wheel      99 2019-10-22 00:17 features/fixtures/plain/app/exception_data/unhandled_hash.rb
-rw-r--r-- wheel/wheel     104 2019-10-22 00:17 features/fixtures/plain/app/exception_data/unhandled_meta_data.rb
-rw-r--r-- wheel/wheel     102 2019-10-22 00:17 features/fixtures/plain/app/exception_data/unhandled_user_id.rb
-rw-r--r-- wheel/wheel     184 2019-10-22 00:17 features/fixtures/plain/app/filters/additional_filters.rb
-rw-r--r-- wheel/wheel     382 2019-10-22 00:17 features/fixtures/plain/app/filters/default_filters.rb
-rw-r--r-- wheel/wheel     267 2019-10-22 00:17 features/fixtures/plain/app/handled/block_metadata.rb
-rw-r--r-- wheel/wheel     223 2019-10-22 00:17 features/fixtures/plain/app/handled/ignore_exception.rb
-rw-r--r-- wheel/wheel     137 2019-10-22 00:17 features/fixtures/plain/app/handled/notify_exception.rb
-rw-r--r-- wheel/wheel     141 2019-10-22 00:17 features/fixtures/plain/app/handled/notify_string.rb
-rw-r--r-- wheel/wheel     146 2019-10-22 00:17 features/fixtures/plain/app/ignore_classes/handled.rb
-rw-r--r-- wheel/wheel     127 2019-10-22 00:17 features/fixtures/plain/app/ignore_classes/ignore_error.rb
-rw-r--r-- wheel/wheel      86 2019-10-22 00:17 features/fixtures/plain/app/ignore_classes/unhandled.rb
-rw-r--r-- wheel/wheel     263 2019-10-22 00:17 features/fixtures/plain/app/report_modification/add_tab.rb
-rw-r--r-- wheel/wheel     376 2019-10-22 00:17 features/fixtures/plain/app/report_modification/add_tab_existing.rb
-rw-r--r-- wheel/wheel     327 2019-10-22 00:17 features/fixtures/plain/app/report_modification/add_tab_override.rb
-rw-r--r-- wheel/wheel     163 2019-10-22 00:17 features/fixtures/plain/app/report_modification/ignore_report.rb
-rw-r--r-- wheel/wheel     165 2019-10-22 00:17 features/fixtures/plain/app/report_modification/initiators/handled_before_notify.rb
-rw-r--r-- wheel/wheel     129 2019-10-22 00:17 features/fixtures/plain/app/report_modification/initiators/handled_block.rb
-rw-r--r-- wheel/wheel     166 2019-10-22 00:17 features/fixtures/plain/app/report_modification/initiators/unhandled_before_notify.rb
-rw-r--r-- wheel/wheel     200 2019-10-22 00:17 features/fixtures/plain/app/report_modification/modify_api_key.rb
-rw-r--r-- wheel/wheel     173 2019-10-22 00:17 features/fixtures/plain/app/report_modification/modify_severity.rb
-rw-r--r-- wheel/wheel     265 2019-10-22 00:17 features/fixtures/plain/app/report_modification/remove_user_details.rb
-rw-r--r-- wheel/wheel     283 2019-10-22 00:17 features/fixtures/plain/app/report_modification/set_custom_user_details.rb
-rw-r--r-- wheel/wheel     245 2019-10-22 00:17 features/fixtures/plain/app/report_modification/set_user_details.rb
-rw-r--r-- wheel/wheel     320 2019-10-22 00:17 features/fixtures/plain/app/stack_frame_modification/initiators/handled_before_notify.rb
-rw-r--r-- wheel/wheel     323 2019-10-22 00:17 features/fixtures/plain/app/stack_frame_modification/initiators/handled_block.rb
-rw-r--r-- wheel/wheel     279 2019-10-22 00:17 features/fixtures/plain/app/stack_frame_modification/initiators/unhandled_before_notify.rb
-rw-r--r-- wheel/wheel     283 2019-10-22 00:17 features/fixtures/plain/app/stack_frame_modification/mark_frames_in_project.rb
-rw-r--r-- wheel/wheel     193 2019-10-22 00:17 features/fixtures/plain/app/stack_frame_modification/remove_stack_frame.rb
-rw-r--r-- wheel/wheel      79 2019-10-22 00:17 features/fixtures/plain/app/unhandled/Interrupt.rb
-rw-r--r-- wheel/wheel       5 2019-10-22 00:17 features/fixtures/plain/app/unhandled/bad_syntax.rb
-rw-r--r-- wheel/wheel     114 2019-10-22 00:17 features/fixtures/plain/app/unhandled/custom_error.rb
-rw-r--r-- wheel/wheel      68 2019-10-22 00:17 features/fixtures/plain/app/unhandled/load_error.rb
-rw-r--r-- wheel/wheel      88 2019-10-22 00:17 features/fixtures/plain/app/unhandled/local_jump_error.rb
-rw-r--r-- wheel/wheel      50 2019-10-22 00:17 features/fixtures/plain/app/unhandled/name_error.rb
-rw-r--r-- wheel/wheel      57 2019-10-22 00:17 features/fixtures/plain/app/unhandled/no_method_error.rb
-rw-r--r-- wheel/wheel      51 2019-10-22 00:17 features/fixtures/plain/app/unhandled/runtime_error.rb
-rw-r--r-- wheel/wheel      82 2019-10-22 00:17 features/fixtures/plain/app/unhandled/syntax_error.rb
-rw-r--r-- wheel/wheel      71 2019-10-22 00:17 features/fixtures/plain/app/unhandled/system_call_error.rb
-rw-r--r-- wheel/wheel      51 2019-10-22 00:17 features/fixtures/plain/app/unhandled/system_exit.rb
-rw-r--r-- wheel/wheel      61 2019-10-22 00:17 features/fixtures/plain/json/delivery_fork.json
-rw-r--r-- wheel/wheel      61 2019-10-22 00:17 features/fixtures/plain/json/delivery_synchronous.json
-rw-r--r-- wheel/wheel      62 2019-10-22 00:17 features/fixtures/plain/json/delivery_threadpool.json
-rw-r--r-- wheel/wheel     239 2019-10-22 00:17 features/fixtures/plain/json/filters_default_metadata_filters.json
-rw-r--r-- wheel/wheel      13 2019-10-22 00:17 features/fixtures/rack1/.dockerignore
-rw-r--r-- wheel/wheel     204 2019-10-22 00:17 features/fixtures/rack1/Dockerfile
-rw-r--r-- wheel/wheel      82 2019-10-22 00:17 features/fixtures/rack1/Gemfile
-rw-r--r-- wheel/wheel     205 2019-10-22 00:17 features/fixtures/rack1/app.rb
-rw-r--r-- wheel/wheel      13 2019-10-22 00:17 features/fixtures/rack2/.dockerignore
-rw-r--r-- wheel/wheel     204 2019-10-22 00:17 features/fixtures/rack2/Dockerfile
-rw-r--r-- wheel/wheel      82 2019-10-22 00:17 features/fixtures/rack2/Gemfile
-rw-r--r-- wheel/wheel     205 2019-10-22 00:17 features/fixtures/rack2/app.rb
-rw-r--r-- wheel/wheel      17 2019-10-22 00:17 features/fixtures/rails3/.dockerignore
-rw-r--r-- wheel/wheel     268 2019-10-22 00:17 features/fixtures/rails3/Dockerfile
-rw-r--r-- wheel/wheel     430 2019-10-22 00:17 features/fixtures/rails3/app/.gitignore
-rw-r--r-- wheel/wheel     171 2019-10-22 00:17 features/fixtures/rails3/app/Gemfile
-rw-r--r-- wheel/wheel     268 2019-10-22 00:17 features/fixtures/rails3/app/Rakefile
-rw-r--r-- wheel/wheel    6646 2019-10-22 00:17 features/fixtures/rails3/app/app/assets/images/rails.png
-rw-r--r-- wheel/wheel     641 2019-10-22 00:17 features/fixtures/rails3/app/app/assets/javascripts/application.js
-rw-r--r-- wheel/wheel     546 2019-10-22 00:17 features/fixtures/rails3/app/app/assets/stylesheets/application.css
-rw-r--r-- wheel/wheel     353 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/api_key_controller.rb
-rw-r--r-- wheel/wheel     349 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/app_type_controller.rb
-rw-r--r-- wheel/wheel     436 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/app_version_controller.rb
-rw-r--r-- wheel/wheel     119 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/application_controller.rb
-rw-r--r-- wheel/wheel     532 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/auto_notify_controller.rb
-rw-r--r-- wheel/wheel     939 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/before_notify_controller.rb
-rw-r--r-- wheel/wheel     410 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/breadcrumbs_controller.rb
-rw-r--r-- wheel/wheel     445 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/handled_controller.rb
-rw-r--r-- wheel/wheel     421 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/ignore_classes_controller.rb
-rw-r--r-- wheel/wheel     295 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/metadata_filters_controller.rb
-rw-r--r-- wheel/wheel     439 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/project_root_controller.rb
-rw-r--r-- wheel/wheel     356 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/release_stage_controller.rb
-rw-r--r-- wheel/wheel     343 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/send_code_controller.rb
-rw-r--r-- wheel/wheel     205 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/send_environment_controller.rb
-rw-r--r-- wheel/wheel     453 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/session_tracking_controller.rb
-rw-r--r-- wheel/wheel     165 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/unhandled_controller.rb
-rw-r--r-- wheel/wheel     616 2019-10-22 00:17 features/fixtures/rails3/app/app/controllers/warden_controller.rb
-rw-r--r-- wheel/wheel      29 2019-10-22 00:17 features/fixtures/rails3/app/app/helpers/application_helper.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails3/app/app/mailers/.gitkeep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails3/app/app/models/.gitkeep
-rw-r--r-- wheel/wheel     144 2019-10-22 00:17 features/fixtures/rails3/app/app/models/user.rb
-rw-r--r-- wheel/wheel     230 2019-10-22 00:17 features/fixtures/rails3/app/app/views/layouts/application.html.erb
-rw-r--r-- wheel/wheel     153 2019-10-22 00:17 features/fixtures/rails3/app/config.ru
-rw-r--r-- wheel/wheel    3005 2019-10-22 00:17 features/fixtures/rails3/app/config/application.rb
-rw-r--r-- wheel/wheel     191 2019-10-22 00:17 features/fixtures/rails3/app/config/boot.rb
-rw-r--r-- wheel/wheel     667 2019-10-22 00:17 features/fixtures/rails3/app/config/database.yml
-rw-r--r-- wheel/wheel     147 2019-10-22 00:17 features/fixtures/rails3/app/config/environment.rb
-rw-r--r-- wheel/wheel    1370 2019-10-22 00:17 features/fixtures/rails3/app/config/environments/development.rb
-rw-r--r-- wheel/wheel    2477 2019-10-22 00:17 features/fixtures/rails3/app/config/environments/production.rb
-rw-r--r-- wheel/wheel    1523 2019-10-22 00:17 features/fixtures/rails3/app/config/environments/rails_env.rb
-rw-r--r-- wheel/wheel    1306 2019-10-22 00:17 features/fixtures/rails3/app/config/initializers/bugsnag.rb
-rw-r--r-- wheel/wheel     494 2019-10-22 00:17 features/fixtures/rails3/app/config/initializers/secret_token.rb
-rw-r--r-- wheel/wheel     401 2019-10-22 00:17 features/fixtures/rails3/app/config/initializers/session_store.rb
-rw-r--r-- wheel/wheel     103 2019-10-22 00:17 features/fixtures/rails3/app/config/initializers/warden.rb
-rw-r--r-- wheel/wheel     465 2019-10-22 00:17 features/fixtures/rails3/app/config/initializers/wrap_parameters.rb
-rw-r--r-- wheel/wheel     214 2019-10-22 00:17 features/fixtures/rails3/app/config/locales/en.yml
-rw-r--r-- wheel/wheel    1016 2019-10-22 00:17 features/fixtures/rails3/app/config/routes.rb
-rw-r--r-- wheel/wheel    1532 2019-10-22 00:17 features/fixtures/rails3/app/db/migrate/20180423142727_create_users.rb
-rw-r--r-- wheel/wheel    1874 2019-10-22 00:17 features/fixtures/rails3/app/db/schema.rb
-rw-r--r-- wheel/wheel     343 2019-10-22 00:17 features/fixtures/rails3/app/db/seeds.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails3/app/lib/assets/.gitkeep
-rw-r--r-- wheel/wheel     258 2019-10-22 00:17 features/fixtures/rails3/app/lib/strategies/token_strategy.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails3/app/lib/tasks/.gitkeep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails3/app/log/.gitkeep
-rw-r--r-- wheel/wheel     728 2019-10-22 00:17 features/fixtures/rails3/app/public/404.html
-rw-r--r-- wheel/wheel     711 2019-10-22 00:17 features/fixtures/rails3/app/public/422.html
-rw-r--r-- wheel/wheel     643 2019-10-22 00:17 features/fixtures/rails3/app/public/500.html
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails3/app/public/favicon.ico
-rw-r--r-- wheel/wheel    5906 2019-10-22 00:17 features/fixtures/rails3/app/public/index.html
-rw-r--r-- wheel/wheel     204 2019-10-22 00:17 features/fixtures/rails3/app/public/robots.txt
-rwxr-xr-x wheel/wheel     295 2019-10-22 00:17 features/fixtures/rails3/app/script/rails
-rw-r--r-- wheel/wheel      17 2019-10-22 00:17 features/fixtures/rails4/.dockerignore
-rw-r--r-- wheel/wheel     353 2019-10-22 00:17 features/fixtures/rails4/Dockerfile
-rw-r--r-- wheel/wheel     455 2019-10-22 00:17 features/fixtures/rails4/app/.gitignore
-rw-r--r-- wheel/wheel    1050 2019-10-22 00:17 features/fixtures/rails4/app/Gemfile
-rw-r--r-- wheel/wheel     478 2019-10-22 00:17 features/fixtures/rails4/app/README.rdoc
-rw-r--r-- wheel/wheel     248 2019-10-22 00:17 features/fixtures/rails4/app/Rakefile
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/app/assets/images/.keep
-rw-r--r-- wheel/wheel     664 2019-10-22 00:17 features/fixtures/rails4/app/app/assets/javascripts/application.js
-rw-r--r-- wheel/wheel     546 2019-10-22 00:17 features/fixtures/rails4/app/app/assets/stylesheets/application.css
-rw-r--r-- wheel/wheel     353 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/api_key_controller.rb
-rw-r--r-- wheel/wheel     349 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/app_type_controller.rb
-rw-r--r-- wheel/wheel     436 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/app_version_controller.rb
-rw-r--r-- wheel/wheel     119 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/application_controller.rb
-rw-r--r-- wheel/wheel     532 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/auto_notify_controller.rb
-rw-r--r-- wheel/wheel     939 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/before_notify_controller.rb
-rw-r--r-- wheel/wheel     527 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/breadcrumbs_controller.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/concerns/.keep
-rw-r--r-- wheel/wheel     704 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/devise_controller.rb
-rw-r--r-- wheel/wheel     460 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/handled_controller.rb
-rw-r--r-- wheel/wheel     421 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/ignore_classes_controller.rb
-rw-r--r-- wheel/wheel     295 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/metadata_filters_controller.rb
-rw-r--r-- wheel/wheel     508 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/mongo_controller.rb
-rw-r--r-- wheel/wheel     439 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/project_root_controller.rb
-rw-r--r-- wheel/wheel     356 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/release_stage_controller.rb
-rw-r--r-- wheel/wheel     343 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/send_code_controller.rb
-rw-r--r-- wheel/wheel     205 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/send_environment_controller.rb
-rw-r--r-- wheel/wheel     455 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/session_tracking_controller.rb
-rw-r--r-- wheel/wheel     182 2019-10-22 00:17 features/fixtures/rails4/app/app/controllers/unhandled_controller.rb
-rw-r--r-- wheel/wheel      29 2019-10-22 00:17 features/fixtures/rails4/app/app/helpers/application_helper.rb
-rw-r--r-- wheel/wheel      43 2019-10-22 00:17 features/fixtures/rails4/app/app/jobs/application_job.rb
-rw-r--r-- wheel/wheel      85 2019-10-22 00:17 features/fixtures/rails4/app/app/jobs/notify_job.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/app/mailers/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/app/models/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/app/models/concerns/.keep
-rw-r--r-- wheel/wheel     123 2019-10-22 00:17 features/fixtures/rails4/app/app/models/mongo_model.rb
-rw-r--r-- wheel/wheel     268 2019-10-22 00:17 features/fixtures/rails4/app/app/models/user.rb
-rw-r--r-- wheel/wheel     293 2019-10-22 00:17 features/fixtures/rails4/app/app/views/layouts/application.html.erb
-rw-r--r-- wheel/wheel     154 2019-10-22 00:17 features/fixtures/rails4/app/config.ru
-rw-r--r-- wheel/wheel     980 2019-10-22 00:17 features/fixtures/rails4/app/config/application.rb
-rw-r--r-- wheel/wheel     171 2019-10-22 00:17 features/fixtures/rails4/app/config/boot.rb
-rw-r--r-- wheel/wheel     674 2019-10-22 00:17 features/fixtures/rails4/app/config/database.yml
-rw-r--r-- wheel/wheel     149 2019-10-22 00:17 features/fixtures/rails4/app/config/environment.rb
-rw-r--r-- wheel/wheel    1191 2019-10-22 00:17 features/fixtures/rails4/app/config/environments/development.rb
-rw-r--r-- wheel/wheel    3326 2019-10-22 00:17 features/fixtures/rails4/app/config/environments/production.rb
-rw-r--r-- wheel/wheel    1190 2019-10-22 00:17 features/fixtures/rails4/app/config/environments/rails_env.rb
-rw-r--r-- wheel/wheel    1191 2019-10-22 00:17 features/fixtures/rails4/app/config/environments/test.rb
-rw-r--r-- wheel/wheel     404 2019-10-22 00:17 features/fixtures/rails4/app/config/initializers/backtrace_silencers.rb
-rw-r--r-- wheel/wheel    1307 2019-10-22 00:17 features/fixtures/rails4/app/config/initializers/bugsnag.rb
-rw-r--r-- wheel/wheel   13817 2019-10-22 00:17 features/fixtures/rails4/app/config/initializers/devise.rb
-rw-r--r-- wheel/wheel     262 2019-10-22 00:17 features/fixtures/rails4/app/config/initializers/filter_parameter_logging.rb
-rw-r--r-- wheel/wheel     647 2019-10-22 00:17 features/fixtures/rails4/app/config/initializers/inflections.rb
-rw-r--r-- wheel/wheel     205 2019-10-22 00:17 features/fixtures/rails4/app/config/initializers/mime_types.rb
-rw-r--r-- wheel/wheel     657 2019-10-22 00:17 features/fixtures/rails4/app/config/initializers/secret_token.rb
-rw-r--r-- wheel/wheel     134 2019-10-22 00:17 features/fixtures/rails4/app/config/initializers/session_store.rb
-rw-r--r-- wheel/wheel     517 2019-10-22 00:17 features/fixtures/rails4/app/config/initializers/wrap_parameters.rb
-rw-r--r-- wheel/wheel    4138 2019-10-22 00:17 features/fixtures/rails4/app/config/locales/devise.en.yml
-rw-r--r-- wheel/wheel     634 2019-10-22 00:17 features/fixtures/rails4/app/config/locales/en.yml
-rw-r--r-- wheel/wheel     593 2019-10-22 00:17 features/fixtures/rails4/app/config/mongoid.yml
-rw-r--r-- wheel/wheel    1071 2019-10-22 00:17 features/fixtures/rails4/app/config/routes.rb
-rw-r--r-- wheel/wheel    1460 2019-10-22 00:17 features/fixtures/rails4/app/db/migrate/20180420160315_devise_create_users.rb
-rw-r--r-- wheel/wheel     343 2019-10-22 00:17 features/fixtures/rails4/app/db/seeds.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/lib/assets/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/lib/tasks/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/log/.keep
-rw-r--r-- wheel/wheel    1351 2019-10-22 00:17 features/fixtures/rails4/app/public/404.html
-rw-r--r-- wheel/wheel    1334 2019-10-22 00:17 features/fixtures/rails4/app/public/422.html
-rw-r--r-- wheel/wheel    1266 2019-10-22 00:17 features/fixtures/rails4/app/public/500.html
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/public/favicon.ico
-rw-r--r-- wheel/wheel     204 2019-10-22 00:17 features/fixtures/rails4/app/public/robots.txt
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/test/controllers/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/test/fixtures/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/test/helpers/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/test/integration/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/test/mailers/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails4/app/test/models/.keep
-rw-r--r-- wheel/wheel     492 2019-10-22 00:17 features/fixtures/rails4/app/test/test_helper.rb
-rw-r--r-- wheel/wheel      17 2019-10-22 00:17 features/fixtures/rails5/.dockerignore
-rw-r--r-- wheel/wheel     309 2019-10-22 00:17 features/fixtures/rails5/Dockerfile
-rw-r--r-- wheel/wheel     543 2019-10-22 00:17 features/fixtures/rails5/app/.gitignore
-rw-r--r-- wheel/wheel    1775 2019-10-22 00:17 features/fixtures/rails5/app/Gemfile
-rw-r--r-- wheel/wheel     374 2019-10-22 00:17 features/fixtures/rails5/app/README.md
-rw-r--r-- wheel/wheel     227 2019-10-22 00:17 features/fixtures/rails5/app/Rakefile
-rw-r--r-- wheel/wheel     101 2019-10-22 00:17 features/fixtures/rails5/app/app/assets/config/manifest.js
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/app/assets/images/.keep
-rw-r--r-- wheel/wheel     742 2019-10-22 00:17 features/fixtures/rails5/app/app/assets/javascripts/application.js
-rw-r--r-- wheel/wheel     358 2019-10-22 00:17 features/fixtures/rails5/app/app/assets/javascripts/cable.js
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/app/assets/javascripts/channels/.keep
-rw-r--r-- wheel/wheel     736 2019-10-22 00:17 features/fixtures/rails5/app/app/assets/stylesheets/application.css
-rw-r--r-- wheel/wheel      79 2019-10-22 00:17 features/fixtures/rails5/app/app/channels/application_cable/channel.rb
-rw-r--r-- wheel/wheel      85 2019-10-22 00:17 features/fixtures/rails5/app/app/channels/application_cable/connection.rb
-rw-r--r-- wheel/wheel     314 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/api_key_controller.rb
-rw-r--r-- wheel/wheel     310 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/app_type_controller.rb
-rw-r--r-- wheel/wheel     397 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/app_version_controller.rb
-rw-r--r-- wheel/wheel     119 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/application_controller.rb
-rw-r--r-- wheel/wheel     493 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/auto_notify_controller.rb
-rw-r--r-- wheel/wheel     900 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/before_notify_controller.rb
-rw-r--r-- wheel/wheel     473 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/breadcrumbs_controller.rb
-rw-r--r-- wheel/wheel     841 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/clearance_controller.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/concerns/.keep
-rw-r--r-- wheel/wheel     421 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/handled_controller.rb
-rw-r--r-- wheel/wheel     382 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/ignore_classes_controller.rb
-rw-r--r-- wheel/wheel     256 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/metadata_filters_controller.rb
-rw-r--r-- wheel/wheel     507 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/mongo_controller.rb
-rw-r--r-- wheel/wheel     400 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/project_root_controller.rb
-rw-r--r-- wheel/wheel     317 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/release_stage_controller.rb
-rw-r--r-- wheel/wheel     304 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/send_code_controller.rb
-rw-r--r-- wheel/wheel     166 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/send_environment_controller.rb
-rw-r--r-- wheel/wheel     416 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/session_tracking_controller.rb
-rw-r--r-- wheel/wheel     143 2019-10-22 00:17 features/fixtures/rails5/app/app/controllers/unhandled_controller.rb
-rw-r--r-- wheel/wheel      29 2019-10-22 00:17 features/fixtures/rails5/app/app/helpers/application_helper.rb
-rw-r--r-- wheel/wheel      43 2019-10-22 00:17 features/fixtures/rails5/app/app/jobs/application_job.rb
-rw-r--r-- wheel/wheel      85 2019-10-22 00:17 features/fixtures/rails5/app/app/jobs/notify_job.rb
-rw-r--r-- wheel/wheel     102 2019-10-22 00:17 features/fixtures/rails5/app/app/mailers/application_mailer.rb
-rw-r--r-- wheel/wheel      78 2019-10-22 00:17 features/fixtures/rails5/app/app/models/application_record.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/app/models/concerns/.keep
-rw-r--r-- wheel/wheel     123 2019-10-22 00:17 features/fixtures/rails5/app/app/models/mongo_model.rb
-rw-r--r-- wheel/wheel      61 2019-10-22 00:17 features/fixtures/rails5/app/app/models/user.rb
-rw-r--r-- wheel/wheel     317 2019-10-22 00:17 features/fixtures/rails5/app/app/views/layouts/application.html.erb
-rw-r--r-- wheel/wheel     229 2019-10-22 00:17 features/fixtures/rails5/app/app/views/layouts/mailer.html.erb
-rw-r--r-- wheel/wheel      13 2019-10-22 00:17 features/fixtures/rails5/app/app/views/layouts/mailer.text.erb
-rw-r--r-- wheel/wheel     130 2019-10-22 00:17 features/fixtures/rails5/app/config.ru
-rw-r--r-- wheel/wheel     480 2019-10-22 00:17 features/fixtures/rails5/app/config/application.rb
-rw-r--r-- wheel/wheel     128 2019-10-22 00:17 features/fixtures/rails5/app/config/boot.rb
-rw-r--r-- wheel/wheel     116 2019-10-22 00:17 features/fixtures/rails5/app/config/cable.yml
-rw-r--r-- wheel/wheel     620 2019-10-22 00:17 features/fixtures/rails5/app/config/database.yml
-rw-r--r-- wheel/wheel     128 2019-10-22 00:17 features/fixtures/rails5/app/config/environment.rb
-rw-r--r-- wheel/wheel    1961 2019-10-22 00:17 features/fixtures/rails5/app/config/environments/development.rb
-rw-r--r-- wheel/wheel    3655 2019-10-22 00:17 features/fixtures/rails5/app/config/environments/production.rb
-rw-r--r-- wheel/wheel    1961 2019-10-22 00:17 features/fixtures/rails5/app/config/environments/rails_env.rb
-rw-r--r-- wheel/wheel    1961 2019-10-22 00:17 features/fixtures/rails5/app/config/environments/test.rb
-rw-r--r-- wheel/wheel     486 2019-10-22 00:17 features/fixtures/rails5/app/config/initializers/assets.rb
-rw-r--r-- wheel/wheel     404 2019-10-22 00:17 features/fixtures/rails5/app/config/initializers/backtrace_silencers.rb
-rw-r--r-- wheel/wheel    1307 2019-10-22 00:17 features/fixtures/rails5/app/config/initializers/bugsnag.rb
-rw-r--r-- wheel/wheel     144 2019-10-22 00:17 features/fixtures/rails5/app/config/initializers/clearance.rb
-rw-r--r-- wheel/wheel     244 2019-10-22 00:17 features/fixtures/rails5/app/config/initializers/cookies_serializer.rb
-rw-r--r-- wheel/wheel     262 2019-10-22 00:17 features/fixtures/rails5/app/config/initializers/filter_parameter_logging.rb
-rw-r--r-- wheel/wheel     647 2019-10-22 00:17 features/fixtures/rails5/app/config/initializers/inflections.rb
-rw-r--r-- wheel/wheel     156 2019-10-22 00:17 features/fixtures/rails5/app/config/initializers/mime_types.rb
-rw-r--r-- wheel/wheel    1104 2019-10-22 00:17 features/fixtures/rails5/app/config/initializers/new_framework_defaults.rb
-rw-r--r-- wheel/wheel     135 2019-10-22 00:17 features/fixtures/rails5/app/config/initializers/session_store.rb
-rw-r--r-- wheel/wheel     485 2019-10-22 00:17 features/fixtures/rails5/app/config/initializers/wrap_parameters.rb
-rw-r--r-- wheel/wheel    4138 2019-10-22 00:17 features/fixtures/rails5/app/config/locales/devise.en.yml
-rw-r--r-- wheel/wheel     634 2019-10-22 00:17 features/fixtures/rails5/app/config/locales/en.yml
-rw-r--r-- wheel/wheel     594 2019-10-22 00:17 features/fixtures/rails5/app/config/mongoid.yml
-rw-r--r-- wheel/wheel    2005 2019-10-22 00:17 features/fixtures/rails5/app/config/puma.rb
-rw-r--r-- wheel/wheel    2525 2019-10-22 00:17 features/fixtures/rails5/app/config/routes.rb
-rw-r--r-- wheel/wheel    1125 2019-10-22 00:17 features/fixtures/rails5/app/config/secrets.yml
-rw-r--r-- wheel/wheel     111 2019-10-22 00:17 features/fixtures/rails5/app/config/spring.rb
-rw-r--r-- wheel/wheel     482 2019-10-22 00:17 features/fixtures/rails5/app/db/migrate/20180426095545_create_users.rb
-rw-r--r-- wheel/wheel    1390 2019-10-22 00:17 features/fixtures/rails5/app/db/schema.rb
-rw-r--r-- wheel/wheel     370 2019-10-22 00:17 features/fixtures/rails5/app/db/seeds.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/lib/assets/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/lib/tasks/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/log/.keep
-rw-r--r-- wheel/wheel    1564 2019-10-22 00:17 features/fixtures/rails5/app/public/404.html
-rw-r--r-- wheel/wheel    1547 2019-10-22 00:17 features/fixtures/rails5/app/public/422.html
-rw-r--r-- wheel/wheel    1477 2019-10-22 00:17 features/fixtures/rails5/app/public/500.html
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/public/apple-touch-icon-precomposed.png
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/public/apple-touch-icon.png
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/public/favicon.ico
-rw-r--r-- wheel/wheel     202 2019-10-22 00:17 features/fixtures/rails5/app/public/robots.txt
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/test/controllers/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/test/fixtures/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/test/fixtures/files/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/test/helpers/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/test/integration/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/test/mailers/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/test/models/.keep
-rw-r--r-- wheel/wheel     312 2019-10-22 00:17 features/fixtures/rails5/app/test/test_helper.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails5/app/tmp/.keep
-rw-r--r-- wheel/wheel      17 2019-10-22 00:17 features/fixtures/rails6/.dockerignore
-rw-r--r-- wheel/wheel     556 2019-10-22 00:17 features/fixtures/rails6/Dockerfile
-rw-r--r-- wheel/wheel       9 2019-10-22 00:17 features/fixtures/rails6/app/.browserslistrc
-rw-r--r-- wheel/wheel     761 2019-10-22 00:17 features/fixtures/rails6/app/.gitignore
-rw-r--r-- wheel/wheel       5 2019-10-22 00:17 features/fixtures/rails6/app/.ruby-version
-rw-r--r-- wheel/wheel    2086 2019-10-22 00:17 features/fixtures/rails6/app/Gemfile
-rw-r--r-- wheel/wheel     374 2019-10-22 00:17 features/fixtures/rails6/app/README.md
-rw-r--r-- wheel/wheel     227 2019-10-22 00:17 features/fixtures/rails6/app/Rakefile
-rw-r--r-- wheel/wheel      63 2019-10-22 00:17 features/fixtures/rails6/app/app/assets/config/manifest.js
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/app/assets/images/.keep
-rw-r--r-- wheel/wheel     709 2019-10-22 00:17 features/fixtures/rails6/app/app/assets/stylesheets/application.css
-rw-r--r-- wheel/wheel      79 2019-10-22 00:17 features/fixtures/rails6/app/app/channels/application_cable/channel.rb
-rw-r--r-- wheel/wheel      85 2019-10-22 00:17 features/fixtures/rails6/app/app/channels/application_cable/connection.rb
-rw-r--r-- wheel/wheel     314 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/api_key_controller.rb
-rw-r--r-- wheel/wheel     310 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/app_type_controller.rb
-rw-r--r-- wheel/wheel     397 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/app_version_controller.rb
-rw-r--r-- wheel/wheel     119 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/application_controller.rb
-rw-r--r-- wheel/wheel     493 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/auto_notify_controller.rb
-rw-r--r-- wheel/wheel     900 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/before_notify_controller.rb
-rw-r--r-- wheel/wheel     473 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/breadcrumbs_controller.rb
-rw-r--r-- wheel/wheel     841 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/clearance_controller.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/concerns/.keep
-rw-r--r-- wheel/wheel     421 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/handled_controller.rb
-rw-r--r-- wheel/wheel     382 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/ignore_classes_controller.rb
-rw-r--r-- wheel/wheel     256 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/metadata_filters_controller.rb
-rw-r--r-- wheel/wheel     400 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/project_root_controller.rb
-rw-r--r-- wheel/wheel     317 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/release_stage_controller.rb
-rw-r--r-- wheel/wheel     304 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/send_code_controller.rb
-rw-r--r-- wheel/wheel     166 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/send_environment_controller.rb
-rw-r--r-- wheel/wheel     416 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/session_tracking_controller.rb
-rw-r--r-- wheel/wheel     143 2019-10-22 00:17 features/fixtures/rails6/app/app/controllers/unhandled_controller.rb
-rw-r--r-- wheel/wheel      29 2019-10-22 00:17 features/fixtures/rails6/app/app/helpers/application_helper.rb
-rw-r--r-- wheel/wheel     266 2019-10-22 00:17 features/fixtures/rails6/app/app/javascript/channels/consumer.js
-rw-r--r-- wheel/wheel     212 2019-10-22 00:17 features/fixtures/rails6/app/app/javascript/channels/index.js
-rw-r--r-- wheel/wheel     413 2019-10-22 00:17 features/fixtures/rails6/app/app/javascript/packs/application.js
-rw-r--r-- wheel/wheel     269 2019-10-22 00:17 features/fixtures/rails6/app/app/jobs/application_job.rb
-rw-r--r-- wheel/wheel      85 2019-10-22 00:17 features/fixtures/rails6/app/app/jobs/notify_job.rb
-rw-r--r-- wheel/wheel     102 2019-10-22 00:17 features/fixtures/rails6/app/app/mailers/application_mailer.rb
-rw-r--r-- wheel/wheel      78 2019-10-22 00:17 features/fixtures/rails6/app/app/models/application_record.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/app/models/concerns/.keep
-rw-r--r-- wheel/wheel      61 2019-10-22 00:17 features/fixtures/rails6/app/app/models/user.rb
-rw-r--r-- wheel/wheel     335 2019-10-22 00:17 features/fixtures/rails6/app/app/views/layouts/application.html.erb
-rw-r--r-- wheel/wheel     229 2019-10-22 00:17 features/fixtures/rails6/app/app/views/layouts/mailer.html.erb
-rw-r--r-- wheel/wheel      13 2019-10-22 00:17 features/fixtures/rails6/app/app/views/layouts/mailer.text.erb
-rw-r--r-- wheel/wheel    1830 2019-10-22 00:17 features/fixtures/rails6/app/babel.config.js
-rw-r--r-- wheel/wheel     130 2019-10-22 00:17 features/fixtures/rails6/app/config.ru
-rw-r--r-- wheel/wheel     654 2019-10-22 00:17 features/fixtures/rails6/app/config/application.rb
-rw-r--r-- wheel/wheel     207 2019-10-22 00:17 features/fixtures/rails6/app/config/boot.rb
-rw-r--r-- wheel/wheel     213 2019-10-22 00:17 features/fixtures/rails6/app/config/cable.yml
-rw-r--r-- wheel/wheel     464 2019-10-22 00:17 features/fixtures/rails6/app/config/credentials.yml.enc
-rw-r--r-- wheel/wheel     663 2019-10-22 00:17 features/fixtures/rails6/app/config/database.yml
-rw-r--r-- wheel/wheel     128 2019-10-22 00:17 features/fixtures/rails6/app/config/environment.rb
-rw-r--r-- wheel/wheel    2243 2019-10-22 00:17 features/fixtures/rails6/app/config/environments/development.rb
-rw-r--r-- wheel/wheel    5004 2019-10-22 00:17 features/fixtures/rails6/app/config/environments/production.rb
-rw-r--r-- wheel/wheel    1961 2019-10-22 00:17 features/fixtures/rails6/app/config/environments/rails_env.rb
-rw-r--r-- wheel/wheel    1912 2019-10-22 00:17 features/fixtures/rails6/app/config/environments/test.rb
-rw-r--r-- wheel/wheel     216 2019-10-22 00:17 features/fixtures/rails6/app/config/initializers/application_controller_renderer.rb
-rw-r--r-- wheel/wheel     630 2019-10-22 00:17 features/fixtures/rails6/app/config/initializers/assets.rb
-rw-r--r-- wheel/wheel     404 2019-10-22 00:17 features/fixtures/rails6/app/config/initializers/backtrace_silencers.rb
-rw-r--r-- wheel/wheel    1307 2019-10-22 00:17 features/fixtures/rails6/app/config/initializers/bugsnag.rb
-rw-r--r-- wheel/wheel    1282 2019-10-22 00:17 features/fixtures/rails6/app/config/initializers/content_security_policy.rb
-rw-r--r-- wheel/wheel     244 2019-10-22 00:17 features/fixtures/rails6/app/config/initializers/cookies_serializer.rb
-rw-r--r-- wheel/wheel     262 2019-10-22 00:17 features/fixtures/rails6/app/config/initializers/filter_parameter_logging.rb
-rw-r--r-- wheel/wheel     647 2019-10-22 00:17 features/fixtures/rails6/app/config/initializers/inflections.rb
-rw-r--r-- wheel/wheel     156 2019-10-22 00:17 features/fixtures/rails6/app/config/initializers/mime_types.rb
-rw-r--r-- wheel/wheel     485 2019-10-22 00:17 features/fixtures/rails6/app/config/initializers/wrap_parameters.rb
-rw-r--r-- wheel/wheel     849 2019-10-22 00:17 features/fixtures/rails6/app/config/locales/en.yml
-rw-r--r-- wheel/wheel    1483 2019-10-22 00:17 features/fixtures/rails6/app/config/puma.rb
-rw-r--r-- wheel/wheel    2367 2019-10-22 00:17 features/fixtures/rails6/app/config/routes.rb
-rw-r--r-- wheel/wheel    1125 2019-10-22 00:17 features/fixtures/rails6/app/config/secrets.yml
-rw-r--r-- wheel/wheel      97 2019-10-22 00:17 features/fixtures/rails6/app/config/spring.rb
-rw-r--r-- wheel/wheel    1093 2019-10-22 00:17 features/fixtures/rails6/app/config/storage.yml
-rw-r--r-- wheel/wheel     155 2019-10-22 00:17 features/fixtures/rails6/app/config/webpack/development.js
-rw-r--r-- wheel/wheel      82 2019-10-22 00:17 features/fixtures/rails6/app/config/webpack/environment.js
-rw-r--r-- wheel/wheel     154 2019-10-22 00:17 features/fixtures/rails6/app/config/webpack/production.js
-rw-r--r-- wheel/wheel     153 2019-10-22 00:17 features/fixtures/rails6/app/config/webpack/rails_env.js
-rw-r--r-- wheel/wheel     155 2019-10-22 00:17 features/fixtures/rails6/app/config/webpack/test.js
-rw-r--r-- wheel/wheel    2544 2019-10-22 00:17 features/fixtures/rails6/app/config/webpacker.yml
-rw-r--r-- wheel/wheel     482 2019-10-22 00:17 features/fixtures/rails6/app/db/migrate/20180426095545_create_users.rb
-rw-r--r-- wheel/wheel    1390 2019-10-22 00:17 features/fixtures/rails6/app/db/schema.rb
-rw-r--r-- wheel/wheel     370 2019-10-22 00:17 features/fixtures/rails6/app/db/seeds.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/lib/assets/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/lib/tasks/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/log/.keep
-rw-r--r-- wheel/wheel     330 2019-10-22 00:17 features/fixtures/rails6/app/package.json
-rw-r--r-- wheel/wheel     224 2019-10-22 00:17 features/fixtures/rails6/app/postcss.config.js
-rw-r--r-- wheel/wheel    1722 2019-10-22 00:17 features/fixtures/rails6/app/public/404.html
-rw-r--r-- wheel/wheel    1705 2019-10-22 00:17 features/fixtures/rails6/app/public/422.html
-rw-r--r-- wheel/wheel    1635 2019-10-22 00:17 features/fixtures/rails6/app/public/500.html
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/public/apple-touch-icon-precomposed.png
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/public/apple-touch-icon.png
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/public/favicon.ico
-rw-r--r-- wheel/wheel      98 2019-10-22 00:17 features/fixtures/rails6/app/public/robots.txt
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/storage/.keep
-rw-r--r-- wheel/wheel     157 2019-10-22 00:17 features/fixtures/rails6/app/test/application_system_test_case.rb
-rw-r--r-- wheel/wheel     248 2019-10-22 00:17 features/fixtures/rails6/app/test/channels/application_cable/connection_test.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/test/controllers/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/test/fixtures/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/test/fixtures/files/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/test/helpers/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/test/integration/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/test/mailers/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/test/models/.keep
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/test/system/.keep
-rw-r--r-- wheel/wheel     386 2019-10-22 00:17 features/fixtures/rails6/app/test/test_helper.rb
-rw-r--r-- wheel/wheel       0 2019-10-22 00:17 features/fixtures/rails6/app/tmp/.keep
-rw-r--r-- wheel/wheel  218748 2019-10-22 00:17 features/fixtures/rails6/app/yarn.lock
-rw-r--r-- wheel/wheel      13 2019-10-22 00:17 features/fixtures/resque/.dockerignore
-rw-r--r-- wheel/wheel     236 2019-10-22 00:17 features/fixtures/resque/Dockerfile
-rw-r--r-- wheel/wheel      99 2019-10-22 00:17 features/fixtures/resque/Gemfile
-rw-r--r-- wheel/wheel      93 2019-10-22 00:17 features/fixtures/resque/Rakefile
-rw-r--r-- wheel/wheel     252 2019-10-22 00:17 features/fixtures/resque/app.rb
-rw-r--r-- wheel/wheel      22 2019-10-22 00:17 features/fixtures/sidekiq/.dockerignore
-rw-r--r-- wheel/wheel     295 2019-10-22 00:17 features/fixtures/sidekiq/Dockerfile
-rw-r--r-- wheel/wheel     149 2019-10-22 00:17 features/fixtures/sidekiq/app/Gemfile
-rw-r--r-- wheel/wheel     766 2019-10-22 00:17 features/fixtures/sidekiq/app/app.rb
-rw-r--r-- wheel/wheel      46 2019-10-22 00:17 features/fixtures/sidekiq/app/initializers/HandledError.rb
-rw-r--r-- wheel/wheel      48 2019-10-22 00:17 features/fixtures/sidekiq/app/initializers/UnhandledError.rb
-rw-r--r-- wheel/wheel     208 2019-10-22 00:17 features/fixtures/sidekiq/payloads/handled_metadata_ca_false.json
-rw-r--r-- wheel/wheel     240 2019-10-22 00:17 features/fixtures/sidekiq/payloads/handled_metadata_ca_true.json
-rw-r--r-- wheel/wheel     210 2019-10-22 00:17 features/fixtures/sidekiq/payloads/unhandled_metadata_ca_false.json
-rw-r--r-- wheel/wheel     242 2019-10-22 00:17 features/fixtures/sidekiq/payloads/unhandled_metadata_ca_true.json
-rw-r--r-- wheel/wheel      13 2019-10-22 00:17 features/fixtures/sinatra1/.dockerignore
-rw-r--r-- wheel/wheel     201 2019-10-22 00:17 features/fixtures/sinatra1/Dockerfile
-rw-r--r-- wheel/wheel      85 2019-10-22 00:17 features/fixtures/sinatra1/Gemfile
-rw-r--r-- wheel/wheel     103 2019-10-22 00:17 features/fixtures/sinatra1/app.rb
-rw-r--r-- wheel/wheel      13 2019-10-22 00:17 features/fixtures/sinatra2/.dockerignore
-rw-r--r-- wheel/wheel     201 2019-10-22 00:17 features/fixtures/sinatra2/Dockerfile
-rw-r--r-- wheel/wheel      85 2019-10-22 00:17 features/fixtures/sinatra2/Gemfile
-rw-r--r-- wheel/wheel     103 2019-10-22 00:17 features/fixtures/sinatra2/app.rb
-rw-r--r-- wheel/wheel    5769 2019-10-22 00:17 features/plain_features/add_tab.feature
-rw-r--r-- wheel/wheel     856 2019-10-22 00:17 features/plain_features/api_key.feature
-rw-r--r-- wheel/wheel     975 2019-10-22 00:17 features/plain_features/app_type.feature
-rw-r--r-- wheel/wheel     981 2019-10-22 00:17 features/plain_features/app_version.feature
-rw-r--r-- wheel/wheel     767 2019-10-22 00:17 features/plain_features/auto_notify.feature
-rw-r--r-- wheel/wheel    2632 2019-10-22 00:17 features/plain_features/delivery.feature
-rw-r--r-- wheel/wheel    4529 2019-10-22 00:17 features/plain_features/exception_data.feature
-rw-r--r-- wheel/wheel    1823 2019-10-22 00:17 features/plain_features/filters.feature
-rw-r--r-- wheel/wheel    3908 2019-10-22 00:17 features/plain_features/handled_errors.feature
-rw-r--r-- wheel/wheel     988 2019-10-22 00:17 features/plain_features/ignore_classes.feature
-rw-r--r-- wheel/wheel    1269 2019-10-22 00:17 features/plain_features/ignore_report.feature
-rw-r--r-- wheel/wheel    2624 2019-10-22 00:17 features/plain_features/proxies.feature
-rw-r--r-- wheel/wheel    1964 2019-10-22 00:17 features/plain_features/release_stages.feature
-rw-r--r-- wheel/wheel    1773 2019-10-22 00:17 features/plain_features/report_api_key.feature
-rw-r--r-- wheel/wheel    1883 2019-10-22 00:17 features/plain_features/report_severity.feature
-rw-r--r-- wheel/wheel    5630 2019-10-22 00:17 features/plain_features/report_stack_frames.feature
-rw-r--r-- wheel/wheel    5340 2019-10-22 00:17 features/plain_features/report_user.feature
-rw-r--r-- wheel/wheel    5809 2019-10-22 00:17 features/plain_features/unhandled_errors.feature
-rw-r--r-- wheel/wheel    2790 2019-10-22 00:17 features/rails_features/api_key.feature
-rw-r--r-- wheel/wheel    3274 2019-10-22 00:17 features/rails_features/app_type.feature
-rw-r--r-- wheel/wheel    3842 2019-10-22 00:17 features/rails_features/app_version.feature
-rw-r--r-- wheel/wheel    5271 2019-10-22 00:17 features/rails_features/auto_capture_sessions.feature
-rw-r--r-- wheel/wheel    5421 2019-10-22 00:17 features/rails_features/auto_notify.feature
-rw-r--r-- wheel/wheel    5273 2019-10-22 00:17 features/rails_features/before_notify.feature
-rw-r--r-- wheel/wheel    7023 2019-10-22 00:17 features/rails_features/breadcrumbs.feature
-rw-r--r-- wheel/wheel    4912 2019-10-22 00:17 features/rails_features/handled.feature
-rw-r--r-- wheel/wheel    2309 2019-10-22 00:17 features/rails_features/ignore_classes.feature
-rw-r--r-- wheel/wheel    1817 2019-10-22 00:17 features/rails_features/meta_data_filters.feature
-rw-r--r-- wheel/wheel    5652 2019-10-22 00:17 features/rails_features/mongo_breadcrumbs.feature
-rw-r--r-- wheel/wheel    4868 2019-10-22 00:17 features/rails_features/project_root.feature
-rw-r--r-- wheel/wheel    4059 2019-10-22 00:17 features/rails_features/release_stage.feature
-rw-r--r-- wheel/wheel    2648 2019-10-22 00:17 features/rails_features/send_code.feature
-rw-r--r-- wheel/wheel    1840 2019-10-22 00:17 features/rails_features/send_environment.feature
-rw-r--r-- wheel/wheel    1952 2019-10-22 00:17 features/rails_features/unhandled.feature
-rw-r--r-- wheel/wheel    4574 2019-10-22 00:17 features/rails_features/user_info.feature
-rw-r--r-- wheel/wheel    5457 2019-10-22 00:17 features/sidekiq.feature
-rw-r--r-- wheel/wheel    1314 2019-10-22 00:17 features/steps/ruby_notifier_steps.rb
-rw-r--r-- wheel/wheel    1719 2019-10-22 00:17 features/support/env.rb
-rw-r--r-- wheel/wheel    1042 2019-10-22 00:17 issue_template.md
-rw-r--r-- wheel/wheel   10172 2019-10-22 00:17 lib/bugsnag.rb
-rw-r--r-- wheel/wheel    2180 2019-10-22 00:17 lib/bugsnag/breadcrumbs/breadcrumb.rb
-rw-r--r-- wheel/wheel     405 2019-10-22 00:17 lib/bugsnag/breadcrumbs/breadcrumbs.rb
-rw-r--r-- wheel/wheel    2340 2019-10-22 00:17 lib/bugsnag/breadcrumbs/validator.rb
-rw-r--r-- wheel/wheel    3161 2019-10-22 00:17 lib/bugsnag/cleaner.rb
-rw-r--r-- wheel/wheel    9747 2019-10-22 00:17 lib/bugsnag/configuration.rb
-rw-r--r-- wheel/wheel     763 2019-10-22 00:17 lib/bugsnag/delivery.rb
-rw-r--r-- wheel/wheel    2213 2019-10-22 00:17 lib/bugsnag/delivery/synchronous.rb
-rw-r--r-- wheel/wheel    1458 2019-10-22 00:17 lib/bugsnag/delivery/thread_queue.rb
-rw-r--r-- wheel/wheel    6271 2019-10-22 00:17 lib/bugsnag/helpers.rb
-rw-r--r-- wheel/wheel    1155 2019-10-22 00:17 lib/bugsnag/integrations/delayed_job.rb
-rw-r--r-- wheel/wheel    1003 2019-10-22 00:17 lib/bugsnag/integrations/mailman.rb
-rw-r--r-- wheel/wheel    4205 2019-10-22 00:17 lib/bugsnag/integrations/mongo.rb
-rw-r--r-- wheel/wheel    1833 2019-10-22 00:17 lib/bugsnag/integrations/que.rb
-rw-r--r-- wheel/wheel    2905 2019-10-22 00:17 lib/bugsnag/integrations/rack.rb
-rw-r--r-- wheel/wheel     782 2019-10-22 00:17 lib/bugsnag/integrations/rails/active_record_rescue.rb
-rw-r--r-- wheel/wheel    1187 2019-10-22 00:17 lib/bugsnag/integrations/rails/controller_methods.rb
-rw-r--r-- wheel/wheel    2947 2019-10-22 00:17 lib/bugsnag/integrations/rails/rails_breadcrumbs.rb
-rw-r--r-- wheel/wheel    3126 2019-10-22 00:17 lib/bugsnag/integrations/railtie.rb
-rw-r--r-- wheel/wheel    2152 2019-10-22 00:17 lib/bugsnag/integrations/rake.rb
-rw-r--r-- wheel/wheel    2130 2019-10-22 00:17 lib/bugsnag/integrations/resque.rb
-rw-r--r-- wheel/wheel    1137 2019-10-22 00:17 lib/bugsnag/integrations/shoryuken.rb
-rw-r--r-- wheel/wheel    2166 2019-10-22 00:17 lib/bugsnag/integrations/sidekiq.rb
-rw-r--r-- wheel/wheel     191 2019-10-22 00:17 lib/bugsnag/meta_data.rb
-rw-r--r-- wheel/wheel     528 2019-10-22 00:17 lib/bugsnag/middleware/breadcrumbs.rb
-rw-r--r-- wheel/wheel     387 2019-10-22 00:17 lib/bugsnag/middleware/callbacks.rb
-rw-r--r-- wheel/wheel    1314 2019-10-22 00:17 lib/bugsnag/middleware/classify_error.rb
-rw-r--r-- wheel/wheel     990 2019-10-22 00:17 lib/bugsnag/middleware/clearance_user.rb
-rw-r--r-- wheel/wheel    2668 2019-10-22 00:17 lib/bugsnag/middleware/delayed_job.rb
-rw-r--r-- wheel/wheel    1074 2019-10-22 00:17 lib/bugsnag/middleware/exception_meta_data.rb
-rw-r--r-- wheel/wheel     660 2019-10-22 00:17 lib/bugsnag/middleware/ignore_error_class.rb
-rw-r--r-- wheel/wheel     363 2019-10-22 00:17 lib/bugsnag/middleware/mailman.rb
-rw-r--r-- wheel/wheel    2711 2019-10-22 00:17 lib/bugsnag/middleware/rack_request.rb
-rw-r--r-- wheel/wheel    1096 2019-10-22 00:17 lib/bugsnag/middleware/rails3_request.rb
-rw-r--r-- wheel/wheel     529 2019-10-22 00:17 lib/bugsnag/middleware/rake.rb
-rw-r--r-- wheel/wheel     516 2019-10-22 00:17 lib/bugsnag/middleware/session_data.rb
-rw-r--r-- wheel/wheel     457 2019-10-22 00:17 lib/bugsnag/middleware/sidekiq.rb
-rw-r--r-- wheel/wheel     790 2019-10-22 00:17 lib/bugsnag/middleware/suggestion_data.rb
-rw-r--r-- wheel/wheel    1477 2019-10-22 00:17 lib/bugsnag/middleware/warden_user.rb
-rw-r--r-- wheel/wheel    3860 2019-10-22 00:17 lib/bugsnag/middleware_stack.rb
-rw-r--r-- wheel/wheel    7029 2019-10-22 00:17 lib/bugsnag/report.rb
-rw-r--r-- wheel/wheel    3937 2019-10-22 00:17 lib/bugsnag/session_tracker.rb
-rw-r--r-- wheel/wheel    3270 2019-10-22 00:17 lib/bugsnag/stacktrace.rb
-rw-r--r-- wheel/wheel      76 2019-10-22 00:17 lib/bugsnag/tasks.rb
-rw-r--r-- wheel/wheel     390 2019-10-22 00:17 lib/bugsnag/tasks/bugsnag.rake
-rw-r--r-- wheel/wheel    1563 2019-10-22 00:17 lib/bugsnag/utility/circular_buffer.rb
-rw-r--r-- wheel/wheel      98 2019-10-22 00:17 lib/bugsnag/version.rb
-rw-r--r-- wheel/wheel     641 2019-10-22 00:17 lib/generators/bugsnag/bugsnag_generator.rb
-rw-r--r-- wheel/wheel    2532 2019-10-22 00:17 spec/breadcrumbs/breadcrumb_spec.rb
-rw-r--r-- wheel/wheel    7306 2019-10-22 00:17 spec/breadcrumbs/validator_spec.rb
-rw-r--r-- wheel/wheel   12454 2019-10-22 00:17 spec/bugsnag_spec.rb
-rw-r--r-- wheel/wheel    5253 2019-10-22 00:17 spec/cleaner_spec.rb
-rw-r--r-- wheel/wheel   13373 2019-10-22 00:17 spec/configuration_spec.rb
-rw-r--r-- wheel/wheel     153 2019-10-22 00:17 spec/fixtures/apps/rails-initializer-config/Gemfile
-rw-r--r-- wheel/wheel     353 2019-10-22 00:17 spec/fixtures/apps/rails-initializer-config/config.ru
-rw-r--r-- wheel/wheel      88 2019-10-22 00:17 spec/fixtures/apps/rails-initializer-config/config/initializers/bugsnag.rb
-rw-r--r-- wheel/wheel     153 2019-10-22 00:17 spec/fixtures/apps/rails-invalid-initializer-config/Gemfile
-rw-r--r-- wheel/wheel     353 2019-10-22 00:17 spec/fixtures/apps/rails-invalid-initializer-config/config.ru
-rw-r--r-- wheel/wheel      57 2019-10-22 00:17 spec/fixtures/apps/rails-invalid-initializer-config/config/initializers/bugsnag.rb
-rw-r--r-- wheel/wheel     153 2019-10-22 00:17 spec/fixtures/apps/rails-no-config/Gemfile
-rw-r--r-- wheel/wheel     344 2019-10-22 00:17 spec/fixtures/apps/rails-no-config/config.ru
-rw-r--r-- wheel/wheel      66 2019-10-22 00:17 spec/fixtures/apps/scripts/Gemfile
-rw-r--r-- wheel/wheel      77 2019-10-22 00:17 spec/fixtures/apps/scripts/configure_invalid_key.rb
-rw-r--r-- wheel/wheel     107 2019-10-22 00:17 spec/fixtures/apps/scripts/configure_key.rb
-rw-r--r-- wheel/wheel      37 2019-10-22 00:17 spec/fixtures/apps/scripts/no_config.rb
-rw-r--r-- wheel/wheel      29 2019-10-22 00:17 spec/fixtures/crashes/end_of_file.rb
-rw-r--r-- wheel/wheel      13 2019-10-22 00:17 spec/fixtures/crashes/short_file.rb
-rw-r--r-- wheel/wheel      29 2019-10-22 00:17 spec/fixtures/crashes/start_of_file.rb
-rw-r--r-- wheel/wheel     232 2019-10-22 00:17 spec/fixtures/middleware/internal_info_setter.rb
-rw-r--r-- wheel/wheel     221 2019-10-22 00:17 spec/fixtures/middleware/public_info_setter.rb
-rw-r--r-- wheel/wheel     715 2019-10-22 00:17 spec/fixtures/tasks/Rakefile
-rw-r--r-- wheel/wheel    5506 2019-10-22 00:17 spec/helper_spec.rb
-rw-r--r-- wheel/wheel    2714 2019-10-22 00:17 spec/integration_spec.rb
-rw-r--r-- wheel/wheel     914 2019-10-22 00:17 spec/integrations/clearance_user_spec.rb
-rw-r--r-- wheel/wheel    4345 2019-10-22 00:17 spec/integrations/logger_spec.rb
-rw-r--r-- wheel/wheel    2584 2019-10-22 00:17 spec/integrations/mailman_spec.rb
-rw-r--r-- wheel/wheel    9167 2019-10-22 00:17 spec/integrations/mongo_spec.rb
-rw-r--r-- wheel/wheel    2894 2019-10-22 00:17 spec/integrations/que_spec.rb
-rw-r--r-- wheel/wheel    7098 2019-10-22 00:17 spec/integrations/rack_spec.rb
-rw-r--r-- wheel/wheel    2096 2019-10-22 00:17 spec/integrations/rails3_request_spec.rb
-rw-r--r-- wheel/wheel    2143 2019-10-22 00:17 spec/integrations/rake_spec.rb
-rw-r--r-- wheel/wheel    3142 2019-10-22 00:17 spec/integrations/resque_spec.rb
-rw-r--r-- wheel/wheel    2193 2019-10-22 00:17 spec/integrations/shoryuken_spec.rb
-rw-r--r-- wheel/wheel    4809 2019-10-22 00:17 spec/integrations/sidekiq_spec.rb
-rw-r--r-- wheel/wheel    1003 2019-10-22 00:17 spec/integrations/warden_user_spec.rb
-rw-r--r-- wheel/wheel    2537 2019-10-22 00:17 spec/middleware/exception_meta_data_spec.rb
-rw-r--r-- wheel/wheel    7919 2019-10-22 00:17 spec/middleware_spec.rb
-rw-r--r-- wheel/wheel    5147 2019-10-22 00:17 spec/middleware_stack_spec.rb
-rw-r--r-- wheel/wheel   42126 2019-10-22 00:17 spec/report_spec.rb
-rw-r--r-- wheel/wheel    5747 2019-10-22 00:17 spec/session_tracker_spec.rb
-rw-r--r-- wheel/wheel    2320 2019-10-22 00:17 spec/spec_helper.rb
-rw-r--r-- wheel/wheel    2590 2019-10-22 00:17 spec/stacktrace_spec.rb
-rw-r--r-- wheel/wheel    2211 2019-10-22 00:17 spec/utility/circular_buffer_spec.rb

## Unpacked size
935871 bytes
After (details)
## Compressed .gem size
40960 bytes

## Gem contents
-rw-r--r-- wheel/wheel   28183 2019-10-22 00:17 CHANGELOG.md
-rw-r--r-- wheel/wheel    1051 2019-10-22 00:17 LICENSE.txt
-rw-r--r-- wheel/wheel    2788 2019-10-22 00:17 README.md
-rw-r--r-- wheel/wheel   10172 2019-10-22 00:17 lib/bugsnag.rb
-rw-r--r-- wheel/wheel    2180 2019-10-22 00:17 lib/bugsnag/breadcrumbs/breadcrumb.rb
-rw-r--r-- wheel/wheel     405 2019-10-22 00:17 lib/bugsnag/breadcrumbs/breadcrumbs.rb
-rw-r--r-- wheel/wheel    2340 2019-10-22 00:17 lib/bugsnag/breadcrumbs/validator.rb
-rw-r--r-- wheel/wheel    3161 2019-10-22 00:17 lib/bugsnag/cleaner.rb
-rw-r--r-- wheel/wheel    9747 2019-10-22 00:17 lib/bugsnag/configuration.rb
-rw-r--r-- wheel/wheel     763 2019-10-22 00:17 lib/bugsnag/delivery.rb
-rw-r--r-- wheel/wheel    2213 2019-10-22 00:17 lib/bugsnag/delivery/synchronous.rb
-rw-r--r-- wheel/wheel    1458 2019-10-22 00:17 lib/bugsnag/delivery/thread_queue.rb
-rw-r--r-- wheel/wheel    6271 2019-10-22 00:17 lib/bugsnag/helpers.rb
-rw-r--r-- wheel/wheel    1155 2019-10-22 00:17 lib/bugsnag/integrations/delayed_job.rb
-rw-r--r-- wheel/wheel    1003 2019-10-22 00:17 lib/bugsnag/integrations/mailman.rb
-rw-r--r-- wheel/wheel    4205 2019-10-22 00:17 lib/bugsnag/integrations/mongo.rb
-rw-r--r-- wheel/wheel    1833 2019-10-22 00:17 lib/bugsnag/integrations/que.rb
-rw-r--r-- wheel/wheel    2905 2019-10-22 00:17 lib/bugsnag/integrations/rack.rb
-rw-r--r-- wheel/wheel     782 2019-10-22 00:17 lib/bugsnag/integrations/rails/active_record_rescue.rb
-rw-r--r-- wheel/wheel    1187 2019-10-22 00:17 lib/bugsnag/integrations/rails/controller_methods.rb
-rw-r--r-- wheel/wheel    2947 2019-10-22 00:17 lib/bugsnag/integrations/rails/rails_breadcrumbs.rb
-rw-r--r-- wheel/wheel    3126 2019-10-22 00:17 lib/bugsnag/integrations/railtie.rb
-rw-r--r-- wheel/wheel    2152 2019-10-22 00:17 lib/bugsnag/integrations/rake.rb
-rw-r--r-- wheel/wheel    2130 2019-10-22 00:17 lib/bugsnag/integrations/resque.rb
-rw-r--r-- wheel/wheel    1137 2019-10-22 00:17 lib/bugsnag/integrations/shoryuken.rb
-rw-r--r-- wheel/wheel    2166 2019-10-22 00:17 lib/bugsnag/integrations/sidekiq.rb
-rw-r--r-- wheel/wheel     191 2019-10-22 00:17 lib/bugsnag/meta_data.rb
-rw-r--r-- wheel/wheel     528 2019-10-22 00:17 lib/bugsnag/middleware/breadcrumbs.rb
-rw-r--r-- wheel/wheel     387 2019-10-22 00:17 lib/bugsnag/middleware/callbacks.rb
-rw-r--r-- wheel/wheel    1314 2019-10-22 00:17 lib/bugsnag/middleware/classify_error.rb
-rw-r--r-- wheel/wheel     990 2019-10-22 00:17 lib/bugsnag/middleware/clearance_user.rb
-rw-r--r-- wheel/wheel    2668 2019-10-22 00:17 lib/bugsnag/middleware/delayed_job.rb
-rw-r--r-- wheel/wheel    1074 2019-10-22 00:17 lib/bugsnag/middleware/exception_meta_data.rb
-rw-r--r-- wheel/wheel     660 2019-10-22 00:17 lib/bugsnag/middleware/ignore_error_class.rb
-rw-r--r-- wheel/wheel     363 2019-10-22 00:17 lib/bugsnag/middleware/mailman.rb
-rw-r--r-- wheel/wheel    2711 2019-10-22 00:17 lib/bugsnag/middleware/rack_request.rb
-rw-r--r-- wheel/wheel    1096 2019-10-22 00:17 lib/bugsnag/middleware/rails3_request.rb
-rw-r--r-- wheel/wheel     529 2019-10-22 00:17 lib/bugsnag/middleware/rake.rb
-rw-r--r-- wheel/wheel     516 2019-10-22 00:17 lib/bugsnag/middleware/session_data.rb
-rw-r--r-- wheel/wheel     457 2019-10-22 00:17 lib/bugsnag/middleware/sidekiq.rb
-rw-r--r-- wheel/wheel     790 2019-10-22 00:17 lib/bugsnag/middleware/suggestion_data.rb
-rw-r--r-- wheel/wheel    1477 2019-10-22 00:17 lib/bugsnag/middleware/warden_user.rb
-rw-r--r-- wheel/wheel    3860 2019-10-22 00:17 lib/bugsnag/middleware_stack.rb
-rw-r--r-- wheel/wheel    7029 2019-10-22 00:17 lib/bugsnag/report.rb
-rw-r--r-- wheel/wheel    3937 2019-10-22 00:17 lib/bugsnag/session_tracker.rb
-rw-r--r-- wheel/wheel    3270 2019-10-22 00:17 lib/bugsnag/stacktrace.rb
-rw-r--r-- wheel/wheel      76 2019-10-22 00:17 lib/bugsnag/tasks.rb
-rw-r--r-- wheel/wheel     390 2019-10-22 00:17 lib/bugsnag/tasks/bugsnag.rake
-rw-r--r-- wheel/wheel    1563 2019-10-22 00:17 lib/bugsnag/utility/circular_buffer.rb
-rw-r--r-- wheel/wheel      98 2019-10-22 00:17 lib/bugsnag/version.rb
-rw-r--r-- wheel/wheel     641 2019-10-22 00:17 lib/generators/bugsnag/bugsnag_generator.rb

## Unpacked size
134075 bytes

Discussion

Alternative Approaches

N/A

Outstanding Questions

N/A

Linked issues

N/A

Review

For the submitter, initial self-review:

  • Commented on code changes inline explain the reasoning behind the approach
  • Reviewed the test cases added for completeness and possible points for discussion
  • A changelog entry was added for the goal of this pull request
  • Check the scope of the changeset - is everything in the diff required for the pull request?
  • This pull request is ready for:
    • Initial review of the intended approach, not yet feature complete
    • Structural review of the classes, functions, and properties modified
    • Final review

For the pull request reviewer(s), this changeset has been reviewed for:

  • Consistency across platforms for structures or concepts added or modified
  • Consistency between the changeset and the goal stated above
  • Internal consistency with the rest of the library - is there any overlap between existing interfaces and any which have been added?
  • Usage friction - is the proposed change in usage cumbersome or complicated?
  • Performance and complexity - are there any cases of unexpected O(n^3) when iterating, recursing, flat mapping, etc?
  • Concurrency concerns - if components are accessed asynchronously, what issues will arise
  • Thoroughness of added tests and any missing edge cases
  • Idiomatic use of the language

@tomlongridge
Copy link
Contributor

Thanks @t-richards, we're taking a look.

@tomlongridge tomlongridge added the scheduled Work is starting on this feature/bug label Oct 23, 2019
@mattdyoung mattdyoung added the feature request Request for a new feature label Oct 23, 2019
@bugsnagbot bugsnagbot added backlog We hope to fix this feature/bug in the future scheduled Work is starting on this feature/bug and removed scheduled Work is starting on this feature/bug backlog We hope to fix this feature/bug in the future labels Oct 23, 2019
@imjoehaines imjoehaines mentioned this pull request Aug 3, 2020
15 tasks
@imjoehaines
Copy link
Member

Thanks for the PR @t-richards! I'll merge this in #621 as we need a couple of extra files for our Docker setup to work on CI

@imjoehaines imjoehaines closed this Aug 3, 2020
@imjoehaines imjoehaines mentioned this pull request Aug 7, 2020
@phillipsam
Copy link

A fix for this has now been released in v6.16.0.

@phillipsam phillipsam added released This feature/bug fix has been released and removed scheduled Work is starting on this feature/bug labels Aug 12, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request Request for a new feature released This feature/bug fix has been released
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants