bugsnag 6.15.0 → 6.27.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +12 -0
- data/CHANGELOG.md +289 -0
- data/README.md +1 -2
- data/VERSION +1 -1
- data/bugsnag.gemspec +19 -2
- data/lib/bugsnag/breadcrumb_type.rb +14 -0
- data/lib/bugsnag/breadcrumbs/breadcrumb.rb +35 -2
- data/lib/bugsnag/breadcrumbs/breadcrumbs.rb +1 -0
- data/lib/bugsnag/breadcrumbs/on_breadcrumb_callback_list.rb +48 -0
- data/lib/bugsnag/breadcrumbs/validator.rb +0 -24
- data/lib/bugsnag/cleaner.rb +70 -29
- data/lib/bugsnag/configuration.rb +445 -47
- data/lib/bugsnag/delivery/synchronous.rb +3 -4
- data/lib/bugsnag/delivery/thread_queue.rb +18 -5
- data/lib/bugsnag/endpoint_configuration.rb +11 -0
- data/lib/bugsnag/endpoint_validator.rb +80 -0
- data/lib/bugsnag/error.rb +25 -0
- data/lib/bugsnag/event.rb +5 -0
- data/lib/bugsnag/feature_flag.rb +74 -0
- data/lib/bugsnag/helpers.rb +17 -9
- data/lib/bugsnag/integrations/delayed_job.rb +13 -1
- data/lib/bugsnag/integrations/mailman.rb +2 -1
- data/lib/bugsnag/integrations/mongo.rb +5 -4
- data/lib/bugsnag/integrations/que.rb +2 -1
- data/lib/bugsnag/integrations/rack.rb +6 -4
- data/lib/bugsnag/integrations/rails/active_job.rb +100 -0
- data/lib/bugsnag/integrations/rails/rails_breadcrumbs.rb +2 -2
- data/lib/bugsnag/integrations/railtie.rb +93 -35
- data/lib/bugsnag/integrations/rake.rb +8 -3
- data/lib/bugsnag/integrations/resque.rb +30 -9
- data/lib/bugsnag/integrations/shoryuken.rb +2 -1
- data/lib/bugsnag/integrations/sidekiq.rb +3 -3
- data/lib/bugsnag/middleware/active_job.rb +18 -0
- data/lib/bugsnag/middleware/classify_error.rb +1 -0
- data/lib/bugsnag/middleware/delayed_job.rb +21 -1
- data/lib/bugsnag/middleware/exception_meta_data.rb +2 -0
- data/lib/bugsnag/middleware/rack_request.rb +103 -20
- data/lib/bugsnag/middleware/rails3_request.rb +2 -2
- data/lib/bugsnag/middleware/rake.rb +1 -1
- data/lib/bugsnag/middleware/session_data.rb +3 -1
- data/lib/bugsnag/middleware/sidekiq.rb +1 -1
- data/lib/bugsnag/middleware/suggestion_data.rb +9 -7
- data/lib/bugsnag/middleware/warden_user.rb +3 -0
- data/lib/bugsnag/middleware_stack.rb +6 -6
- data/lib/bugsnag/report.rb +292 -8
- data/lib/bugsnag/session_tracker.rb +52 -12
- data/lib/bugsnag/stacktrace.rb +14 -3
- data/lib/bugsnag/tasks/bugsnag.rake +1 -1
- data/lib/bugsnag/utility/duplicator.rb +124 -0
- data/lib/bugsnag/utility/feature_data_store.rb +41 -0
- data/lib/bugsnag/utility/feature_flag_delegate.rb +89 -0
- data/lib/bugsnag/utility/metadata_delegate.rb +102 -0
- data/lib/bugsnag.rb +256 -37
- metadata +25 -635
- data/.buildkite/pipeline.yml +0 -470
- data/.github/PULL_REQUEST_TEMPLATE.md +0 -84
- data/.gitignore +0 -55
- data/.rdoc_options +0 -27
- data/.rspec +0 -3
- data/.rubocop.yml +0 -57
- data/.rubocop_todo.yml +0 -1049
- data/CONTRIBUTING.md +0 -64
- data/Gemfile +0 -50
- data/Rakefile +0 -37
- data/TESTING.md +0 -81
- data/UPGRADING.md +0 -91
- data/docker-compose.yml +0 -46
- data/dockerfiles/Dockerfile.jruby-unit-tests +0 -13
- data/dockerfiles/Dockerfile.ruby-maze-runner +0 -26
- data/dockerfiles/Dockerfile.ruby-unit-tests +0 -12
- data/features/.gitignore +0 -1
- data/features/delayed_job.feature +0 -36
- data/features/fixtures/delayed_job/Dockerfile +0 -15
- data/features/fixtures/delayed_job/app/.gitignore +0 -21
- data/features/fixtures/delayed_job/app/Gemfile +0 -57
- data/features/fixtures/delayed_job/app/README.md +0 -24
- data/features/fixtures/delayed_job/app/Rakefile +0 -24
- data/features/fixtures/delayed_job/app/app/assets/config/manifest.js +0 -3
- data/features/fixtures/delayed_job/app/app/assets/images/.keep +0 -0
- data/features/fixtures/delayed_job/app/app/assets/javascripts/application.js +0 -16
- data/features/fixtures/delayed_job/app/app/assets/javascripts/cable.js +0 -13
- data/features/fixtures/delayed_job/app/app/assets/javascripts/channels/.keep +0 -0
- data/features/fixtures/delayed_job/app/app/assets/stylesheets/application.css +0 -15
- data/features/fixtures/delayed_job/app/app/channels/application_cable/channel.rb +0 -4
- data/features/fixtures/delayed_job/app/app/channels/application_cable/connection.rb +0 -4
- data/features/fixtures/delayed_job/app/app/controllers/application_controller.rb +0 -3
- data/features/fixtures/delayed_job/app/app/controllers/concerns/.keep +0 -0
- data/features/fixtures/delayed_job/app/app/helpers/application_helper.rb +0 -2
- data/features/fixtures/delayed_job/app/app/jobs/application_job.rb +0 -2
- data/features/fixtures/delayed_job/app/app/mailers/application_mailer.rb +0 -4
- data/features/fixtures/delayed_job/app/app/models/application_record.rb +0 -3
- data/features/fixtures/delayed_job/app/app/models/concerns/.keep +0 -0
- data/features/fixtures/delayed_job/app/app/models/test_model.rb +0 -10
- data/features/fixtures/delayed_job/app/app/views/layouts/application.html.erb +0 -14
- data/features/fixtures/delayed_job/app/app/views/layouts/mailer.html.erb +0 -13
- data/features/fixtures/delayed_job/app/app/views/layouts/mailer.text.erb +0 -1
- data/features/fixtures/delayed_job/app/config/application.rb +0 -15
- data/features/fixtures/delayed_job/app/config/boot.rb +0 -3
- data/features/fixtures/delayed_job/app/config/cable.yml +0 -9
- data/features/fixtures/delayed_job/app/config/database.yml +0 -25
- data/features/fixtures/delayed_job/app/config/environment.rb +0 -5
- data/features/fixtures/delayed_job/app/config/environments/development.rb +0 -54
- data/features/fixtures/delayed_job/app/config/environments/production.rb +0 -86
- data/features/fixtures/delayed_job/app/config/environments/test.rb +0 -42
- data/features/fixtures/delayed_job/app/config/initializers/application_controller_renderer.rb +0 -8
- data/features/fixtures/delayed_job/app/config/initializers/assets.rb +0 -11
- data/features/fixtures/delayed_job/app/config/initializers/backtrace_silencers.rb +0 -7
- data/features/fixtures/delayed_job/app/config/initializers/bugsnag.rb +0 -14
- data/features/fixtures/delayed_job/app/config/initializers/cookies_serializer.rb +0 -5
- data/features/fixtures/delayed_job/app/config/initializers/delayed_job.rb +0 -3
- data/features/fixtures/delayed_job/app/config/initializers/filter_parameter_logging.rb +0 -4
- data/features/fixtures/delayed_job/app/config/initializers/inflections.rb +0 -16
- data/features/fixtures/delayed_job/app/config/initializers/mime_types.rb +0 -4
- data/features/fixtures/delayed_job/app/config/initializers/new_framework_defaults.rb +0 -26
- data/features/fixtures/delayed_job/app/config/initializers/session_store.rb +0 -3
- data/features/fixtures/delayed_job/app/config/initializers/wrap_parameters.rb +0 -14
- data/features/fixtures/delayed_job/app/config/locales/en.yml +0 -23
- data/features/fixtures/delayed_job/app/config/puma.rb +0 -47
- data/features/fixtures/delayed_job/app/config/routes.rb +0 -3
- data/features/fixtures/delayed_job/app/config/secrets.yml +0 -22
- data/features/fixtures/delayed_job/app/config/spring.rb +0 -6
- data/features/fixtures/delayed_job/app/config.ru +0 -5
- data/features/fixtures/delayed_job/app/db/migrate/20181024232549_create_delayed_jobs.rb +0 -22
- data/features/fixtures/delayed_job/app/db/migrate/20181024232817_create_test_models.rb +0 -8
- data/features/fixtures/delayed_job/app/db/schema.rb +0 -30
- data/features/fixtures/delayed_job/app/db/seeds.rb +0 -7
- data/features/fixtures/delayed_job/app/lib/assets/.keep +0 -0
- data/features/fixtures/delayed_job/app/lib/tasks/.keep +0 -0
- data/features/fixtures/delayed_job/app/log/.keep +0 -0
- data/features/fixtures/delayed_job/app/public/404.html +0 -67
- data/features/fixtures/delayed_job/app/public/422.html +0 -67
- data/features/fixtures/delayed_job/app/public/500.html +0 -66
- data/features/fixtures/delayed_job/app/public/apple-touch-icon-precomposed.png +0 -0
- data/features/fixtures/delayed_job/app/public/apple-touch-icon.png +0 -0
- data/features/fixtures/delayed_job/app/public/favicon.ico +0 -0
- data/features/fixtures/delayed_job/app/public/robots.txt +0 -5
- data/features/fixtures/delayed_job/app/test/controllers/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/fixtures/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/fixtures/files/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/fixtures/test_models.yml +0 -11
- data/features/fixtures/delayed_job/app/test/helpers/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/integration/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/mailers/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/models/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/models/test_model_test.rb +0 -7
- data/features/fixtures/delayed_job/app/test/test_helper.rb +0 -10
- data/features/fixtures/delayed_job/app/tmp/.keep +0 -0
- data/features/fixtures/docker-compose.yml +0 -303
- data/features/fixtures/expected_breadcrumbs/active_job.json +0 -9
- data/features/fixtures/expected_breadcrumbs/mongo_failed.json +0 -15
- data/features/fixtures/expected_breadcrumbs/mongo_filtered_request.json +0 -15
- data/features/fixtures/expected_breadcrumbs/mongo_filtered_result.json +0 -15
- data/features/fixtures/expected_breadcrumbs/mongo_success.json +0 -14
- data/features/fixtures/expected_breadcrumbs/request.json +0 -13
- data/features/fixtures/expected_breadcrumbs/sql_with_bindings.json +0 -12
- data/features/fixtures/expected_breadcrumbs/sql_without_bindings.json +0 -11
- data/features/fixtures/plain/.dockerignore +0 -2
- data/features/fixtures/plain/Dockerfile +0 -11
- data/features/fixtures/plain/app/Gemfile +0 -3
- data/features/fixtures/plain/app/app.rb +0 -38
- data/features/fixtures/plain/app/configuration/api_key.rb +0 -9
- data/features/fixtures/plain/app/configuration/proxy.rb +0 -14
- data/features/fixtures/plain/app/configuration/send_handled.rb +0 -7
- data/features/fixtures/plain/app/configuration/send_unhandled.rb +0 -9
- data/features/fixtures/plain/app/delivery/fork_threadpool.rb +0 -27
- data/features/fixtures/plain/app/delivery/synchronous.rb +0 -14
- data/features/fixtures/plain/app/delivery/threadpool.rb +0 -14
- data/features/fixtures/plain/app/exception_data/crash.rb +0 -34
- data/features/fixtures/plain/app/exception_data/handled_context.rb +0 -10
- data/features/fixtures/plain/app/exception_data/handled_hash.rb +0 -10
- data/features/fixtures/plain/app/exception_data/handled_meta_data.rb +0 -10
- data/features/fixtures/plain/app/exception_data/handled_user_id.rb +0 -10
- data/features/fixtures/plain/app/exception_data/unhandled_context.rb +0 -7
- data/features/fixtures/plain/app/exception_data/unhandled_hash.rb +0 -7
- data/features/fixtures/plain/app/exception_data/unhandled_meta_data.rb +0 -7
- data/features/fixtures/plain/app/exception_data/unhandled_user_id.rb +0 -7
- data/features/fixtures/plain/app/filters/additional_filters.rb +0 -11
- data/features/fixtures/plain/app/filters/default_filters.rb +0 -15
- data/features/fixtures/plain/app/handled/block_metadata.rb +0 -15
- data/features/fixtures/plain/app/handled/ignore_exception.rb +0 -12
- data/features/fixtures/plain/app/handled/notify_exception.rb +0 -9
- data/features/fixtures/plain/app/handled/notify_string.rb +0 -9
- data/features/fixtures/plain/app/ignore_classes/handled.rb +0 -8
- data/features/fixtures/plain/app/ignore_classes/ignore_error.rb +0 -8
- data/features/fixtures/plain/app/ignore_classes/unhandled.rb +0 -4
- data/features/fixtures/plain/app/report_modification/add_tab.rb +0 -16
- data/features/fixtures/plain/app/report_modification/add_tab_existing.rb +0 -22
- data/features/fixtures/plain/app/report_modification/add_tab_override.rb +0 -19
- data/features/fixtures/plain/app/report_modification/ignore_report.rb +0 -9
- data/features/fixtures/plain/app/report_modification/initiators/handled_before_notify.rb +0 -10
- data/features/fixtures/plain/app/report_modification/initiators/handled_block.rb +0 -8
- data/features/fixtures/plain/app/report_modification/initiators/handled_on_error.rb +0 -10
- data/features/fixtures/plain/app/report_modification/initiators/unhandled_before_notify.rb +0 -11
- data/features/fixtures/plain/app/report_modification/initiators/unhandled_on_error.rb +0 -11
- data/features/fixtures/plain/app/report_modification/modify_api_key.rb +0 -9
- data/features/fixtures/plain/app/report_modification/modify_severity.rb +0 -9
- data/features/fixtures/plain/app/report_modification/remove_user_details.rb +0 -14
- data/features/fixtures/plain/app/report_modification/set_custom_user_details.rb +0 -16
- data/features/fixtures/plain/app/report_modification/set_user_details.rb +0 -13
- data/features/fixtures/plain/app/stack_frame_modification/initiators/handled_before_notify.rb +0 -29
- data/features/fixtures/plain/app/stack_frame_modification/initiators/handled_block.rb +0 -24
- data/features/fixtures/plain/app/stack_frame_modification/initiators/handled_on_error.rb +0 -29
- data/features/fixtures/plain/app/stack_frame_modification/initiators/unhandled_before_notify.rb +0 -26
- data/features/fixtures/plain/app/stack_frame_modification/initiators/unhandled_on_error.rb +0 -26
- data/features/fixtures/plain/app/stack_frame_modification/mark_frames_in_project.rb +0 -13
- data/features/fixtures/plain/app/stack_frame_modification/remove_stack_frame.rb +0 -9
- data/features/fixtures/plain/app/unhandled/bad_syntax.rb +0 -1
- data/features/fixtures/plain/app/unhandled/custom_error.rb +0 -9
- data/features/fixtures/plain/app/unhandled/interrupt.rb +0 -6
- data/features/fixtures/plain/app/unhandled/load_error.rb +0 -6
- data/features/fixtures/plain/app/unhandled/local_jump_error.rb +0 -10
- data/features/fixtures/plain/app/unhandled/name_error.rb +0 -6
- data/features/fixtures/plain/app/unhandled/no_method_error.rb +0 -6
- data/features/fixtures/plain/app/unhandled/runtime_error.rb +0 -6
- data/features/fixtures/plain/app/unhandled/syntax_error.rb +0 -6
- data/features/fixtures/plain/app/unhandled/system_call_error.rb +0 -6
- data/features/fixtures/plain/app/unhandled/system_exit.rb +0 -6
- data/features/fixtures/plain/json/delivery_fork.json +0 -4
- data/features/fixtures/plain/json/delivery_synchronous.json +0 -4
- data/features/fixtures/plain/json/delivery_threadpool.json +0 -4
- data/features/fixtures/plain/json/filters_default_metadata_filters.json +0 -9
- data/features/fixtures/rack1/.dockerignore +0 -1
- data/features/fixtures/rack1/Dockerfile +0 -13
- data/features/fixtures/rack1/Gemfile +0 -4
- data/features/fixtures/rack1/app.rb +0 -8
- data/features/fixtures/rack2/.dockerignore +0 -1
- data/features/fixtures/rack2/Dockerfile +0 -13
- data/features/fixtures/rack2/Gemfile +0 -4
- data/features/fixtures/rack2/app.rb +0 -8
- data/features/fixtures/rails3/.dockerignore +0 -1
- data/features/fixtures/rails3/Dockerfile +0 -15
- data/features/fixtures/rails3/app/.gitignore +0 -15
- data/features/fixtures/rails3/app/Gemfile +0 -17
- data/features/fixtures/rails3/app/Rakefile +0 -7
- data/features/fixtures/rails3/app/app/assets/images/rails.png +0 -0
- data/features/fixtures/rails3/app/app/assets/javascripts/application.js +0 -15
- data/features/fixtures/rails3/app/app/assets/stylesheets/application.css +0 -13
- data/features/fixtures/rails3/app/app/controllers/api_key_controller.rb +0 -20
- data/features/fixtures/rails3/app/app/controllers/app_type_controller.rb +0 -20
- data/features/fixtures/rails3/app/app/controllers/app_version_controller.rb +0 -25
- data/features/fixtures/rails3/app/app/controllers/application_controller.rb +0 -7
- data/features/fixtures/rails3/app/app/controllers/auto_notify_controller.rb +0 -31
- data/features/fixtures/rails3/app/app/controllers/before_notify_controller.rb +0 -44
- data/features/fixtures/rails3/app/app/controllers/breadcrumbs_controller.rb +0 -19
- data/features/fixtures/rails3/app/app/controllers/handled_controller.rb +0 -26
- data/features/fixtures/rails3/app/app/controllers/ignore_classes_controller.rb +0 -23
- data/features/fixtures/rails3/app/app/controllers/metadata_filters_controller.rb +0 -16
- data/features/fixtures/rails3/app/app/controllers/project_root_controller.rb +0 -25
- data/features/fixtures/rails3/app/app/controllers/release_stage_controller.rb +0 -20
- data/features/fixtures/rails3/app/app/controllers/send_code_controller.rb +0 -20
- data/features/fixtures/rails3/app/app/controllers/send_environment_controller.rb +0 -12
- data/features/fixtures/rails3/app/app/controllers/session_tracking_controller.rb +0 -24
- data/features/fixtures/rails3/app/app/controllers/unhandled_controller.rb +0 -11
- data/features/fixtures/rails3/app/app/controllers/warden_controller.rb +0 -30
- data/features/fixtures/rails3/app/app/helpers/application_helper.rb +0 -2
- data/features/fixtures/rails3/app/app/mailers/.gitkeep +0 -0
- data/features/fixtures/rails3/app/app/models/.gitkeep +0 -0
- data/features/fixtures/rails3/app/app/models/user.rb +0 -6
- data/features/fixtures/rails3/app/app/views/layouts/application.html.erb +0 -14
- data/features/fixtures/rails3/app/config/application.rb +0 -67
- data/features/fixtures/rails3/app/config/boot.rb +0 -6
- data/features/fixtures/rails3/app/config/database.yml +0 -31
- data/features/fixtures/rails3/app/config/environment.rb +0 -5
- data/features/fixtures/rails3/app/config/environments/development.rb +0 -37
- data/features/fixtures/rails3/app/config/environments/production.rb +0 -67
- data/features/fixtures/rails3/app/config/environments/rails_env.rb +0 -37
- data/features/fixtures/rails3/app/config/initializers/bugsnag.rb +0 -29
- data/features/fixtures/rails3/app/config/initializers/secret_token.rb +0 -7
- data/features/fixtures/rails3/app/config/initializers/session_store.rb +0 -8
- data/features/fixtures/rails3/app/config/initializers/warden.rb +0 -3
- data/features/fixtures/rails3/app/config/initializers/wrap_parameters.rb +0 -14
- data/features/fixtures/rails3/app/config/locales/en.yml +0 -5
- data/features/fixtures/rails3/app/config/routes.rb +0 -19
- data/features/fixtures/rails3/app/config.ru +0 -4
- data/features/fixtures/rails3/app/db/migrate/20180423142727_create_users.rb +0 -45
- data/features/fixtures/rails3/app/db/schema.rb +0 -37
- data/features/fixtures/rails3/app/db/seeds.rb +0 -7
- data/features/fixtures/rails3/app/lib/assets/.gitkeep +0 -0
- data/features/fixtures/rails3/app/lib/strategies/token_strategy.rb +0 -12
- data/features/fixtures/rails3/app/lib/tasks/.gitkeep +0 -0
- data/features/fixtures/rails3/app/log/.gitkeep +0 -0
- data/features/fixtures/rails3/app/public/404.html +0 -26
- data/features/fixtures/rails3/app/public/422.html +0 -26
- data/features/fixtures/rails3/app/public/500.html +0 -25
- data/features/fixtures/rails3/app/public/favicon.ico +0 -0
- data/features/fixtures/rails3/app/public/index.html +0 -241
- data/features/fixtures/rails3/app/public/robots.txt +0 -5
- data/features/fixtures/rails3/app/script/rails +0 -6
- data/features/fixtures/rails4/.dockerignore +0 -1
- data/features/fixtures/rails4/Dockerfile +0 -17
- data/features/fixtures/rails4/app/.gitignore +0 -16
- data/features/fixtures/rails4/app/Gemfile +0 -46
- data/features/fixtures/rails4/app/README.rdoc +0 -28
- data/features/fixtures/rails4/app/Rakefile +0 -6
- data/features/fixtures/rails4/app/app/assets/images/.keep +0 -0
- data/features/fixtures/rails4/app/app/assets/javascripts/application.js +0 -16
- data/features/fixtures/rails4/app/app/assets/stylesheets/application.css +0 -13
- data/features/fixtures/rails4/app/app/controllers/api_key_controller.rb +0 -20
- data/features/fixtures/rails4/app/app/controllers/app_type_controller.rb +0 -20
- data/features/fixtures/rails4/app/app/controllers/app_version_controller.rb +0 -25
- data/features/fixtures/rails4/app/app/controllers/application_controller.rb +0 -7
- data/features/fixtures/rails4/app/app/controllers/auto_notify_controller.rb +0 -31
- data/features/fixtures/rails4/app/app/controllers/before_notify_controller.rb +0 -44
- data/features/fixtures/rails4/app/app/controllers/breadcrumbs_controller.rb +0 -26
- data/features/fixtures/rails4/app/app/controllers/concerns/.keep +0 -0
- data/features/fixtures/rails4/app/app/controllers/devise_controller.rb +0 -32
- data/features/fixtures/rails4/app/app/controllers/handled_controller.rb +0 -26
- data/features/fixtures/rails4/app/app/controllers/ignore_classes_controller.rb +0 -23
- data/features/fixtures/rails4/app/app/controllers/metadata_filters_controller.rb +0 -16
- data/features/fixtures/rails4/app/app/controllers/mongo_controller.rb +0 -23
- data/features/fixtures/rails4/app/app/controllers/project_root_controller.rb +0 -25
- data/features/fixtures/rails4/app/app/controllers/release_stage_controller.rb +0 -20
- data/features/fixtures/rails4/app/app/controllers/send_code_controller.rb +0 -20
- data/features/fixtures/rails4/app/app/controllers/send_environment_controller.rb +0 -12
- data/features/fixtures/rails4/app/app/controllers/session_tracking_controller.rb +0 -24
- data/features/fixtures/rails4/app/app/controllers/unhandled_controller.rb +0 -11
- data/features/fixtures/rails4/app/app/helpers/application_helper.rb +0 -2
- data/features/fixtures/rails4/app/app/jobs/application_job.rb +0 -2
- data/features/fixtures/rails4/app/app/jobs/notify_job.rb +0 -5
- data/features/fixtures/rails4/app/app/mailers/.keep +0 -0
- data/features/fixtures/rails4/app/app/models/.keep +0 -0
- data/features/fixtures/rails4/app/app/models/concerns/.keep +0 -0
- data/features/fixtures/rails4/app/app/models/mongo_model.rb +0 -6
- data/features/fixtures/rails4/app/app/models/user.rb +0 -6
- data/features/fixtures/rails4/app/app/views/layouts/application.html.erb +0 -14
- data/features/fixtures/rails4/app/config/application.rb +0 -23
- data/features/fixtures/rails4/app/config/boot.rb +0 -4
- data/features/fixtures/rails4/app/config/database.yml +0 -31
- data/features/fixtures/rails4/app/config/environment.rb +0 -5
- data/features/fixtures/rails4/app/config/environments/development.rb +0 -31
- data/features/fixtures/rails4/app/config/environments/production.rb +0 -81
- data/features/fixtures/rails4/app/config/environments/rails_env.rb +0 -30
- data/features/fixtures/rails4/app/config/environments/test.rb +0 -31
- data/features/fixtures/rails4/app/config/initializers/backtrace_silencers.rb +0 -7
- data/features/fixtures/rails4/app/config/initializers/bugsnag.rb +0 -29
- data/features/fixtures/rails4/app/config/initializers/devise.rb +0 -283
- data/features/fixtures/rails4/app/config/initializers/filter_parameter_logging.rb +0 -5
- data/features/fixtures/rails4/app/config/initializers/inflections.rb +0 -16
- data/features/fixtures/rails4/app/config/initializers/mime_types.rb +0 -5
- data/features/fixtures/rails4/app/config/initializers/secret_token.rb +0 -12
- data/features/fixtures/rails4/app/config/initializers/session_store.rb +0 -3
- data/features/fixtures/rails4/app/config/initializers/wrap_parameters.rb +0 -14
- data/features/fixtures/rails4/app/config/locales/devise.en.yml +0 -64
- data/features/fixtures/rails4/app/config/locales/en.yml +0 -23
- data/features/fixtures/rails4/app/config/mongoid.yml +0 -22
- data/features/fixtures/rails4/app/config/routes.rb +0 -21
- data/features/fixtures/rails4/app/config.ru +0 -4
- data/features/fixtures/rails4/app/db/migrate/20180420160315_devise_create_users.rb +0 -47
- data/features/fixtures/rails4/app/db/seeds.rb +0 -7
- data/features/fixtures/rails4/app/lib/assets/.keep +0 -0
- data/features/fixtures/rails4/app/lib/tasks/.keep +0 -0
- data/features/fixtures/rails4/app/log/.keep +0 -0
- data/features/fixtures/rails4/app/public/404.html +0 -58
- data/features/fixtures/rails4/app/public/422.html +0 -58
- data/features/fixtures/rails4/app/public/500.html +0 -57
- data/features/fixtures/rails4/app/public/favicon.ico +0 -0
- data/features/fixtures/rails4/app/public/robots.txt +0 -5
- data/features/fixtures/rails4/app/test/controllers/.keep +0 -0
- data/features/fixtures/rails4/app/test/fixtures/.keep +0 -0
- data/features/fixtures/rails4/app/test/helpers/.keep +0 -0
- data/features/fixtures/rails4/app/test/integration/.keep +0 -0
- data/features/fixtures/rails4/app/test/mailers/.keep +0 -0
- data/features/fixtures/rails4/app/test/models/.keep +0 -0
- data/features/fixtures/rails4/app/test/test_helper.rb +0 -15
- data/features/fixtures/rails5/.dockerignore +0 -1
- data/features/fixtures/rails5/Dockerfile +0 -17
- data/features/fixtures/rails5/app/.gitignore +0 -21
- data/features/fixtures/rails5/app/Gemfile +0 -52
- data/features/fixtures/rails5/app/README.md +0 -24
- data/features/fixtures/rails5/app/Rakefile +0 -6
- data/features/fixtures/rails5/app/app/assets/config/manifest.js +0 -3
- data/features/fixtures/rails5/app/app/assets/images/.keep +0 -0
- data/features/fixtures/rails5/app/app/assets/javascripts/application.js +0 -16
- data/features/fixtures/rails5/app/app/assets/javascripts/cable.js +0 -13
- data/features/fixtures/rails5/app/app/assets/javascripts/channels/.keep +0 -0
- data/features/fixtures/rails5/app/app/assets/stylesheets/application.css +0 -15
- data/features/fixtures/rails5/app/app/channels/application_cable/channel.rb +0 -4
- data/features/fixtures/rails5/app/app/channels/application_cable/connection.rb +0 -4
- data/features/fixtures/rails5/app/app/controllers/api_key_controller.rb +0 -16
- data/features/fixtures/rails5/app/app/controllers/app_type_controller.rb +0 -16
- data/features/fixtures/rails5/app/app/controllers/app_version_controller.rb +0 -21
- data/features/fixtures/rails5/app/app/controllers/application_controller.rb +0 -7
- data/features/fixtures/rails5/app/app/controllers/auto_notify_controller.rb +0 -27
- data/features/fixtures/rails5/app/app/controllers/before_notify_controller.rb +0 -40
- data/features/fixtures/rails5/app/app/controllers/breadcrumbs_controller.rb +0 -24
- data/features/fixtures/rails5/app/app/controllers/clearance_controller.rb +0 -33
- data/features/fixtures/rails5/app/app/controllers/concerns/.keep +0 -0
- data/features/fixtures/rails5/app/app/controllers/handled_controller.rb +0 -22
- data/features/fixtures/rails5/app/app/controllers/ignore_classes_controller.rb +0 -19
- data/features/fixtures/rails5/app/app/controllers/metadata_filters_controller.rb +0 -12
- data/features/fixtures/rails5/app/app/controllers/mongo_controller.rb +0 -22
- data/features/fixtures/rails5/app/app/controllers/project_root_controller.rb +0 -21
- data/features/fixtures/rails5/app/app/controllers/release_stage_controller.rb +0 -16
- data/features/fixtures/rails5/app/app/controllers/send_code_controller.rb +0 -16
- data/features/fixtures/rails5/app/app/controllers/send_environment_controller.rb +0 -8
- data/features/fixtures/rails5/app/app/controllers/session_tracking_controller.rb +0 -20
- data/features/fixtures/rails5/app/app/controllers/unhandled_controller.rb +0 -7
- data/features/fixtures/rails5/app/app/helpers/application_helper.rb +0 -2
- data/features/fixtures/rails5/app/app/jobs/application_job.rb +0 -2
- data/features/fixtures/rails5/app/app/jobs/notify_job.rb +0 -5
- data/features/fixtures/rails5/app/app/mailers/application_mailer.rb +0 -4
- data/features/fixtures/rails5/app/app/models/application_record.rb +0 -3
- data/features/fixtures/rails5/app/app/models/concerns/.keep +0 -0
- data/features/fixtures/rails5/app/app/models/mongo_model.rb +0 -6
- data/features/fixtures/rails5/app/app/models/user.rb +0 -3
- data/features/fixtures/rails5/app/app/views/layouts/application.html.erb +0 -14
- data/features/fixtures/rails5/app/app/views/layouts/mailer.html.erb +0 -13
- data/features/fixtures/rails5/app/app/views/layouts/mailer.text.erb +0 -1
- data/features/fixtures/rails5/app/config/application.rb +0 -15
- data/features/fixtures/rails5/app/config/boot.rb +0 -3
- data/features/fixtures/rails5/app/config/cable.yml +0 -9
- data/features/fixtures/rails5/app/config/database.yml +0 -29
- data/features/fixtures/rails5/app/config/environment.rb +0 -5
- data/features/fixtures/rails5/app/config/environments/development.rb +0 -55
- data/features/fixtures/rails5/app/config/environments/production.rb +0 -87
- data/features/fixtures/rails5/app/config/environments/rails_env.rb +0 -55
- data/features/fixtures/rails5/app/config/environments/test.rb +0 -55
- data/features/fixtures/rails5/app/config/initializers/assets.rb +0 -11
- data/features/fixtures/rails5/app/config/initializers/backtrace_silencers.rb +0 -7
- data/features/fixtures/rails5/app/config/initializers/bugsnag.rb +0 -29
- data/features/fixtures/rails5/app/config/initializers/clearance.rb +0 -5
- data/features/fixtures/rails5/app/config/initializers/cookies_serializer.rb +0 -5
- data/features/fixtures/rails5/app/config/initializers/filter_parameter_logging.rb +0 -5
- data/features/fixtures/rails5/app/config/initializers/inflections.rb +0 -16
- data/features/fixtures/rails5/app/config/initializers/mime_types.rb +0 -4
- data/features/fixtures/rails5/app/config/initializers/new_framework_defaults.rb +0 -24
- data/features/fixtures/rails5/app/config/initializers/session_store.rb +0 -3
- data/features/fixtures/rails5/app/config/initializers/wrap_parameters.rb +0 -14
- data/features/fixtures/rails5/app/config/locales/devise.en.yml +0 -64
- data/features/fixtures/rails5/app/config/locales/en.yml +0 -23
- data/features/fixtures/rails5/app/config/mongoid.yml +0 -23
- data/features/fixtures/rails5/app/config/puma.rb +0 -47
- data/features/fixtures/rails5/app/config/routes.rb +0 -62
- data/features/fixtures/rails5/app/config/secrets.yml +0 -25
- data/features/fixtures/rails5/app/config/spring.rb +0 -6
- data/features/fixtures/rails5/app/config.ru +0 -5
- data/features/fixtures/rails5/app/db/migrate/20180426095545_create_users.rb +0 -17
- data/features/fixtures/rails5/app/db/schema.rb +0 -29
- data/features/fixtures/rails5/app/db/seeds.rb +0 -7
- data/features/fixtures/rails5/app/lib/assets/.keep +0 -0
- data/features/fixtures/rails5/app/lib/tasks/.keep +0 -0
- data/features/fixtures/rails5/app/log/.keep +0 -0
- data/features/fixtures/rails5/app/public/404.html +0 -67
- data/features/fixtures/rails5/app/public/422.html +0 -67
- data/features/fixtures/rails5/app/public/500.html +0 -66
- data/features/fixtures/rails5/app/public/apple-touch-icon-precomposed.png +0 -0
- data/features/fixtures/rails5/app/public/apple-touch-icon.png +0 -0
- data/features/fixtures/rails5/app/public/favicon.ico +0 -0
- data/features/fixtures/rails5/app/public/robots.txt +0 -5
- data/features/fixtures/rails5/app/test/controllers/.keep +0 -0
- data/features/fixtures/rails5/app/test/fixtures/.keep +0 -0
- data/features/fixtures/rails5/app/test/fixtures/files/.keep +0 -0
- data/features/fixtures/rails5/app/test/helpers/.keep +0 -0
- data/features/fixtures/rails5/app/test/integration/.keep +0 -0
- data/features/fixtures/rails5/app/test/mailers/.keep +0 -0
- data/features/fixtures/rails5/app/test/models/.keep +0 -0
- data/features/fixtures/rails5/app/test/test_helper.rb +0 -10
- data/features/fixtures/rails5/app/tmp/.keep +0 -0
- data/features/fixtures/rails6/.dockerignore +0 -1
- data/features/fixtures/rails6/Dockerfile +0 -26
- data/features/fixtures/rails6/app/.browserslistrc +0 -1
- data/features/fixtures/rails6/app/.gitignore +0 -35
- data/features/fixtures/rails6/app/.ruby-version +0 -1
- data/features/fixtures/rails6/app/Gemfile +0 -58
- data/features/fixtures/rails6/app/README.md +0 -24
- data/features/fixtures/rails6/app/Rakefile +0 -6
- data/features/fixtures/rails6/app/app/assets/config/manifest.js +0 -2
- data/features/fixtures/rails6/app/app/assets/images/.keep +0 -0
- data/features/fixtures/rails6/app/app/assets/stylesheets/application.css +0 -15
- data/features/fixtures/rails6/app/app/channels/application_cable/channel.rb +0 -4
- data/features/fixtures/rails6/app/app/channels/application_cable/connection.rb +0 -4
- data/features/fixtures/rails6/app/app/controllers/api_key_controller.rb +0 -16
- data/features/fixtures/rails6/app/app/controllers/app_type_controller.rb +0 -16
- data/features/fixtures/rails6/app/app/controllers/app_version_controller.rb +0 -21
- data/features/fixtures/rails6/app/app/controllers/application_controller.rb +0 -7
- data/features/fixtures/rails6/app/app/controllers/auto_notify_controller.rb +0 -27
- data/features/fixtures/rails6/app/app/controllers/before_notify_controller.rb +0 -40
- data/features/fixtures/rails6/app/app/controllers/breadcrumbs_controller.rb +0 -24
- data/features/fixtures/rails6/app/app/controllers/clearance_controller.rb +0 -33
- data/features/fixtures/rails6/app/app/controllers/concerns/.keep +0 -0
- data/features/fixtures/rails6/app/app/controllers/handled_controller.rb +0 -22
- data/features/fixtures/rails6/app/app/controllers/ignore_classes_controller.rb +0 -19
- data/features/fixtures/rails6/app/app/controllers/metadata_filters_controller.rb +0 -12
- data/features/fixtures/rails6/app/app/controllers/mongo_controller.rb +0 -22
- data/features/fixtures/rails6/app/app/controllers/project_root_controller.rb +0 -21
- data/features/fixtures/rails6/app/app/controllers/release_stage_controller.rb +0 -16
- data/features/fixtures/rails6/app/app/controllers/send_code_controller.rb +0 -16
- data/features/fixtures/rails6/app/app/controllers/send_environment_controller.rb +0 -8
- data/features/fixtures/rails6/app/app/controllers/session_tracking_controller.rb +0 -20
- data/features/fixtures/rails6/app/app/controllers/unhandled_controller.rb +0 -7
- data/features/fixtures/rails6/app/app/helpers/application_helper.rb +0 -2
- data/features/fixtures/rails6/app/app/javascript/channels/consumer.js +0 -6
- data/features/fixtures/rails6/app/app/javascript/channels/index.js +0 -5
- data/features/fixtures/rails6/app/app/javascript/packs/application.js +0 -9
- data/features/fixtures/rails6/app/app/jobs/application_job.rb +0 -7
- data/features/fixtures/rails6/app/app/jobs/notify_job.rb +0 -5
- data/features/fixtures/rails6/app/app/mailers/application_mailer.rb +0 -4
- data/features/fixtures/rails6/app/app/models/application_record.rb +0 -3
- data/features/fixtures/rails6/app/app/models/concerns/.keep +0 -0
- data/features/fixtures/rails6/app/app/models/mongo_model.rb +0 -6
- data/features/fixtures/rails6/app/app/models/user.rb +0 -3
- data/features/fixtures/rails6/app/app/views/layouts/application.html.erb +0 -15
- data/features/fixtures/rails6/app/app/views/layouts/mailer.html.erb +0 -13
- data/features/fixtures/rails6/app/app/views/layouts/mailer.text.erb +0 -1
- data/features/fixtures/rails6/app/babel.config.js +0 -70
- data/features/fixtures/rails6/app/config/application.rb +0 -19
- data/features/fixtures/rails6/app/config/boot.rb +0 -4
- data/features/fixtures/rails6/app/config/cable.yml +0 -13
- data/features/fixtures/rails6/app/config/credentials.yml.enc +0 -1
- data/features/fixtures/rails6/app/config/database.yml +0 -29
- data/features/fixtures/rails6/app/config/environment.rb +0 -5
- data/features/fixtures/rails6/app/config/environments/development.rb +0 -64
- data/features/fixtures/rails6/app/config/environments/production.rb +0 -113
- data/features/fixtures/rails6/app/config/environments/rails_env.rb +0 -56
- data/features/fixtures/rails6/app/config/environments/test.rb +0 -48
- data/features/fixtures/rails6/app/config/initializers/application_controller_renderer.rb +0 -8
- data/features/fixtures/rails6/app/config/initializers/assets.rb +0 -14
- data/features/fixtures/rails6/app/config/initializers/backtrace_silencers.rb +0 -7
- data/features/fixtures/rails6/app/config/initializers/bugsnag.rb +0 -29
- data/features/fixtures/rails6/app/config/initializers/content_security_policy.rb +0 -27
- data/features/fixtures/rails6/app/config/initializers/cookies_serializer.rb +0 -5
- data/features/fixtures/rails6/app/config/initializers/filter_parameter_logging.rb +0 -5
- data/features/fixtures/rails6/app/config/initializers/inflections.rb +0 -16
- data/features/fixtures/rails6/app/config/initializers/mime_types.rb +0 -4
- data/features/fixtures/rails6/app/config/initializers/wrap_parameters.rb +0 -14
- data/features/fixtures/rails6/app/config/locales/en.yml +0 -33
- data/features/fixtures/rails6/app/config/mongoid.yml +0 -23
- data/features/fixtures/rails6/app/config/puma.rb +0 -35
- data/features/fixtures/rails6/app/config/routes.rb +0 -62
- data/features/fixtures/rails6/app/config/secrets.yml +0 -25
- data/features/fixtures/rails6/app/config/spring.rb +0 -6
- data/features/fixtures/rails6/app/config/storage.yml +0 -34
- data/features/fixtures/rails6/app/config/webpack/development.js +0 -5
- data/features/fixtures/rails6/app/config/webpack/environment.js +0 -3
- data/features/fixtures/rails6/app/config/webpack/production.js +0 -5
- data/features/fixtures/rails6/app/config/webpack/rails_env.js +0 -5
- data/features/fixtures/rails6/app/config/webpack/test.js +0 -5
- data/features/fixtures/rails6/app/config/webpacker.yml +0 -121
- data/features/fixtures/rails6/app/config.ru +0 -5
- data/features/fixtures/rails6/app/db/migrate/20180426095545_create_users.rb +0 -17
- data/features/fixtures/rails6/app/db/schema.rb +0 -29
- data/features/fixtures/rails6/app/db/seeds.rb +0 -7
- data/features/fixtures/rails6/app/lib/assets/.keep +0 -0
- data/features/fixtures/rails6/app/lib/tasks/.keep +0 -0
- data/features/fixtures/rails6/app/log/.keep +0 -0
- data/features/fixtures/rails6/app/package.json +0 -15
- data/features/fixtures/rails6/app/postcss.config.js +0 -12
- data/features/fixtures/rails6/app/public/404.html +0 -67
- data/features/fixtures/rails6/app/public/422.html +0 -67
- data/features/fixtures/rails6/app/public/500.html +0 -66
- data/features/fixtures/rails6/app/public/apple-touch-icon-precomposed.png +0 -0
- data/features/fixtures/rails6/app/public/apple-touch-icon.png +0 -0
- data/features/fixtures/rails6/app/public/favicon.ico +0 -0
- data/features/fixtures/rails6/app/public/robots.txt +0 -1
- data/features/fixtures/rails6/app/storage/.keep +0 -0
- data/features/fixtures/rails6/app/test/application_system_test_case.rb +0 -5
- data/features/fixtures/rails6/app/test/channels/application_cable/connection_test.rb +0 -11
- data/features/fixtures/rails6/app/test/controllers/.keep +0 -0
- data/features/fixtures/rails6/app/test/fixtures/.keep +0 -0
- data/features/fixtures/rails6/app/test/fixtures/files/.keep +0 -0
- data/features/fixtures/rails6/app/test/helpers/.keep +0 -0
- data/features/fixtures/rails6/app/test/integration/.keep +0 -0
- data/features/fixtures/rails6/app/test/mailers/.keep +0 -0
- data/features/fixtures/rails6/app/test/models/.keep +0 -0
- data/features/fixtures/rails6/app/test/system/.keep +0 -0
- data/features/fixtures/rails6/app/test/test_helper.rb +0 -13
- data/features/fixtures/rails6/app/tmp/.keep +0 -0
- data/features/fixtures/rails6/app/yarn.lock +0 -6082
- data/features/fixtures/resque/.dockerignore +0 -1
- data/features/fixtures/resque/Dockerfile +0 -14
- data/features/fixtures/resque/Gemfile +0 -6
- data/features/fixtures/resque/Rakefile +0 -4
- data/features/fixtures/resque/app.rb +0 -12
- data/features/fixtures/sidekiq/.dockerignore +0 -2
- data/features/fixtures/sidekiq/Dockerfile +0 -17
- data/features/fixtures/sidekiq/app/Gemfile +0 -7
- data/features/fixtures/sidekiq/app/Rakefile.rb +0 -14
- data/features/fixtures/sidekiq/app/app.rb +0 -35
- data/features/fixtures/sidekiq/app/initializers/HandledError.rb +0 -3
- data/features/fixtures/sidekiq/app/initializers/UnhandledError.rb +0 -3
- data/features/fixtures/sidekiq/payloads/handled_metadata_ca_false.json +0 -11
- data/features/fixtures/sidekiq/payloads/handled_metadata_ca_true.json +0 -12
- data/features/fixtures/sidekiq/payloads/unhandled_metadata_ca_false.json +0 -11
- data/features/fixtures/sidekiq/payloads/unhandled_metadata_ca_true.json +0 -12
- data/features/fixtures/sinatra1/.dockerignore +0 -1
- data/features/fixtures/sinatra1/Dockerfile +0 -13
- data/features/fixtures/sinatra1/Gemfile +0 -4
- data/features/fixtures/sinatra1/app.rb +0 -9
- data/features/fixtures/sinatra2/.dockerignore +0 -1
- data/features/fixtures/sinatra2/Dockerfile +0 -13
- data/features/fixtures/sinatra2/Gemfile +0 -4
- data/features/fixtures/sinatra2/app.rb +0 -9
- data/features/plain_features/add_tab.feature +0 -55
- data/features/plain_features/app_type.feature +0 -8
- data/features/plain_features/app_version.feature +0 -8
- data/features/plain_features/auto_notify.feature +0 -7
- data/features/plain_features/delivery.feature +0 -20
- data/features/plain_features/exception_data.feature +0 -50
- data/features/plain_features/filters.feature +0 -14
- data/features/plain_features/handled_errors.feature +0 -42
- data/features/plain_features/ignore_classes.feature +0 -11
- data/features/plain_features/ignore_report.feature +0 -14
- data/features/plain_features/proxies.feature +0 -25
- data/features/plain_features/release_stages.feature +0 -20
- data/features/plain_features/report_api_key.feature +0 -16
- data/features/plain_features/report_severity.feature +0 -17
- data/features/plain_features/report_stack_frames.feature +0 -53
- data/features/plain_features/report_user.feature +0 -51
- data/features/plain_features/unhandled_errors.feature +0 -33
- data/features/rails_features/api_key.feature +0 -15
- data/features/rails_features/app_type.feature +0 -24
- data/features/rails_features/app_version.feature +0 -26
- data/features/rails_features/auto_capture_sessions.feature +0 -34
- data/features/rails_features/auto_notify.feature +0 -41
- data/features/rails_features/before_notify.feature +0 -44
- data/features/rails_features/breadcrumbs.feature +0 -43
- data/features/rails_features/handled.feature +0 -42
- data/features/rails_features/ignore_classes.feature +0 -14
- data/features/rails_features/meta_data_filters.feature +0 -16
- data/features/rails_features/mongo_breadcrumbs.feature +0 -26
- data/features/rails_features/on_error.feature +0 -29
- data/features/rails_features/project_root.feature +0 -35
- data/features/rails_features/release_stage.feature +0 -27
- data/features/rails_features/send_code.feature +0 -18
- data/features/rails_features/send_environment.feature +0 -13
- data/features/rails_features/unhandled.feature +0 -16
- data/features/rails_features/user_info.feature +0 -52
- data/features/sidekiq.feature +0 -30
- data/features/steps/ruby_notifier_steps.rb +0 -75
- data/features/support/env.rb +0 -23
- data/issue_template.md +0 -48
- data/spec/breadcrumbs/breadcrumb_spec.rb +0 -93
- data/spec/breadcrumbs/validator_spec.rb +0 -176
- data/spec/bugsnag_spec.rb +0 -366
- data/spec/cleaner_spec.rb +0 -350
- data/spec/code_extractor_spec.rb +0 -129
- data/spec/configuration_spec.rb +0 -445
- data/spec/fixtures/apps/rails-initializer-config/Gemfile +0 -9
- data/spec/fixtures/apps/rails-initializer-config/config/initializers/bugsnag.rb +0 -3
- data/spec/fixtures/apps/rails-initializer-config/config.ru +0 -16
- data/spec/fixtures/apps/rails-invalid-initializer-config/Gemfile +0 -9
- data/spec/fixtures/apps/rails-invalid-initializer-config/config/initializers/bugsnag.rb +0 -3
- data/spec/fixtures/apps/rails-invalid-initializer-config/config.ru +0 -16
- data/spec/fixtures/apps/rails-no-config/Gemfile +0 -9
- data/spec/fixtures/apps/rails-no-config/config.ru +0 -16
- data/spec/fixtures/apps/scripts/Gemfile +0 -3
- data/spec/fixtures/apps/scripts/configure_invalid_key.rb +0 -5
- data/spec/fixtures/apps/scripts/configure_key.rb +0 -5
- data/spec/fixtures/apps/scripts/no_config.rb +0 -3
- data/spec/fixtures/crashes/end_of_file.rb +0 -9
- data/spec/fixtures/crashes/file1.rb +0 -29
- data/spec/fixtures/crashes/file2.rb +0 -25
- data/spec/fixtures/crashes/file_with_long_lines.rb +0 -7
- data/spec/fixtures/crashes/functions.rb +0 -29
- data/spec/fixtures/crashes/short_file.rb +0 -3
- data/spec/fixtures/crashes/start_of_file.rb +0 -9
- data/spec/fixtures/middleware/internal_info_setter.rb +0 -11
- data/spec/fixtures/middleware/public_info_setter.rb +0 -11
- data/spec/fixtures/tasks/Rakefile +0 -26
- data/spec/helper_spec.rb +0 -131
- data/spec/integration_spec.rb +0 -107
- data/spec/integrations/clearance_user_spec.rb +0 -38
- data/spec/integrations/logger_spec.rb +0 -134
- data/spec/integrations/mailman_spec.rb +0 -83
- data/spec/integrations/mongo_spec.rb +0 -262
- data/spec/integrations/que_spec.rb +0 -94
- data/spec/integrations/rack_spec.rb +0 -232
- data/spec/integrations/rails3_request_spec.rb +0 -67
- data/spec/integrations/rake_spec.rb +0 -71
- data/spec/integrations/resque_spec.rb +0 -99
- data/spec/integrations/shoryuken_spec.rb +0 -70
- data/spec/integrations/sidekiq_spec.rb +0 -137
- data/spec/integrations/warden_user_spec.rb +0 -41
- data/spec/middleware/exception_meta_data_spec.rb +0 -104
- data/spec/middleware_spec.rb +0 -254
- data/spec/middleware_stack_spec.rb +0 -151
- data/spec/on_error_spec.rb +0 -332
- data/spec/report_spec.rb +0 -1583
- data/spec/session_tracker_spec.rb +0 -156
- data/spec/spec_helper.rb +0 -99
- data/spec/stacktrace_spec.rb +0 -443
- data/spec/utility/circular_buffer_spec.rb +0 -98
data/.rubocop_todo.yml
DELETED
@@ -1,1049 +0,0 @@
|
|
1
|
-
# This configuration was generated by
|
2
|
-
# `rubocop --auto-gen-config`
|
3
|
-
# on 2020-05-15 11:35:58 +0100 using RuboCop version 0.83.0.
|
4
|
-
# The point is for the user to remove these configuration records
|
5
|
-
# one by one as the offenses are removed from the code base.
|
6
|
-
# Note that changes in the inspected code, or installation of new
|
7
|
-
# versions of RuboCop, may require this file to be generated again.
|
8
|
-
|
9
|
-
# Offense count: 3
|
10
|
-
# Configuration parameters: Include.
|
11
|
-
# Include: **/*.gemfile, **/Gemfile, **/gems.rb
|
12
|
-
Bundler/DuplicatedGem:
|
13
|
-
Exclude:
|
14
|
-
- 'Gemfile'
|
15
|
-
|
16
|
-
# Offense count: 5
|
17
|
-
# Cop supports --auto-correct.
|
18
|
-
# Configuration parameters: TreatCommentsAsGroupSeparators, Include.
|
19
|
-
# Include: **/*.gemfile, **/Gemfile, **/gems.rb
|
20
|
-
Bundler/OrderedGems:
|
21
|
-
Exclude:
|
22
|
-
- 'Gemfile'
|
23
|
-
|
24
|
-
# Offense count: 1
|
25
|
-
# Configuration parameters: Include.
|
26
|
-
# Include: **/*.gemspec
|
27
|
-
Gemspec/RequiredRubyVersion:
|
28
|
-
Exclude:
|
29
|
-
- 'bugsnag.gemspec'
|
30
|
-
|
31
|
-
# Offense count: 2
|
32
|
-
# Cop supports --auto-correct.
|
33
|
-
Layout/BlockEndNewline:
|
34
|
-
Exclude:
|
35
|
-
- 'spec/integrations/mongo_spec.rb'
|
36
|
-
- 'spec/report_spec.rb'
|
37
|
-
|
38
|
-
# Offense count: 4
|
39
|
-
# Cop supports --auto-correct.
|
40
|
-
# Configuration parameters: EnforcedStyle, IndentOneStep, IndentationWidth.
|
41
|
-
# SupportedStyles: case, end
|
42
|
-
Layout/CaseIndentation:
|
43
|
-
Exclude:
|
44
|
-
- 'lib/bugsnag/cleaner.rb'
|
45
|
-
|
46
|
-
# Offense count: 15
|
47
|
-
# Cop supports --auto-correct.
|
48
|
-
Layout/EmptyLineAfterGuardClause:
|
49
|
-
Exclude:
|
50
|
-
- 'lib/bugsnag.rb'
|
51
|
-
- 'lib/bugsnag/cleaner.rb'
|
52
|
-
- 'lib/bugsnag/delivery/thread_queue.rb'
|
53
|
-
- 'lib/bugsnag/helpers.rb'
|
54
|
-
- 'lib/bugsnag/session_tracker.rb'
|
55
|
-
|
56
|
-
# Offense count: 10
|
57
|
-
# Cop supports --auto-correct.
|
58
|
-
Layout/EmptyLineAfterMagicComment:
|
59
|
-
Exclude:
|
60
|
-
- 'spec/breadcrumbs/validator_spec.rb'
|
61
|
-
- 'spec/bugsnag_spec.rb'
|
62
|
-
- 'spec/configuration_spec.rb'
|
63
|
-
- 'spec/integrations/mongo_spec.rb'
|
64
|
-
- 'spec/integrations/que_spec.rb'
|
65
|
-
- 'spec/integrations/resque_spec.rb'
|
66
|
-
- 'spec/integrations/shoryuken_spec.rb'
|
67
|
-
- 'spec/middleware/exception_meta_data_spec.rb'
|
68
|
-
- 'spec/report_spec.rb'
|
69
|
-
- 'spec/session_tracker_spec.rb'
|
70
|
-
|
71
|
-
# Offense count: 5
|
72
|
-
# Cop supports --auto-correct.
|
73
|
-
Layout/EmptyLines:
|
74
|
-
Exclude:
|
75
|
-
- 'features/steps/ruby_notifier_steps.rb'
|
76
|
-
- 'lib/bugsnag/helpers.rb'
|
77
|
-
- 'lib/bugsnag/integrations/mailman.rb'
|
78
|
-
- 'lib/bugsnag/stacktrace.rb'
|
79
|
-
- 'spec/integrations/mailman_spec.rb'
|
80
|
-
|
81
|
-
# Offense count: 4
|
82
|
-
# Cop supports --auto-correct.
|
83
|
-
# Configuration parameters: EnforcedStyle.
|
84
|
-
# SupportedStyles: around, only_before
|
85
|
-
Layout/EmptyLinesAroundAccessModifier:
|
86
|
-
Exclude:
|
87
|
-
- 'lib/bugsnag/delivery.rb'
|
88
|
-
- 'lib/bugsnag/integrations/rails/controller_methods.rb'
|
89
|
-
- 'lib/bugsnag/middleware_stack.rb'
|
90
|
-
- 'lib/bugsnag/session_tracker.rb'
|
91
|
-
|
92
|
-
# Offense count: 2
|
93
|
-
# Cop supports --auto-correct.
|
94
|
-
Layout/EmptyLinesAroundAttributeAccessor:
|
95
|
-
Exclude:
|
96
|
-
- 'lib/bugsnag/configuration.rb'
|
97
|
-
- 'spec/report_spec.rb'
|
98
|
-
|
99
|
-
# Offense count: 24
|
100
|
-
# Cop supports --auto-correct.
|
101
|
-
# Configuration parameters: EnforcedStyle.
|
102
|
-
# SupportedStyles: empty_lines, no_empty_lines
|
103
|
-
Layout/EmptyLinesAroundBlockBody:
|
104
|
-
Exclude:
|
105
|
-
- 'lib/bugsnag/middleware/classify_error.rb'
|
106
|
-
- 'spec/bugsnag_spec.rb'
|
107
|
-
- 'spec/helper_spec.rb'
|
108
|
-
- 'spec/integration_spec.rb'
|
109
|
-
- 'spec/integrations/logger_spec.rb'
|
110
|
-
- 'spec/integrations/rack_spec.rb'
|
111
|
-
- 'spec/integrations/rails3_request_spec.rb'
|
112
|
-
- 'spec/middleware_spec.rb'
|
113
|
-
- 'spec/report_spec.rb'
|
114
|
-
|
115
|
-
# Offense count: 9
|
116
|
-
# Cop supports --auto-correct.
|
117
|
-
# Configuration parameters: EnforcedStyle.
|
118
|
-
# SupportedStyles: empty_lines, empty_lines_except_namespace, empty_lines_special, no_empty_lines, beginning_only, ending_only
|
119
|
-
Layout/EmptyLinesAroundClassBody:
|
120
|
-
Exclude:
|
121
|
-
- 'lib/bugsnag/integrations/mailman.rb'
|
122
|
-
- 'lib/bugsnag/integrations/rack.rb'
|
123
|
-
- 'lib/bugsnag/integrations/railtie.rb'
|
124
|
-
- 'lib/bugsnag/integrations/resque.rb'
|
125
|
-
- 'lib/bugsnag/integrations/shoryuken.rb'
|
126
|
-
- 'lib/bugsnag/integrations/sidekiq.rb'
|
127
|
-
- 'lib/bugsnag/middleware/suggestion_data.rb'
|
128
|
-
- 'lib/bugsnag/session_tracker.rb'
|
129
|
-
- 'lib/bugsnag/stacktrace.rb'
|
130
|
-
|
131
|
-
# Offense count: 1
|
132
|
-
# Cop supports --auto-correct.
|
133
|
-
# Configuration parameters: EnforcedStyle.
|
134
|
-
# SupportedStyles: empty_lines, empty_lines_except_namespace, empty_lines_special, no_empty_lines
|
135
|
-
Layout/EmptyLinesAroundModuleBody:
|
136
|
-
Exclude:
|
137
|
-
- 'lib/bugsnag/integrations/rails/controller_methods.rb'
|
138
|
-
|
139
|
-
# Offense count: 2
|
140
|
-
# Cop supports --auto-correct.
|
141
|
-
# Configuration parameters: EnforcedStyleAlignWith, AutoCorrect, Severity.
|
142
|
-
# SupportedStylesAlignWith: keyword, variable, start_of_line
|
143
|
-
Layout/EndAlignment:
|
144
|
-
Exclude:
|
145
|
-
- 'lib/bugsnag/cleaner.rb'
|
146
|
-
|
147
|
-
# Offense count: 1
|
148
|
-
# Cop supports --auto-correct.
|
149
|
-
# Configuration parameters: AllowForAlignment, AllowBeforeTrailingComments, ForceEqualSignAlignment.
|
150
|
-
Layout/ExtraSpacing:
|
151
|
-
Exclude:
|
152
|
-
- 'Rakefile'
|
153
|
-
|
154
|
-
# Offense count: 7
|
155
|
-
# Cop supports --auto-correct.
|
156
|
-
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
157
|
-
# SupportedStyles: special_inside_parentheses, consistent, align_brackets
|
158
|
-
Layout/FirstArrayElementIndentation:
|
159
|
-
Exclude:
|
160
|
-
- 'lib/bugsnag/middleware/classify_error.rb'
|
161
|
-
- 'spec/report_spec.rb'
|
162
|
-
- 'spec/stacktrace_spec.rb'
|
163
|
-
|
164
|
-
# Offense count: 164
|
165
|
-
# Cop supports --auto-correct.
|
166
|
-
# Configuration parameters: IndentationWidth.
|
167
|
-
# SupportedStyles: special_inside_parentheses, consistent, align_braces
|
168
|
-
Layout/FirstHashElementIndentation:
|
169
|
-
EnforcedStyle: consistent
|
170
|
-
|
171
|
-
# Offense count: 2
|
172
|
-
# Cop supports --auto-correct.
|
173
|
-
# Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle.
|
174
|
-
# SupportedHashRocketStyles: key, separator, table
|
175
|
-
# SupportedColonStyles: key, separator, table
|
176
|
-
# SupportedLastArgumentHashStyles: always_inspect, always_ignore, ignore_implicit, ignore_explicit
|
177
|
-
Layout/HashAlignment:
|
178
|
-
Exclude:
|
179
|
-
- 'lib/bugsnag/delivery/synchronous.rb'
|
180
|
-
- 'spec/integrations/rake_spec.rb'
|
181
|
-
|
182
|
-
# Offense count: 1
|
183
|
-
# Cop supports --auto-correct.
|
184
|
-
# Configuration parameters: EnforcedStyle.
|
185
|
-
# SupportedStyles: squiggly, active_support, powerpack, unindent
|
186
|
-
Layout/HeredocIndentation:
|
187
|
-
Exclude:
|
188
|
-
- 'lib/generators/bugsnag/bugsnag_generator.rb'
|
189
|
-
|
190
|
-
# Offense count: 1
|
191
|
-
# Cop supports --auto-correct.
|
192
|
-
# Configuration parameters: Width, IgnoredPatterns.
|
193
|
-
Layout/IndentationWidth:
|
194
|
-
Exclude:
|
195
|
-
- 'lib/bugsnag/cleaner.rb'
|
196
|
-
|
197
|
-
# Offense count: 6
|
198
|
-
# Cop supports --auto-correct.
|
199
|
-
# Configuration parameters: AllowDoxygenCommentStyle, AllowGemfileRubyComment.
|
200
|
-
Layout/LeadingCommentSpace:
|
201
|
-
Exclude:
|
202
|
-
- 'spec/integration_spec.rb'
|
203
|
-
- 'spec/integrations/mailman_spec.rb'
|
204
|
-
- 'spec/integrations/que_spec.rb'
|
205
|
-
- 'spec/integrations/resque_spec.rb'
|
206
|
-
|
207
|
-
# Offense count: 4
|
208
|
-
# Cop supports --auto-correct.
|
209
|
-
Layout/MultilineBlockLayout:
|
210
|
-
Exclude:
|
211
|
-
- 'lib/bugsnag/middleware/classify_error.rb'
|
212
|
-
- 'spec/integrations/mongo_spec.rb'
|
213
|
-
- 'spec/report_spec.rb'
|
214
|
-
|
215
|
-
# Offense count: 3
|
216
|
-
# Cop supports --auto-correct.
|
217
|
-
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
218
|
-
# SupportedStyles: aligned, indented
|
219
|
-
Layout/MultilineOperationIndentation:
|
220
|
-
Exclude:
|
221
|
-
- 'lib/bugsnag/middleware/clearance_user.rb'
|
222
|
-
|
223
|
-
# Offense count: 4
|
224
|
-
# Cop supports --auto-correct.
|
225
|
-
Layout/SpaceAfterComma:
|
226
|
-
Exclude:
|
227
|
-
- 'lib/bugsnag/cleaner.rb'
|
228
|
-
- 'lib/bugsnag/integrations/rack.rb'
|
229
|
-
- 'lib/bugsnag/middleware_stack.rb'
|
230
|
-
- 'lib/bugsnag/report.rb'
|
231
|
-
|
232
|
-
# Offense count: 1
|
233
|
-
# Cop supports --auto-correct.
|
234
|
-
Layout/SpaceAfterNot:
|
235
|
-
Exclude:
|
236
|
-
- 'features/steps/ruby_notifier_steps.rb'
|
237
|
-
|
238
|
-
# Offense count: 9
|
239
|
-
# Cop supports --auto-correct.
|
240
|
-
# Configuration parameters: EnforcedStyle.
|
241
|
-
# SupportedStyles: space, no_space
|
242
|
-
Layout/SpaceAroundEqualsInParameterDefault:
|
243
|
-
Exclude:
|
244
|
-
- 'lib/bugsnag.rb'
|
245
|
-
- 'lib/bugsnag/delivery/synchronous.rb'
|
246
|
-
- 'lib/bugsnag/delivery/thread_queue.rb'
|
247
|
-
- 'lib/bugsnag/integrations/rake.rb'
|
248
|
-
- 'lib/bugsnag/report.rb'
|
249
|
-
|
250
|
-
# Offense count: 16
|
251
|
-
# Cop supports --auto-correct.
|
252
|
-
# Configuration parameters: AllowForAlignment, EnforcedStyleForExponentOperator.
|
253
|
-
# SupportedStylesForExponentOperator: space, no_space
|
254
|
-
Layout/SpaceAroundOperators:
|
255
|
-
Exclude:
|
256
|
-
- 'Gemfile'
|
257
|
-
- 'Rakefile'
|
258
|
-
- 'spec/bugsnag_spec.rb'
|
259
|
-
- 'spec/integrations/rake_spec.rb'
|
260
|
-
- 'spec/integrations/sidekiq_spec.rb'
|
261
|
-
- 'spec/report_spec.rb'
|
262
|
-
|
263
|
-
# Offense count: 89
|
264
|
-
# Cop supports --auto-correct.
|
265
|
-
# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces.
|
266
|
-
# SupportedStyles: space, no_space
|
267
|
-
# SupportedStylesForEmptyBraces: space, no_space
|
268
|
-
Layout/SpaceBeforeBlockBraces:
|
269
|
-
Exclude:
|
270
|
-
- 'lib/bugsnag/middleware/suggestion_data.rb'
|
271
|
-
- 'lib/bugsnag/middleware_stack.rb'
|
272
|
-
- 'spec/bugsnag_spec.rb'
|
273
|
-
- 'spec/configuration_spec.rb'
|
274
|
-
- 'spec/helper_spec.rb'
|
275
|
-
- 'spec/integration_spec.rb'
|
276
|
-
- 'spec/integrations/mailman_spec.rb'
|
277
|
-
- 'spec/integrations/rack_spec.rb'
|
278
|
-
- 'spec/integrations/rake_spec.rb'
|
279
|
-
- 'spec/integrations/sidekiq_spec.rb'
|
280
|
-
- 'spec/middleware_spec.rb'
|
281
|
-
- 'spec/report_spec.rb'
|
282
|
-
- 'spec/session_tracker_spec.rb'
|
283
|
-
- 'spec/stacktrace_spec.rb'
|
284
|
-
|
285
|
-
# Offense count: 48
|
286
|
-
# Cop supports --auto-correct.
|
287
|
-
# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces, SpaceBeforeBlockParameters.
|
288
|
-
# SupportedStyles: space, no_space
|
289
|
-
# SupportedStylesForEmptyBraces: space, no_space
|
290
|
-
Layout/SpaceInsideBlockBraces:
|
291
|
-
Enabled: false
|
292
|
-
|
293
|
-
# Offense count: 162
|
294
|
-
# Cop supports --auto-correct.
|
295
|
-
# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces.
|
296
|
-
# SupportedStyles: space, no_space, compact
|
297
|
-
# SupportedStylesForEmptyBraces: space, no_space
|
298
|
-
Layout/SpaceInsideHashLiteralBraces:
|
299
|
-
Enabled: false
|
300
|
-
|
301
|
-
# Offense count: 3
|
302
|
-
# Cop supports --auto-correct.
|
303
|
-
# Configuration parameters: EnforcedStyle.
|
304
|
-
# SupportedStyles: space, no_space
|
305
|
-
Layout/SpaceInsideParens:
|
306
|
-
Exclude:
|
307
|
-
- 'lib/bugsnag/stacktrace.rb'
|
308
|
-
- 'spec/integrations/shoryuken_spec.rb'
|
309
|
-
|
310
|
-
# Offense count: 8
|
311
|
-
# Cop supports --auto-correct.
|
312
|
-
# Configuration parameters: EnforcedStyle.
|
313
|
-
# SupportedStyles: final_newline, final_blank_line
|
314
|
-
Layout/TrailingEmptyLines:
|
315
|
-
Exclude:
|
316
|
-
- 'lib/bugsnag/session_tracker.rb'
|
317
|
-
- 'lib/bugsnag/tasks.rb'
|
318
|
-
- 'lib/bugsnag/version.rb'
|
319
|
-
- 'spec/breadcrumbs/breadcrumb_spec.rb'
|
320
|
-
- 'spec/breadcrumbs/validator_spec.rb'
|
321
|
-
- 'spec/middleware_stack_spec.rb'
|
322
|
-
- 'spec/spec_helper.rb'
|
323
|
-
- 'spec/utility/circular_buffer_spec.rb'
|
324
|
-
|
325
|
-
# Offense count: 5
|
326
|
-
# Cop supports --auto-correct.
|
327
|
-
# Configuration parameters: AllowInHeredoc.
|
328
|
-
Layout/TrailingWhitespace:
|
329
|
-
Exclude:
|
330
|
-
- 'spec/integrations/clearance_user_spec.rb'
|
331
|
-
- 'spec/integrations/que_spec.rb'
|
332
|
-
- 'spec/integrations/rake_spec.rb'
|
333
|
-
- 'spec/integrations/shoryuken_spec.rb'
|
334
|
-
- 'spec/integrations/warden_user_spec.rb'
|
335
|
-
|
336
|
-
# Offense count: 90
|
337
|
-
Lint/AmbiguousBlockAssociation:
|
338
|
-
Exclude:
|
339
|
-
- 'lib/bugsnag/delivery/thread_queue.rb'
|
340
|
-
- 'lib/bugsnag/middleware/suggestion_data.rb'
|
341
|
-
- 'spec/integrations/rack_spec.rb'
|
342
|
-
- 'spec/integrations/rails3_request_spec.rb'
|
343
|
-
- 'spec/integrations/sidekiq_spec.rb'
|
344
|
-
- 'spec/middleware_spec.rb'
|
345
|
-
- 'spec/report_spec.rb'
|
346
|
-
- 'spec/session_tracker_spec.rb'
|
347
|
-
- 'spec/stacktrace_spec.rb'
|
348
|
-
|
349
|
-
# Offense count: 3
|
350
|
-
# Configuration parameters: AllowSafeAssignment.
|
351
|
-
Lint/AssignmentInCondition:
|
352
|
-
Exclude:
|
353
|
-
- 'lib/bugsnag/delivery/thread_queue.rb'
|
354
|
-
- 'lib/bugsnag/helpers.rb'
|
355
|
-
|
356
|
-
# Offense count: 2
|
357
|
-
# Cop supports --auto-correct.
|
358
|
-
Lint/BooleanSymbol:
|
359
|
-
Exclude:
|
360
|
-
- 'spec/breadcrumbs/validator_spec.rb'
|
361
|
-
|
362
|
-
# Offense count: 15
|
363
|
-
Lint/IneffectiveAccessModifier:
|
364
|
-
Exclude:
|
365
|
-
- 'lib/bugsnag/helpers.rb'
|
366
|
-
|
367
|
-
# Offense count: 1
|
368
|
-
# Cop supports --auto-correct.
|
369
|
-
# Configuration parameters: EnforcedStyle.
|
370
|
-
# SupportedStyles: runtime_error, standard_error
|
371
|
-
Lint/InheritException:
|
372
|
-
Exclude:
|
373
|
-
- 'spec/report_spec.rb'
|
374
|
-
|
375
|
-
# Offense count: 1
|
376
|
-
# Cop supports --auto-correct.
|
377
|
-
Lint/ParenthesesAsGroupedExpression:
|
378
|
-
Exclude:
|
379
|
-
- 'spec/report_spec.rb'
|
380
|
-
|
381
|
-
# Offense count: 3
|
382
|
-
# Cop supports --auto-correct.
|
383
|
-
Lint/RedundantRequireStatement:
|
384
|
-
Exclude:
|
385
|
-
- 'lib/bugsnag.rb'
|
386
|
-
- 'lib/bugsnag/delivery/thread_queue.rb'
|
387
|
-
- 'lib/bugsnag/session_tracker.rb'
|
388
|
-
|
389
|
-
# Offense count: 1
|
390
|
-
# Cop supports --auto-correct.
|
391
|
-
Lint/RedundantStringCoercion:
|
392
|
-
Exclude:
|
393
|
-
- 'features/support/env.rb'
|
394
|
-
|
395
|
-
# Offense count: 12
|
396
|
-
Lint/RescueException:
|
397
|
-
Exclude:
|
398
|
-
- 'lib/bugsnag/integrations/delayed_job.rb'
|
399
|
-
- 'lib/bugsnag/integrations/mailman.rb'
|
400
|
-
- 'lib/bugsnag/integrations/rack.rb'
|
401
|
-
- 'lib/bugsnag/integrations/rake.rb'
|
402
|
-
- 'lib/bugsnag/integrations/shoryuken.rb'
|
403
|
-
- 'lib/bugsnag/integrations/sidekiq.rb'
|
404
|
-
- 'spec/middleware_spec.rb'
|
405
|
-
- 'spec/report_spec.rb'
|
406
|
-
- 'spec/stacktrace_spec.rb'
|
407
|
-
|
408
|
-
# Offense count: 1
|
409
|
-
# Cop supports --auto-correct.
|
410
|
-
Lint/SendWithMixinArgument:
|
411
|
-
Exclude:
|
412
|
-
- 'lib/bugsnag/integrations/rake.rb'
|
413
|
-
|
414
|
-
# Offense count: 2
|
415
|
-
# Configuration parameters: AllowComments.
|
416
|
-
Lint/SuppressedException:
|
417
|
-
Exclude:
|
418
|
-
- 'lib/bugsnag.rb'
|
419
|
-
- 'lib/bugsnag/tasks/bugsnag.rake'
|
420
|
-
|
421
|
-
# Offense count: 103
|
422
|
-
# Cop supports --auto-correct.
|
423
|
-
# Configuration parameters: IgnoreEmptyBlocks, AllowUnusedKeywordArguments.
|
424
|
-
Lint/UnusedBlockArgument:
|
425
|
-
Exclude:
|
426
|
-
- 'features/support/env.rb'
|
427
|
-
- 'lib/bugsnag/configuration.rb'
|
428
|
-
- 'lib/bugsnag/helpers.rb'
|
429
|
-
- 'lib/bugsnag/middleware_stack.rb'
|
430
|
-
- 'lib/bugsnag/report.rb'
|
431
|
-
- 'spec/bugsnag_spec.rb'
|
432
|
-
- 'spec/helper_spec.rb'
|
433
|
-
- 'spec/integrations/rack_spec.rb'
|
434
|
-
- 'spec/integrations/rails3_request_spec.rb'
|
435
|
-
- 'spec/integrations/sidekiq_spec.rb'
|
436
|
-
- 'spec/middleware_spec.rb'
|
437
|
-
- 'spec/report_spec.rb'
|
438
|
-
- 'spec/session_tracker_spec.rb'
|
439
|
-
- 'spec/stacktrace_spec.rb'
|
440
|
-
|
441
|
-
# Offense count: 3
|
442
|
-
# Cop supports --auto-correct.
|
443
|
-
# Configuration parameters: AllowUnusedKeywordArguments, IgnoreEmptyMethods, IgnoreNotImplementedMethods.
|
444
|
-
Lint/UnusedMethodArgument:
|
445
|
-
Exclude:
|
446
|
-
- 'lib/bugsnag.rb'
|
447
|
-
- 'lib/bugsnag/configuration.rb'
|
448
|
-
- 'lib/bugsnag/integrations/sidekiq.rb'
|
449
|
-
|
450
|
-
# Offense count: 1
|
451
|
-
# Cop supports --auto-correct.
|
452
|
-
# Configuration parameters: ContextCreatingMethods, MethodCreatingMethods.
|
453
|
-
Lint/UselessAccessModifier:
|
454
|
-
Exclude:
|
455
|
-
- 'lib/bugsnag/helpers.rb'
|
456
|
-
|
457
|
-
# Offense count: 4
|
458
|
-
Lint/UselessAssignment:
|
459
|
-
Exclude:
|
460
|
-
- 'features/steps/ruby_notifier_steps.rb'
|
461
|
-
- 'spec/breadcrumbs/breadcrumb_spec.rb'
|
462
|
-
- 'spec/session_tracker_spec.rb'
|
463
|
-
|
464
|
-
# Offense count: 33
|
465
|
-
# Configuration parameters: IgnoredMethods.
|
466
|
-
Metrics/AbcSize:
|
467
|
-
Max: 68
|
468
|
-
|
469
|
-
# Offense count: 74
|
470
|
-
# Configuration parameters: CountComments, ExcludedMethods.
|
471
|
-
# ExcludedMethods: refine
|
472
|
-
Metrics/BlockLength:
|
473
|
-
Max: 1026
|
474
|
-
|
475
|
-
# Offense count: 1
|
476
|
-
# Configuration parameters: CountBlocks.
|
477
|
-
Metrics/BlockNesting:
|
478
|
-
Max: 4
|
479
|
-
|
480
|
-
# Offense count: 4
|
481
|
-
# Configuration parameters: CountComments.
|
482
|
-
Metrics/ClassLength:
|
483
|
-
Max: 174
|
484
|
-
|
485
|
-
# Offense count: 15
|
486
|
-
# Configuration parameters: IgnoredMethods.
|
487
|
-
Metrics/CyclomaticComplexity:
|
488
|
-
Max: 18
|
489
|
-
|
490
|
-
# Offense count: 42
|
491
|
-
# Configuration parameters: CountComments, ExcludedMethods.
|
492
|
-
Metrics/MethodLength:
|
493
|
-
Max: 54
|
494
|
-
|
495
|
-
# Offense count: 3
|
496
|
-
# Configuration parameters: CountComments.
|
497
|
-
Metrics/ModuleLength:
|
498
|
-
Max: 152
|
499
|
-
|
500
|
-
# Offense count: 15
|
501
|
-
# Configuration parameters: IgnoredMethods.
|
502
|
-
Metrics/PerceivedComplexity:
|
503
|
-
Max: 20
|
504
|
-
|
505
|
-
# Offense count: 2
|
506
|
-
Naming/AccessorMethodName:
|
507
|
-
Exclude:
|
508
|
-
- 'lib/bugsnag/session_tracker.rb'
|
509
|
-
|
510
|
-
# Offense count: 1
|
511
|
-
Naming/ConstantName:
|
512
|
-
Exclude:
|
513
|
-
- 'spec/integrations/que_spec.rb'
|
514
|
-
|
515
|
-
# Offense count: 1
|
516
|
-
# Configuration parameters: ForbiddenDelimiters.
|
517
|
-
# ForbiddenDelimiters: (?-mix:(^|\s)(EO[A-Z]{1}|END)(\s|$))
|
518
|
-
Naming/HeredocDelimiterNaming:
|
519
|
-
Exclude:
|
520
|
-
- 'lib/generators/bugsnag/bugsnag_generator.rb'
|
521
|
-
|
522
|
-
# Offense count: 1
|
523
|
-
# Configuration parameters: EnforcedStyleForLeadingUnderscores.
|
524
|
-
# SupportedStylesForLeadingUnderscores: disallowed, required, optional
|
525
|
-
Naming/MemoizedInstanceVariableName:
|
526
|
-
Exclude:
|
527
|
-
- 'lib/bugsnag.rb'
|
528
|
-
|
529
|
-
# Offense count: 1
|
530
|
-
# Configuration parameters: NamePrefix, ForbiddenPrefixes, AllowedMethods, MethodDefinitionMacros.
|
531
|
-
# NamePrefix: is_, has_, have_
|
532
|
-
# ForbiddenPrefixes: is_, has_, have_
|
533
|
-
# AllowedMethods: is_a?
|
534
|
-
# MethodDefinitionMacros: define_method, define_singleton_method
|
535
|
-
Naming/PredicateName:
|
536
|
-
Exclude:
|
537
|
-
- 'spec/**/*'
|
538
|
-
- 'lib/bugsnag/helpers.rb'
|
539
|
-
|
540
|
-
# Offense count: 10
|
541
|
-
# Cop supports --auto-correct.
|
542
|
-
# Configuration parameters: PreferredName.
|
543
|
-
Naming/RescuedExceptionsVariableName:
|
544
|
-
Exclude:
|
545
|
-
- 'lib/bugsnag/integrations/delayed_job.rb'
|
546
|
-
- 'lib/bugsnag/integrations/mailman.rb'
|
547
|
-
- 'lib/bugsnag/integrations/rack.rb'
|
548
|
-
- 'lib/bugsnag/integrations/rails/active_record_rescue.rb'
|
549
|
-
- 'lib/bugsnag/integrations/rake.rb'
|
550
|
-
- 'lib/bugsnag/integrations/shoryuken.rb'
|
551
|
-
- 'lib/bugsnag/integrations/sidekiq.rb'
|
552
|
-
- 'lib/bugsnag/middleware/rack_request.rb'
|
553
|
-
|
554
|
-
# Offense count: 3
|
555
|
-
# Configuration parameters: EnforcedStyle.
|
556
|
-
# SupportedStyles: snake_case, normalcase, non_integer
|
557
|
-
Naming/VariableNumber:
|
558
|
-
Exclude:
|
559
|
-
- 'spec/breadcrumbs/validator_spec.rb'
|
560
|
-
|
561
|
-
# Offense count: 20
|
562
|
-
# Cop supports --auto-correct.
|
563
|
-
# Configuration parameters: EnforcedStyle.
|
564
|
-
# SupportedStyles: prefer_alias, prefer_alias_method
|
565
|
-
Style/Alias:
|
566
|
-
Exclude:
|
567
|
-
- 'lib/bugsnag/configuration.rb'
|
568
|
-
- 'lib/bugsnag/integrations/rake.rb'
|
569
|
-
- 'lib/bugsnag/session_tracker.rb'
|
570
|
-
- 'spec/bugsnag_spec.rb'
|
571
|
-
- 'spec/integrations/mailman_spec.rb'
|
572
|
-
- 'spec/integrations/mongo_spec.rb'
|
573
|
-
- 'spec/integrations/que_spec.rb'
|
574
|
-
- 'spec/integrations/resque_spec.rb'
|
575
|
-
- 'spec/integrations/shoryuken_spec.rb'
|
576
|
-
|
577
|
-
# Offense count: 4
|
578
|
-
# Cop supports --auto-correct.
|
579
|
-
# Configuration parameters: EnforcedStyle.
|
580
|
-
# SupportedStyles: always, conditionals
|
581
|
-
Style/AndOr:
|
582
|
-
Exclude:
|
583
|
-
- 'lib/bugsnag.rb'
|
584
|
-
- 'lib/bugsnag/helpers.rb'
|
585
|
-
- 'spec/spec_helper.rb'
|
586
|
-
|
587
|
-
# Offense count: 6
|
588
|
-
# Cop supports --auto-correct.
|
589
|
-
# Configuration parameters: EnforcedStyle.
|
590
|
-
# SupportedStyles: percent_q, bare_percent
|
591
|
-
Style/BarePercentLiterals:
|
592
|
-
Exclude:
|
593
|
-
- 'features/steps/ruby_notifier_steps.rb'
|
594
|
-
|
595
|
-
# Offense count: 5
|
596
|
-
# Cop supports --auto-correct.
|
597
|
-
# Configuration parameters: EnforcedStyle, ProceduralMethods, FunctionalMethods, IgnoredMethods, AllowBracesOnProceduralOneLiners, BracesRequiredMethods.
|
598
|
-
# SupportedStyles: line_count_based, semantic, braces_for_chaining, always_braces
|
599
|
-
# ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object
|
600
|
-
# FunctionalMethods: let, let!, subject, watch
|
601
|
-
# IgnoredMethods: lambda, proc, it
|
602
|
-
Style/BlockDelimiters:
|
603
|
-
Exclude:
|
604
|
-
- 'lib/bugsnag/middleware/classify_error.rb'
|
605
|
-
- 'spec/integrations/mongo_spec.rb'
|
606
|
-
- 'spec/report_spec.rb'
|
607
|
-
|
608
|
-
# Offense count: 27
|
609
|
-
# Cop supports --auto-correct.
|
610
|
-
# Configuration parameters: AutoCorrect, EnforcedStyle.
|
611
|
-
# SupportedStyles: nested, compact
|
612
|
-
Style/ClassAndModuleChildren:
|
613
|
-
Enabled: false
|
614
|
-
|
615
|
-
# Offense count: 1
|
616
|
-
# Cop supports --auto-correct.
|
617
|
-
# Configuration parameters: EnforcedStyle.
|
618
|
-
# SupportedStyles: is_a?, kind_of?
|
619
|
-
Style/ClassCheck:
|
620
|
-
Exclude:
|
621
|
-
- 'lib/bugsnag/cleaner.rb'
|
622
|
-
|
623
|
-
# Offense count: 9
|
624
|
-
# Cop supports --auto-correct.
|
625
|
-
# Configuration parameters: EnforcedStyle, SingleLineConditionsOnly, IncludeTernaryExpressions.
|
626
|
-
# SupportedStyles: assign_to_condition, assign_inside_condition
|
627
|
-
Style/ConditionalAssignment:
|
628
|
-
Exclude:
|
629
|
-
- 'features/steps/ruby_notifier_steps.rb'
|
630
|
-
- 'lib/bugsnag.rb'
|
631
|
-
- 'lib/bugsnag/cleaner.rb'
|
632
|
-
- 'lib/bugsnag/delivery/synchronous.rb'
|
633
|
-
- 'lib/bugsnag/middleware_stack.rb'
|
634
|
-
- 'lib/bugsnag/report.rb'
|
635
|
-
- 'spec/report_spec.rb'
|
636
|
-
|
637
|
-
# Offense count: 2
|
638
|
-
# Cop supports --auto-correct.
|
639
|
-
Style/Dir:
|
640
|
-
Exclude:
|
641
|
-
- 'spec/report_spec.rb'
|
642
|
-
|
643
|
-
# Offense count: 22
|
644
|
-
Style/Documentation:
|
645
|
-
Enabled: false
|
646
|
-
|
647
|
-
# Offense count: 1
|
648
|
-
# Cop supports --auto-correct.
|
649
|
-
# Configuration parameters: EnforcedStyle.
|
650
|
-
# SupportedStyles: empty, nil, both
|
651
|
-
Style/EmptyElse:
|
652
|
-
Exclude:
|
653
|
-
- 'lib/bugsnag/stacktrace.rb'
|
654
|
-
|
655
|
-
# Offense count: 15
|
656
|
-
# Cop supports --auto-correct.
|
657
|
-
Style/Encoding:
|
658
|
-
Exclude:
|
659
|
-
- 'Rakefile'
|
660
|
-
- 'spec/breadcrumbs/breadcrumb_spec.rb'
|
661
|
-
- 'spec/breadcrumbs/validator_spec.rb'
|
662
|
-
- 'spec/bugsnag_spec.rb'
|
663
|
-
- 'spec/cleaner_spec.rb'
|
664
|
-
- 'spec/configuration_spec.rb'
|
665
|
-
- 'spec/helper_spec.rb'
|
666
|
-
- 'spec/integrations/mongo_spec.rb'
|
667
|
-
- 'spec/integrations/que_spec.rb'
|
668
|
-
- 'spec/integrations/resque_spec.rb'
|
669
|
-
- 'spec/integrations/shoryuken_spec.rb'
|
670
|
-
- 'spec/middleware/exception_meta_data_spec.rb'
|
671
|
-
- 'spec/report_spec.rb'
|
672
|
-
- 'spec/session_tracker_spec.rb'
|
673
|
-
- 'spec/utility/circular_buffer_spec.rb'
|
674
|
-
|
675
|
-
# Offense count: 1
|
676
|
-
# Cop supports --auto-correct.
|
677
|
-
Style/ExpandPathArguments:
|
678
|
-
Exclude:
|
679
|
-
- 'lib/generators/bugsnag/bugsnag_generator.rb'
|
680
|
-
|
681
|
-
# Offense count: 80
|
682
|
-
# Cop supports --auto-correct.
|
683
|
-
# Configuration parameters: EnforcedStyle.
|
684
|
-
# SupportedStyles: always, always_true, never
|
685
|
-
Style/FrozenStringLiteralComment:
|
686
|
-
Enabled: false
|
687
|
-
|
688
|
-
# Offense count: 3
|
689
|
-
# Configuration parameters: AllowedVariables.
|
690
|
-
Style/GlobalVars:
|
691
|
-
Exclude:
|
692
|
-
- 'features/steps/ruby_notifier_steps.rb'
|
693
|
-
- 'features/support/env.rb'
|
694
|
-
|
695
|
-
# Offense count: 5
|
696
|
-
# Configuration parameters: MinBodyLength.
|
697
|
-
Style/GuardClause:
|
698
|
-
Exclude:
|
699
|
-
- 'lib/bugsnag.rb'
|
700
|
-
- 'lib/bugsnag/integrations/resque.rb'
|
701
|
-
- 'spec/spec_helper.rb'
|
702
|
-
|
703
|
-
# Offense count: 547
|
704
|
-
# Cop supports --auto-correct.
|
705
|
-
# Configuration parameters: EnforcedStyle, UseHashRocketsWithSymbolValues, PreferHashRocketsForNonAlnumEndingSymbols.
|
706
|
-
# SupportedStyles: ruby19, hash_rockets, no_mixed_keys, ruby19_no_mixed_keys
|
707
|
-
Style/HashSyntax:
|
708
|
-
Enabled: false
|
709
|
-
|
710
|
-
# Offense count: 1
|
711
|
-
# Configuration parameters: AllowIfModifier.
|
712
|
-
Style/IfInsideElse:
|
713
|
-
Exclude:
|
714
|
-
- 'lib/bugsnag/session_tracker.rb'
|
715
|
-
|
716
|
-
# Offense count: 14
|
717
|
-
# Cop supports --auto-correct.
|
718
|
-
Style/IfUnlessModifier:
|
719
|
-
Exclude:
|
720
|
-
- 'lib/bugsnag/delivery/synchronous.rb'
|
721
|
-
- 'lib/bugsnag/integrations/delayed_job.rb'
|
722
|
-
- 'lib/bugsnag/integrations/mailman.rb'
|
723
|
-
- 'lib/bugsnag/integrations/rack.rb'
|
724
|
-
- 'lib/bugsnag/integrations/resque.rb'
|
725
|
-
- 'lib/bugsnag/middleware/callbacks.rb'
|
726
|
-
- 'lib/bugsnag/middleware/rack_request.rb'
|
727
|
-
- 'lib/bugsnag/session_tracker.rb'
|
728
|
-
- 'lib/bugsnag/stacktrace.rb'
|
729
|
-
- 'spec/cleaner_spec.rb'
|
730
|
-
|
731
|
-
# Offense count: 5
|
732
|
-
# Cop supports --auto-correct.
|
733
|
-
# Configuration parameters: EnforcedStyle.
|
734
|
-
# SupportedStyles: line_count_dependent, lambda, literal
|
735
|
-
Style/Lambda:
|
736
|
-
Exclude:
|
737
|
-
- 'spec/integrations/rack_spec.rb'
|
738
|
-
- 'spec/middleware/exception_meta_data_spec.rb'
|
739
|
-
|
740
|
-
# Offense count: 8
|
741
|
-
# Cop supports --auto-correct.
|
742
|
-
# Configuration parameters: IgnoredMethods.
|
743
|
-
Style/MethodCallWithoutArgsParentheses:
|
744
|
-
Exclude:
|
745
|
-
- 'lib/bugsnag/delivery/synchronous.rb'
|
746
|
-
- 'lib/bugsnag/report.rb'
|
747
|
-
- 'lib/bugsnag/session_tracker.rb'
|
748
|
-
- 'spec/integrations/rake_spec.rb'
|
749
|
-
- 'spec/integrations/shoryuken_spec.rb'
|
750
|
-
|
751
|
-
# Offense count: 1
|
752
|
-
Style/MethodMissingSuper:
|
753
|
-
Exclude:
|
754
|
-
- 'lib/bugsnag/middleware_stack.rb'
|
755
|
-
|
756
|
-
# Offense count: 1
|
757
|
-
Style/MissingRespondToMissing:
|
758
|
-
Exclude:
|
759
|
-
- 'lib/bugsnag/middleware_stack.rb'
|
760
|
-
|
761
|
-
# Offense count: 1
|
762
|
-
Style/MultilineBlockChain:
|
763
|
-
Exclude:
|
764
|
-
- 'lib/bugsnag/middleware/classify_error.rb'
|
765
|
-
|
766
|
-
# Offense count: 1
|
767
|
-
# Cop supports --auto-correct.
|
768
|
-
Style/MultilineIfModifier:
|
769
|
-
Exclude:
|
770
|
-
- 'lib/bugsnag/integrations/rails/controller_methods.rb'
|
771
|
-
|
772
|
-
# Offense count: 4
|
773
|
-
# Cop supports --auto-correct.
|
774
|
-
# Configuration parameters: EnforcedStyle.
|
775
|
-
# SupportedStyles: both, prefix, postfix
|
776
|
-
Style/NegatedIf:
|
777
|
-
Exclude:
|
778
|
-
- 'lib/bugsnag/session_tracker.rb'
|
779
|
-
- 'spec/middleware_spec.rb'
|
780
|
-
- 'spec/stacktrace_spec.rb'
|
781
|
-
|
782
|
-
# Offense count: 5
|
783
|
-
# Cop supports --auto-correct.
|
784
|
-
# Configuration parameters: AllowedMethods.
|
785
|
-
# AllowedMethods: be, be_a, be_an, be_between, be_falsey, be_kind_of, be_instance_of, be_truthy, be_within, eq, eql, end_with, include, match, raise_error, respond_to, start_with
|
786
|
-
Style/NestedParenthesizedCalls:
|
787
|
-
Exclude:
|
788
|
-
- 'spec/session_tracker_spec.rb'
|
789
|
-
|
790
|
-
# Offense count: 2
|
791
|
-
# Cop supports --auto-correct.
|
792
|
-
# Configuration parameters: EnforcedStyle, MinBodyLength.
|
793
|
-
# SupportedStyles: skip_modifier_ifs, always
|
794
|
-
Style/Next:
|
795
|
-
Exclude:
|
796
|
-
- 'lib/bugsnag/middleware/classify_error.rb'
|
797
|
-
- 'lib/bugsnag/middleware/exception_meta_data.rb'
|
798
|
-
|
799
|
-
# Offense count: 1
|
800
|
-
# Cop supports --auto-correct.
|
801
|
-
# Configuration parameters: IncludeSemanticChanges.
|
802
|
-
Style/NonNilCheck:
|
803
|
-
Exclude:
|
804
|
-
- 'lib/bugsnag/report.rb'
|
805
|
-
|
806
|
-
# Offense count: 13
|
807
|
-
# Cop supports --auto-correct.
|
808
|
-
# Configuration parameters: Strict.
|
809
|
-
Style/NumericLiterals:
|
810
|
-
MinDigits: 7
|
811
|
-
|
812
|
-
# Offense count: 6
|
813
|
-
# Cop supports --auto-correct.
|
814
|
-
# Configuration parameters: AutoCorrect, EnforcedStyle, IgnoredMethods.
|
815
|
-
# SupportedStyles: predicate, comparison
|
816
|
-
Style/NumericPredicate:
|
817
|
-
Exclude:
|
818
|
-
- 'spec/**/*'
|
819
|
-
- 'Rakefile'
|
820
|
-
- 'lib/bugsnag.rb'
|
821
|
-
- 'lib/bugsnag/session_tracker.rb'
|
822
|
-
- 'lib/bugsnag/utility/circular_buffer.rb'
|
823
|
-
|
824
|
-
# Offense count: 2
|
825
|
-
# Cop supports --auto-correct.
|
826
|
-
Style/ParallelAssignment:
|
827
|
-
Exclude:
|
828
|
-
- 'lib/bugsnag/stacktrace.rb'
|
829
|
-
|
830
|
-
# Offense count: 6
|
831
|
-
# Cop supports --auto-correct.
|
832
|
-
# Configuration parameters: PreferredDelimiters.
|
833
|
-
Style/PercentLiteralDelimiters:
|
834
|
-
Exclude:
|
835
|
-
- 'features/steps/ruby_notifier_steps.rb'
|
836
|
-
|
837
|
-
# Offense count: 6
|
838
|
-
# Cop supports --auto-correct.
|
839
|
-
Style/PerlBackrefs:
|
840
|
-
Exclude:
|
841
|
-
- 'lib/bugsnag/stacktrace.rb'
|
842
|
-
|
843
|
-
# Offense count: 8
|
844
|
-
# Cop supports --auto-correct.
|
845
|
-
Style/Proc:
|
846
|
-
Exclude:
|
847
|
-
- 'spec/bugsnag_spec.rb'
|
848
|
-
- 'spec/report_spec.rb'
|
849
|
-
|
850
|
-
# Offense count: 4
|
851
|
-
# Cop supports --auto-correct.
|
852
|
-
# Configuration parameters: EnforcedStyle.
|
853
|
-
# SupportedStyles: compact, exploded
|
854
|
-
Style/RaiseArgs:
|
855
|
-
Exclude:
|
856
|
-
- 'lib/bugsnag/tasks/bugsnag.rake'
|
857
|
-
- 'spec/bugsnag_spec.rb'
|
858
|
-
- 'spec/integrations/rack_spec.rb'
|
859
|
-
- 'spec/integrations/rails3_request_spec.rb'
|
860
|
-
|
861
|
-
# Offense count: 4
|
862
|
-
# Cop supports --auto-correct.
|
863
|
-
Style/RedundantBegin:
|
864
|
-
Exclude:
|
865
|
-
- 'lib/bugsnag/delivery/synchronous.rb'
|
866
|
-
- 'lib/bugsnag/integrations/mailman.rb'
|
867
|
-
- 'lib/bugsnag/integrations/shoryuken.rb'
|
868
|
-
- 'spec/bugsnag_spec.rb'
|
869
|
-
|
870
|
-
# Offense count: 1
|
871
|
-
# Cop supports --auto-correct.
|
872
|
-
Style/RedundantException:
|
873
|
-
Exclude:
|
874
|
-
- 'lib/bugsnag/tasks/bugsnag.rake'
|
875
|
-
|
876
|
-
# Offense count: 2
|
877
|
-
# Cop supports --auto-correct.
|
878
|
-
Style/RedundantInterpolation:
|
879
|
-
Exclude:
|
880
|
-
- 'spec/helper_spec.rb'
|
881
|
-
|
882
|
-
# Offense count: 13
|
883
|
-
# Cop supports --auto-correct.
|
884
|
-
Style/RedundantSelf:
|
885
|
-
Exclude:
|
886
|
-
- 'lib/bugsnag/configuration.rb'
|
887
|
-
|
888
|
-
# Offense count: 5
|
889
|
-
# Cop supports --auto-correct.
|
890
|
-
# Configuration parameters: EnforcedStyle, AllowInnerSlashes.
|
891
|
-
# SupportedStyles: slashes, percent_r, mixed
|
892
|
-
Style/RegexpLiteral:
|
893
|
-
Exclude:
|
894
|
-
- 'features/steps/ruby_notifier_steps.rb'
|
895
|
-
- 'lib/bugsnag/stacktrace.rb'
|
896
|
-
- 'spec/report_spec.rb'
|
897
|
-
- 'spec/stacktrace_spec.rb'
|
898
|
-
|
899
|
-
# Offense count: 11
|
900
|
-
# Cop supports --auto-correct.
|
901
|
-
Style/RescueModifier:
|
902
|
-
Exclude:
|
903
|
-
- 'lib/bugsnag/middleware/rack_request.rb'
|
904
|
-
- 'lib/bugsnag/middleware/rails3_request.rb'
|
905
|
-
- 'lib/bugsnag/middleware/warden_user.rb'
|
906
|
-
- 'lib/bugsnag/stacktrace.rb'
|
907
|
-
- 'spec/integrations/rack_spec.rb'
|
908
|
-
- 'spec/stacktrace_spec.rb'
|
909
|
-
|
910
|
-
# Offense count: 15
|
911
|
-
# Cop supports --auto-correct.
|
912
|
-
# Configuration parameters: EnforcedStyle.
|
913
|
-
# SupportedStyles: implicit, explicit
|
914
|
-
Style/RescueStandardError:
|
915
|
-
Exclude:
|
916
|
-
- 'lib/bugsnag/integrations/que.rb'
|
917
|
-
- 'lib/bugsnag/integrations/railtie.rb'
|
918
|
-
- 'lib/bugsnag/stacktrace.rb'
|
919
|
-
- 'lib/bugsnag/tasks/bugsnag.rake'
|
920
|
-
- 'spec/bugsnag_spec.rb'
|
921
|
-
- 'spec/report_spec.rb'
|
922
|
-
|
923
|
-
# Offense count: 2
|
924
|
-
# Cop supports --auto-correct.
|
925
|
-
# Configuration parameters: ConvertCodeThatCanStartToReturnNil, AllowedMethods.
|
926
|
-
# AllowedMethods: present?, blank?, presence, try, try!
|
927
|
-
Style/SafeNavigation:
|
928
|
-
Exclude:
|
929
|
-
- 'lib/bugsnag/middleware/callbacks.rb'
|
930
|
-
- 'spec/spec_helper.rb'
|
931
|
-
|
932
|
-
# Offense count: 4
|
933
|
-
# Cop supports --auto-correct.
|
934
|
-
# Configuration parameters: AllowAsExpressionSeparator.
|
935
|
-
Style/Semicolon:
|
936
|
-
Exclude:
|
937
|
-
- 'lib/bugsnag/configuration.rb'
|
938
|
-
- 'spec/cleaner_spec.rb'
|
939
|
-
- 'spec/configuration_spec.rb'
|
940
|
-
|
941
|
-
# Offense count: 2
|
942
|
-
# Cop supports --auto-correct.
|
943
|
-
# Configuration parameters: EnforcedStyle.
|
944
|
-
# SupportedStyles: only_raise, only_fail, semantic
|
945
|
-
Style/SignalException:
|
946
|
-
Exclude:
|
947
|
-
- 'spec/bugsnag_spec.rb'
|
948
|
-
|
949
|
-
# Offense count: 15
|
950
|
-
# Cop supports --auto-correct.
|
951
|
-
# Configuration parameters: .
|
952
|
-
# SupportedStyles: use_perl_names, use_english_names
|
953
|
-
Style/SpecialGlobalVars:
|
954
|
-
EnforcedStyle: use_perl_names
|
955
|
-
|
956
|
-
# Offense count: 1817
|
957
|
-
# Cop supports --auto-correct.
|
958
|
-
# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
|
959
|
-
# SupportedStyles: single_quotes, double_quotes
|
960
|
-
Style/StringLiterals:
|
961
|
-
Enabled: false
|
962
|
-
|
963
|
-
# Offense count: 1
|
964
|
-
# Cop supports --auto-correct.
|
965
|
-
# Configuration parameters: EnforcedStyle.
|
966
|
-
# SupportedStyles: single_quotes, double_quotes
|
967
|
-
Style/StringLiteralsInInterpolation:
|
968
|
-
Exclude:
|
969
|
-
- 'features/support/env.rb'
|
970
|
-
|
971
|
-
# Offense count: 14
|
972
|
-
# Cop supports --auto-correct.
|
973
|
-
# Configuration parameters: MinSize.
|
974
|
-
# SupportedStyles: percent, brackets
|
975
|
-
Style/SymbolArray:
|
976
|
-
EnforcedStyle: brackets
|
977
|
-
|
978
|
-
# Offense count: 4
|
979
|
-
# Cop supports --auto-correct.
|
980
|
-
# Configuration parameters: IgnoredMethods.
|
981
|
-
# IgnoredMethods: respond_to, define_method
|
982
|
-
Style/SymbolProc:
|
983
|
-
Exclude:
|
984
|
-
- 'lib/bugsnag/middleware/classify_error.rb'
|
985
|
-
- 'lib/bugsnag/middleware/rack_request.rb'
|
986
|
-
- 'lib/bugsnag/middleware/suggestion_data.rb'
|
987
|
-
- 'spec/report_spec.rb'
|
988
|
-
|
989
|
-
# Offense count: 1
|
990
|
-
# Cop supports --auto-correct.
|
991
|
-
# Configuration parameters: EnforcedStyle, AllowSafeAssignment.
|
992
|
-
# SupportedStyles: require_parentheses, require_no_parentheses, require_parentheses_when_complex
|
993
|
-
Style/TernaryParentheses:
|
994
|
-
Exclude:
|
995
|
-
- 'lib/bugsnag/report.rb'
|
996
|
-
|
997
|
-
# Offense count: 1
|
998
|
-
# Cop supports --auto-correct.
|
999
|
-
# Configuration parameters: EnforcedStyleForMultiline.
|
1000
|
-
# SupportedStylesForMultiline: comma, consistent_comma, no_comma
|
1001
|
-
Style/TrailingCommaInArguments:
|
1002
|
-
Exclude:
|
1003
|
-
- 'spec/report_spec.rb'
|
1004
|
-
|
1005
|
-
# Offense count: 2
|
1006
|
-
# Cop supports --auto-correct.
|
1007
|
-
# Configuration parameters: EnforcedStyleForMultiline.
|
1008
|
-
# SupportedStylesForMultiline: comma, consistent_comma, no_comma
|
1009
|
-
Style/TrailingCommaInArrayLiteral:
|
1010
|
-
Exclude:
|
1011
|
-
- 'spec/stacktrace_spec.rb'
|
1012
|
-
|
1013
|
-
# Offense count: 4
|
1014
|
-
# Cop supports --auto-correct.
|
1015
|
-
# Configuration parameters: EnforcedStyleForMultiline.
|
1016
|
-
# SupportedStylesForMultiline: comma, consistent_comma, no_comma
|
1017
|
-
Style/TrailingCommaInHashLiteral:
|
1018
|
-
Exclude:
|
1019
|
-
- 'spec/integrations/que_spec.rb'
|
1020
|
-
- 'spec/integrations/rails3_request_spec.rb'
|
1021
|
-
|
1022
|
-
# Offense count: 2
|
1023
|
-
# Cop supports --auto-correct.
|
1024
|
-
# Configuration parameters: ExactNameMatch, AllowPredicates, AllowDSLWriters, IgnoreClassMethods, AllowedMethods.
|
1025
|
-
# AllowedMethods: to_ary, to_a, to_c, to_enum, to_h, to_hash, to_i, to_int, to_io, to_open, to_path, to_proc, to_r, to_regexp, to_str, to_s, to_sym
|
1026
|
-
Style/TrivialAccessors:
|
1027
|
-
Exclude:
|
1028
|
-
- 'lib/bugsnag/configuration.rb'
|
1029
|
-
|
1030
|
-
# Offense count: 2
|
1031
|
-
# Cop supports --auto-correct.
|
1032
|
-
# Configuration parameters: MinSize, WordRegex.
|
1033
|
-
# SupportedStyles: percent, brackets
|
1034
|
-
Style/WordArray:
|
1035
|
-
EnforcedStyle: brackets
|
1036
|
-
|
1037
|
-
# Offense count: 4
|
1038
|
-
# Cop supports --auto-correct.
|
1039
|
-
Style/ZeroLengthPredicate:
|
1040
|
-
Exclude:
|
1041
|
-
- 'Rakefile'
|
1042
|
-
- 'lib/bugsnag/session_tracker.rb'
|
1043
|
-
|
1044
|
-
# Offense count: 371
|
1045
|
-
# Cop supports --auto-correct.
|
1046
|
-
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
1047
|
-
# URISchemes: http, https
|
1048
|
-
Layout/LineLength:
|
1049
|
-
Max: 175
|