bugsnag 6.7.3 → 6.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +3 -0
- data/.rubocop_todo.yml +3 -1
- data/.travis.yml +40 -0
- data/CHANGELOG.md +22 -0
- data/Gemfile +9 -4
- data/VERSION +1 -1
- data/features/fixtures/delayed_job/.dockerignore +1 -0
- data/features/fixtures/delayed_job/Dockerfile +12 -0
- data/features/fixtures/delayed_job/Gemfile +4 -0
- data/features/fixtures/docker-compose.yml +247 -0
- data/features/fixtures/plain/.dockerignore +2 -0
- data/features/fixtures/plain/Dockerfile +12 -0
- data/features/fixtures/plain/app/Gemfile +3 -0
- data/features/fixtures/plain/app/app.rb +40 -0
- data/features/fixtures/plain/app/configuration/api_key.rb +9 -0
- data/features/fixtures/plain/app/configuration/proxy.rb +14 -0
- data/features/fixtures/plain/app/configuration/send_handled.rb +7 -0
- data/features/fixtures/plain/app/configuration/send_unhandled.rb +9 -0
- data/features/fixtures/plain/app/delivery/fork_threadpool.rb +25 -0
- data/features/fixtures/plain/app/delivery/synchronous.rb +14 -0
- data/features/fixtures/plain/app/delivery/threadpool.rb +14 -0
- data/features/fixtures/plain/app/exception_data/crash.rb +34 -0
- data/features/fixtures/plain/app/exception_data/handled_context.rb +10 -0
- data/features/fixtures/plain/app/exception_data/handled_hash.rb +10 -0
- data/features/fixtures/plain/app/exception_data/handled_meta_data.rb +10 -0
- data/features/fixtures/plain/app/exception_data/handled_user_id.rb +10 -0
- data/features/fixtures/plain/app/exception_data/unhandled_context.rb +7 -0
- data/features/fixtures/plain/app/exception_data/unhandled_hash.rb +7 -0
- data/features/fixtures/plain/app/exception_data/unhandled_meta_data.rb +7 -0
- data/features/fixtures/plain/app/exception_data/unhandled_user_id.rb +7 -0
- data/features/fixtures/plain/app/filters/additional_filters.rb +11 -0
- data/features/fixtures/plain/app/filters/default_filters.rb +15 -0
- data/features/fixtures/plain/app/handled/block_metadata.rb +15 -0
- data/features/fixtures/plain/app/handled/ignore_exception.rb +12 -0
- data/features/fixtures/plain/app/handled/notify_exception.rb +9 -0
- data/features/fixtures/plain/app/handled/notify_string.rb +9 -0
- data/features/fixtures/plain/app/ignore_classes/handled.rb +8 -0
- data/features/fixtures/plain/app/ignore_classes/ignore_error.rb +8 -0
- data/features/fixtures/plain/app/ignore_classes/unhandled.rb +4 -0
- data/features/fixtures/plain/app/report_modification/add_tab.rb +16 -0
- data/features/fixtures/plain/app/report_modification/add_tab_existing.rb +22 -0
- data/features/fixtures/plain/app/report_modification/add_tab_override.rb +19 -0
- data/features/fixtures/plain/app/report_modification/ignore_report.rb +9 -0
- data/features/fixtures/plain/app/report_modification/initiators/handled_before_notify.rb +10 -0
- data/features/fixtures/plain/app/report_modification/initiators/handled_block.rb +8 -0
- data/features/fixtures/plain/app/report_modification/initiators/unhandled_before_notify.rb +11 -0
- data/features/fixtures/plain/app/report_modification/modify_api_key.rb +9 -0
- data/features/fixtures/plain/app/report_modification/modify_severity.rb +9 -0
- data/features/fixtures/plain/app/report_modification/remove_user_details.rb +14 -0
- data/features/fixtures/plain/app/report_modification/set_custom_user_details.rb +16 -0
- data/features/fixtures/plain/app/report_modification/set_user_details.rb +13 -0
- data/features/fixtures/plain/app/stack_frame_modification/initiators/handled_before_notify.rb +25 -0
- data/features/fixtures/plain/app/stack_frame_modification/initiators/handled_block.rb +24 -0
- data/features/fixtures/plain/app/stack_frame_modification/initiators/unhandled_before_notify.rb +26 -0
- data/features/fixtures/plain/app/stack_frame_modification/mark_frames_in_project.rb +13 -0
- data/features/fixtures/plain/app/stack_frame_modification/remove_stack_frame.rb +9 -0
- data/features/fixtures/plain/app/unhandled/Interrupt.rb +6 -0
- data/features/fixtures/plain/app/unhandled/bad_syntax.rb +1 -0
- data/features/fixtures/plain/app/unhandled/custom_error.rb +9 -0
- data/features/fixtures/plain/app/unhandled/load_error.rb +6 -0
- data/features/fixtures/plain/app/unhandled/local_jump_error.rb +10 -0
- data/features/fixtures/plain/app/unhandled/name_error.rb +6 -0
- data/features/fixtures/plain/app/unhandled/no_method_error.rb +6 -0
- data/features/fixtures/plain/app/unhandled/runtime_error.rb +6 -0
- data/features/fixtures/plain/app/unhandled/syntax_error.rb +6 -0
- data/features/fixtures/plain/app/unhandled/system_call_error.rb +6 -0
- data/features/fixtures/plain/app/unhandled/system_exit.rb +6 -0
- data/features/fixtures/plain/json/delivery_fork.json +4 -0
- data/features/fixtures/plain/json/delivery_synchronous.json +4 -0
- data/features/fixtures/plain/json/delivery_threadpool.json +4 -0
- data/features/fixtures/plain/json/filters_default_metadata_filters.json +9 -0
- data/features/fixtures/rack1/.dockerignore +1 -0
- data/features/fixtures/rack1/Dockerfile +12 -0
- data/features/fixtures/rack1/Gemfile +4 -0
- data/features/fixtures/rack1/app.rb +8 -0
- data/features/fixtures/rack2/.dockerignore +1 -0
- data/features/fixtures/rack2/Dockerfile +12 -0
- data/features/fixtures/rack2/Gemfile +4 -0
- data/features/fixtures/rack2/app.rb +8 -0
- data/features/fixtures/rails3/.dockerignore +1 -0
- data/features/fixtures/rails3/Dockerfile +16 -0
- data/features/fixtures/rails3/app/.gitignore +15 -0
- data/features/fixtures/rails3/app/Gemfile +13 -0
- data/features/fixtures/rails3/app/Rakefile +7 -0
- data/features/fixtures/rails3/app/app/assets/images/rails.png +0 -0
- data/features/fixtures/rails3/app/app/assets/javascripts/application.js +15 -0
- data/features/fixtures/rails3/app/app/assets/stylesheets/application.css +13 -0
- data/features/fixtures/rails3/app/app/controllers/api_key_controller.rb +20 -0
- data/features/fixtures/rails3/app/app/controllers/app_type_controller.rb +20 -0
- data/features/fixtures/rails3/app/app/controllers/app_version_controller.rb +25 -0
- data/features/fixtures/rails3/app/app/controllers/application_controller.rb +7 -0
- data/features/fixtures/rails3/app/app/controllers/auto_notify_controller.rb +31 -0
- data/features/fixtures/rails3/app/app/controllers/before_notify_controller.rb +44 -0
- data/features/fixtures/rails3/app/app/controllers/handled_controller.rb +26 -0
- data/features/fixtures/rails3/app/app/controllers/ignore_classes_controller.rb +23 -0
- data/features/fixtures/rails3/app/app/controllers/metadata_filters_controller.rb +16 -0
- data/features/fixtures/rails3/app/app/controllers/project_root_controller.rb +25 -0
- data/features/fixtures/rails3/app/app/controllers/release_stage_controller.rb +20 -0
- data/features/fixtures/rails3/app/app/controllers/send_code_controller.rb +20 -0
- data/features/fixtures/rails3/app/app/controllers/send_environment_controller.rb +12 -0
- data/features/fixtures/rails3/app/app/controllers/session_tracking_controller.rb +20 -0
- data/features/fixtures/rails3/app/app/controllers/unhandled_controller.rb +11 -0
- data/features/fixtures/rails3/app/app/controllers/warden_controller.rb +30 -0
- data/features/fixtures/rails3/app/app/helpers/application_helper.rb +2 -0
- 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 +6 -0
- data/features/fixtures/rails3/app/app/views/layouts/application.html.erb +14 -0
- data/features/fixtures/rails3/app/config.ru +4 -0
- data/features/fixtures/rails3/app/config/application.rb +67 -0
- data/features/fixtures/rails3/app/config/boot.rb +6 -0
- data/features/fixtures/rails3/app/config/database.yml +31 -0
- data/features/fixtures/rails3/app/config/environment.rb +5 -0
- data/features/fixtures/rails3/app/config/environments/development.rb +37 -0
- data/features/fixtures/rails3/app/config/environments/production.rb +67 -0
- data/features/fixtures/rails3/app/config/environments/rails_env.rb +37 -0
- data/features/fixtures/rails3/app/config/initializers/bugsnag.rb +14 -0
- data/features/fixtures/rails3/app/config/initializers/secret_token.rb +7 -0
- data/features/fixtures/rails3/app/config/initializers/session_store.rb +8 -0
- data/features/fixtures/rails3/app/config/initializers/warden.rb +3 -0
- data/features/fixtures/rails3/app/config/initializers/wrap_parameters.rb +14 -0
- data/features/fixtures/rails3/app/config/locales/en.yml +5 -0
- data/features/fixtures/rails3/app/config/routes.rb +18 -0
- data/features/fixtures/rails3/app/db/migrate/20180423142727_create_users.rb +45 -0
- data/features/fixtures/rails3/app/db/schema.rb +37 -0
- data/features/fixtures/rails3/app/db/seeds.rb +7 -0
- data/features/fixtures/rails3/app/lib/assets/.gitkeep +0 -0
- data/features/fixtures/rails3/app/lib/strategies/token_strategy.rb +12 -0
- 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 +26 -0
- data/features/fixtures/rails3/app/public/422.html +26 -0
- data/features/fixtures/rails3/app/public/500.html +25 -0
- data/features/fixtures/rails3/app/public/favicon.ico +0 -0
- data/features/fixtures/rails3/app/public/index.html +241 -0
- data/features/fixtures/rails3/app/public/robots.txt +5 -0
- data/features/fixtures/rails3/app/script/rails +6 -0
- data/features/fixtures/rails4/.dockerignore +1 -0
- data/features/fixtures/rails4/Dockerfile +18 -0
- data/features/fixtures/rails4/app/.gitignore +16 -0
- data/features/fixtures/rails4/app/Gemfile +42 -0
- data/features/fixtures/rails4/app/README.rdoc +28 -0
- data/features/fixtures/rails4/app/Rakefile +6 -0
- data/features/fixtures/rails4/app/app/assets/images/.keep +0 -0
- data/features/fixtures/rails4/app/app/assets/javascripts/application.js +16 -0
- data/features/fixtures/rails4/app/app/assets/stylesheets/application.css +13 -0
- data/features/fixtures/rails4/app/app/controllers/api_key_controller.rb +20 -0
- data/features/fixtures/rails4/app/app/controllers/app_type_controller.rb +20 -0
- data/features/fixtures/rails4/app/app/controllers/app_version_controller.rb +25 -0
- data/features/fixtures/rails4/app/app/controllers/application_controller.rb +7 -0
- data/features/fixtures/rails4/app/app/controllers/auto_notify_controller.rb +31 -0
- data/features/fixtures/rails4/app/app/controllers/before_notify_controller.rb +44 -0
- data/features/fixtures/rails4/app/app/controllers/concerns/.keep +0 -0
- data/features/fixtures/rails4/app/app/controllers/devise_controller.rb +32 -0
- data/features/fixtures/rails4/app/app/controllers/handled_controller.rb +26 -0
- data/features/fixtures/rails4/app/app/controllers/ignore_classes_controller.rb +23 -0
- data/features/fixtures/rails4/app/app/controllers/metadata_filters_controller.rb +16 -0
- data/features/fixtures/rails4/app/app/controllers/project_root_controller.rb +25 -0
- data/features/fixtures/rails4/app/app/controllers/release_stage_controller.rb +20 -0
- data/features/fixtures/rails4/app/app/controllers/send_code_controller.rb +20 -0
- data/features/fixtures/rails4/app/app/controllers/send_environment_controller.rb +12 -0
- data/features/fixtures/rails4/app/app/controllers/session_tracking_controller.rb +20 -0
- data/features/fixtures/rails4/app/app/controllers/unhandled_controller.rb +11 -0
- data/features/fixtures/rails4/app/app/helpers/application_helper.rb +2 -0
- 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/user.rb +6 -0
- data/features/fixtures/rails4/app/app/views/layouts/application.html.erb +14 -0
- data/features/fixtures/rails4/app/config.ru +4 -0
- data/features/fixtures/rails4/app/config/application.rb +23 -0
- data/features/fixtures/rails4/app/config/boot.rb +4 -0
- data/features/fixtures/rails4/app/config/database.yml +31 -0
- data/features/fixtures/rails4/app/config/environment.rb +5 -0
- data/features/fixtures/rails4/app/config/environments/development.rb +31 -0
- data/features/fixtures/rails4/app/config/environments/production.rb +81 -0
- data/features/fixtures/rails4/app/config/environments/rails_env.rb +30 -0
- data/features/fixtures/rails4/app/config/environments/test.rb +31 -0
- data/features/fixtures/rails4/app/config/initializers/backtrace_silencers.rb +7 -0
- data/features/fixtures/rails4/app/config/initializers/bugsnag.rb +14 -0
- data/features/fixtures/rails4/app/config/initializers/devise.rb +283 -0
- data/features/fixtures/rails4/app/config/initializers/filter_parameter_logging.rb +5 -0
- data/features/fixtures/rails4/app/config/initializers/inflections.rb +16 -0
- data/features/fixtures/rails4/app/config/initializers/mime_types.rb +5 -0
- data/features/fixtures/rails4/app/config/initializers/secret_token.rb +12 -0
- data/features/fixtures/rails4/app/config/initializers/session_store.rb +3 -0
- data/features/fixtures/rails4/app/config/initializers/wrap_parameters.rb +14 -0
- data/features/fixtures/rails4/app/config/locales/devise.en.yml +64 -0
- data/features/fixtures/rails4/app/config/locales/en.yml +23 -0
- data/features/fixtures/rails4/app/config/routes.rb +19 -0
- data/features/fixtures/rails4/app/db/migrate/20180420160315_devise_create_users.rb +47 -0
- data/features/fixtures/rails4/app/db/seeds.rb +7 -0
- 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 +58 -0
- data/features/fixtures/rails4/app/public/422.html +58 -0
- data/features/fixtures/rails4/app/public/500.html +57 -0
- data/features/fixtures/rails4/app/public/favicon.ico +0 -0
- data/features/fixtures/rails4/app/public/robots.txt +5 -0
- 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 +15 -0
- data/features/fixtures/rails5/.dockerignore +1 -0
- data/features/fixtures/rails5/Dockerfile +18 -0
- data/features/fixtures/rails5/app/.gitignore +21 -0
- data/features/fixtures/rails5/app/Gemfile +47 -0
- data/features/fixtures/rails5/app/README.md +24 -0
- data/features/fixtures/rails5/app/Rakefile +6 -0
- data/features/fixtures/rails5/app/app/assets/config/manifest.js +3 -0
- data/features/fixtures/rails5/app/app/assets/images/.keep +0 -0
- data/features/fixtures/rails5/app/app/assets/javascripts/application.js +16 -0
- data/features/fixtures/rails5/app/app/assets/javascripts/cable.js +13 -0
- data/features/fixtures/rails5/app/app/assets/javascripts/channels/.keep +0 -0
- data/features/fixtures/rails5/app/app/assets/stylesheets/application.css +15 -0
- data/features/fixtures/rails5/app/app/channels/application_cable/channel.rb +4 -0
- data/features/fixtures/rails5/app/app/channels/application_cable/connection.rb +4 -0
- data/features/fixtures/rails5/app/app/controllers/api_key_controller.rb +16 -0
- data/features/fixtures/rails5/app/app/controllers/app_type_controller.rb +16 -0
- data/features/fixtures/rails5/app/app/controllers/app_version_controller.rb +21 -0
- data/features/fixtures/rails5/app/app/controllers/application_controller.rb +7 -0
- data/features/fixtures/rails5/app/app/controllers/auto_notify_controller.rb +27 -0
- data/features/fixtures/rails5/app/app/controllers/before_notify_controller.rb +40 -0
- data/features/fixtures/rails5/app/app/controllers/clearance_controller.rb +33 -0
- data/features/fixtures/rails5/app/app/controllers/concerns/.keep +0 -0
- data/features/fixtures/rails5/app/app/controllers/handled_controller.rb +22 -0
- data/features/fixtures/rails5/app/app/controllers/ignore_classes_controller.rb +19 -0
- data/features/fixtures/rails5/app/app/controllers/metadata_filters_controller.rb +12 -0
- data/features/fixtures/rails5/app/app/controllers/project_root_controller.rb +21 -0
- data/features/fixtures/rails5/app/app/controllers/release_stage_controller.rb +16 -0
- data/features/fixtures/rails5/app/app/controllers/send_code_controller.rb +16 -0
- data/features/fixtures/rails5/app/app/controllers/send_environment_controller.rb +8 -0
- data/features/fixtures/rails5/app/app/controllers/session_tracking_controller.rb +16 -0
- data/features/fixtures/rails5/app/app/controllers/unhandled_controller.rb +7 -0
- data/features/fixtures/rails5/app/app/helpers/application_helper.rb +2 -0
- data/features/fixtures/rails5/app/app/jobs/application_job.rb +2 -0
- data/features/fixtures/rails5/app/app/mailers/application_mailer.rb +4 -0
- data/features/fixtures/rails5/app/app/models/application_record.rb +3 -0
- data/features/fixtures/rails5/app/app/models/concerns/.keep +0 -0
- data/features/fixtures/rails5/app/app/models/user.rb +3 -0
- data/features/fixtures/rails5/app/app/views/layouts/application.html.erb +14 -0
- data/features/fixtures/rails5/app/app/views/layouts/mailer.html.erb +13 -0
- data/features/fixtures/rails5/app/app/views/layouts/mailer.text.erb +1 -0
- data/features/fixtures/rails5/app/config.ru +5 -0
- data/features/fixtures/rails5/app/config/application.rb +15 -0
- data/features/fixtures/rails5/app/config/boot.rb +3 -0
- data/features/fixtures/rails5/app/config/cable.yml +9 -0
- data/features/fixtures/rails5/app/config/database.yml +29 -0
- data/features/fixtures/rails5/app/config/environment.rb +5 -0
- data/features/fixtures/rails5/app/config/environments/development.rb +55 -0
- data/features/fixtures/rails5/app/config/environments/production.rb +87 -0
- data/features/fixtures/rails5/app/config/environments/rails_env.rb +55 -0
- data/features/fixtures/rails5/app/config/environments/test.rb +55 -0
- data/features/fixtures/rails5/app/config/initializers/assets.rb +11 -0
- data/features/fixtures/rails5/app/config/initializers/backtrace_silencers.rb +7 -0
- data/features/fixtures/rails5/app/config/initializers/bugsnag.rb +14 -0
- data/features/fixtures/rails5/app/config/initializers/clearance.rb +5 -0
- data/features/fixtures/rails5/app/config/initializers/cookies_serializer.rb +5 -0
- data/features/fixtures/rails5/app/config/initializers/filter_parameter_logging.rb +5 -0
- data/features/fixtures/rails5/app/config/initializers/inflections.rb +16 -0
- data/features/fixtures/rails5/app/config/initializers/mime_types.rb +4 -0
- data/features/fixtures/rails5/app/config/initializers/new_framework_defaults.rb +24 -0
- data/features/fixtures/rails5/app/config/initializers/session_store.rb +3 -0
- data/features/fixtures/rails5/app/config/initializers/wrap_parameters.rb +14 -0
- data/features/fixtures/rails5/app/config/locales/devise.en.yml +64 -0
- data/features/fixtures/rails5/app/config/locales/en.yml +23 -0
- data/features/fixtures/rails5/app/config/puma.rb +47 -0
- data/features/fixtures/rails5/app/config/routes.rb +52 -0
- data/features/fixtures/rails5/app/config/secrets.yml +25 -0
- data/features/fixtures/rails5/app/config/spring.rb +6 -0
- data/features/fixtures/rails5/app/db/migrate/20180426095545_create_users.rb +17 -0
- data/features/fixtures/rails5/app/db/schema.rb +29 -0
- data/features/fixtures/rails5/app/db/seeds.rb +7 -0
- 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 +67 -0
- data/features/fixtures/rails5/app/public/422.html +67 -0
- data/features/fixtures/rails5/app/public/500.html +66 -0
- 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 +5 -0
- 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 +10 -0
- data/features/fixtures/rails5/app/tmp/.keep +0 -0
- data/features/fixtures/resque/.dockerignore +1 -0
- data/features/fixtures/resque/Dockerfile +13 -0
- data/features/fixtures/resque/Gemfile +6 -0
- data/features/fixtures/resque/Rakefile +4 -0
- data/features/fixtures/resque/app.rb +12 -0
- data/features/fixtures/sidekiq/.dockerignore +2 -0
- data/features/fixtures/sidekiq/Dockerfile +17 -0
- data/features/fixtures/sidekiq/app/Gemfile +4 -0
- data/features/fixtures/sidekiq/app/app.rb +35 -0
- data/features/fixtures/sidekiq/app/initializers/HandledError.rb +3 -0
- data/features/fixtures/sidekiq/app/initializers/UnhandledError.rb +3 -0
- data/features/fixtures/sidekiq/payloads/handled_metadata_ca_false.json +11 -0
- data/features/fixtures/sidekiq/payloads/handled_metadata_ca_true.json +12 -0
- data/features/fixtures/sidekiq/payloads/unhandled_metadata_ca_false.json +11 -0
- data/features/fixtures/sidekiq/payloads/unhandled_metadata_ca_true.json +12 -0
- data/features/fixtures/sinatra1/.dockerignore +1 -0
- data/features/fixtures/sinatra1/Dockerfile +12 -0
- data/features/fixtures/sinatra1/Gemfile +4 -0
- data/features/fixtures/sinatra1/app.rb +9 -0
- data/features/fixtures/sinatra2/.dockerignore +1 -0
- data/features/fixtures/sinatra2/Dockerfile +12 -0
- data/features/fixtures/sinatra2/Gemfile +4 -0
- data/features/fixtures/sinatra2/app.rb +9 -0
- data/features/plain_features/add_tab.feature +124 -0
- data/features/plain_features/api_key.feature +26 -0
- data/features/plain_features/app_type.feature +29 -0
- data/features/plain_features/app_version.feature +29 -0
- data/features/plain_features/auto_notify.feature +25 -0
- data/features/plain_features/delivery.feature +70 -0
- data/features/plain_features/exception_data.feature +122 -0
- data/features/plain_features/filters.feature +50 -0
- data/features/plain_features/handled_errors.feature +86 -0
- data/features/plain_features/ignore_classes.feature +31 -0
- data/features/plain_features/ignore_report.feature +32 -0
- data/features/plain_features/proxies.feature +70 -0
- data/features/plain_features/release_stages.feature +53 -0
- data/features/plain_features/report_api_key.feature +42 -0
- data/features/plain_features/report_severity.feature +44 -0
- data/features/plain_features/report_stack_frames.feature +84 -0
- data/features/plain_features/report_user.feature +120 -0
- data/features/plain_features/unhandled_errors.feature +106 -0
- data/features/rails_features/api_key.feature +59 -0
- data/features/rails_features/app_type.feature +67 -0
- data/features/rails_features/app_version.feature +84 -0
- data/features/rails_features/auto_capture_sessions.feature +61 -0
- data/features/rails_features/auto_notify.feature +114 -0
- data/features/rails_features/before_notify.feature +106 -0
- data/features/rails_features/handled.feature +103 -0
- data/features/rails_features/ignore_classes.feature +51 -0
- data/features/rails_features/meta_data_filters.feature +39 -0
- data/features/rails_features/project_root.feature +97 -0
- data/features/rails_features/release_stage.feature +86 -0
- data/features/rails_features/send_code.feature +58 -0
- data/features/rails_features/send_environment.feature +38 -0
- data/features/rails_features/unhandled.feature +40 -0
- data/features/rails_features/user_info.feature +88 -0
- data/features/sidekiq.feature +96 -0
- data/features/steps/ruby_notifier_steps.rb +77 -0
- data/features/support/env.rb +29 -0
- data/lib/bugsnag.rb +26 -0
- data/lib/bugsnag/helpers.rb +69 -7
- data/lib/bugsnag/integrations/delayed_job.rb +2 -2
- data/lib/bugsnag/integrations/railtie.rb +0 -17
- data/lib/bugsnag/stacktrace.rb +1 -0
- data/spec/bugsnag_spec.rb +56 -0
- data/spec/configuration_spec.rb +1 -0
- data/spec/fixtures/apps/rails-initializer-config/Gemfile +1 -0
- data/spec/fixtures/apps/rails-invalid-initializer-config/Gemfile +1 -0
- data/spec/fixtures/apps/rails-no-config/Gemfile +1 -0
- data/spec/helper_spec.rb +77 -91
- data/spec/report_spec.rb +9 -11
- metadata +352 -3
@@ -0,0 +1,31 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3
|
3
|
+
#
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
5
|
+
# gem 'sqlite3'
|
6
|
+
development:
|
7
|
+
adapter: sqlite3
|
8
|
+
database: db/development.sqlite3
|
9
|
+
pool: 5
|
10
|
+
timeout: 5000
|
11
|
+
|
12
|
+
# Warning: The database defined as "test" will be erased and
|
13
|
+
# re-generated from your development database when you run "rake".
|
14
|
+
# Do not set this db to the same as development or production.
|
15
|
+
test:
|
16
|
+
adapter: sqlite3
|
17
|
+
database: db/test.sqlite3
|
18
|
+
pool: 5
|
19
|
+
timeout: 5000
|
20
|
+
|
21
|
+
production:
|
22
|
+
adapter: sqlite3
|
23
|
+
database: db/production.sqlite3
|
24
|
+
pool: 5
|
25
|
+
timeout: 5000
|
26
|
+
|
27
|
+
rails_env:
|
28
|
+
adapter: sqlite3
|
29
|
+
database: db/development.sqlite3
|
30
|
+
pool: 5
|
31
|
+
timeout: 5000
|
@@ -0,0 +1,37 @@
|
|
1
|
+
App::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the web server when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
10
|
+
config.whiny_nils = true
|
11
|
+
|
12
|
+
# Show full error reports and disable caching
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_controller.perform_caching = false
|
15
|
+
|
16
|
+
# Don't care if the mailer can't send
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
18
|
+
|
19
|
+
# Print deprecation notices to the Rails logger
|
20
|
+
config.active_support.deprecation = :log
|
21
|
+
|
22
|
+
# Only use best-standards-support built into browsers
|
23
|
+
config.action_dispatch.best_standards_support = :builtin
|
24
|
+
|
25
|
+
# Raise exception on mass assignment protection for Active Record models
|
26
|
+
config.active_record.mass_assignment_sanitizer = :strict
|
27
|
+
|
28
|
+
# Log the query plan for queries taking more than this (works
|
29
|
+
# with SQLite, MySQL, and PostgreSQL)
|
30
|
+
config.active_record.auto_explain_threshold_in_seconds = 0.5
|
31
|
+
|
32
|
+
# Do not compress assets
|
33
|
+
config.assets.compress = false
|
34
|
+
|
35
|
+
# Expands the lines which load the assets
|
36
|
+
config.assets.debug = true
|
37
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
App::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# Code is not reloaded between requests
|
5
|
+
config.cache_classes = true
|
6
|
+
|
7
|
+
# Full error reports are disabled and caching is turned on
|
8
|
+
config.consider_all_requests_local = false
|
9
|
+
config.action_controller.perform_caching = true
|
10
|
+
|
11
|
+
# Disable Rails's static asset server (Apache or nginx will already do this)
|
12
|
+
config.serve_static_assets = false
|
13
|
+
|
14
|
+
# Compress JavaScripts and CSS
|
15
|
+
config.assets.compress = true
|
16
|
+
|
17
|
+
# Don't fallback to assets pipeline if a precompiled asset is missed
|
18
|
+
config.assets.compile = false
|
19
|
+
|
20
|
+
# Generate digests for assets URLs
|
21
|
+
config.assets.digest = true
|
22
|
+
|
23
|
+
# Defaults to nil and saved in location specified by config.assets.prefix
|
24
|
+
# config.assets.manifest = YOUR_PATH
|
25
|
+
|
26
|
+
# Specifies the header that your server uses for sending files
|
27
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
28
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
29
|
+
|
30
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
31
|
+
# config.force_ssl = true
|
32
|
+
|
33
|
+
# See everything in the log (default is :info)
|
34
|
+
# config.log_level = :debug
|
35
|
+
|
36
|
+
# Prepend all log lines with the following tags
|
37
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
38
|
+
|
39
|
+
# Use a different logger for distributed setups
|
40
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
41
|
+
|
42
|
+
# Use a different cache store in production
|
43
|
+
# config.cache_store = :mem_cache_store
|
44
|
+
|
45
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server
|
46
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
47
|
+
|
48
|
+
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
|
49
|
+
# config.assets.precompile += %w( search.js )
|
50
|
+
|
51
|
+
# Disable delivery errors, bad email addresses will be ignored
|
52
|
+
# config.action_mailer.raise_delivery_errors = false
|
53
|
+
|
54
|
+
# Enable threaded mode
|
55
|
+
# config.threadsafe!
|
56
|
+
|
57
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
58
|
+
# the I18n.default_locale when a translation can not be found)
|
59
|
+
config.i18n.fallbacks = true
|
60
|
+
|
61
|
+
# Send deprecation notices to registered listeners
|
62
|
+
config.active_support.deprecation = :notify
|
63
|
+
|
64
|
+
# Log the query plan for queries taking more than this (works
|
65
|
+
# with SQLite, MySQL, and PostgreSQL)
|
66
|
+
# config.active_record.auto_explain_threshold_in_seconds = 0.5
|
67
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
App::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Configure static asset server for tests with Cache-Control for performance
|
11
|
+
config.serve_static_assets = true
|
12
|
+
config.static_cache_control = "public, max-age=3600"
|
13
|
+
|
14
|
+
# Log error messages when you accidentally call methods on nil
|
15
|
+
config.whiny_nils = true
|
16
|
+
|
17
|
+
# Show full error reports and disable caching
|
18
|
+
config.consider_all_requests_local = true
|
19
|
+
config.action_controller.perform_caching = false
|
20
|
+
|
21
|
+
# Raise exceptions instead of rendering exception templates
|
22
|
+
config.action_dispatch.show_exceptions = false
|
23
|
+
|
24
|
+
# Disable request forgery protection in test environment
|
25
|
+
config.action_controller.allow_forgery_protection = false
|
26
|
+
|
27
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
28
|
+
# The :test delivery method accumulates sent emails in the
|
29
|
+
# ActionMailer::Base.deliveries array.
|
30
|
+
config.action_mailer.delivery_method = :test
|
31
|
+
|
32
|
+
# Raise exception on mass assignment protection for Active Record models
|
33
|
+
config.active_record.mass_assignment_sanitizer = :strict
|
34
|
+
|
35
|
+
# Print deprecation notices to the stderr
|
36
|
+
config.active_support.deprecation = :stderr
|
37
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
Bugsnag.configure do |config|
|
2
|
+
config.api_key = ENV["BUGSNAG_API_KEY"] || ENV["MAZE_API_KEY"]
|
3
|
+
config.endpoint = ENV["BUGSNAG_ENDPOINT"] || ENV["MAZE_ENDPOINT"]
|
4
|
+
config.session_endpoint = ENV["BUGSNAG_ENDPOINT"] || ENV["MAZE_ENDPOINT"]
|
5
|
+
config.app_type = ENV["MAZE_APP_TYPE"] if ENV.include? "MAZE_APP_TYPE"
|
6
|
+
config.app_version = ENV["MAZE_APP_VERSION"] if ENV.include? "MAZE_APP_VERSION"
|
7
|
+
config.auto_notify = ENV["MAZE_AUTO_NOTIFY"] != "false"
|
8
|
+
config.project_root = ENV["MAZE_PROJECT_ROOT"] if ENV.include? "MAZE_PROJECT_ROOT"
|
9
|
+
config.ignore_classes << lambda { |ex| ex.class.to_s == ENV["MAZE_IGNORE_CLASS"] } if ENV.include? "MAZE_IGNORE_CLASS"
|
10
|
+
config.auto_capture_sessions = ENV["MAZE_AUTO_CAPTURE_SESSIONS"] == "true"
|
11
|
+
config.release_stage = ENV["MAZE_RELEASE_STAGE"] if ENV.include? "MAZE_RELEASE_STAGE"
|
12
|
+
config.send_code = ENV["MAZE_SEND_CODE"] != "false"
|
13
|
+
config.send_environment = ENV["MAZE_SEND_ENVIRONMENT"] == "true"
|
14
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
App::Application.config.secret_token = '7dddd08bab4787fd40252cfe01f100e39a7a77e6b65805a3393a1799a108e4c89ea32d5e25e596be1df30ce066fff19f9fe0dd460b3c9e82346e9ef053294abc'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
App::Application.config.session_store :cookie_store, key: '_app_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# App::Application.config.session_store :active_record_store
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json]
|
9
|
+
end
|
10
|
+
|
11
|
+
# Disable root element in JSON by default.
|
12
|
+
ActiveSupport.on_load(:active_record) do
|
13
|
+
self.include_root_in_json = false
|
14
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
App::Application.routes.draw do
|
2
|
+
get "/unhandled/(:action)", controller: 'unhandled'
|
3
|
+
get "/handled/(:action)", controller: 'handled'
|
4
|
+
get "/before_notify/(:action)", controller: 'before_notify'
|
5
|
+
get "/api_key/(:action)", controller: 'api_key'
|
6
|
+
get "/app_type/(:action)", controller: 'app_type'
|
7
|
+
get "/app_version/(:action)", controller: 'app_version'
|
8
|
+
get "/auto_notify/(:action)", controller: 'auto_notify'
|
9
|
+
get "/project_root/(:action)", controller: 'project_root'
|
10
|
+
get "/ignore_classes/(:action)", controller: 'ignore_classes'
|
11
|
+
get "/metadata_filters/(:action)", controller: 'metadata_filters'
|
12
|
+
get "/session_tracking/(:action)", controller: 'session_tracking'
|
13
|
+
get "/release_stage/(:action)", controller: 'release_stage'
|
14
|
+
get "/send_code/(:action)", controller: 'send_code'
|
15
|
+
get "/send_environment/(:action)", controller: 'send_environment'
|
16
|
+
get "/warden/(:action)", controller: 'warden'
|
17
|
+
get "/(:action)", controller: 'application'
|
18
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
class CreateUsers < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :users do |t|
|
4
|
+
## Database authenticatable
|
5
|
+
t.string :email, null: false, default: ""
|
6
|
+
t.string :name, null: false, default: ""
|
7
|
+
t.string :first_name, null: false, default: ""
|
8
|
+
t.string :last_name, null: false, default: ""
|
9
|
+
t.string :encrypted_password, null: false, default: ""
|
10
|
+
|
11
|
+
## Recoverable
|
12
|
+
t.string :reset_password_token
|
13
|
+
t.datetime :reset_password_sent_at
|
14
|
+
|
15
|
+
## Rememberable
|
16
|
+
t.datetime :remember_created_at
|
17
|
+
|
18
|
+
## Trackable
|
19
|
+
t.integer :sign_in_count, default: 0, null: false
|
20
|
+
t.datetime :current_sign_in_at
|
21
|
+
t.datetime :last_sign_in_at
|
22
|
+
t.string :current_sign_in_ip
|
23
|
+
t.string :last_sign_in_ip
|
24
|
+
|
25
|
+
## Confirmable
|
26
|
+
# t.string :confirmation_token
|
27
|
+
# t.datetime :confirmed_at
|
28
|
+
# t.datetime :confirmation_sent_at
|
29
|
+
# t.string :unconfirmed_email # Only if using reconfirmable
|
30
|
+
|
31
|
+
## Lockable
|
32
|
+
# t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts
|
33
|
+
# t.string :unlock_token # Only if unlock strategy is :email or :both
|
34
|
+
# t.datetime :locked_at
|
35
|
+
|
36
|
+
|
37
|
+
t.timestamps null: false
|
38
|
+
end
|
39
|
+
|
40
|
+
add_index :users, :email, unique: true
|
41
|
+
add_index :users, :reset_password_token, unique: true
|
42
|
+
# add_index :users, :confirmation_token, unique: true
|
43
|
+
# add_index :users, :unlock_token, unique: true
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended to check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(:version => 20180423142727) do
|
15
|
+
|
16
|
+
create_table "users", :force => true do |t|
|
17
|
+
t.string "email", :default => "", :null => false
|
18
|
+
t.string "name", :default => "", :null => false
|
19
|
+
t.string "first_name", :default => "", :null => false
|
20
|
+
t.string "last_name", :default => "", :null => false
|
21
|
+
t.string "encrypted_password", :default => "", :null => false
|
22
|
+
t.string "reset_password_token"
|
23
|
+
t.datetime "reset_password_sent_at"
|
24
|
+
t.datetime "remember_created_at"
|
25
|
+
t.integer "sign_in_count", :default => 0, :null => false
|
26
|
+
t.datetime "current_sign_in_at"
|
27
|
+
t.datetime "last_sign_in_at"
|
28
|
+
t.string "current_sign_in_ip"
|
29
|
+
t.string "last_sign_in_ip"
|
30
|
+
t.datetime "created_at", :null => false
|
31
|
+
t.datetime "updated_at", :null => false
|
32
|
+
end
|
33
|
+
|
34
|
+
add_index "users", ["email"], :name => "index_users_on_email", :unique => true
|
35
|
+
add_index "users", ["reset_password_token"], :name => "index_users_on_reset_password_token", :unique => true
|
36
|
+
|
37
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# This file should contain all the record creation needed to seed the database with its default values.
|
2
|
+
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
3
|
+
#
|
4
|
+
# Examples:
|
5
|
+
#
|
6
|
+
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
|
7
|
+
# Mayor.create(name: 'Emanuel', city: cities.first)
|
File without changes
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require Rails.root.join('app/models/user')
|
2
|
+
|
3
|
+
class TokenStrategy < ::Warden::Strategies::Base
|
4
|
+
def valid?
|
5
|
+
params['email']
|
6
|
+
end
|
7
|
+
|
8
|
+
def authenticate!
|
9
|
+
user = User.where(:email => params['email']).to_a.first
|
10
|
+
success!(user) unless user.nil?
|
11
|
+
end
|
12
|
+
end
|
File without changes
|
File without changes
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/404.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
23
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/422.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The change you wanted was rejected.</h1>
|
23
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/500.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>We're sorry, but something went wrong.</h1>
|
23
|
+
</div>
|
24
|
+
</body>
|
25
|
+
</html>
|