├── .github ├── ISSUE_TEMPLATE │ ├── A.md │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── support.md └── workflows │ ├── license-audit.yml │ ├── maze-runner.yml │ ├── run-maze-runner.yml │ └── test-package.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .yardopts ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile-maze-runner ├── LICENSE.txt ├── README.md ├── Rakefile ├── TESTING.md ├── UPGRADING.md ├── VERSION ├── bugsnag.gemspec ├── config └── .gitignore ├── docker-compose.yml ├── dockerfiles ├── Dockerfile.jruby-unit-tests ├── Dockerfile.ruby-maze-runner └── Dockerfile.ruby-unit-tests ├── example ├── README.md ├── padrino │ ├── .components │ ├── .gitignore │ ├── Gemfile │ ├── README.md │ ├── Rakefile │ ├── app │ │ ├── app.rb │ │ └── templates │ │ │ └── index.md │ ├── config.ru │ └── config │ │ ├── apps.rb │ │ └── boot.rb ├── rack │ ├── Gemfile │ ├── README.md │ ├── server.rb │ └── templates │ │ └── index.md ├── rails-42 │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ ├── images │ │ │ │ └── .keep │ │ │ ├── javascripts │ │ │ │ └── application.js │ │ │ └── stylesheets │ │ │ │ └── application.css │ │ ├── controllers │ │ │ └── application_controller.rb │ │ ├── helpers │ │ │ ├── application_helper.rb │ │ │ └── test_delayed_job_helper.rb │ │ └── views │ │ │ ├── application │ │ │ ├── data.html.erb │ │ │ ├── index.html.erb │ │ │ ├── notify.html.erb │ │ │ └── severity.html.erb │ │ │ ├── index.md │ │ │ └── layouts │ │ │ └── application.html.erb │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── assets.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── bugsnag.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ ├── session_store.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── routes.rb │ │ └── secrets.yml │ ├── db │ │ ├── migrate │ │ │ └── 20171006132129_create_delayed_jobs.rb │ │ ├── schema.rb │ │ └── seeds.rb │ └── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── favicon.ico │ │ └── robots.txt ├── rails-51 │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ ├── config │ │ │ │ └── manifest.js │ │ │ ├── images │ │ │ │ └── .keep │ │ │ ├── javascripts │ │ │ │ ├── application.js │ │ │ │ ├── cable.js │ │ │ │ └── channels │ │ │ │ │ └── .keep │ │ │ └── stylesheets │ │ │ │ └── application.css │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ ├── que_controller.rb │ │ │ ├── resque_controller.rb │ │ │ └── sidekiq_controller.rb │ │ ├── helpers │ │ │ └── application_helper.rb │ │ ├── jobs │ │ │ └── que_crash.rb │ │ ├── views │ │ │ ├── application │ │ │ │ ├── data.html.erb │ │ │ │ ├── index.html.erb │ │ │ │ ├── notify.html.erb │ │ │ │ └── severity.html.erb │ │ │ ├── index.md │ │ │ ├── layouts │ │ │ │ └── application.html.erb │ │ │ ├── que.md │ │ │ ├── que │ │ │ │ ├── crash.html.erb │ │ │ │ ├── index.html.erb │ │ │ │ └── metadata.html.erb │ │ │ ├── resque.md │ │ │ ├── resque │ │ │ │ ├── crash.html.erb │ │ │ │ ├── index.html.erb │ │ │ │ └── metadata.html.erb │ │ │ ├── sidekiq.md │ │ │ └── sidekiq │ │ │ │ ├── crash.html.erb │ │ │ │ ├── index.html.erb │ │ │ │ └── metadata.html.erb │ │ └── workers │ │ │ ├── resque_workers.rb │ │ │ └── sidekiq_workers.rb │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ ├── rake │ │ ├── setup │ │ ├── update │ │ └── yarn │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ ├── que.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── application_controller_renderer.rb │ │ │ ├── assets.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── bugsnag.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── secrets.yml │ │ ├── sidekiq.yml │ │ └── spring.rb │ ├── db │ │ └── seeds.rb │ ├── lib │ │ └── tasks │ │ │ └── resque:setup.rake │ ├── package.json │ └── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ └── robots.txt ├── rails-60 │ ├── .browserslistrc │ ├── .gitignore │ ├── Gemfile │ ├── README.md │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ ├── config │ │ │ │ └── manifest.js │ │ │ └── images │ │ │ │ └── .keep │ │ ├── channels │ │ │ └── application_cable │ │ │ │ ├── channel.rb │ │ │ │ └── connection.rb │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ ├── que_controller.rb │ │ │ ├── resque_controller.rb │ │ │ └── sidekiq_controller.rb │ │ ├── helpers │ │ │ └── application_helper.rb │ │ ├── javascript │ │ │ ├── channels │ │ │ │ ├── consumer.js │ │ │ │ └── index.js │ │ │ └── packs │ │ │ │ └── application.js │ │ ├── jobs │ │ │ ├── application_job.rb │ │ │ └── que_crash.rb │ │ ├── mailers │ │ │ └── application_mailer.rb │ │ ├── models │ │ │ ├── application_record.rb │ │ │ └── concerns │ │ │ │ └── .keep │ │ ├── views │ │ │ ├── application │ │ │ │ ├── data.html.erb │ │ │ │ ├── index.html.erb │ │ │ │ ├── notify.html.erb │ │ │ │ └── severity.html.erb │ │ │ ├── layouts │ │ │ │ ├── application.html.erb │ │ │ │ ├── mailer.html.erb │ │ │ │ └── mailer.text.erb │ │ │ ├── que │ │ │ │ ├── crash.html.erb │ │ │ │ └── index.html.erb │ │ │ ├── resque │ │ │ │ ├── crash.html.erb │ │ │ │ ├── index.html.erb │ │ │ │ └── metadata.html.erb │ │ │ └── sidekiq │ │ │ │ ├── crash.html.erb │ │ │ │ ├── index.html.erb │ │ │ │ └── metadata.html.erb │ │ └── workers │ │ │ ├── resque_workers.rb │ │ │ └── sidekiq_workers.rb │ ├── babel.config.js │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── credentials.yml.enc │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ ├── que.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── application_controller_renderer.rb │ │ │ ├── assets.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── bugsnag.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── spring.rb │ │ └── storage.yml │ ├── db │ │ └── seeds.rb │ ├── lib │ │ ├── assets │ │ │ └── .keep │ │ └── tasks │ │ │ └── resque:setup.rake │ ├── log │ │ └── .keep │ ├── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ ├── robots.txt │ │ └── style.css │ └── storage │ │ └── .keep ├── shoryuken │ ├── Gemfile │ ├── README.md │ ├── shoryuken.rb │ └── shoryuken.yml └── sinatra │ ├── Gemfile │ ├── README.md │ ├── config.ru │ └── templates │ └── index.md ├── features ├── .gitignore ├── delayed_job.feature ├── fixtures │ ├── delayed_job │ │ ├── Dockerfile │ │ └── app │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ ├── assets │ │ │ │ ├── config │ │ │ │ │ └── manifest.js │ │ │ │ ├── images │ │ │ │ │ └── .keep │ │ │ │ ├── javascripts │ │ │ │ │ ├── application.js │ │ │ │ │ ├── cable.js │ │ │ │ │ └── channels │ │ │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ │ └── application.css │ │ │ ├── channels │ │ │ │ └── application_cable │ │ │ │ │ ├── channel.rb │ │ │ │ │ └── connection.rb │ │ │ ├── controllers │ │ │ │ ├── application_controller.rb │ │ │ │ └── concerns │ │ │ │ │ └── .keep │ │ │ ├── helpers │ │ │ │ └── application_helper.rb │ │ │ ├── jobs │ │ │ │ ├── application_job.rb │ │ │ │ └── test_report_context_job.rb │ │ │ ├── mailers │ │ │ │ └── application_mailer.rb │ │ │ ├── models │ │ │ │ ├── application_record.rb │ │ │ │ ├── concerns │ │ │ │ │ └── .keep │ │ │ │ └── test_model.rb │ │ │ └── views │ │ │ │ └── layouts │ │ │ │ ├── application.html.erb │ │ │ │ ├── mailer.html.erb │ │ │ │ └── mailer.text.erb │ │ │ ├── config.ru │ │ │ ├── config │ │ │ ├── application.rb │ │ │ ├── boot.rb │ │ │ ├── cable.yml │ │ │ ├── database.yml │ │ │ ├── environment.rb │ │ │ ├── environments │ │ │ │ ├── development.rb │ │ │ │ ├── production.rb │ │ │ │ └── test.rb │ │ │ ├── initializers │ │ │ │ ├── application_controller_renderer.rb │ │ │ │ ├── assets.rb │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ ├── bugsnag.rb │ │ │ │ ├── cookies_serializer.rb │ │ │ │ ├── delayed_job.rb │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ ├── inflections.rb │ │ │ │ ├── mime_types.rb │ │ │ │ ├── new_framework_defaults.rb │ │ │ │ ├── session_store.rb │ │ │ │ └── wrap_parameters.rb │ │ │ ├── locales │ │ │ │ └── en.yml │ │ │ ├── puma.rb │ │ │ ├── routes.rb │ │ │ ├── secrets.yml │ │ │ └── spring.rb │ │ │ ├── db │ │ │ ├── migrate │ │ │ │ ├── 20181024232549_create_delayed_jobs.rb │ │ │ │ └── 20181024232817_create_test_models.rb │ │ │ ├── schema.rb │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ ├── assets │ │ │ │ └── .keep │ │ │ └── tasks │ │ │ │ └── .keep │ │ │ ├── log │ │ │ └── .keep │ │ │ ├── public │ │ │ ├── 404.html │ │ │ ├── 422.html │ │ │ ├── 500.html │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon.ico │ │ │ └── robots.txt │ │ │ ├── test │ │ │ ├── controllers │ │ │ │ └── .keep │ │ │ ├── fixtures │ │ │ │ ├── .keep │ │ │ │ ├── files │ │ │ │ │ └── .keep │ │ │ │ └── test_models.yml │ │ │ ├── helpers │ │ │ │ └── .keep │ │ │ ├── integration │ │ │ │ └── .keep │ │ │ ├── mailers │ │ │ │ └── .keep │ │ │ ├── models │ │ │ │ ├── .keep │ │ │ │ └── test_model_test.rb │ │ │ └── test_helper.rb │ │ │ └── tmp │ │ │ └── .keep │ ├── docker-compose.yml │ ├── expected_breadcrumbs │ │ ├── active_job.json │ │ ├── mongo_failed.json │ │ ├── mongo_filtered_request.json │ │ ├── mongo_filtered_result.json │ │ ├── mongo_success.json │ │ ├── request.json │ │ ├── sql_with_bindings.json │ │ └── sql_without_bindings.json │ ├── mailman │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── app │ │ │ ├── Gemfile │ │ │ ├── app.rb │ │ │ ├── emails │ │ │ ├── handled_error.eml │ │ │ └── unhandled_error.eml │ │ │ └── run.sh │ ├── plain │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── Gemfile │ │ │ ├── app.rb │ │ │ ├── configuration │ │ │ │ ├── api_key.rb │ │ │ │ ├── proxy.rb │ │ │ │ ├── send_handled.rb │ │ │ │ └── send_unhandled.rb │ │ │ ├── delivery │ │ │ │ ├── fork_threadpool.rb │ │ │ │ ├── synchronous.rb │ │ │ │ └── threadpool.rb │ │ │ ├── exception_data │ │ │ │ ├── crash.rb │ │ │ │ ├── handled_context.rb │ │ │ │ ├── handled_hash.rb │ │ │ │ ├── handled_meta_data.rb │ │ │ │ ├── handled_user_id.rb │ │ │ │ ├── unhandled_context.rb │ │ │ │ ├── unhandled_hash.rb │ │ │ │ ├── unhandled_meta_data.rb │ │ │ │ └── unhandled_user_id.rb │ │ │ ├── filters │ │ │ │ ├── additional_filters.rb │ │ │ │ └── default_filters.rb │ │ │ ├── handled │ │ │ │ ├── block_metadata.rb │ │ │ │ ├── ignore_exception.rb │ │ │ │ ├── notify_exception.rb │ │ │ │ └── notify_string.rb │ │ │ ├── ignore_classes │ │ │ │ ├── handled.rb │ │ │ │ ├── ignore_error.rb │ │ │ │ └── unhandled.rb │ │ │ ├── report_modification │ │ │ │ ├── add_tab.rb │ │ │ │ ├── add_tab_existing.rb │ │ │ │ ├── add_tab_override.rb │ │ │ │ ├── ignore_report.rb │ │ │ │ ├── initiators │ │ │ │ │ ├── handled_before_notify.rb │ │ │ │ │ ├── handled_block.rb │ │ │ │ │ ├── handled_on_error.rb │ │ │ │ │ ├── unhandled_before_notify.rb │ │ │ │ │ └── unhandled_on_error.rb │ │ │ │ ├── modify_api_key.rb │ │ │ │ ├── modify_severity.rb │ │ │ │ ├── remove_user_details.rb │ │ │ │ ├── set_custom_user_details.rb │ │ │ │ └── set_user_details.rb │ │ │ ├── stack_frame_modification │ │ │ │ ├── initiators │ │ │ │ │ ├── handled_before_notify.rb │ │ │ │ │ ├── handled_block.rb │ │ │ │ │ ├── handled_on_error.rb │ │ │ │ │ ├── unhandled_before_notify.rb │ │ │ │ │ └── unhandled_on_error.rb │ │ │ │ ├── mark_frames_in_project.rb │ │ │ │ └── remove_stack_frame.rb │ │ │ └── unhandled │ │ │ │ ├── bad_syntax.rb │ │ │ │ ├── custom_error.rb │ │ │ │ ├── exit_after_exception.rb │ │ │ │ ├── interrupt.rb │ │ │ │ ├── load_error.rb │ │ │ │ ├── local_jump_error.rb │ │ │ │ ├── name_error.rb │ │ │ │ ├── no_method_error.rb │ │ │ │ ├── runtime_error.rb │ │ │ │ ├── syntax_error.rb │ │ │ │ ├── system_call_error.rb │ │ │ │ └── system_exit.rb │ │ └── json │ │ │ ├── delivery_fork.json │ │ │ ├── delivery_synchronous.json │ │ │ ├── delivery_threadpool.json │ │ │ └── filters_default_metadata_filters.json │ ├── que │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── app │ │ │ ├── Gemfile │ │ │ ├── app.rb │ │ │ ├── enqueue-job.rb │ │ │ └── setup-que.rb │ ├── rack │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── app │ │ │ ├── Gemfile │ │ │ └── app.rb │ ├── rails3 │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── app │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ ├── assets │ │ │ │ ├── images │ │ │ │ │ └── rails.png │ │ │ │ ├── javascripts │ │ │ │ │ └── application.js │ │ │ │ └── stylesheets │ │ │ │ │ └── application.css │ │ │ ├── controllers │ │ │ │ ├── api_key_controller.rb │ │ │ │ ├── app_type_controller.rb │ │ │ │ ├── app_version_controller.rb │ │ │ │ ├── application_controller.rb │ │ │ │ ├── auto_notify_controller.rb │ │ │ │ ├── before_notify_controller.rb │ │ │ │ ├── breadcrumbs_controller.rb │ │ │ │ ├── feature_flags_controller.rb │ │ │ │ ├── handled_controller.rb │ │ │ │ ├── ignore_classes_controller.rb │ │ │ │ ├── metadata_filters_controller.rb │ │ │ │ ├── project_root_controller.rb │ │ │ │ ├── release_stage_controller.rb │ │ │ │ ├── send_code_controller.rb │ │ │ │ ├── send_environment_controller.rb │ │ │ │ ├── session_tracking_controller.rb │ │ │ │ ├── unhandled_controller.rb │ │ │ │ └── warden_controller.rb │ │ │ ├── helpers │ │ │ │ └── application_helper.rb │ │ │ ├── mailers │ │ │ │ └── .gitkeep │ │ │ ├── models │ │ │ │ ├── .gitkeep │ │ │ │ └── user.rb │ │ │ └── views │ │ │ │ └── layouts │ │ │ │ └── application.html.erb │ │ │ ├── config.ru │ │ │ ├── config │ │ │ ├── application.rb │ │ │ ├── boot.rb │ │ │ ├── database.yml │ │ │ ├── environment.rb │ │ │ ├── environments │ │ │ │ ├── development.rb │ │ │ │ ├── production.rb │ │ │ │ └── rails_env.rb │ │ │ ├── initializers │ │ │ │ ├── bugsnag.rb │ │ │ │ ├── secret_token.rb │ │ │ │ ├── session_store.rb │ │ │ │ ├── warden.rb │ │ │ │ └── wrap_parameters.rb │ │ │ ├── locales │ │ │ │ └── en.yml │ │ │ └── routes.rb │ │ │ ├── db │ │ │ ├── migrate │ │ │ │ └── 20180423142727_create_users.rb │ │ │ ├── schema.rb │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── strategies │ │ │ │ └── token_strategy.rb │ │ │ └── tasks │ │ │ │ └── .gitkeep │ │ │ ├── log │ │ │ └── .gitkeep │ │ │ ├── public │ │ │ ├── 404.html │ │ │ ├── 422.html │ │ │ ├── 500.html │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ └── robots.txt │ │ │ └── script │ │ │ └── rails │ ├── rails4 │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── app │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ ├── assets │ │ │ │ ├── images │ │ │ │ │ └── .keep │ │ │ │ ├── javascripts │ │ │ │ │ └── application.js │ │ │ │ └── stylesheets │ │ │ │ │ └── application.css │ │ │ ├── controllers │ │ │ │ ├── active_job_controller.rb │ │ │ │ ├── api_key_controller.rb │ │ │ │ ├── app_type_controller.rb │ │ │ │ ├── app_version_controller.rb │ │ │ │ ├── application_controller.rb │ │ │ │ ├── auto_notify_controller.rb │ │ │ │ ├── before_notify_controller.rb │ │ │ │ ├── breadcrumbs_controller.rb │ │ │ │ ├── concerns │ │ │ │ │ └── .keep │ │ │ │ ├── devise_controller.rb │ │ │ │ ├── feature_flags_controller.rb │ │ │ │ ├── handled_controller.rb │ │ │ │ ├── ignore_classes_controller.rb │ │ │ │ ├── metadata_filters_controller.rb │ │ │ │ ├── mongo_controller.rb │ │ │ │ ├── project_root_controller.rb │ │ │ │ ├── release_stage_controller.rb │ │ │ │ ├── send_code_controller.rb │ │ │ │ ├── send_environment_controller.rb │ │ │ │ ├── session_tracking_controller.rb │ │ │ │ └── unhandled_controller.rb │ │ │ ├── helpers │ │ │ │ └── application_helper.rb │ │ │ ├── jobs │ │ │ │ ├── application_job.rb │ │ │ │ ├── notify_job.rb │ │ │ │ └── unhandled_job.rb │ │ │ ├── mailers │ │ │ │ └── .keep │ │ │ ├── models │ │ │ │ ├── .keep │ │ │ │ ├── concerns │ │ │ │ │ └── .keep │ │ │ │ ├── mongo_model.rb │ │ │ │ └── user.rb │ │ │ └── views │ │ │ │ └── layouts │ │ │ │ └── application.html.erb │ │ │ ├── config.ru │ │ │ ├── config │ │ │ ├── application.rb │ │ │ ├── boot.rb │ │ │ ├── database.yml │ │ │ ├── environment.rb │ │ │ ├── environments │ │ │ │ ├── development.rb │ │ │ │ ├── production.rb │ │ │ │ ├── rails_env.rb │ │ │ │ └── test.rb │ │ │ ├── initializers │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ ├── bugsnag.rb │ │ │ │ ├── devise.rb │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ ├── inflections.rb │ │ │ │ ├── mime_types.rb │ │ │ │ ├── secret_token.rb │ │ │ │ ├── session_store.rb │ │ │ │ └── wrap_parameters.rb │ │ │ ├── locales │ │ │ │ ├── devise.en.yml │ │ │ │ └── en.yml │ │ │ ├── mongoid.yml │ │ │ └── routes.rb │ │ │ ├── db │ │ │ ├── migrate │ │ │ │ └── 20180420160315_devise_create_users.rb │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ ├── assets │ │ │ │ └── .keep │ │ │ └── tasks │ │ │ │ └── .keep │ │ │ ├── log │ │ │ └── .keep │ │ │ ├── public │ │ │ ├── 404.html │ │ │ ├── 422.html │ │ │ ├── 500.html │ │ │ ├── favicon.ico │ │ │ └── robots.txt │ │ │ └── test │ │ │ ├── controllers │ │ │ └── .keep │ │ │ ├── fixtures │ │ │ └── .keep │ │ │ ├── helpers │ │ │ └── .keep │ │ │ ├── integration │ │ │ └── .keep │ │ │ ├── mailers │ │ │ └── .keep │ │ │ ├── models │ │ │ └── .keep │ │ │ └── test_helper.rb │ ├── rails5 │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── app │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ ├── assets │ │ │ │ ├── config │ │ │ │ │ └── manifest.js │ │ │ │ ├── images │ │ │ │ │ └── .keep │ │ │ │ ├── javascripts │ │ │ │ │ ├── application.js │ │ │ │ │ ├── cable.js │ │ │ │ │ └── channels │ │ │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ │ └── application.css │ │ │ ├── channels │ │ │ │ └── application_cable │ │ │ │ │ ├── channel.rb │ │ │ │ │ └── connection.rb │ │ │ ├── controllers │ │ │ │ ├── active_job_controller.rb │ │ │ │ ├── api_key_controller.rb │ │ │ │ ├── app_type_controller.rb │ │ │ │ ├── app_version_controller.rb │ │ │ │ ├── application_controller.rb │ │ │ │ ├── auto_notify_controller.rb │ │ │ │ ├── before_notify_controller.rb │ │ │ │ ├── breadcrumbs_controller.rb │ │ │ │ ├── clearance_controller.rb │ │ │ │ ├── concerns │ │ │ │ │ └── .keep │ │ │ │ ├── feature_flags_controller.rb │ │ │ │ ├── handled_controller.rb │ │ │ │ ├── ignore_classes_controller.rb │ │ │ │ ├── metadata_filters_controller.rb │ │ │ │ ├── mongo_controller.rb │ │ │ │ ├── project_root_controller.rb │ │ │ │ ├── release_stage_controller.rb │ │ │ │ ├── send_code_controller.rb │ │ │ │ ├── send_environment_controller.rb │ │ │ │ ├── session_tracking_controller.rb │ │ │ │ └── unhandled_controller.rb │ │ │ ├── helpers │ │ │ │ └── application_helper.rb │ │ │ ├── jobs │ │ │ │ ├── application_job.rb │ │ │ │ ├── notify_job.rb │ │ │ │ └── unhandled_job.rb │ │ │ ├── mailers │ │ │ │ └── application_mailer.rb │ │ │ ├── models │ │ │ │ ├── application_record.rb │ │ │ │ ├── concerns │ │ │ │ │ └── .keep │ │ │ │ ├── mongo_model.rb │ │ │ │ └── user.rb │ │ │ └── views │ │ │ │ └── layouts │ │ │ │ ├── application.html.erb │ │ │ │ ├── mailer.html.erb │ │ │ │ └── mailer.text.erb │ │ │ ├── config.ru │ │ │ ├── config │ │ │ ├── application.rb │ │ │ ├── boot.rb │ │ │ ├── cable.yml │ │ │ ├── database.yml │ │ │ ├── environment.rb │ │ │ ├── environments │ │ │ │ ├── development.rb │ │ │ │ ├── production.rb │ │ │ │ ├── rails_env.rb │ │ │ │ └── test.rb │ │ │ ├── initializers │ │ │ │ ├── assets.rb │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ ├── bugsnag.rb │ │ │ │ ├── clearance.rb │ │ │ │ ├── cookies_serializer.rb │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ ├── inflections.rb │ │ │ │ ├── mime_types.rb │ │ │ │ ├── new_framework_defaults.rb │ │ │ │ ├── session_store.rb │ │ │ │ └── wrap_parameters.rb │ │ │ ├── locales │ │ │ │ ├── devise.en.yml │ │ │ │ └── en.yml │ │ │ ├── mongoid.yml │ │ │ ├── puma.rb │ │ │ ├── routes.rb │ │ │ ├── secrets.yml │ │ │ └── spring.rb │ │ │ ├── db │ │ │ ├── migrate │ │ │ │ └── 20180426095545_create_users.rb │ │ │ ├── schema.rb │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ ├── assets │ │ │ │ └── .keep │ │ │ └── tasks │ │ │ │ └── .keep │ │ │ ├── log │ │ │ └── .keep │ │ │ ├── public │ │ │ ├── 404.html │ │ │ ├── 422.html │ │ │ ├── 500.html │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon.ico │ │ │ └── robots.txt │ │ │ ├── test │ │ │ ├── controllers │ │ │ │ └── .keep │ │ │ ├── fixtures │ │ │ │ ├── .keep │ │ │ │ └── files │ │ │ │ │ └── .keep │ │ │ ├── helpers │ │ │ │ └── .keep │ │ │ ├── integration │ │ │ │ └── .keep │ │ │ ├── mailers │ │ │ │ └── .keep │ │ │ ├── models │ │ │ │ └── .keep │ │ │ └── test_helper.rb │ │ │ └── tmp │ │ │ └── .keep │ ├── rails6 │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── app │ │ │ ├── .browserslistrc │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ ├── assets │ │ │ │ ├── config │ │ │ │ │ └── manifest.js │ │ │ │ ├── images │ │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ │ └── application.css │ │ │ ├── channels │ │ │ │ └── application_cable │ │ │ │ │ ├── channel.rb │ │ │ │ │ └── connection.rb │ │ │ ├── controllers │ │ │ │ ├── active_job_controller.rb │ │ │ │ ├── api_key_controller.rb │ │ │ │ ├── app_type_controller.rb │ │ │ │ ├── app_version_controller.rb │ │ │ │ ├── application_controller.rb │ │ │ │ ├── auto_notify_controller.rb │ │ │ │ ├── before_notify_controller.rb │ │ │ │ ├── breadcrumbs_controller.rb │ │ │ │ ├── clearance_controller.rb │ │ │ │ ├── concerns │ │ │ │ │ └── .keep │ │ │ │ ├── feature_flags_controller.rb │ │ │ │ ├── handled_controller.rb │ │ │ │ ├── ignore_classes_controller.rb │ │ │ │ ├── metadata_filters_controller.rb │ │ │ │ ├── mongo_controller.rb │ │ │ │ ├── project_root_controller.rb │ │ │ │ ├── release_stage_controller.rb │ │ │ │ ├── send_code_controller.rb │ │ │ │ ├── send_environment_controller.rb │ │ │ │ ├── session_tracking_controller.rb │ │ │ │ └── unhandled_controller.rb │ │ │ ├── helpers │ │ │ │ └── application_helper.rb │ │ │ ├── javascript │ │ │ │ ├── channels │ │ │ │ │ ├── consumer.js │ │ │ │ │ └── index.js │ │ │ │ └── packs │ │ │ │ │ └── application.js │ │ │ ├── jobs │ │ │ │ ├── application_job.rb │ │ │ │ ├── notify_job.rb │ │ │ │ └── unhandled_job.rb │ │ │ ├── mailers │ │ │ │ └── application_mailer.rb │ │ │ ├── models │ │ │ │ ├── application_record.rb │ │ │ │ ├── concerns │ │ │ │ │ └── .keep │ │ │ │ ├── mongo_model.rb │ │ │ │ └── user.rb │ │ │ └── views │ │ │ │ └── layouts │ │ │ │ ├── application.html.erb │ │ │ │ ├── mailer.html.erb │ │ │ │ └── mailer.text.erb │ │ │ ├── babel.config.js │ │ │ ├── config.ru │ │ │ ├── config │ │ │ ├── application.rb │ │ │ ├── boot.rb │ │ │ ├── cable.yml │ │ │ ├── credentials.yml.enc │ │ │ ├── database.yml │ │ │ ├── environment.rb │ │ │ ├── environments │ │ │ │ ├── development.rb │ │ │ │ ├── production.rb │ │ │ │ ├── rails_env.rb │ │ │ │ └── test.rb │ │ │ ├── initializers │ │ │ │ ├── application_controller_renderer.rb │ │ │ │ ├── assets.rb │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ ├── bugsnag.rb │ │ │ │ ├── content_security_policy.rb │ │ │ │ ├── cookies_serializer.rb │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ ├── inflections.rb │ │ │ │ ├── mime_types.rb │ │ │ │ └── wrap_parameters.rb │ │ │ ├── locales │ │ │ │ └── en.yml │ │ │ ├── mongoid.yml │ │ │ ├── puma.rb │ │ │ ├── routes.rb │ │ │ ├── secrets.yml │ │ │ ├── spring.rb │ │ │ ├── storage.yml │ │ │ ├── webpack │ │ │ │ ├── development.js │ │ │ │ ├── environment.js │ │ │ │ ├── production.js │ │ │ │ ├── rails_env.js │ │ │ │ └── test.js │ │ │ └── webpacker.yml │ │ │ ├── db │ │ │ ├── migrate │ │ │ │ └── 20180426095545_create_users.rb │ │ │ ├── schema.rb │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ ├── assets │ │ │ │ └── .keep │ │ │ └── tasks │ │ │ │ └── .keep │ │ │ ├── log │ │ │ └── .keep │ │ │ ├── package.json │ │ │ ├── postcss.config.js │ │ │ ├── public │ │ │ ├── 404.html │ │ │ ├── 422.html │ │ │ ├── 500.html │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon.ico │ │ │ └── robots.txt │ │ │ ├── storage │ │ │ └── .keep │ │ │ ├── test │ │ │ ├── application_system_test_case.rb │ │ │ ├── channels │ │ │ │ └── application_cable │ │ │ │ │ └── connection_test.rb │ │ │ ├── controllers │ │ │ │ └── .keep │ │ │ ├── fixtures │ │ │ │ ├── .keep │ │ │ │ └── files │ │ │ │ │ └── .keep │ │ │ ├── helpers │ │ │ │ └── .keep │ │ │ ├── integration │ │ │ │ └── .keep │ │ │ ├── mailers │ │ │ │ └── .keep │ │ │ ├── models │ │ │ │ └── .keep │ │ │ ├── system │ │ │ │ └── .keep │ │ │ └── test_helper.rb │ │ │ ├── tmp │ │ │ └── .keep │ │ │ └── yarn.lock │ ├── rails7 │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── app │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .ruby-version │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ ├── assets │ │ │ │ ├── config │ │ │ │ │ └── manifest.js │ │ │ │ ├── images │ │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ │ └── application.css │ │ │ ├── channels │ │ │ │ └── application_cable │ │ │ │ │ ├── channel.rb │ │ │ │ │ └── connection.rb │ │ │ ├── controllers │ │ │ │ ├── active_job_controller.rb │ │ │ │ ├── api_key_controller.rb │ │ │ │ ├── app_type_controller.rb │ │ │ │ ├── app_version_controller.rb │ │ │ │ ├── application_controller.rb │ │ │ │ ├── auto_notify_controller.rb │ │ │ │ ├── before_notify_controller.rb │ │ │ │ ├── breadcrumbs_controller.rb │ │ │ │ ├── clearance_controller.rb │ │ │ │ ├── concerns │ │ │ │ │ └── .keep │ │ │ │ ├── feature_flags_controller.rb │ │ │ │ ├── handled_controller.rb │ │ │ │ ├── ignore_classes_controller.rb │ │ │ │ ├── metadata_filters_controller.rb │ │ │ │ ├── mongo_controller.rb │ │ │ │ ├── project_root_controller.rb │ │ │ │ ├── release_stage_controller.rb │ │ │ │ ├── send_code_controller.rb │ │ │ │ ├── send_environment_controller.rb │ │ │ │ ├── session_tracking_controller.rb │ │ │ │ └── unhandled_controller.rb │ │ │ ├── helpers │ │ │ │ └── application_helper.rb │ │ │ ├── jobs │ │ │ │ ├── application_job.rb │ │ │ │ ├── notify_job.rb │ │ │ │ └── unhandled_job.rb │ │ │ ├── mailers │ │ │ │ └── application_mailer.rb │ │ │ ├── models │ │ │ │ ├── application_record.rb │ │ │ │ ├── concerns │ │ │ │ │ └── .keep │ │ │ │ ├── mongo_model.rb │ │ │ │ └── user.rb │ │ │ └── views │ │ │ │ └── layouts │ │ │ │ ├── application.html.erb │ │ │ │ ├── mailer.html.erb │ │ │ │ └── mailer.text.erb │ │ │ ├── config.ru │ │ │ ├── config │ │ │ ├── application.rb │ │ │ ├── boot.rb │ │ │ ├── cable.yml │ │ │ ├── credentials.yml.enc │ │ │ ├── database.yml │ │ │ ├── environment.rb │ │ │ ├── environments │ │ │ │ ├── development.rb │ │ │ │ ├── production.rb │ │ │ │ ├── rails_env.rb │ │ │ │ └── test.rb │ │ │ ├── initializers │ │ │ │ ├── assets.rb │ │ │ │ ├── bugsnag.rb │ │ │ │ ├── content_security_policy.rb │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ ├── inflections.rb │ │ │ │ └── permissions_policy.rb │ │ │ ├── locales │ │ │ │ └── en.yml │ │ │ ├── master.key │ │ │ ├── puma.rb │ │ │ ├── routes.rb │ │ │ └── storage.yml │ │ │ ├── db │ │ │ ├── migrate │ │ │ │ └── 20180426095545_create_users.rb │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ ├── assets │ │ │ │ └── .keep │ │ │ └── tasks │ │ │ │ └── .keep │ │ │ ├── log │ │ │ └── .keep │ │ │ ├── public │ │ │ ├── 404.html │ │ │ ├── 422.html │ │ │ ├── 500.html │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon.ico │ │ │ └── robots.txt │ │ │ ├── storage │ │ │ └── .keep │ │ │ ├── test │ │ │ ├── application_system_test_case.rb │ │ │ ├── channels │ │ │ │ └── application_cable │ │ │ │ │ └── connection_test.rb │ │ │ ├── controllers │ │ │ │ └── .keep │ │ │ ├── fixtures │ │ │ │ └── files │ │ │ │ │ └── .keep │ │ │ ├── helpers │ │ │ │ └── .keep │ │ │ ├── integration │ │ │ │ └── .keep │ │ │ ├── mailers │ │ │ │ └── .keep │ │ │ ├── models │ │ │ │ └── .keep │ │ │ ├── system │ │ │ │ └── .keep │ │ │ └── test_helper.rb │ │ │ └── tmp │ │ │ ├── .keep │ │ │ ├── pids │ │ │ └── .keep │ │ │ └── storage │ │ │ └── .keep │ ├── rails8 │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── app │ │ │ ├── .dockerignore │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .rubocop.yml │ │ │ ├── .ruby-version │ │ │ ├── Dockerfile │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ ├── assets │ │ │ │ ├── images │ │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ │ └── application.css │ │ │ ├── controllers │ │ │ │ ├── active_job_controller.rb │ │ │ │ ├── api_key_controller.rb │ │ │ │ ├── app_type_controller.rb │ │ │ │ ├── app_version_controller.rb │ │ │ │ ├── application_controller.rb │ │ │ │ ├── auto_notify_controller.rb │ │ │ │ ├── before_notify_controller.rb │ │ │ │ ├── breadcrumbs_controller.rb │ │ │ │ ├── clearance_controller.rb │ │ │ │ ├── concerns │ │ │ │ │ └── .keep │ │ │ │ ├── feature_flags_controller.rb │ │ │ │ ├── handled_controller.rb │ │ │ │ ├── ignore_classes_controller.rb │ │ │ │ ├── metadata_filters_controller.rb │ │ │ │ ├── mongo_controller.rb │ │ │ │ ├── project_root_controller.rb │ │ │ │ ├── release_stage_controller.rb │ │ │ │ ├── send_code_controller.rb │ │ │ │ ├── send_environment_controller.rb │ │ │ │ ├── session_tracking_controller.rb │ │ │ │ └── unhandled_controller.rb │ │ │ ├── helpers │ │ │ │ └── application_helper.rb │ │ │ ├── javascript │ │ │ │ ├── application.js │ │ │ │ └── controllers │ │ │ │ │ ├── application.js │ │ │ │ │ ├── hello_controller.js │ │ │ │ │ └── index.js │ │ │ ├── jobs │ │ │ │ ├── application_job.rb │ │ │ │ ├── notify_job.rb │ │ │ │ └── unhandled_job.rb │ │ │ ├── mailers │ │ │ │ └── application_mailer.rb │ │ │ ├── models │ │ │ │ ├── application_record.rb │ │ │ │ ├── concerns │ │ │ │ │ └── .keep │ │ │ │ ├── mongo_model.rb │ │ │ │ └── user.rb │ │ │ └── views │ │ │ │ ├── layouts │ │ │ │ ├── application.html.erb │ │ │ │ ├── mailer.html.erb │ │ │ │ └── mailer.text.erb │ │ │ │ └── pwa │ │ │ │ ├── manifest.json.erb │ │ │ │ └── service-worker.js │ │ │ ├── bin-copy │ │ │ ├── brakeman │ │ │ ├── bundle │ │ │ ├── dev │ │ │ ├── docker-entrypoint │ │ │ ├── importmap │ │ │ ├── jobs │ │ │ ├── kamal │ │ │ ├── rails │ │ │ ├── rake │ │ │ ├── rubocop │ │ │ ├── setup │ │ │ └── thrust │ │ │ ├── config.ru │ │ │ ├── config │ │ │ ├── application.rb │ │ │ ├── boot.rb │ │ │ ├── cable.yml │ │ │ ├── cache.yml │ │ │ ├── credentials.yml.enc │ │ │ ├── database.yml │ │ │ ├── deploy.yml │ │ │ ├── environment.rb │ │ │ ├── environments │ │ │ │ ├── development.rb │ │ │ │ ├── production.rb │ │ │ │ └── test.rb │ │ │ ├── importmap.rb │ │ │ ├── initializers │ │ │ │ ├── assets.rb │ │ │ │ ├── bugsnag.rb │ │ │ │ ├── content_security_policy.rb │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ └── inflections.rb │ │ │ ├── locales │ │ │ │ └── en.yml │ │ │ ├── master.key │ │ │ ├── puma.rb │ │ │ ├── queue.yml │ │ │ ├── recurring.yml │ │ │ ├── routes.rb │ │ │ └── storage.yml │ │ │ ├── db │ │ │ ├── cable_schema.rb │ │ │ ├── cache_schema.rb │ │ │ ├── migrate │ │ │ │ └── 20180426095545_create_users.rb │ │ │ ├── queue_schema.rb │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ └── tasks │ │ │ │ └── .keep │ │ │ ├── log │ │ │ └── .keep │ │ │ ├── public │ │ │ ├── 400.html │ │ │ ├── 404.html │ │ │ ├── 406-unsupported-browser.html │ │ │ ├── 422.html │ │ │ ├── 500.html │ │ │ ├── icon.png │ │ │ ├── icon.svg │ │ │ └── robots.txt │ │ │ ├── script │ │ │ └── .keep │ │ │ ├── storage │ │ │ └── .keep │ │ │ ├── test │ │ │ ├── application_system_test_case.rb │ │ │ ├── controllers │ │ │ │ └── .keep │ │ │ ├── fixtures │ │ │ │ └── files │ │ │ │ │ └── .keep │ │ │ ├── helpers │ │ │ │ └── .keep │ │ │ ├── integration │ │ │ │ └── .keep │ │ │ ├── mailers │ │ │ │ └── .keep │ │ │ ├── models │ │ │ │ └── .keep │ │ │ ├── system │ │ │ │ └── .keep │ │ │ └── test_helper.rb │ │ │ └── tmp │ │ │ ├── .keep │ │ │ ├── pids │ │ │ └── .keep │ │ │ └── storage │ │ │ └── .keep │ ├── rails_integrations │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── app │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ ├── controllers │ │ │ │ ├── application_controller.rb │ │ │ │ └── job_controller.rb │ │ │ ├── jobs │ │ │ │ ├── application_job.rb │ │ │ │ ├── que_job.rb │ │ │ │ ├── unhandled_job.rb │ │ │ │ └── working_job.rb │ │ │ ├── models │ │ │ │ ├── application_record.rb │ │ │ │ └── user.rb │ │ │ └── workers │ │ │ │ ├── resque_worker.rb │ │ │ │ └── sidekiq_worker.rb │ │ │ ├── config.ru │ │ │ ├── config │ │ │ ├── application.rb │ │ │ ├── boot.rb │ │ │ ├── credentials.yml.enc │ │ │ ├── database.yml │ │ │ ├── environment.rb │ │ │ ├── environments │ │ │ │ ├── development.rb │ │ │ │ ├── production.rb │ │ │ │ └── test.rb │ │ │ ├── initializers │ │ │ │ ├── application_controller_renderer.rb │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ ├── bugsnag.rb │ │ │ │ ├── cors.rb │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ ├── inflections.rb │ │ │ │ ├── mime_types.rb │ │ │ │ ├── que.rb │ │ │ │ ├── resque.rb │ │ │ │ └── wrap_parameters.rb │ │ │ ├── locales │ │ │ │ └── en.yml │ │ │ ├── puma.rb │ │ │ ├── routes.rb │ │ │ ├── spring.rb │ │ │ └── storage.yml │ │ │ ├── db │ │ │ ├── migrate │ │ │ │ ├── 20200729084712_create_delayed_jobs.rb │ │ │ │ └── 20200729130640_add_que.rb │ │ │ ├── schema.rb │ │ │ └── seeds.rb │ │ │ ├── example.eml │ │ │ ├── lib │ │ │ └── tasks │ │ │ │ ├── fixture.rake │ │ │ │ ├── rake_task.rake │ │ │ │ └── resque_setup.rake │ │ │ ├── mailman.rb │ │ │ ├── public │ │ │ └── robots.txt │ │ │ └── run_mailman │ ├── rake │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── app │ │ │ ├── Gemfile │ │ │ └── Rakefile.rb │ ├── run-ruby-integrations │ └── sidekiq │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── app │ │ ├── Gemfile │ │ ├── Rakefile.rb │ │ ├── app.rb │ │ └── initializers │ │ │ ├── HandledError.rb │ │ │ └── UnhandledError.rb │ │ └── payloads │ │ ├── handled_metadata_ca_false.json │ │ ├── handled_metadata_ca_true.json │ │ ├── unhandled_metadata_ca_false.json │ │ └── unhandled_metadata_ca_true.json ├── lib │ └── fixture.rb ├── mailman.feature ├── plain_features │ ├── add_tab.feature │ ├── app_type.feature │ ├── app_version.feature │ ├── auto_notify.feature │ ├── delivery.feature │ ├── exception_data.feature │ ├── filters.feature │ ├── handled_errors.feature │ ├── ignore_classes.feature │ ├── ignore_report.feature │ ├── proxies.feature │ ├── release_stages.feature │ ├── report_api_key.feature │ ├── report_severity.feature │ ├── report_stack_frames.feature │ ├── report_user.feature │ └── unhandled_errors.feature ├── que.feature ├── rack.feature ├── rails_features │ ├── active_job.feature │ ├── active_record.feature │ ├── api_key.feature │ ├── app_type.feature │ ├── app_version.feature │ ├── auto_capture_sessions.feature │ ├── auto_notify.feature │ ├── before_notify.feature │ ├── breadcrumbs.feature │ ├── feature_flags.feature │ ├── handled.feature │ ├── ignore_classes.feature │ ├── integrations.feature │ ├── meta_data_filters.feature │ ├── mongo_breadcrumbs.feature │ ├── on_error.feature │ ├── project_root.feature │ ├── release_stage.feature │ ├── request.feature │ ├── send_code.feature │ ├── send_environment.feature │ ├── unhandled.feature │ └── user_info.feature ├── rake.feature ├── sidekiq.feature ├── steps │ └── ruby_notifier_steps.rb └── support │ └── env.rb ├── lib ├── bugsnag.rb ├── bugsnag │ ├── breadcrumb_type.rb │ ├── breadcrumbs │ │ ├── breadcrumb.rb │ │ ├── breadcrumbs.rb │ │ ├── on_breadcrumb_callback_list.rb │ │ └── validator.rb │ ├── cleaner.rb │ ├── code_extractor.rb │ ├── configuration.rb │ ├── delivery.rb │ ├── delivery │ │ ├── synchronous.rb │ │ └── thread_queue.rb │ ├── endpoint_configuration.rb │ ├── endpoint_validator.rb │ ├── error.rb │ ├── event.rb │ ├── feature_flag.rb │ ├── helpers.rb │ ├── integrations │ │ ├── delayed_job.rb │ │ ├── mailman.rb │ │ ├── mongo.rb │ │ ├── que.rb │ │ ├── rack.rb │ │ ├── rails │ │ │ ├── active_job.rb │ │ │ ├── active_record_rescue.rb │ │ │ ├── controller_methods.rb │ │ │ └── rails_breadcrumbs.rb │ │ ├── railtie.rb │ │ ├── rake.rb │ │ ├── resque.rb │ │ ├── shoryuken.rb │ │ └── sidekiq.rb │ ├── meta_data.rb │ ├── middleware │ │ ├── active_job.rb │ │ ├── breadcrumbs.rb │ │ ├── callbacks.rb │ │ ├── classify_error.rb │ │ ├── clearance_user.rb │ │ ├── delayed_job.rb │ │ ├── discard_error_class.rb │ │ ├── exception_meta_data.rb │ │ ├── ignore_error_class.rb │ │ ├── mailman.rb │ │ ├── rack_request.rb │ │ ├── rails3_request.rb │ │ ├── rake.rb │ │ ├── session_data.rb │ │ ├── sidekiq.rb │ │ ├── suggestion_data.rb │ │ └── warden_user.rb │ ├── middleware_stack.rb │ ├── on_error_callbacks.rb │ ├── report.rb │ ├── session_tracker.rb │ ├── stacktrace.rb │ ├── tasks.rb │ ├── tasks │ │ └── bugsnag.rake │ ├── utility │ │ ├── circular_buffer.rb │ │ ├── duplicator.rb │ │ ├── feature_data_store.rb │ │ ├── feature_flag_delegate.rb │ │ └── metadata_delegate.rb │ └── version.rb └── generators │ └── bugsnag │ └── bugsnag_generator.rb └── spec ├── breadcrumb_type_spec.rb ├── breadcrumbs ├── breadcrumb_spec.rb ├── on_breadcrumb_callback_list_spec.rb └── validator_spec.rb ├── bugsnag_spec.rb ├── cleaner_spec.rb ├── code_extractor_spec.rb ├── configuration_spec.rb ├── endpoint_configuration_spec.rb ├── endpoint_validator_spec.rb ├── feature_flag_spec.rb ├── fixtures ├── apps │ ├── rails-initializer-config │ │ ├── Gemfile │ │ ├── config.ru │ │ └── config │ │ │ └── initializers │ │ │ └── bugsnag.rb │ ├── rails-invalid-initializer-config │ │ ├── Gemfile │ │ ├── config.ru │ │ └── config │ │ │ └── initializers │ │ │ └── bugsnag.rb │ ├── rails-no-config │ │ ├── Gemfile │ │ └── config.ru │ └── scripts │ │ ├── Gemfile │ │ ├── configure_invalid_key.rb │ │ ├── configure_key.rb │ │ └── no_config.rb ├── crashes │ ├── end_of_file.rb │ ├── file1.rb │ ├── file2.rb │ ├── file_with_long_lines.rb │ ├── functions.rb │ ├── short_file.rb │ └── start_of_file.rb ├── middleware │ ├── internal_info_setter.rb │ └── public_info_setter.rb └── tasks │ └── Rakefile ├── helper_spec.rb ├── integration_spec.rb ├── integrations ├── clearance_user_spec.rb ├── logger_spec.rb ├── mailman_spec.rb ├── mongo_spec.rb ├── que_spec.rb ├── rack_spec.rb ├── rails3_request_spec.rb ├── rake_spec.rb ├── resque_spec.rb ├── shoryuken_spec.rb ├── sidekiq_spec.rb └── warden_user_spec.rb ├── middleware ├── active_job_spec.rb └── exception_meta_data_spec.rb ├── middleware_spec.rb ├── middleware_stack_spec.rb ├── on_error_spec.rb ├── report_spec.rb ├── session_tracker_spec.rb ├── spec_helper.rb ├── stacktrace_spec.rb ├── support ├── exception_with_detailed_message.rb ├── exception_with_detailed_message_ruby_1.rb └── shared_examples_for_metadata.rb └── utility ├── circular_buffer_spec.rb ├── duplicator_spec.rb ├── feature_flag_delegate_spec.rb └── metadata_delegate_spec.rb /.github/ISSUE_TEMPLATE/A.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/.github/ISSUE_TEMPLATE/A.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/.github/support.md -------------------------------------------------------------------------------- /.github/workflows/license-audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/.github/workflows/license-audit.yml -------------------------------------------------------------------------------- /.github/workflows/maze-runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/.github/workflows/maze-runner.yml -------------------------------------------------------------------------------- /.github/workflows/run-maze-runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/.github/workflows/run-maze-runner.yml -------------------------------------------------------------------------------- /.github/workflows/test-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/.github/workflows/test-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --backtrace 2 | --color 3 | --format doc -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile-maze-runner: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'bugsnag-maze-runner', '~> 9.0' -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/TESTING.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 6.28.0 2 | -------------------------------------------------------------------------------- /bugsnag.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/bugsnag.gemspec -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- 1 | decisions.yml 2 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.jruby-unit-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/dockerfiles/Dockerfile.jruby-unit-tests -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.ruby-maze-runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/dockerfiles/Dockerfile.ruby-maze-runner -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.ruby-unit-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/dockerfiles/Dockerfile.ruby-unit-tests -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/README.md -------------------------------------------------------------------------------- /example/padrino/.components: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/padrino/.components -------------------------------------------------------------------------------- /example/padrino/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/padrino/.gitignore -------------------------------------------------------------------------------- /example/padrino/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/padrino/Gemfile -------------------------------------------------------------------------------- /example/padrino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/padrino/README.md -------------------------------------------------------------------------------- /example/padrino/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/padrino/Rakefile -------------------------------------------------------------------------------- /example/padrino/app/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/padrino/app/app.rb -------------------------------------------------------------------------------- /example/padrino/app/templates/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/padrino/app/templates/index.md -------------------------------------------------------------------------------- /example/padrino/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/padrino/config.ru -------------------------------------------------------------------------------- /example/padrino/config/apps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/padrino/config/apps.rb -------------------------------------------------------------------------------- /example/padrino/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/padrino/config/boot.rb -------------------------------------------------------------------------------- /example/rack/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rack/Gemfile -------------------------------------------------------------------------------- /example/rack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rack/README.md -------------------------------------------------------------------------------- /example/rack/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rack/server.rb -------------------------------------------------------------------------------- /example/rack/templates/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rack/templates/index.md -------------------------------------------------------------------------------- /example/rails-42/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/.gitignore -------------------------------------------------------------------------------- /example/rails-42/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/Gemfile -------------------------------------------------------------------------------- /example/rails-42/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/Gemfile.lock -------------------------------------------------------------------------------- /example/rails-42/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/README.md -------------------------------------------------------------------------------- /example/rails-42/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/Rakefile -------------------------------------------------------------------------------- /example/rails-42/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-42/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /example/rails-42/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /example/rails-42/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /example/rails-42/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /example/rails-42/app/helpers/test_delayed_job_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/app/helpers/test_delayed_job_helper.rb -------------------------------------------------------------------------------- /example/rails-42/app/views/application/data.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-42/app/views/application/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-42/app/views/application/notify.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-42/app/views/application/severity.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-42/app/views/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/app/views/index.md -------------------------------------------------------------------------------- /example/rails-42/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /example/rails-42/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config.ru -------------------------------------------------------------------------------- /example/rails-42/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/application.rb -------------------------------------------------------------------------------- /example/rails-42/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/boot.rb -------------------------------------------------------------------------------- /example/rails-42/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/database.yml -------------------------------------------------------------------------------- /example/rails-42/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/environment.rb -------------------------------------------------------------------------------- /example/rails-42/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/environments/development.rb -------------------------------------------------------------------------------- /example/rails-42/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/environments/production.rb -------------------------------------------------------------------------------- /example/rails-42/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/environments/test.rb -------------------------------------------------------------------------------- /example/rails-42/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/initializers/assets.rb -------------------------------------------------------------------------------- /example/rails-42/config/initializers/bugsnag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/initializers/bugsnag.rb -------------------------------------------------------------------------------- /example/rails-42/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /example/rails-42/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/initializers/inflections.rb -------------------------------------------------------------------------------- /example/rails-42/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /example/rails-42/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/initializers/session_store.rb -------------------------------------------------------------------------------- /example/rails-42/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /example/rails-42/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/locales/en.yml -------------------------------------------------------------------------------- /example/rails-42/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/routes.rb -------------------------------------------------------------------------------- /example/rails-42/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/config/secrets.yml -------------------------------------------------------------------------------- /example/rails-42/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/db/schema.rb -------------------------------------------------------------------------------- /example/rails-42/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/db/seeds.rb -------------------------------------------------------------------------------- /example/rails-42/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/public/404.html -------------------------------------------------------------------------------- /example/rails-42/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/public/422.html -------------------------------------------------------------------------------- /example/rails-42/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/public/500.html -------------------------------------------------------------------------------- /example/rails-42/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-42/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-42/public/robots.txt -------------------------------------------------------------------------------- /example/rails-51/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/.gitignore -------------------------------------------------------------------------------- /example/rails-51/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/Gemfile -------------------------------------------------------------------------------- /example/rails-51/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/Gemfile.lock -------------------------------------------------------------------------------- /example/rails-51/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/README.md -------------------------------------------------------------------------------- /example/rails-51/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/Rakefile -------------------------------------------------------------------------------- /example/rails-51/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/assets/config/manifest.js -------------------------------------------------------------------------------- /example/rails-51/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-51/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /example/rails-51/app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /example/rails-51/app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-51/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /example/rails-51/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /example/rails-51/app/controllers/que_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/controllers/que_controller.rb -------------------------------------------------------------------------------- /example/rails-51/app/controllers/resque_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/controllers/resque_controller.rb -------------------------------------------------------------------------------- /example/rails-51/app/controllers/sidekiq_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/controllers/sidekiq_controller.rb -------------------------------------------------------------------------------- /example/rails-51/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /example/rails-51/app/jobs/que_crash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/jobs/que_crash.rb -------------------------------------------------------------------------------- /example/rails-51/app/views/application/data.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-51/app/views/application/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-51/app/views/application/notify.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-51/app/views/application/severity.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-51/app/views/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/views/index.md -------------------------------------------------------------------------------- /example/rails-51/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /example/rails-51/app/views/que.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/views/que.md -------------------------------------------------------------------------------- /example/rails-51/app/views/que/crash.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-51/app/views/que/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-51/app/views/que/metadata.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-51/app/views/resque.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/views/resque.md -------------------------------------------------------------------------------- /example/rails-51/app/views/resque/crash.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-51/app/views/resque/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-51/app/views/resque/metadata.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-51/app/views/sidekiq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/views/sidekiq.md -------------------------------------------------------------------------------- /example/rails-51/app/views/sidekiq/crash.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-51/app/views/sidekiq/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-51/app/views/sidekiq/metadata.html.erb: -------------------------------------------------------------------------------- 1 | <%= markdown(@text)%> -------------------------------------------------------------------------------- /example/rails-51/app/workers/resque_workers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/workers/resque_workers.rb -------------------------------------------------------------------------------- /example/rails-51/app/workers/sidekiq_workers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/app/workers/sidekiq_workers.rb -------------------------------------------------------------------------------- /example/rails-51/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/bin/bundle -------------------------------------------------------------------------------- /example/rails-51/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/bin/rails -------------------------------------------------------------------------------- /example/rails-51/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/bin/rake -------------------------------------------------------------------------------- /example/rails-51/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/bin/setup -------------------------------------------------------------------------------- /example/rails-51/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/bin/update -------------------------------------------------------------------------------- /example/rails-51/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/bin/yarn -------------------------------------------------------------------------------- /example/rails-51/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config.ru -------------------------------------------------------------------------------- /example/rails-51/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/application.rb -------------------------------------------------------------------------------- /example/rails-51/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/boot.rb -------------------------------------------------------------------------------- /example/rails-51/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/cable.yml -------------------------------------------------------------------------------- /example/rails-51/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/database.yml -------------------------------------------------------------------------------- /example/rails-51/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/environment.rb -------------------------------------------------------------------------------- /example/rails-51/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/environments/development.rb -------------------------------------------------------------------------------- /example/rails-51/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/environments/production.rb -------------------------------------------------------------------------------- /example/rails-51/config/environments/que.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/environments/que.rb -------------------------------------------------------------------------------- /example/rails-51/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/environments/test.rb -------------------------------------------------------------------------------- /example/rails-51/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/initializers/assets.rb -------------------------------------------------------------------------------- /example/rails-51/config/initializers/bugsnag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/initializers/bugsnag.rb -------------------------------------------------------------------------------- /example/rails-51/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /example/rails-51/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/initializers/inflections.rb -------------------------------------------------------------------------------- /example/rails-51/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /example/rails-51/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /example/rails-51/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/locales/en.yml -------------------------------------------------------------------------------- /example/rails-51/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/puma.rb -------------------------------------------------------------------------------- /example/rails-51/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/routes.rb -------------------------------------------------------------------------------- /example/rails-51/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/secrets.yml -------------------------------------------------------------------------------- /example/rails-51/config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/sidekiq.yml -------------------------------------------------------------------------------- /example/rails-51/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/config/spring.rb -------------------------------------------------------------------------------- /example/rails-51/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/db/seeds.rb -------------------------------------------------------------------------------- /example/rails-51/lib/tasks/resque:setup.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/lib/tasks/resque:setup.rake -------------------------------------------------------------------------------- /example/rails-51/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/package.json -------------------------------------------------------------------------------- /example/rails-51/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/public/404.html -------------------------------------------------------------------------------- /example/rails-51/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/public/422.html -------------------------------------------------------------------------------- /example/rails-51/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/public/500.html -------------------------------------------------------------------------------- /example/rails-51/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-51/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-51/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-51/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-51/public/robots.txt -------------------------------------------------------------------------------- /example/rails-60/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /example/rails-60/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/.gitignore -------------------------------------------------------------------------------- /example/rails-60/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/Gemfile -------------------------------------------------------------------------------- /example/rails-60/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/README.md -------------------------------------------------------------------------------- /example/rails-60/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/Rakefile -------------------------------------------------------------------------------- /example/rails-60/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/assets/config/manifest.js -------------------------------------------------------------------------------- /example/rails-60/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-60/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-60/app/controllers/que_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/controllers/que_controller.rb -------------------------------------------------------------------------------- /example/rails-60/app/controllers/resque_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/controllers/resque_controller.rb -------------------------------------------------------------------------------- /example/rails-60/app/controllers/sidekiq_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/controllers/sidekiq_controller.rb -------------------------------------------------------------------------------- /example/rails-60/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /example/rails-60/app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /example/rails-60/app/javascript/channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/javascript/channels/index.js -------------------------------------------------------------------------------- /example/rails-60/app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/javascript/packs/application.js -------------------------------------------------------------------------------- /example/rails-60/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/jobs/application_job.rb -------------------------------------------------------------------------------- /example/rails-60/app/jobs/que_crash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/jobs/que_crash.rb -------------------------------------------------------------------------------- /example/rails-60/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /example/rails-60/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/models/application_record.rb -------------------------------------------------------------------------------- /example/rails-60/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-60/app/views/application/data.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/application/data.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/views/application/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/application/index.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/views/application/notify.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/application/notify.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/views/application/severity.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/application/severity.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /example/rails-60/app/views/que/crash.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/que/crash.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/views/que/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/que/index.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/views/resque/crash.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/resque/crash.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/views/resque/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/resque/index.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/views/resque/metadata.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/resque/metadata.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/views/sidekiq/crash.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/sidekiq/crash.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/views/sidekiq/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/sidekiq/index.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/views/sidekiq/metadata.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/views/sidekiq/metadata.html.erb -------------------------------------------------------------------------------- /example/rails-60/app/workers/resque_workers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/workers/resque_workers.rb -------------------------------------------------------------------------------- /example/rails-60/app/workers/sidekiq_workers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/app/workers/sidekiq_workers.rb -------------------------------------------------------------------------------- /example/rails-60/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/babel.config.js -------------------------------------------------------------------------------- /example/rails-60/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config.ru -------------------------------------------------------------------------------- /example/rails-60/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/application.rb -------------------------------------------------------------------------------- /example/rails-60/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/boot.rb -------------------------------------------------------------------------------- /example/rails-60/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/cable.yml -------------------------------------------------------------------------------- /example/rails-60/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/credentials.yml.enc -------------------------------------------------------------------------------- /example/rails-60/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/database.yml -------------------------------------------------------------------------------- /example/rails-60/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/environment.rb -------------------------------------------------------------------------------- /example/rails-60/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/environments/development.rb -------------------------------------------------------------------------------- /example/rails-60/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/environments/production.rb -------------------------------------------------------------------------------- /example/rails-60/config/environments/que.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/environments/que.rb -------------------------------------------------------------------------------- /example/rails-60/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/environments/test.rb -------------------------------------------------------------------------------- /example/rails-60/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/initializers/assets.rb -------------------------------------------------------------------------------- /example/rails-60/config/initializers/bugsnag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/initializers/bugsnag.rb -------------------------------------------------------------------------------- /example/rails-60/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/initializers/inflections.rb -------------------------------------------------------------------------------- /example/rails-60/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /example/rails-60/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /example/rails-60/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/locales/en.yml -------------------------------------------------------------------------------- /example/rails-60/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/puma.rb -------------------------------------------------------------------------------- /example/rails-60/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/routes.rb -------------------------------------------------------------------------------- /example/rails-60/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/spring.rb -------------------------------------------------------------------------------- /example/rails-60/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/config/storage.yml -------------------------------------------------------------------------------- /example/rails-60/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/db/seeds.rb -------------------------------------------------------------------------------- /example/rails-60/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-60/lib/tasks/resque:setup.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/lib/tasks/resque:setup.rake -------------------------------------------------------------------------------- /example/rails-60/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-60/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/public/404.html -------------------------------------------------------------------------------- /example/rails-60/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/public/422.html -------------------------------------------------------------------------------- /example/rails-60/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/public/500.html -------------------------------------------------------------------------------- /example/rails-60/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-60/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-60/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rails-60/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/public/robots.txt -------------------------------------------------------------------------------- /example/rails-60/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/rails-60/public/style.css -------------------------------------------------------------------------------- /example/rails-60/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/shoryuken/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/shoryuken/Gemfile -------------------------------------------------------------------------------- /example/shoryuken/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/shoryuken/README.md -------------------------------------------------------------------------------- /example/shoryuken/shoryuken.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/shoryuken/shoryuken.rb -------------------------------------------------------------------------------- /example/shoryuken/shoryuken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/shoryuken/shoryuken.yml -------------------------------------------------------------------------------- /example/sinatra/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/sinatra/Gemfile -------------------------------------------------------------------------------- /example/sinatra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/sinatra/README.md -------------------------------------------------------------------------------- /example/sinatra/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/sinatra/config.ru -------------------------------------------------------------------------------- /example/sinatra/templates/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/example/sinatra/templates/index.md -------------------------------------------------------------------------------- /features/.gitignore: -------------------------------------------------------------------------------- 1 | temp-bugsnag-lib -------------------------------------------------------------------------------- /features/delayed_job.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/delayed_job.feature -------------------------------------------------------------------------------- /features/fixtures/delayed_job/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/.gitignore -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/README.md -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/Rakefile -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/config.ru -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/config/application.rb -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/config/boot.rb -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/config/cable.yml -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/config/database.yml -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/config/environment.rb -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/config/locales/en.yml -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/config/puma.rb -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/config/routes.rb -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/config/secrets.yml -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/config/spring.rb -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/db/schema.rb -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/db/seeds.rb -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/public/404.html -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/public/422.html -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/public/500.html -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/public/robots.txt -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/delayed_job/app/test/test_helper.rb -------------------------------------------------------------------------------- /features/fixtures/delayed_job/app/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/docker-compose.yml -------------------------------------------------------------------------------- /features/fixtures/expected_breadcrumbs/active_job.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/expected_breadcrumbs/active_job.json -------------------------------------------------------------------------------- /features/fixtures/expected_breadcrumbs/mongo_failed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/expected_breadcrumbs/mongo_failed.json -------------------------------------------------------------------------------- /features/fixtures/expected_breadcrumbs/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/expected_breadcrumbs/request.json -------------------------------------------------------------------------------- /features/fixtures/mailman/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/mailman/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/mailman/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/mailman/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/mailman/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/mailman/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/mailman/app/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/mailman/app/app.rb -------------------------------------------------------------------------------- /features/fixtures/mailman/app/emails/handled_error.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/mailman/app/emails/handled_error.eml -------------------------------------------------------------------------------- /features/fixtures/mailman/app/emails/unhandled_error.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/mailman/app/emails/unhandled_error.eml -------------------------------------------------------------------------------- /features/fixtures/mailman/app/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cat $TARGET_EMAIL | bundle exec ruby app.rb 3 | -------------------------------------------------------------------------------- /features/fixtures/plain/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/plain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/plain/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/plain/app/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/app.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/configuration/api_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/configuration/api_key.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/configuration/proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/configuration/proxy.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/delivery/fork_threadpool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/delivery/fork_threadpool.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/delivery/synchronous.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/delivery/synchronous.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/delivery/threadpool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/delivery/threadpool.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/exception_data/crash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/exception_data/crash.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/filters/default_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/filters/default_filters.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/handled/block_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/handled/block_metadata.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/handled/ignore_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/handled/ignore_exception.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/handled/notify_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/handled/notify_exception.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/handled/notify_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/handled/notify_string.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/ignore_classes/handled.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/ignore_classes/handled.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/ignore_classes/unhandled.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/ignore_classes/unhandled.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/unhandled/bad_syntax.rb: -------------------------------------------------------------------------------- 1 | 1+1=2 -------------------------------------------------------------------------------- /features/fixtures/plain/app/unhandled/custom_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/unhandled/custom_error.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/unhandled/interrupt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/unhandled/interrupt.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/unhandled/load_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/unhandled/load_error.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/unhandled/name_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/unhandled/name_error.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/unhandled/no_method_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/unhandled/no_method_error.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/unhandled/runtime_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/unhandled/runtime_error.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/unhandled/syntax_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/unhandled/syntax_error.rb -------------------------------------------------------------------------------- /features/fixtures/plain/app/unhandled/system_exit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/app/unhandled/system_exit.rb -------------------------------------------------------------------------------- /features/fixtures/plain/json/delivery_fork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/json/delivery_fork.json -------------------------------------------------------------------------------- /features/fixtures/plain/json/delivery_synchronous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/json/delivery_synchronous.json -------------------------------------------------------------------------------- /features/fixtures/plain/json/delivery_threadpool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/plain/json/delivery_threadpool.json -------------------------------------------------------------------------------- /features/fixtures/que/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/que/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/que/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/que/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/que/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/que/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/que/app/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/que/app/app.rb -------------------------------------------------------------------------------- /features/fixtures/que/app/enqueue-job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/que/app/enqueue-job.rb -------------------------------------------------------------------------------- /features/fixtures/que/app/setup-que.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/que/app/setup-que.rb -------------------------------------------------------------------------------- /features/fixtures/rack/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rack/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/rack/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rack/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/rack/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rack/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/rack/app/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rack/app/app.rb -------------------------------------------------------------------------------- /features/fixtures/rails3/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/rails3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/rails3/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/.gitignore -------------------------------------------------------------------------------- /features/fixtures/rails3/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/rails3/app/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/Rakefile -------------------------------------------------------------------------------- /features/fixtures/rails3/app/app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/app/assets/images/rails.png -------------------------------------------------------------------------------- /features/fixtures/rails3/app/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /features/fixtures/rails3/app/app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails3/app/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails3/app/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/app/models/user.rb -------------------------------------------------------------------------------- /features/fixtures/rails3/app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/config.ru -------------------------------------------------------------------------------- /features/fixtures/rails3/app/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/config/application.rb -------------------------------------------------------------------------------- /features/fixtures/rails3/app/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/config/boot.rb -------------------------------------------------------------------------------- /features/fixtures/rails3/app/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/config/database.yml -------------------------------------------------------------------------------- /features/fixtures/rails3/app/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/config/environment.rb -------------------------------------------------------------------------------- /features/fixtures/rails3/app/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/config/locales/en.yml -------------------------------------------------------------------------------- /features/fixtures/rails3/app/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/config/routes.rb -------------------------------------------------------------------------------- /features/fixtures/rails3/app/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/db/schema.rb -------------------------------------------------------------------------------- /features/fixtures/rails3/app/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/db/seeds.rb -------------------------------------------------------------------------------- /features/fixtures/rails3/app/lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails3/app/lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails3/app/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails3/app/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/public/404.html -------------------------------------------------------------------------------- /features/fixtures/rails3/app/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/public/422.html -------------------------------------------------------------------------------- /features/fixtures/rails3/app/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/public/500.html -------------------------------------------------------------------------------- /features/fixtures/rails3/app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails3/app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/public/index.html -------------------------------------------------------------------------------- /features/fixtures/rails3/app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/public/robots.txt -------------------------------------------------------------------------------- /features/fixtures/rails3/app/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails3/app/script/rails -------------------------------------------------------------------------------- /features/fixtures/rails4/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/rails4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/rails4/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/.gitignore -------------------------------------------------------------------------------- /features/fixtures/rails4/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/rails4/app/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/README.rdoc -------------------------------------------------------------------------------- /features/fixtures/rails4/app/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/Rakefile -------------------------------------------------------------------------------- /features/fixtures/rails4/app/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/app/jobs/notify_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/app/jobs/notify_job.rb -------------------------------------------------------------------------------- /features/fixtures/rails4/app/app/jobs/unhandled_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/app/jobs/unhandled_job.rb -------------------------------------------------------------------------------- /features/fixtures/rails4/app/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/app/models/mongo_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/app/models/mongo_model.rb -------------------------------------------------------------------------------- /features/fixtures/rails4/app/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/app/models/user.rb -------------------------------------------------------------------------------- /features/fixtures/rails4/app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/config.ru -------------------------------------------------------------------------------- /features/fixtures/rails4/app/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/config/application.rb -------------------------------------------------------------------------------- /features/fixtures/rails4/app/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/config/boot.rb -------------------------------------------------------------------------------- /features/fixtures/rails4/app/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/config/database.yml -------------------------------------------------------------------------------- /features/fixtures/rails4/app/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/config/environment.rb -------------------------------------------------------------------------------- /features/fixtures/rails4/app/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/config/environments/test.rb -------------------------------------------------------------------------------- /features/fixtures/rails4/app/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/config/locales/en.yml -------------------------------------------------------------------------------- /features/fixtures/rails4/app/config/mongoid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/config/mongoid.yml -------------------------------------------------------------------------------- /features/fixtures/rails4/app/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/config/routes.rb -------------------------------------------------------------------------------- /features/fixtures/rails4/app/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/db/seeds.rb -------------------------------------------------------------------------------- /features/fixtures/rails4/app/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/public/404.html -------------------------------------------------------------------------------- /features/fixtures/rails4/app/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/public/422.html -------------------------------------------------------------------------------- /features/fixtures/rails4/app/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/public/500.html -------------------------------------------------------------------------------- /features/fixtures/rails4/app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/public/robots.txt -------------------------------------------------------------------------------- /features/fixtures/rails4/app/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails4/app/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails4/app/test/test_helper.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/rails5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/rails5/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/.gitignore -------------------------------------------------------------------------------- /features/fixtures/rails5/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/rails5/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/README.md -------------------------------------------------------------------------------- /features/fixtures/rails5/app/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/Rakefile -------------------------------------------------------------------------------- /features/fixtures/rails5/app/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/app/jobs/notify_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/app/jobs/notify_job.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/app/app/jobs/unhandled_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/app/jobs/unhandled_job.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/app/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/app/models/mongo_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/app/models/mongo_model.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/app/app/models/user.rb: -------------------------------------------------------------------------------- 1 | class User < ApplicationRecord 2 | include Clearance::User 3 | end 4 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/config.ru -------------------------------------------------------------------------------- /features/fixtures/rails5/app/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/config/application.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/app/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/config/boot.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/app/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/config/cable.yml -------------------------------------------------------------------------------- /features/fixtures/rails5/app/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/config/database.yml -------------------------------------------------------------------------------- /features/fixtures/rails5/app/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/config/environment.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/app/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/config/environments/test.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/app/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/config/locales/en.yml -------------------------------------------------------------------------------- /features/fixtures/rails5/app/config/mongoid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/config/mongoid.yml -------------------------------------------------------------------------------- /features/fixtures/rails5/app/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/config/puma.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/app/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/config/routes.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/app/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/config/secrets.yml -------------------------------------------------------------------------------- /features/fixtures/rails5/app/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/config/spring.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/app/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/db/schema.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/app/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/db/seeds.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/app/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/public/404.html -------------------------------------------------------------------------------- /features/fixtures/rails5/app/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/public/422.html -------------------------------------------------------------------------------- /features/fixtures/rails5/app/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/public/500.html -------------------------------------------------------------------------------- /features/fixtures/rails5/app/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/public/robots.txt -------------------------------------------------------------------------------- /features/fixtures/rails5/app/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails5/app/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails5/app/test/test_helper.rb -------------------------------------------------------------------------------- /features/fixtures/rails5/app/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/rails6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/rails6/app/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/.gitignore -------------------------------------------------------------------------------- /features/fixtures/rails6/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/rails6/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/README.md -------------------------------------------------------------------------------- /features/fixtures/rails6/app/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/Rakefile -------------------------------------------------------------------------------- /features/fixtures/rails6/app/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/app/jobs/application_job.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/app/jobs/notify_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/app/jobs/notify_job.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/app/jobs/unhandled_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/app/jobs/unhandled_job.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/app/models/mongo_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/app/models/mongo_model.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/app/models/user.rb: -------------------------------------------------------------------------------- 1 | class User < ApplicationRecord 2 | include Clearance::User 3 | end 4 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/babel.config.js -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config.ru -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/application.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/boot.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/cable.yml -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/credentials.yml.enc -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/database.yml -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/environment.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/environments/test.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/locales/en.yml -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/mongoid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/mongoid.yml -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/puma.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/routes.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/secrets.yml -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/spring.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/storage.yml -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/webpack/rails_env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/webpack/rails_env.js -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/webpack/test.js -------------------------------------------------------------------------------- /features/fixtures/rails6/app/config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/config/webpacker.yml -------------------------------------------------------------------------------- /features/fixtures/rails6/app/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/db/schema.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/db/seeds.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/package.json -------------------------------------------------------------------------------- /features/fixtures/rails6/app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/postcss.config.js -------------------------------------------------------------------------------- /features/fixtures/rails6/app/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/public/404.html -------------------------------------------------------------------------------- /features/fixtures/rails6/app/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/public/422.html -------------------------------------------------------------------------------- /features/fixtures/rails6/app/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/public/500.html -------------------------------------------------------------------------------- /features/fixtures/rails6/app/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/public/robots.txt -------------------------------------------------------------------------------- /features/fixtures/rails6/app/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/test/test_helper.rb -------------------------------------------------------------------------------- /features/fixtures/rails6/app/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails6/app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails6/app/yarn.lock -------------------------------------------------------------------------------- /features/fixtures/rails7/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/rails7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/rails7/app/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/.gitattributes -------------------------------------------------------------------------------- /features/fixtures/rails7/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/.gitignore -------------------------------------------------------------------------------- /features/fixtures/rails7/app/.ruby-version: -------------------------------------------------------------------------------- 1 | 3.0.2 2 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/rails7/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/README.md -------------------------------------------------------------------------------- /features/fixtures/rails7/app/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/Rakefile -------------------------------------------------------------------------------- /features/fixtures/rails7/app/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/app/jobs/application_job.rb -------------------------------------------------------------------------------- /features/fixtures/rails7/app/app/jobs/notify_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/app/jobs/notify_job.rb -------------------------------------------------------------------------------- /features/fixtures/rails7/app/app/jobs/unhandled_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/app/jobs/unhandled_job.rb -------------------------------------------------------------------------------- /features/fixtures/rails7/app/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/app/models/mongo_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/app/models/mongo_model.rb -------------------------------------------------------------------------------- /features/fixtures/rails7/app/app/models/user.rb: -------------------------------------------------------------------------------- 1 | class User < ApplicationRecord 2 | include Clearance::User 3 | end 4 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/config.ru -------------------------------------------------------------------------------- /features/fixtures/rails7/app/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/config/application.rb -------------------------------------------------------------------------------- /features/fixtures/rails7/app/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/config/boot.rb -------------------------------------------------------------------------------- /features/fixtures/rails7/app/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/config/cable.yml -------------------------------------------------------------------------------- /features/fixtures/rails7/app/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/config/credentials.yml.enc -------------------------------------------------------------------------------- /features/fixtures/rails7/app/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/config/database.yml -------------------------------------------------------------------------------- /features/fixtures/rails7/app/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/config/environment.rb -------------------------------------------------------------------------------- /features/fixtures/rails7/app/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/config/environments/test.rb -------------------------------------------------------------------------------- /features/fixtures/rails7/app/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/config/locales/en.yml -------------------------------------------------------------------------------- /features/fixtures/rails7/app/config/master.key: -------------------------------------------------------------------------------- 1 | ad9a3dd7ff60b12db5122a87d0c1dca4 -------------------------------------------------------------------------------- /features/fixtures/rails7/app/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/config/puma.rb -------------------------------------------------------------------------------- /features/fixtures/rails7/app/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/config/routes.rb -------------------------------------------------------------------------------- /features/fixtures/rails7/app/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/config/storage.yml -------------------------------------------------------------------------------- /features/fixtures/rails7/app/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/db/seeds.rb -------------------------------------------------------------------------------- /features/fixtures/rails7/app/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/public/404.html -------------------------------------------------------------------------------- /features/fixtures/rails7/app/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/public/422.html -------------------------------------------------------------------------------- /features/fixtures/rails7/app/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/public/500.html -------------------------------------------------------------------------------- /features/fixtures/rails7/app/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/public/robots.txt -------------------------------------------------------------------------------- /features/fixtures/rails7/app/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails7/app/test/test_helper.rb -------------------------------------------------------------------------------- /features/fixtures/rails7/app/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails7/app/tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/rails8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/rails8/app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/rails8/app/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/.gitattributes -------------------------------------------------------------------------------- /features/fixtures/rails8/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/.gitignore -------------------------------------------------------------------------------- /features/fixtures/rails8/app/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/.rubocop.yml -------------------------------------------------------------------------------- /features/fixtures/rails8/app/.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.5 2 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/rails8/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/rails8/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/README.md -------------------------------------------------------------------------------- /features/fixtures/rails8/app/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/Rakefile -------------------------------------------------------------------------------- /features/fixtures/rails8/app/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/app/jobs/application_job.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/app/jobs/notify_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/app/jobs/notify_job.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/app/jobs/unhandled_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/app/jobs/unhandled_job.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/app/models/mongo_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/app/models/mongo_model.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/app/models/user.rb: -------------------------------------------------------------------------------- 1 | class User < ApplicationRecord 2 | include Clearance::User 3 | end 4 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/bin-copy/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/bin-copy/brakeman -------------------------------------------------------------------------------- /features/fixtures/rails8/app/bin-copy/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/bin-copy/bundle -------------------------------------------------------------------------------- /features/fixtures/rails8/app/bin-copy/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/bin-copy/dev -------------------------------------------------------------------------------- /features/fixtures/rails8/app/bin-copy/docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/bin-copy/docker-entrypoint -------------------------------------------------------------------------------- /features/fixtures/rails8/app/bin-copy/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/bin-copy/importmap -------------------------------------------------------------------------------- /features/fixtures/rails8/app/bin-copy/jobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/bin-copy/jobs -------------------------------------------------------------------------------- /features/fixtures/rails8/app/bin-copy/kamal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/bin-copy/kamal -------------------------------------------------------------------------------- /features/fixtures/rails8/app/bin-copy/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/bin-copy/rails -------------------------------------------------------------------------------- /features/fixtures/rails8/app/bin-copy/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/bin-copy/rake -------------------------------------------------------------------------------- /features/fixtures/rails8/app/bin-copy/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/bin-copy/rubocop -------------------------------------------------------------------------------- /features/fixtures/rails8/app/bin-copy/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/bin-copy/setup -------------------------------------------------------------------------------- /features/fixtures/rails8/app/bin-copy/thrust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/bin-copy/thrust -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config.ru -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/application.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/boot.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/cable.yml -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/cache.yml -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/credentials.yml.enc -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/database.yml -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/deploy.yml -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/environment.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/environments/test.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/importmap.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/locales/en.yml -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/master.key: -------------------------------------------------------------------------------- 1 | a4ac6c46d2d6a2056559d556aa8be861 -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/puma.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/queue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/queue.yml -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/recurring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/recurring.yml -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/routes.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/config/storage.yml -------------------------------------------------------------------------------- /features/fixtures/rails8/app/db/cable_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/db/cable_schema.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/db/cache_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/db/cache_schema.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/db/queue_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/db/queue_schema.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/db/seeds.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/public/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/public/400.html -------------------------------------------------------------------------------- /features/fixtures/rails8/app/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/public/404.html -------------------------------------------------------------------------------- /features/fixtures/rails8/app/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/public/422.html -------------------------------------------------------------------------------- /features/fixtures/rails8/app/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/public/500.html -------------------------------------------------------------------------------- /features/fixtures/rails8/app/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/public/icon.png -------------------------------------------------------------------------------- /features/fixtures/rails8/app/public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/public/icon.svg -------------------------------------------------------------------------------- /features/fixtures/rails8/app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/public/robots.txt -------------------------------------------------------------------------------- /features/fixtures/rails8/app/script/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails8/app/test/test_helper.rb -------------------------------------------------------------------------------- /features/fixtures/rails8/app/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails8/app/tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/app/.gitignore -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/app/README.md -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/app/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/app/Rakefile -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/app/config.ru -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/app/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/app/config/boot.rb -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/app/config/initializers/resque.rb: -------------------------------------------------------------------------------- 1 | Resque.redis = ENV.fetch('REDIS_URL', 'localhost:6379') 2 | -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/app/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/app/config/puma.rb -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/app/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/app/db/schema.rb -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/app/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/app/db/seeds.rb -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/app/example.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/app/example.eml -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/app/mailman.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/app/mailman.rb -------------------------------------------------------------------------------- /features/fixtures/rails_integrations/app/run_mailman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rails_integrations/app/run_mailman -------------------------------------------------------------------------------- /features/fixtures/rake/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rake/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/rake/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rake/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/rake/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rake/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/rake/app/Rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/rake/app/Rakefile.rb -------------------------------------------------------------------------------- /features/fixtures/run-ruby-integrations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/run-ruby-integrations -------------------------------------------------------------------------------- /features/fixtures/sidekiq/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/sidekiq/.dockerignore -------------------------------------------------------------------------------- /features/fixtures/sidekiq/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/sidekiq/Dockerfile -------------------------------------------------------------------------------- /features/fixtures/sidekiq/app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/sidekiq/app/Gemfile -------------------------------------------------------------------------------- /features/fixtures/sidekiq/app/Rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/sidekiq/app/Rakefile.rb -------------------------------------------------------------------------------- /features/fixtures/sidekiq/app/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/fixtures/sidekiq/app/app.rb -------------------------------------------------------------------------------- /features/fixtures/sidekiq/app/initializers/HandledError.rb: -------------------------------------------------------------------------------- 1 | require './app.rb' 2 | 3 | HandledError.perform_async -------------------------------------------------------------------------------- /features/fixtures/sidekiq/app/initializers/UnhandledError.rb: -------------------------------------------------------------------------------- 1 | require './app.rb' 2 | 3 | UnhandledError.perform_async -------------------------------------------------------------------------------- /features/lib/fixture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/lib/fixture.rb -------------------------------------------------------------------------------- /features/mailman.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/mailman.feature -------------------------------------------------------------------------------- /features/plain_features/add_tab.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/add_tab.feature -------------------------------------------------------------------------------- /features/plain_features/app_type.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/app_type.feature -------------------------------------------------------------------------------- /features/plain_features/app_version.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/app_version.feature -------------------------------------------------------------------------------- /features/plain_features/auto_notify.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/auto_notify.feature -------------------------------------------------------------------------------- /features/plain_features/delivery.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/delivery.feature -------------------------------------------------------------------------------- /features/plain_features/exception_data.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/exception_data.feature -------------------------------------------------------------------------------- /features/plain_features/filters.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/filters.feature -------------------------------------------------------------------------------- /features/plain_features/handled_errors.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/handled_errors.feature -------------------------------------------------------------------------------- /features/plain_features/ignore_classes.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/ignore_classes.feature -------------------------------------------------------------------------------- /features/plain_features/ignore_report.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/ignore_report.feature -------------------------------------------------------------------------------- /features/plain_features/proxies.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/proxies.feature -------------------------------------------------------------------------------- /features/plain_features/release_stages.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/release_stages.feature -------------------------------------------------------------------------------- /features/plain_features/report_api_key.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/report_api_key.feature -------------------------------------------------------------------------------- /features/plain_features/report_severity.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/report_severity.feature -------------------------------------------------------------------------------- /features/plain_features/report_stack_frames.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/report_stack_frames.feature -------------------------------------------------------------------------------- /features/plain_features/report_user.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/report_user.feature -------------------------------------------------------------------------------- /features/plain_features/unhandled_errors.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/plain_features/unhandled_errors.feature -------------------------------------------------------------------------------- /features/que.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/que.feature -------------------------------------------------------------------------------- /features/rack.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rack.feature -------------------------------------------------------------------------------- /features/rails_features/active_job.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/active_job.feature -------------------------------------------------------------------------------- /features/rails_features/active_record.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/active_record.feature -------------------------------------------------------------------------------- /features/rails_features/api_key.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/api_key.feature -------------------------------------------------------------------------------- /features/rails_features/app_type.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/app_type.feature -------------------------------------------------------------------------------- /features/rails_features/app_version.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/app_version.feature -------------------------------------------------------------------------------- /features/rails_features/auto_capture_sessions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/auto_capture_sessions.feature -------------------------------------------------------------------------------- /features/rails_features/auto_notify.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/auto_notify.feature -------------------------------------------------------------------------------- /features/rails_features/before_notify.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/before_notify.feature -------------------------------------------------------------------------------- /features/rails_features/breadcrumbs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/breadcrumbs.feature -------------------------------------------------------------------------------- /features/rails_features/feature_flags.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/feature_flags.feature -------------------------------------------------------------------------------- /features/rails_features/handled.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/handled.feature -------------------------------------------------------------------------------- /features/rails_features/ignore_classes.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/ignore_classes.feature -------------------------------------------------------------------------------- /features/rails_features/integrations.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/integrations.feature -------------------------------------------------------------------------------- /features/rails_features/meta_data_filters.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/meta_data_filters.feature -------------------------------------------------------------------------------- /features/rails_features/mongo_breadcrumbs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/mongo_breadcrumbs.feature -------------------------------------------------------------------------------- /features/rails_features/on_error.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/on_error.feature -------------------------------------------------------------------------------- /features/rails_features/project_root.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/project_root.feature -------------------------------------------------------------------------------- /features/rails_features/release_stage.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/release_stage.feature -------------------------------------------------------------------------------- /features/rails_features/request.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/request.feature -------------------------------------------------------------------------------- /features/rails_features/send_code.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/send_code.feature -------------------------------------------------------------------------------- /features/rails_features/send_environment.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/send_environment.feature -------------------------------------------------------------------------------- /features/rails_features/unhandled.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/unhandled.feature -------------------------------------------------------------------------------- /features/rails_features/user_info.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rails_features/user_info.feature -------------------------------------------------------------------------------- /features/rake.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/rake.feature -------------------------------------------------------------------------------- /features/sidekiq.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/sidekiq.feature -------------------------------------------------------------------------------- /features/steps/ruby_notifier_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/steps/ruby_notifier_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /lib/bugsnag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag.rb -------------------------------------------------------------------------------- /lib/bugsnag/breadcrumb_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/breadcrumb_type.rb -------------------------------------------------------------------------------- /lib/bugsnag/breadcrumbs/breadcrumb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/breadcrumbs/breadcrumb.rb -------------------------------------------------------------------------------- /lib/bugsnag/breadcrumbs/breadcrumbs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/breadcrumbs/breadcrumbs.rb -------------------------------------------------------------------------------- /lib/bugsnag/breadcrumbs/on_breadcrumb_callback_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/breadcrumbs/on_breadcrumb_callback_list.rb -------------------------------------------------------------------------------- /lib/bugsnag/breadcrumbs/validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/breadcrumbs/validator.rb -------------------------------------------------------------------------------- /lib/bugsnag/cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/cleaner.rb -------------------------------------------------------------------------------- /lib/bugsnag/code_extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/code_extractor.rb -------------------------------------------------------------------------------- /lib/bugsnag/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/configuration.rb -------------------------------------------------------------------------------- /lib/bugsnag/delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/delivery.rb -------------------------------------------------------------------------------- /lib/bugsnag/delivery/synchronous.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/delivery/synchronous.rb -------------------------------------------------------------------------------- /lib/bugsnag/delivery/thread_queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/delivery/thread_queue.rb -------------------------------------------------------------------------------- /lib/bugsnag/endpoint_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/endpoint_configuration.rb -------------------------------------------------------------------------------- /lib/bugsnag/endpoint_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/endpoint_validator.rb -------------------------------------------------------------------------------- /lib/bugsnag/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/error.rb -------------------------------------------------------------------------------- /lib/bugsnag/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/event.rb -------------------------------------------------------------------------------- /lib/bugsnag/feature_flag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/feature_flag.rb -------------------------------------------------------------------------------- /lib/bugsnag/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/helpers.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/delayed_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/delayed_job.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/mailman.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/mailman.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/mongo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/mongo.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/que.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/que.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/rack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/rack.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/rails/active_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/rails/active_job.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/rails/active_record_rescue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/rails/active_record_rescue.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/rails/controller_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/rails/controller_methods.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/rails/rails_breadcrumbs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/rails/rails_breadcrumbs.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/railtie.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/rake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/rake.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/resque.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/resque.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/shoryuken.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/shoryuken.rb -------------------------------------------------------------------------------- /lib/bugsnag/integrations/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/integrations/sidekiq.rb -------------------------------------------------------------------------------- /lib/bugsnag/meta_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/meta_data.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/active_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/active_job.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/breadcrumbs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/breadcrumbs.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/callbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/callbacks.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/classify_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/classify_error.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/clearance_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/clearance_user.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/delayed_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/delayed_job.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/discard_error_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/discard_error_class.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/exception_meta_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/exception_meta_data.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/ignore_error_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/ignore_error_class.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/mailman.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/mailman.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/rack_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/rack_request.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/rails3_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/rails3_request.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/rake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/rake.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/session_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/session_data.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/sidekiq.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/suggestion_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/suggestion_data.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware/warden_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware/warden_user.rb -------------------------------------------------------------------------------- /lib/bugsnag/middleware_stack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/middleware_stack.rb -------------------------------------------------------------------------------- /lib/bugsnag/on_error_callbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/on_error_callbacks.rb -------------------------------------------------------------------------------- /lib/bugsnag/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/report.rb -------------------------------------------------------------------------------- /lib/bugsnag/session_tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/session_tracker.rb -------------------------------------------------------------------------------- /lib/bugsnag/stacktrace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/stacktrace.rb -------------------------------------------------------------------------------- /lib/bugsnag/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/tasks.rb -------------------------------------------------------------------------------- /lib/bugsnag/tasks/bugsnag.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/tasks/bugsnag.rake -------------------------------------------------------------------------------- /lib/bugsnag/utility/circular_buffer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/utility/circular_buffer.rb -------------------------------------------------------------------------------- /lib/bugsnag/utility/duplicator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/utility/duplicator.rb -------------------------------------------------------------------------------- /lib/bugsnag/utility/feature_data_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/utility/feature_data_store.rb -------------------------------------------------------------------------------- /lib/bugsnag/utility/feature_flag_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/utility/feature_flag_delegate.rb -------------------------------------------------------------------------------- /lib/bugsnag/utility/metadata_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/utility/metadata_delegate.rb -------------------------------------------------------------------------------- /lib/bugsnag/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/bugsnag/version.rb -------------------------------------------------------------------------------- /lib/generators/bugsnag/bugsnag_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/lib/generators/bugsnag/bugsnag_generator.rb -------------------------------------------------------------------------------- /spec/breadcrumb_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/breadcrumb_type_spec.rb -------------------------------------------------------------------------------- /spec/breadcrumbs/breadcrumb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/breadcrumbs/breadcrumb_spec.rb -------------------------------------------------------------------------------- /spec/breadcrumbs/on_breadcrumb_callback_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/breadcrumbs/on_breadcrumb_callback_list_spec.rb -------------------------------------------------------------------------------- /spec/breadcrumbs/validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/breadcrumbs/validator_spec.rb -------------------------------------------------------------------------------- /spec/bugsnag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/bugsnag_spec.rb -------------------------------------------------------------------------------- /spec/cleaner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/cleaner_spec.rb -------------------------------------------------------------------------------- /spec/code_extractor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/code_extractor_spec.rb -------------------------------------------------------------------------------- /spec/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/configuration_spec.rb -------------------------------------------------------------------------------- /spec/endpoint_configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/endpoint_configuration_spec.rb -------------------------------------------------------------------------------- /spec/endpoint_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/endpoint_validator_spec.rb -------------------------------------------------------------------------------- /spec/feature_flag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/feature_flag_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/apps/rails-initializer-config/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/apps/rails-initializer-config/Gemfile -------------------------------------------------------------------------------- /spec/fixtures/apps/rails-initializer-config/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/apps/rails-initializer-config/config.ru -------------------------------------------------------------------------------- /spec/fixtures/apps/rails-no-config/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/apps/rails-no-config/Gemfile -------------------------------------------------------------------------------- /spec/fixtures/apps/rails-no-config/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/apps/rails-no-config/config.ru -------------------------------------------------------------------------------- /spec/fixtures/apps/scripts/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/apps/scripts/Gemfile -------------------------------------------------------------------------------- /spec/fixtures/apps/scripts/configure_invalid_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/apps/scripts/configure_invalid_key.rb -------------------------------------------------------------------------------- /spec/fixtures/apps/scripts/configure_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/apps/scripts/configure_key.rb -------------------------------------------------------------------------------- /spec/fixtures/apps/scripts/no_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/apps/scripts/no_config.rb -------------------------------------------------------------------------------- /spec/fixtures/crashes/end_of_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/crashes/end_of_file.rb -------------------------------------------------------------------------------- /spec/fixtures/crashes/file1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/crashes/file1.rb -------------------------------------------------------------------------------- /spec/fixtures/crashes/file2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/crashes/file2.rb -------------------------------------------------------------------------------- /spec/fixtures/crashes/file_with_long_lines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/crashes/file_with_long_lines.rb -------------------------------------------------------------------------------- /spec/fixtures/crashes/functions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/crashes/functions.rb -------------------------------------------------------------------------------- /spec/fixtures/crashes/short_file.rb: -------------------------------------------------------------------------------- 1 | # 2 | raise 'hell' 3 | # 4 | -------------------------------------------------------------------------------- /spec/fixtures/crashes/start_of_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/crashes/start_of_file.rb -------------------------------------------------------------------------------- /spec/fixtures/middleware/internal_info_setter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/middleware/internal_info_setter.rb -------------------------------------------------------------------------------- /spec/fixtures/middleware/public_info_setter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/middleware/public_info_setter.rb -------------------------------------------------------------------------------- /spec/fixtures/tasks/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/fixtures/tasks/Rakefile -------------------------------------------------------------------------------- /spec/helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/helper_spec.rb -------------------------------------------------------------------------------- /spec/integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/integration_spec.rb -------------------------------------------------------------------------------- /spec/integrations/clearance_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/integrations/clearance_user_spec.rb -------------------------------------------------------------------------------- /spec/integrations/logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/integrations/logger_spec.rb -------------------------------------------------------------------------------- /spec/integrations/mailman_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/integrations/mailman_spec.rb -------------------------------------------------------------------------------- /spec/integrations/mongo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/integrations/mongo_spec.rb -------------------------------------------------------------------------------- /spec/integrations/que_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/integrations/que_spec.rb -------------------------------------------------------------------------------- /spec/integrations/rack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/integrations/rack_spec.rb -------------------------------------------------------------------------------- /spec/integrations/rails3_request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/integrations/rails3_request_spec.rb -------------------------------------------------------------------------------- /spec/integrations/rake_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/integrations/rake_spec.rb -------------------------------------------------------------------------------- /spec/integrations/resque_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/integrations/resque_spec.rb -------------------------------------------------------------------------------- /spec/integrations/shoryuken_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/integrations/shoryuken_spec.rb -------------------------------------------------------------------------------- /spec/integrations/sidekiq_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/integrations/sidekiq_spec.rb -------------------------------------------------------------------------------- /spec/integrations/warden_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/integrations/warden_user_spec.rb -------------------------------------------------------------------------------- /spec/middleware/active_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/middleware/active_job_spec.rb -------------------------------------------------------------------------------- /spec/middleware/exception_meta_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/middleware/exception_meta_data_spec.rb -------------------------------------------------------------------------------- /spec/middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/middleware_spec.rb -------------------------------------------------------------------------------- /spec/middleware_stack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/middleware_stack_spec.rb -------------------------------------------------------------------------------- /spec/on_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/on_error_spec.rb -------------------------------------------------------------------------------- /spec/report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/report_spec.rb -------------------------------------------------------------------------------- /spec/session_tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/session_tracker_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/stacktrace_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/stacktrace_spec.rb -------------------------------------------------------------------------------- /spec/support/exception_with_detailed_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/support/exception_with_detailed_message.rb -------------------------------------------------------------------------------- /spec/support/exception_with_detailed_message_ruby_1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/support/exception_with_detailed_message_ruby_1.rb -------------------------------------------------------------------------------- /spec/support/shared_examples_for_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/support/shared_examples_for_metadata.rb -------------------------------------------------------------------------------- /spec/utility/circular_buffer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/utility/circular_buffer_spec.rb -------------------------------------------------------------------------------- /spec/utility/duplicator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/utility/duplicator_spec.rb -------------------------------------------------------------------------------- /spec/utility/feature_flag_delegate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/utility/feature_flag_delegate_spec.rb -------------------------------------------------------------------------------- /spec/utility/metadata_delegate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-ruby/HEAD/spec/utility/metadata_delegate_spec.rb --------------------------------------------------------------------------------