bugsnag-api 1.0.2 → 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) hide show
  1. checksums.yaml +5 -5
  2. data/.buildkite/pipeline.yml +6 -0
  3. data/.github/ISSUE_TEMPLATE/A.md +14 -0
  4. data/.github/ISSUE_TEMPLATE/bug_report.md +47 -0
  5. data/.github/ISSUE_TEMPLATE/feature_request.md +24 -0
  6. data/.github/PULL_REQUEST_TEMPLATE.md +16 -0
  7. data/.github/support.md +19 -0
  8. data/.github/workflows/tests.yml +53 -0
  9. data/.rubocop.yml +2 -0
  10. data/.rubocop_todo.yml +271 -0
  11. data/CHANGELOG.md +59 -0
  12. data/CONTRIBUTING.md +40 -0
  13. data/Gemfile +9 -0
  14. data/README.md +178 -109
  15. data/bugsnag-api.gemspec +42 -6
  16. data/config/.gitignore +1 -0
  17. data/docker-compose.yml +9 -0
  18. data/dockerfiles/Dockerfile.audit +5 -0
  19. data/lib/bugsnag/api/client.rb +32 -10
  20. data/lib/bugsnag/api/client/collaborators.rb +86 -0
  21. data/lib/bugsnag/api/client/comments.rb +31 -40
  22. data/lib/bugsnag/api/client/currentuser.rb +32 -0
  23. data/lib/bugsnag/api/client/errors.rb +48 -53
  24. data/lib/bugsnag/api/client/eventfields.rb +49 -0
  25. data/lib/bugsnag/api/client/events.rb +37 -32
  26. data/lib/bugsnag/api/client/organizations.rb +45 -0
  27. data/lib/bugsnag/api/client/pivots.rb +42 -0
  28. data/lib/bugsnag/api/client/projects.rb +36 -63
  29. data/lib/bugsnag/api/client/trends.rb +41 -0
  30. data/lib/bugsnag/api/configuration.rb +1 -1
  31. data/lib/bugsnag/api/error.rb +5 -1
  32. data/lib/bugsnag/api/response/raise_error.rb +0 -2
  33. data/lib/bugsnag/api/version.rb +1 -1
  34. data/scripts/license_finder.sh +4 -0
  35. data/spec/bugsnag/api/client/collaborators_spec.rb +101 -0
  36. data/spec/bugsnag/api/client/comments_spec.rb +42 -30
  37. data/spec/bugsnag/api/client/currentuser_spec.rb +57 -0
  38. data/spec/bugsnag/api/client/errors_spec.rb +44 -41
  39. data/spec/bugsnag/api/client/eventfields_spec.rb +56 -0
  40. data/spec/bugsnag/api/client/events_spec.rb +41 -29
  41. data/spec/bugsnag/api/client/organizations_spec.rb +53 -0
  42. data/spec/bugsnag/api/client/pivots_spec.rb +49 -0
  43. data/spec/bugsnag/api/client/projects_spec.rb +35 -59
  44. data/spec/bugsnag/api/client/trends_spec.rb +44 -0
  45. data/spec/bugsnag/api/client_spec.rb +76 -9
  46. data/spec/bugsnag/api_spec.rb +2 -0
  47. data/spec/cassettes/Bugsnag_Api_Client/_get/handles_query_params.yml +36 -26
  48. data/spec/cassettes/Bugsnag_Api_Client/_last_response/caches_the_last_agent_response.yml +36 -26
  49. data/spec/cassettes/Bugsnag_Api_Client_Collaborators/_invitecollaborator/creates_and_returns_a_collaborator.yml +68 -0
  50. data/spec/cassettes/Bugsnag_Api_Client_Collaborators/_invitecollaborator/invites_multiple_collaborators.yml +68 -0
  51. data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_collaborator/returns_a_collaborator.yml +133 -0
  52. data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_collaborators/returns_a_list_of_all_organization_collaborators.yml +135 -0
  53. data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_collaborators/returns_a_list_of_all_project_collaborators.yml +135 -0
  54. data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_collaborators/throws_an_argument_error_if_neither_org_id_or_project_id_are_provided.yml +68 -0
  55. data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_delete_collaborator/deletes_a_collaborator.yml +68 -0
  56. data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_update_collaborator_permissions/updates_and_returns_the_collaborator.yml +133 -0
  57. data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_view_collaborator_projects/returns_a_list_of_projects_belonging_to_the_collaborator.yml +153 -0
  58. data/spec/cassettes/Bugsnag_Api_Client_Comments/_create_comment/creates_a_comment_on_the_error.yml +70 -0
  59. data/spec/cassettes/Bugsnag_Api_Client_Comments/given_a_comment_has_been_created/_comment/retrieves_the_comment_specified.yml +135 -0
  60. data/spec/cassettes/Bugsnag_Api_Client_Comments/given_a_comment_has_been_created/_comments/retrieves_all_comments_on_an_error.yml +137 -0
  61. data/spec/cassettes/Bugsnag_Api_Client_Comments/given_a_comment_has_been_created/_delete_comment/deletes_the_comment_and_returns_true.yml +70 -0
  62. data/spec/cassettes/Bugsnag_Api_Client_Comments/given_a_comment_has_been_created/_update_comment/updates_the_message_on_a_comment.yml +135 -0
  63. data/spec/cassettes/Bugsnag_Api_Client_CurrentUser/_list_organizations/when_using_auth_token/returns_the_organization_the_auth_token_belongs_to.yml +68 -0
  64. data/spec/cassettes/Bugsnag_Api_Client_CurrentUser/_list_organizations/when_using_user_credentials/returns_users_organizations.yml +71 -0
  65. data/spec/cassettes/Bugsnag_Api_Client_CurrentUser/_list_projects/when_using_auth_token/lists_current_user_s_projects_in_the_organization.yml +88 -0
  66. data/spec/cassettes/Bugsnag_Api_Client_CurrentUser/_list_projects/when_using_user_credentials/lists_current_user_s_projects_in_the_organization.yml +91 -0
  67. data/spec/cassettes/Bugsnag_Api_Client_Errors/_error/returns_a_single_error.yml +68 -0
  68. data/spec/cassettes/Bugsnag_Api_Client_Errors/_errors/returns_errors_on_the_project.yml +70 -0
  69. data/spec/cassettes/Bugsnag_Api_Client_Errors/_update_errors/updates_and_returns_the_updated_errors.yml +68 -0
  70. data/spec/cassettes/Bugsnag_Api_Client_Events/_error_events/lists_all_error_events.yml +73 -0
  71. data/spec/cassettes/Bugsnag_Api_Client_Events/_event/returns_the_specified_event.yml +70 -0
  72. data/spec/cassettes/Bugsnag_Api_Client_Events/_events/returns_the_a_list_of_project_errors.yml +73 -0
  73. data/spec/cassettes/Bugsnag_Api_Client_Events/_latest_event/returns_the_last_event_on_an_error.yml +70 -0
  74. data/spec/cassettes/Bugsnag_Api_Client_Organizations/_create_organization/creates_a_new_organization.yml +71 -0
  75. data/spec/cassettes/Bugsnag_Api_Client_Organizations/with_organization/_delete_organization/deletes_the_organization.yml +133 -0
  76. data/spec/cassettes/Bugsnag_Api_Client_Organizations/with_organization/_organization/returns_the_requested_organization.yml +139 -0
  77. data/spec/cassettes/Bugsnag_Api_Client_Organizations/with_organization/_update_organization/updates_and_returns_the_organization.yml +139 -0
  78. data/spec/cassettes/Bugsnag_Api_Client_Projects/_create_project/creates_a_new_project.yml +68 -0
  79. data/spec/cassettes/Bugsnag_Api_Client_Projects/given_a_project/_delete_project/deletes_the_project.yml +127 -0
  80. data/spec/cassettes/Bugsnag_Api_Client_Projects/given_a_project/_project/returns_the_requested_project.yml +133 -0
  81. data/spec/cassettes/Bugsnag_Api_Client_Projects/given_a_project/_regenerate_api_key/removes_the_current_api_key_and_replaces_it_with_a_new_api_key.yml +133 -0
  82. data/spec/cassettes/Bugsnag_Api_Client_Projects/given_a_project/_update_project/updates_and_returns_the_project.yml +133 -0
  83. data/spec/cassettes/Bugsnag_Api_Client_Trends/_trends_buckets/returns_a_list_of_error_trends_in_bucket_form.yml +68 -0
  84. data/spec/cassettes/Bugsnag_Api_Client_Trends/_trends_buckets/returns_a_list_of_project_trends_in_bucket_form.yml +68 -0
  85. data/spec/cassettes/Bugsnag_Api_Client_Trends/_trends_resolution/returns_a_list_of_project_trends_in_resolution_form.yml +68 -0
  86. data/spec/cassettes/Bugsnag_Api_Client_Trends/_trends_resolution/returns_a_list_of_trends_in_resolution_form.yml +68 -0
  87. data/spec/spec_helper.rb +32 -30
  88. metadata +167 -115
  89. data/.travis.yml +0 -9
  90. data/lib/bugsnag/api/client/accounts.rb +0 -44
  91. data/lib/bugsnag/api/client/users.rb +0 -99
  92. data/spec/bugsnag/api/client/accounts_spec.rb +0 -45
  93. data/spec/bugsnag/api/client/users_spec.rb +0 -105
  94. data/spec/cassettes/Bugsnag_Api_Client_Accounts/_account/returns_the_requested_account.yml +0 -49
  95. data/spec/cassettes/Bugsnag_Api_Client_Accounts/_account/when_using_account_credentials/returns_the_account.yml +0 -51
  96. data/spec/cassettes/Bugsnag_Api_Client_Accounts/_accounts/returns_all_accounts.yml +0 -49
  97. data/spec/cassettes/Bugsnag_Api_Client_Comments/_comments/returns_all_comments_on_an_error.yml +0 -107
  98. data/spec/cassettes/Bugsnag_Api_Client_Comments/_create_comment/created_a_comment.yml +0 -51
  99. data/spec/cassettes/Bugsnag_Api_Client_Comments/with_comment/_comment/returns_a_comment.yml +0 -97
  100. data/spec/cassettes/Bugsnag_Api_Client_Comments/with_comment/_delete_comment/deletes_an_existing_comment.yml +0 -92
  101. data/spec/cassettes/Bugsnag_Api_Client_Comments/with_comment/_update_comment/updates_an_existing_comment.yml +0 -97
  102. data/spec/cassettes/Bugsnag_Api_Client_Errors/_errors/returns_all_errors_on_an_project.yml +0 -48
  103. data/spec/cassettes/Bugsnag_Api_Client_Errors/with_error/_error/returns_an_error.yml +0 -48
  104. data/spec/cassettes/Bugsnag_Api_Client_Errors/with_error/_reopen_error/reopens_the_error.yml +0 -48
  105. data/spec/cassettes/Bugsnag_Api_Client_Errors/with_error/_resolve_error/resolves_the_error.yml +0 -48
  106. data/spec/cassettes/Bugsnag_Api_Client_Errors/with_error/_update_error/updates_the_error.yml +0 -48
  107. data/spec/cassettes/Bugsnag_Api_Client_Events/_error_events/returns_all_events_on_an_error.yml +0 -64
  108. data/spec/cassettes/Bugsnag_Api_Client_Events/_project_events/returns_all_events_on_a_project.yml +0 -64
  109. data/spec/cassettes/Bugsnag_Api_Client_Events/with_event/_event/returns_an_event.yml +0 -56
  110. data/spec/cassettes/Bugsnag_Api_Client_Projects/_account_projects/returns_all_projects_on_an_account.yml +0 -61
  111. data/spec/cassettes/Bugsnag_Api_Client_Projects/_account_projects/when_using_account_credentials/returns_all_projects.yml +0 -63
  112. data/spec/cassettes/Bugsnag_Api_Client_Projects/_create_project/creates_a_project_on_an_account.yml +0 -50
  113. data/spec/cassettes/Bugsnag_Api_Client_Projects/_user_projects/returns_all_projects_for_a_user.yml +0 -61
  114. data/spec/cassettes/Bugsnag_Api_Client_Projects/with_project/_delete_project/deletes_an_existing_project.yml +0 -91
  115. data/spec/cassettes/Bugsnag_Api_Client_Projects/with_project/_project/returns_a_project.yml +0 -95
  116. data/spec/cassettes/Bugsnag_Api_Client_Projects/with_project/_update_project/updates_an_existing_project.yml +0 -95
  117. data/spec/cassettes/Bugsnag_Api_Client_Users/_account_users/returns_all_users_on_an_account.yml +0 -49
  118. data/spec/cassettes/Bugsnag_Api_Client_Users/_account_users/when_using_account_credentials/returns_all_users.yml +0 -51
  119. data/spec/cassettes/Bugsnag_Api_Client_Users/_invite_user/invites_a_user_to_an_account.yml +0 -48
  120. data/spec/cassettes/Bugsnag_Api_Client_Users/_project_users/returns_all_users_for_a_project.yml +0 -49
  121. data/spec/cassettes/Bugsnag_Api_Client_Users/_user/returns_a_user.yml +0 -48
  122. data/spec/cassettes/Bugsnag_Api_Client_Users/_user/when_using_user_credentials/returns_the_authed_user.yml +0 -48
  123. data/spec/cassettes/Bugsnag_Api_Client_Users/with_user/_remove_user/removes_a_user_from_an_account.yml +0 -89
  124. data/spec/cassettes/Bugsnag_Api_Client_Users/with_user/_update_user_permissions/updates_a_users_permissions.yml +0 -93
@@ -0,0 +1,68 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: patch
5
+ uri: https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID/errors?error_ids=BUGSNAG_ERROR_ID
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"severity":"warn","operation":"fix"}'
9
+ headers:
10
+ User-Agent:
11
+ - Bugsnag API Ruby Gem 2.0.1
12
+ Content-Type:
13
+ - application/json
14
+ X-Version:
15
+ - '2'
16
+ X-Bugsnag-Api:
17
+ - 'true'
18
+ Authorization:
19
+ - token BUGSNAG_AUTH_TOKEN
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ Accept:
23
+ - "*/*"
24
+ response:
25
+ status:
26
+ code: 200
27
+ message: OK
28
+ headers:
29
+ Content-Type:
30
+ - application/json; charset=utf-8
31
+ Etag:
32
+ - W/"36be5c4a9dd391021b17f66a1c1562a8"
33
+ Cache-Control:
34
+ - max-age=0, private, must-revalidate
35
+ X-Request-Id:
36
+ - 606b44ed-1aef-4fb0-9657-593cd1e7586b
37
+ X-Runtime:
38
+ - '0.461700'
39
+ Vary:
40
+ - Origin
41
+ X-Rack-Cors:
42
+ - miss; no-origin
43
+ Content-Security-Policy:
44
+ - 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
45
+ connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
46
+ https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
47
+ img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
48
+ script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
49
+ https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
50
+ https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
51
+ X-Content-Type-Options:
52
+ - nosniff
53
+ X-Download-Options:
54
+ - noopen
55
+ X-Frame-Options:
56
+ - DENY
57
+ X-Permitted-Cross-Domain-Policies:
58
+ - none
59
+ X-Xss-Protection:
60
+ - 1; mode=block
61
+ Transfer-Encoding:
62
+ - chunked
63
+ body:
64
+ encoding: UTF-8
65
+ string: '{"operation":"fix","BUGSNAG_ERROR_ID":{"assigned_collaborator_id":null,"created_issue":{},"reopen_rules":null,"status":"fixed"}}'
66
+ http_version:
67
+ recorded_at: Tue, 12 Dec 2017 11:55:03 GMT
68
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,73 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID/errors/BUGSNAG_ERROR_ID/events
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Bugsnag API Ruby Gem 2.0.1
12
+ Content-Type:
13
+ - application/json
14
+ X-Version:
15
+ - '2'
16
+ X-Bugsnag-Api:
17
+ - 'true'
18
+ Authorization:
19
+ - token BUGSNAG_AUTH_TOKEN
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ Accept:
23
+ - "*/*"
24
+ response:
25
+ status:
26
+ code: 200
27
+ message: OK
28
+ headers:
29
+ X-Total-Count:
30
+ - '475'
31
+ Link:
32
+ - <https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID/errors/BUGSNAG_ERROR_ID/events?base=2017-12-12T11%3A55%3A27Z&offset%5Bcount%5D=63&offset%5Btimestamp%5D=2017-12-12T10%3A58%3A54Z&offset%5Btotal_count%5D=475>;
33
+ rel="next"
34
+ Content-Type:
35
+ - application/json; charset=utf-8
36
+ Etag:
37
+ - W/"e94b7a2ddd6f502ddf1d2d3e4ca7e94b"
38
+ Cache-Control:
39
+ - max-age=0, private, must-revalidate
40
+ X-Request-Id:
41
+ - 7550e754-6db8-4d5c-b3fb-9baae16d2ffc
42
+ X-Runtime:
43
+ - '0.621213'
44
+ Vary:
45
+ - Origin
46
+ X-Rack-Cors:
47
+ - miss; no-origin
48
+ Content-Security-Policy:
49
+ - 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
50
+ connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
51
+ https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
52
+ img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
53
+ script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
54
+ https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
55
+ https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
56
+ X-Content-Type-Options:
57
+ - nosniff
58
+ X-Download-Options:
59
+ - noopen
60
+ X-Frame-Options:
61
+ - DENY
62
+ X-Permitted-Cross-Domain-Policies:
63
+ - none
64
+ X-Xss-Protection:
65
+ - 1; mode=block
66
+ Transfer-Encoding:
67
+ - chunked
68
+ body:
69
+ encoding: UTF-8
70
+ string: '[{"id":"BUGSNAG_EVENT_ID","url":"https://api.bugsnag.com/events/BUGSNAG_EVENT_ID","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e96e","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e96e","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e96a","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e96a","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e974","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e974","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e950","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e950","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e95c","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e95c","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e97c","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e97c","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e96c","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e96c","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e98c","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e98c","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9aa","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9aa","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e956","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e956","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e990","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e990","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e972","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e972","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e97e","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e97e","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e99a","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e99a","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e964","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e964","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9a0","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9a0","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e982","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e982","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9ac","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9ac","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e98a","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e98a","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e994","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e994","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e970","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e970","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e992","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e992","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e99c","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e99c","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e978","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e978","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e97a","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e97a","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9ba","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9ba","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9a6","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9a6","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e962","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e962","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e968","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e968","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e988","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e988","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9a8","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9a8","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e976","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e976","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e996","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e996","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9b0","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9b0","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9b2","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9b2","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e95e","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e95e","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e99e","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e99e","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9be","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9be","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e984","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e984","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e966","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e966","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e980","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e980","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e98e","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e98e","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9b4","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9b4","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9d6","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9d6","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9d2","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9d2","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9bc","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9bc","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e998","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e998","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9a4","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9a4","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9c4","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9c4","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e986","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e986","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9a2","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9a2","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9ca","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9ca","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9c6","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9c6","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9c2","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9c2","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9cc","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9cc","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9b6","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9b6","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9d0","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9d0","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9b8","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9b8","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9c0","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9c0","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9ce","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9ce","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9c8","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9c8","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9d4","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9d4","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}}]'
71
+ http_version:
72
+ recorded_at: Tue, 12 Dec 2017 11:55:16 GMT
73
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,70 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID/events/BUGSNAG_EVENT_ID
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Bugsnag API Ruby Gem 2.0.1
12
+ Content-Type:
13
+ - application/json
14
+ X-Version:
15
+ - '2'
16
+ X-Bugsnag-Api:
17
+ - 'true'
18
+ Authorization:
19
+ - token BUGSNAG_AUTH_TOKEN
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ Accept:
23
+ - "*/*"
24
+ response:
25
+ status:
26
+ code: 200
27
+ message: OK
28
+ headers:
29
+ Content-Type:
30
+ - application/json; charset=utf-8
31
+ Etag:
32
+ - W/"c31d3b29e0b5d58647ea595a6a5ee69c"
33
+ Cache-Control:
34
+ - max-age=0, private, must-revalidate
35
+ X-Request-Id:
36
+ - 1d7949fb-29ec-44b0-8509-b555c876039b
37
+ X-Runtime:
38
+ - '0.357561'
39
+ Vary:
40
+ - Origin
41
+ X-Rack-Cors:
42
+ - miss; no-origin
43
+ Content-Security-Policy:
44
+ - 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
45
+ connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
46
+ https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
47
+ img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
48
+ script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
49
+ https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
50
+ https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
51
+ X-Content-Type-Options:
52
+ - nosniff
53
+ X-Download-Options:
54
+ - noopen
55
+ X-Frame-Options:
56
+ - DENY
57
+ X-Permitted-Cross-Domain-Policies:
58
+ - none
59
+ X-Xss-Protection:
60
+ - 1; mode=block
61
+ Transfer-Encoding:
62
+ - chunked
63
+ body:
64
+ encoding: UTF-8
65
+ string: '{"id":"BUGSNAG_EVENT_ID","url":"https://api.bugsnag.com/events/BUGSNAG_EVENT_ID","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":true,"error_id":"BUGSNAG_ERROR_ID","received_at":"2017-12-12T10:58:55.000Z","exceptions":[{"error_class":"RuntimeError","message":"Error","stacktrace":[{"column_number":null,"in_project":null,"line_number":34,"method":"block
66
+ (2 levels) in \u003cmain\u003e","file":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb","code":{"31":" sleep(interval)","32":" #Bugsnag.session_tracker.create_session","33":" if
67
+ Random.rand \u003c error_chance","34":" Bugsnag.notify RuntimeError.new(\"Error\")","35":" end","36":" end","37":" end"},"macho_uuid":null,"source_control_link":null,"source_control_name":null}]}],"threads":[],"metaData":{"app":{"type":null}},"customDiagnostics":{},"request":{},"app":{"releaseStage":"production"},"device":{"hostname":"Alexanders-MacBook-Pro.local"},"user":{},"breadcrumbs":[],"context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","severity":"warning","unhandled":false,"derived":{"deploy":null}}'
68
+ http_version:
69
+ recorded_at: Tue, 12 Dec 2017 11:55:17 GMT
70
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,73 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID/events
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Bugsnag API Ruby Gem 2.0.1
12
+ Content-Type:
13
+ - application/json
14
+ X-Version:
15
+ - '2'
16
+ X-Bugsnag-Api:
17
+ - 'true'
18
+ Authorization:
19
+ - token BUGSNAG_AUTH_TOKEN
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ Accept:
23
+ - "*/*"
24
+ response:
25
+ status:
26
+ code: 200
27
+ message: OK
28
+ headers:
29
+ X-Total-Count:
30
+ - '475'
31
+ Link:
32
+ - <https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID/events?base=2017-12-12T11%3A55%3A26Z&offset%5Bcount%5D=63&offset%5Btimestamp%5D=2017-12-12T10%3A58%3A54Z&offset%5Btotal_count%5D=475>;
33
+ rel="next"
34
+ Content-Type:
35
+ - application/json; charset=utf-8
36
+ Etag:
37
+ - W/"e94b7a2ddd6f502ddf1d2d3e4ca7e94b"
38
+ Cache-Control:
39
+ - max-age=0, private, must-revalidate
40
+ X-Request-Id:
41
+ - 6180925e-3fad-4cd5-bb2f-bd4e7dc30907
42
+ X-Runtime:
43
+ - '0.563522'
44
+ Vary:
45
+ - Origin
46
+ X-Rack-Cors:
47
+ - miss; no-origin
48
+ Content-Security-Policy:
49
+ - 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
50
+ connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
51
+ https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
52
+ img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
53
+ script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
54
+ https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
55
+ https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
56
+ X-Content-Type-Options:
57
+ - nosniff
58
+ X-Download-Options:
59
+ - noopen
60
+ X-Frame-Options:
61
+ - DENY
62
+ X-Permitted-Cross-Domain-Policies:
63
+ - none
64
+ X-Xss-Protection:
65
+ - 1; mode=block
66
+ Transfer-Encoding:
67
+ - chunked
68
+ body:
69
+ encoding: UTF-8
70
+ string: '[{"id":"BUGSNAG_EVENT_ID","url":"https://api.bugsnag.com/events/BUGSNAG_EVENT_ID","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e96e","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e96e","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e96a","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e96a","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e974","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e974","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e950","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e950","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e95c","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e95c","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e97c","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e97c","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e96c","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e96c","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e98c","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e98c","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9aa","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9aa","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e956","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e956","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e990","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e990","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e972","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e972","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e97e","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e97e","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e99a","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e99a","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e964","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e964","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9a0","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9a0","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e982","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e982","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9ac","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9ac","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e98a","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e98a","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e994","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e994","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e970","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e970","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e992","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e992","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e99c","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e99c","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e978","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e978","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e97a","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e97a","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9ba","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9ba","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9a6","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9a6","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e962","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e962","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e968","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e968","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e988","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e988","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9a8","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9a8","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e976","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e976","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e996","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e996","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9b0","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9b0","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9b2","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9b2","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e95e","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e95e","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e99e","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e99e","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9be","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9be","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e984","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e984","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e966","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e966","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e980","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e980","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e98e","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e98e","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9b4","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9b4","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9d6","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9d6","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9d2","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9d2","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9bc","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9bc","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e998","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e998","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9a4","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9a4","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9c4","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9c4","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e986","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e986","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9a2","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9a2","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9ca","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9ca","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9c6","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9c6","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9c2","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9c2","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9cc","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9cc","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9b6","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9b6","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9d0","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9d0","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9b8","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9b8","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9c0","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9c0","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9ce","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9ce","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9c8","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9c8","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}},{"id":"5a2fb66f5d55e9007116e9d4","url":"https://api.bugsnag.com/events/5a2fb66f5d55e9007116e9d4","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":false,"error_id":"BUGSNAG_ERROR_ID","receivedAt":"2017-12-12T10:58:55.000Z","exceptions":[{"errorClass":"RuntimeError","message":"Error"}],"severity":"warning","context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","unhandled":false,"app":{"releaseStage":"production"}}]'
71
+ http_version:
72
+ recorded_at: Tue, 12 Dec 2017 11:55:15 GMT
73
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,70 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.bugsnag.com/errors/BUGSNAG_ERROR_ID/latest_event
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Bugsnag API Ruby Gem 2.0.1
12
+ Content-Type:
13
+ - application/json
14
+ X-Version:
15
+ - '2'
16
+ X-Bugsnag-Api:
17
+ - 'true'
18
+ Authorization:
19
+ - token BUGSNAG_AUTH_TOKEN
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ Accept:
23
+ - "*/*"
24
+ response:
25
+ status:
26
+ code: 200
27
+ message: OK
28
+ headers:
29
+ Content-Type:
30
+ - application/json; charset=utf-8
31
+ Etag:
32
+ - W/"c31d3b29e0b5d58647ea595a6a5ee69c"
33
+ Cache-Control:
34
+ - max-age=0, private, must-revalidate
35
+ X-Request-Id:
36
+ - 80237c03-e7a0-4bd9-9c64-3aebe1fa0678
37
+ X-Runtime:
38
+ - '0.631835'
39
+ Vary:
40
+ - Origin
41
+ X-Rack-Cors:
42
+ - miss; no-origin
43
+ Content-Security-Policy:
44
+ - 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
45
+ connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
46
+ https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
47
+ img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
48
+ script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
49
+ https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
50
+ https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
51
+ X-Content-Type-Options:
52
+ - nosniff
53
+ X-Download-Options:
54
+ - noopen
55
+ X-Frame-Options:
56
+ - DENY
57
+ X-Permitted-Cross-Domain-Policies:
58
+ - none
59
+ X-Xss-Protection:
60
+ - 1; mode=block
61
+ Transfer-Encoding:
62
+ - chunked
63
+ body:
64
+ encoding: UTF-8
65
+ string: '{"id":"BUGSNAG_EVENT_ID","url":"https://api.bugsnag.com/events/BUGSNAG_EVENT_ID","project_url":"https://api.bugsnag.com/projects/BUGSNAG_PROJECT_ID","is_full_report":true,"error_id":"BUGSNAG_ERROR_ID","received_at":"2017-12-12T10:58:55.000Z","exceptions":[{"error_class":"RuntimeError","message":"Error","stacktrace":[{"column_number":null,"in_project":null,"line_number":34,"method":"block
66
+ (2 levels) in \u003cmain\u003e","file":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb","code":{"31":" sleep(interval)","32":" #Bugsnag.session_tracker.create_session","33":" if
67
+ Random.rand \u003c error_chance","34":" Bugsnag.notify RuntimeError.new(\"Error\")","35":" end","36":" end","37":" end"},"macho_uuid":null,"source_control_link":null,"source_control_name":null}]}],"threads":[],"metaData":{"app":{"type":null}},"customDiagnostics":{},"request":{},"app":{"releaseStage":"production"},"device":{"hostname":"Alexanders-MacBook-Pro.local"},"user":{},"breadcrumbs":[],"context":"/Users/amoinet/Desktop/libraries/bugsnag-ruby/test.rb:34","severity":"warning","unhandled":false,"derived":{"deploy":null}}'
68
+ http_version:
69
+ recorded_at: Tue, 12 Dec 2017 11:55:16 GMT
70
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,71 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.bugsnag.com/organizations
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"name":"testOrg"}'
9
+ headers:
10
+ User-Agent:
11
+ - Bugsnag API Ruby Gem 2.0.1
12
+ Content-Type:
13
+ - application/json
14
+ X-Version:
15
+ - '2'
16
+ X-Bugsnag-Api:
17
+ - 'true'
18
+ Authorization:
19
+ - Basic c3VwcG9ydEBidWdzbmFnLmNvbTpwYXNzd29yZA==
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ Accept:
23
+ - "*/*"
24
+ response:
25
+ status:
26
+ code: 200
27
+ message: OK
28
+ headers:
29
+ Content-Type:
30
+ - application/json; charset=utf-8
31
+ Etag:
32
+ - W/"5cdc2914420d78d0d775dc68b8124e05"
33
+ Cache-Control:
34
+ - max-age=0, private, must-revalidate
35
+ Set-Cookie:
36
+ - _bugsnag_session_2=M3ZqN2thcFFZQWM1bDUyeWxuUnZIaFNNOStHSjhoOTFiN2l0T1RjOEpTVzV1cjdqT1FuNmE0RE1venc1MEpNdS9zOU8zS2t2Ny9LblJJbjhibWdmTzNFdUN0T3RqdTBpeE8zM0pKUnhLOVhZWEhjL1ZRdGNDemNmVFA1dFlCcGVTOWdZZ0d6UU1LMjlHMFdVLzlYcHpMUGx5Z1lRSCtobHNtQjhoRXZhM2hNcFBXbHQ4UHlzcGZBS3BocnlReldzaENoNFBpbktSR05CWEZGczVsWjYvZz09LS0xeU5rbWpnZUx4bStOZ2RERnd1UWVRPT0%3D--caf785b46e94ca24b1e7ea45bb9bcd159bb40163;
37
+ path=/; expires=Wed, 12 Dec 2018 11:52:38 -0000; HttpOnly; SameSite=Lax
38
+ X-Request-Id:
39
+ - 85e462f2-f398-4f80-9c82-9c0666611ffe
40
+ X-Runtime:
41
+ - '0.710236'
42
+ Vary:
43
+ - Origin
44
+ X-Rack-Cors:
45
+ - miss; no-origin
46
+ Content-Security-Policy:
47
+ - 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
48
+ connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
49
+ https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
50
+ img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
51
+ script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
52
+ https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
53
+ https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
54
+ X-Content-Type-Options:
55
+ - nosniff
56
+ X-Download-Options:
57
+ - noopen
58
+ X-Frame-Options:
59
+ - DENY
60
+ X-Permitted-Cross-Domain-Policies:
61
+ - none
62
+ X-Xss-Protection:
63
+ - 1; mode=block
64
+ Transfer-Encoding:
65
+ - chunked
66
+ body:
67
+ encoding: UTF-8
68
+ string: '{"id":"5a2fc306d1befa003981d5ad","name":"testOrg","slug":"testorg-11","creator":{"id":"5a1589f0d1befa47553ffd5f","name":"Bugsnag","email":"BUGSNAG_USER_EMAIL"},"created_at":"2017-12-12T11:52:38.451Z","updated_at":"2017-12-12T11:52:38.541Z","auto_upgrade":true,"upgrade_url":"https://api.bugsnag.com/settings/testorg-11/plans-billing?plansBilling%5Bstep%5D=collaborators-and-events","can_start_pro_trial":false,"pro_trial_ends_at":null,"billing_emails":["BUGSNAG_USER_EMAIL"]}'
69
+ http_version:
70
+ recorded_at: Tue, 12 Dec 2017 11:52:27 GMT
71
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,133 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.bugsnag.com/organizations
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"name":"testOrg"}'
9
+ headers:
10
+ User-Agent:
11
+ - Bugsnag API Ruby Gem 2.0.1
12
+ Content-Type:
13
+ - application/json
14
+ X-Version:
15
+ - '2'
16
+ X-Bugsnag-Api:
17
+ - 'true'
18
+ Authorization:
19
+ - Basic c3VwcG9ydEBidWdzbmFnLmNvbTpwYXNzd29yZA==
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
+ Accept:
23
+ - "*/*"
24
+ response:
25
+ status:
26
+ code: 200
27
+ message: OK
28
+ headers:
29
+ Content-Type:
30
+ - application/json; charset=utf-8
31
+ Etag:
32
+ - W/"0f5910f39a2d2298b9baf2dfe3d3d654"
33
+ Cache-Control:
34
+ - max-age=0, private, must-revalidate
35
+ Set-Cookie:
36
+ - _bugsnag_session_2=WXRQU2dxc0pqTUNIMjR0cTlpYjAwOEpHN09WcFk3NFExSUl0TlRkTXFqdXJZVW16Zk1CcXBpMktUNXF5QmVjT01hUHdyb2M2QlFtYXA5dzRBV1hCR1gyMEEvcytZczJ3dllyVy9Ba1lNeHZrdzJSZndIbG9LQnZrMUthTmNWZk9zNEE1MG0wYXE4ekdrazJqM1IyL0hEdXA0SFEvWlNFNWptR2dGRkQzS0Z2dFhpSDRkbHdlUGhvZjFDbVR3Ykd5L0U1aEhNVjNTeEd4YUxwM2p0SENZdz09LS0ySkR0T1Z5ZVBtd3REbW1TNi9neEpRPT0%3D--a27a707ab80f275437b6a42ac6bceb15f776dea2;
37
+ path=/; expires=Wed, 12 Dec 2018 11:52:35 -0000; HttpOnly; SameSite=Lax
38
+ X-Request-Id:
39
+ - 9db3985c-fb84-4679-8b9c-7352213fb457
40
+ X-Runtime:
41
+ - '0.687476'
42
+ Vary:
43
+ - Origin
44
+ X-Rack-Cors:
45
+ - miss; no-origin
46
+ Content-Security-Policy:
47
+ - 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
48
+ connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
49
+ https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
50
+ img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
51
+ script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
52
+ https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
53
+ https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
54
+ X-Content-Type-Options:
55
+ - nosniff
56
+ X-Download-Options:
57
+ - noopen
58
+ X-Frame-Options:
59
+ - DENY
60
+ X-Permitted-Cross-Domain-Policies:
61
+ - none
62
+ X-Xss-Protection:
63
+ - 1; mode=block
64
+ Transfer-Encoding:
65
+ - chunked
66
+ body:
67
+ encoding: UTF-8
68
+ string: '{"id":"5a2fc302d1befa002881d599","name":"testOrg","slug":"testorg-8","creator":{"id":"5a1589f0d1befa47553ffd5f","name":"Bugsnag","email":"BUGSNAG_USER_EMAIL"},"created_at":"2017-12-12T11:52:34.802Z","updated_at":"2017-12-12T11:52:34.912Z","auto_upgrade":true,"upgrade_url":"https://api.bugsnag.com/settings/testorg-8/plans-billing?plansBilling%5Bstep%5D=collaborators-and-events","can_start_pro_trial":false,"pro_trial_ends_at":null,"billing_emails":["BUGSNAG_USER_EMAIL"]}'
69
+ http_version:
70
+ recorded_at: Tue, 12 Dec 2017 11:52:24 GMT
71
+ - request:
72
+ method: delete
73
+ uri: https://api.bugsnag.com/organizations/5a2fc302d1befa002881d599
74
+ body:
75
+ encoding: UTF-8
76
+ string: "{}"
77
+ headers:
78
+ User-Agent:
79
+ - Bugsnag API Ruby Gem 2.0.1
80
+ Content-Type:
81
+ - application/json
82
+ X-Version:
83
+ - '2'
84
+ X-Bugsnag-Api:
85
+ - 'true'
86
+ Authorization:
87
+ - Basic c3VwcG9ydEBidWdzbmFnLmNvbTpwYXNzd29yZA==
88
+ Accept-Encoding:
89
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
90
+ Accept:
91
+ - "*/*"
92
+ response:
93
+ status:
94
+ code: 204
95
+ message: No Content
96
+ headers:
97
+ Cache-Control:
98
+ - no-cache
99
+ Set-Cookie:
100
+ - _bugsnag_session_2=OGx3a1lXdnpzMXhZUUs5eWtQWmNPZ0VVb1lsWVdKSE5SNDlwQlU1clhEdUhabG5CWUF6aHdLdmx6WlJUVkUrcXhVSHlwd3NYZkdCRytmeFpiNUE2RHpYdStaMFhHTFVqc3h4Z2RaUytyY0E1dll4RjU2cmZVSjJodXcvZ3JYcVl3OC9MU0tUY29JdE4vKzI1a29ndG81Z1hHWlRGbTBOS1BHcUxvNExIWkFUVmpSSmpxV2RPb2RzZXpCcHIyQlFjeWpsWjNBbWN6aFhsQW5TTllzNGxJUT09LS05L0xHQ1FKbklTbXZOYjNIUmQ1ZnZnPT0%3D--07a05f6d5b4a4224cb3e4cc76ff7b1242299b9f5;
101
+ path=/; expires=Wed, 12 Dec 2018 11:52:35 -0000; HttpOnly; SameSite=Lax
102
+ X-Request-Id:
103
+ - c8c68d31-daab-41ff-a8a7-ed312ca8e3f7
104
+ X-Runtime:
105
+ - '0.423748'
106
+ Vary:
107
+ - Origin
108
+ X-Rack-Cors:
109
+ - miss; no-origin
110
+ Content-Security-Policy:
111
+ - 'default-src ''self''; child-src https://*.stripe.com headway-widget.net;
112
+ connect-src ''self'' https://api.bugsnag.com https://notify.bugsnag.com https://*.stripe.com
113
+ https://bugsnag.zendesk.com https://api.lever.co; font-src ''self'' https://maxcdn.bootstrapcdn.com;
114
+ img-src ''self'' data: https://notify.bugsnag.com https://*.stripe.com https://maxcdn.bootstrapcdn.com;
115
+ script-src ''self'' https://d2wy8f7a9ursnm.cloudfront.net https://*.stripe.com
116
+ https://maxcdn.bootstrapcdn.com https://code.jquery.com https://assets.zendesk.com
117
+ https://cdn.headwayapp.co; style-src ''self'' ''unsafe-inline'' https://maxcdn.bootstrapcdn.com'
118
+ X-Content-Type-Options:
119
+ - nosniff
120
+ X-Download-Options:
121
+ - noopen
122
+ X-Frame-Options:
123
+ - DENY
124
+ X-Permitted-Cross-Domain-Policies:
125
+ - none
126
+ X-Xss-Protection:
127
+ - 1; mode=block
128
+ body:
129
+ encoding: UTF-8
130
+ string: ''
131
+ http_version:
132
+ recorded_at: Tue, 12 Dec 2017 11:52:24 GMT
133
+ recorded_with: VCR 2.9.3