bugsnag-api 1.0.3 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +14 -3
- data/CHANGELOG.md +32 -0
- data/CONTRIBUTING.md +40 -0
- data/README.md +126 -111
- data/bugsnag-api.gemspec +4 -3
- data/lib/bugsnag/api/client.rb +18 -9
- data/lib/bugsnag/api/client/collaborators.rb +87 -0
- data/lib/bugsnag/api/client/comments.rb +31 -40
- data/lib/bugsnag/api/client/currentuser.rb +33 -0
- data/lib/bugsnag/api/client/errors.rb +45 -51
- data/lib/bugsnag/api/client/eventfields.rb +50 -0
- data/lib/bugsnag/api/client/events.rb +38 -32
- data/lib/bugsnag/api/client/organizations.rb +46 -0
- data/lib/bugsnag/api/client/pivots.rb +43 -0
- data/lib/bugsnag/api/client/projects.rb +37 -63
- data/lib/bugsnag/api/client/trends.rb +38 -0
- data/lib/bugsnag/api/error.rb +4 -0
- data/lib/bugsnag/api/version.rb +1 -1
- data/spec/bugsnag/api/client/collaborators_spec.rb +101 -0
- data/spec/bugsnag/api/client/comments_spec.rb +42 -30
- data/spec/bugsnag/api/client/currentuser_spec.rb +57 -0
- data/spec/bugsnag/api/client/errors_spec.rb +44 -41
- data/spec/bugsnag/api/client/eventfields_spec.rb +56 -0
- data/spec/bugsnag/api/client/events_spec.rb +41 -29
- data/spec/bugsnag/api/client/organizations_spec.rb +53 -0
- data/spec/bugsnag/api/client/pivots_spec.rb +49 -0
- data/spec/bugsnag/api/client/projects_spec.rb +35 -59
- data/spec/bugsnag/api/client/trends_spec.rb +44 -0
- data/spec/bugsnag/api/client_spec.rb +8 -3
- data/spec/cassettes/Bugsnag_Api_Client/_get/handles_query_params.yml +45 -27
- data/spec/cassettes/Bugsnag_Api_Client/_last_response/caches_the_last_agent_response.yml +45 -27
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/_invitecollaborator/creates_and_returns_a_collaborator.yml +80 -0
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/_invitecollaborator/invites_multiple_collaborators.yml +80 -0
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_collaborator/returns_a_collaborator.yml +157 -0
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_collaborators/returns_a_list_of_all_organization_collaborators.yml +160 -0
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_collaborators/returns_a_list_of_all_project_collaborators.yml +160 -0
- 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 +80 -0
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_delete_collaborator/deletes_a_collaborator.yml +80 -0
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_update_collaborator_permissions/updates_and_returns_the_collaborator.yml +157 -0
- data/spec/cassettes/Bugsnag_Api_Client_Collaborators/given_a_collaborator_exists/_view_collaborator_projects/returns_a_list_of_projects_belonging_to_the_collaborator.yml +159 -0
- data/spec/cassettes/Bugsnag_Api_Client_Comments/_create_comment/creates_a_comment_on_the_error.yml +82 -0
- data/spec/cassettes/Bugsnag_Api_Client_Comments/given_a_comment_has_been_created/_comment/retrieves_the_comment_specified.yml +159 -0
- data/spec/cassettes/Bugsnag_Api_Client_Comments/given_a_comment_has_been_created/_comments/retrieves_all_comments_on_an_error.yml +161 -0
- data/spec/cassettes/Bugsnag_Api_Client_Comments/given_a_comment_has_been_created/_delete_comment/deletes_the_comment_and_returns_true.yml +82 -0
- data/spec/cassettes/Bugsnag_Api_Client_Comments/given_a_comment_has_been_created/_update_comment/updates_the_message_on_a_comment.yml +159 -0
- data/spec/cassettes/Bugsnag_Api_Client_CurrentUser/_list_organizations/when_using_auth_token/returns_the_organization_the_auth_token_belongs_to.yml +81 -0
- data/spec/cassettes/Bugsnag_Api_Client_CurrentUser/_list_organizations/when_using_user_credentials/returns_users_organizations.yml +85 -0
- data/spec/cassettes/Bugsnag_Api_Client_CurrentUser/_list_projects/when_using_auth_token/lists_current_user_s_projects_in_the_organization.yml +82 -0
- data/spec/cassettes/Bugsnag_Api_Client_CurrentUser/_list_projects/when_using_user_credentials/lists_current_user_s_projects_in_the_organization.yml +86 -0
- data/spec/cassettes/Bugsnag_Api_Client_Errors/_error/returns_a_single_error.yml +82 -0
- data/spec/cassettes/Bugsnag_Api_Client_Errors/_errors/returns_errors_on_the_project.yml +84 -0
- data/spec/cassettes/Bugsnag_Api_Client_Errors/_update_errors/updates_and_returns_the_updated_errors.yml +80 -0
- data/spec/cassettes/Bugsnag_Api_Client_Events/_error_events/lists_all_error_events.yml +84 -0
- data/spec/cassettes/Bugsnag_Api_Client_Events/_event/returns_the_specified_event.yml +253 -0
- data/spec/cassettes/Bugsnag_Api_Client_Events/_events/returns_the_a_list_of_project_errors.yml +84 -0
- data/spec/cassettes/Bugsnag_Api_Client_Events/_latest_event/returns_the_last_event_on_an_error.yml +253 -0
- data/spec/cassettes/Bugsnag_Api_Client_Organizations/_create_organization/creates_a_new_organization.yml +84 -0
- data/spec/cassettes/Bugsnag_Api_Client_Organizations/with_organization/_delete_organization/deletes_the_organization.yml +159 -0
- data/spec/cassettes/Bugsnag_Api_Client_Organizations/with_organization/_organization/returns_the_requested_organization.yml +165 -0
- data/spec/cassettes/Bugsnag_Api_Client_Organizations/with_organization/_update_organization/updates_and_returns_the_organization.yml +165 -0
- data/spec/cassettes/Bugsnag_Api_Client_Projects/_create_project/creates_a_new_project.yml +80 -0
- data/spec/cassettes/Bugsnag_Api_Client_Projects/given_a_project/_delete_project/deletes_the_project.yml +151 -0
- data/spec/cassettes/Bugsnag_Api_Client_Projects/given_a_project/_project/returns_the_requested_project.yml +157 -0
- 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 +157 -0
- data/spec/cassettes/Bugsnag_Api_Client_Projects/given_a_project/_update_project/updates_and_returns_the_project.yml +157 -0
- data/spec/cassettes/Bugsnag_Api_Client_Trends/_trends_buckets/returns_a_list_of_error_trends_in_bucket_form.yml +80 -0
- data/spec/cassettes/Bugsnag_Api_Client_Trends/_trends_buckets/returns_a_list_of_project_trends_in_bucket_form.yml +80 -0
- data/spec/cassettes/Bugsnag_Api_Client_Trends/_trends_resolution/returns_a_list_of_project_trends_in_resolution_form.yml +80 -0
- data/spec/cassettes/Bugsnag_Api_Client_Trends/_trends_resolution/returns_a_list_of_trends_in_resolution_form.yml +80 -0
- data/spec/spec_helper.rb +29 -27
- metadata +124 -83
- data/lib/bugsnag/api/client/accounts.rb +0 -44
- data/lib/bugsnag/api/client/users.rb +0 -99
- data/spec/bugsnag/api/client/accounts_spec.rb +0 -45
- data/spec/bugsnag/api/client/users_spec.rb +0 -105
- data/spec/cassettes/Bugsnag_Api_Client_Accounts/_account/returns_the_requested_account.yml +0 -49
- data/spec/cassettes/Bugsnag_Api_Client_Accounts/_account/when_using_account_credentials/returns_the_account.yml +0 -51
- data/spec/cassettes/Bugsnag_Api_Client_Accounts/_accounts/returns_all_accounts.yml +0 -49
- data/spec/cassettes/Bugsnag_Api_Client_Comments/_comments/returns_all_comments_on_an_error.yml +0 -107
- data/spec/cassettes/Bugsnag_Api_Client_Comments/_create_comment/created_a_comment.yml +0 -51
- data/spec/cassettes/Bugsnag_Api_Client_Comments/with_comment/_comment/returns_a_comment.yml +0 -97
- data/spec/cassettes/Bugsnag_Api_Client_Comments/with_comment/_delete_comment/deletes_an_existing_comment.yml +0 -92
- data/spec/cassettes/Bugsnag_Api_Client_Comments/with_comment/_update_comment/updates_an_existing_comment.yml +0 -97
- data/spec/cassettes/Bugsnag_Api_Client_Errors/_errors/returns_all_errors_on_an_project.yml +0 -48
- data/spec/cassettes/Bugsnag_Api_Client_Errors/with_error/_error/returns_an_error.yml +0 -48
- data/spec/cassettes/Bugsnag_Api_Client_Errors/with_error/_reopen_error/reopens_the_error.yml +0 -48
- data/spec/cassettes/Bugsnag_Api_Client_Errors/with_error/_resolve_error/resolves_the_error.yml +0 -48
- data/spec/cassettes/Bugsnag_Api_Client_Errors/with_error/_update_error/updates_the_error.yml +0 -48
- data/spec/cassettes/Bugsnag_Api_Client_Events/_error_events/returns_all_events_on_an_error.yml +0 -64
- data/spec/cassettes/Bugsnag_Api_Client_Events/_project_events/returns_all_events_on_a_project.yml +0 -64
- data/spec/cassettes/Bugsnag_Api_Client_Events/with_event/_event/returns_an_event.yml +0 -56
- data/spec/cassettes/Bugsnag_Api_Client_Projects/_account_projects/returns_all_projects_on_an_account.yml +0 -61
- data/spec/cassettes/Bugsnag_Api_Client_Projects/_account_projects/when_using_account_credentials/returns_all_projects.yml +0 -63
- data/spec/cassettes/Bugsnag_Api_Client_Projects/_create_project/creates_a_project_on_an_account.yml +0 -50
- data/spec/cassettes/Bugsnag_Api_Client_Projects/_user_projects/returns_all_projects_for_a_user.yml +0 -61
- data/spec/cassettes/Bugsnag_Api_Client_Projects/with_project/_delete_project/deletes_an_existing_project.yml +0 -91
- data/spec/cassettes/Bugsnag_Api_Client_Projects/with_project/_project/returns_a_project.yml +0 -95
- data/spec/cassettes/Bugsnag_Api_Client_Projects/with_project/_update_project/updates_an_existing_project.yml +0 -95
- data/spec/cassettes/Bugsnag_Api_Client_Users/_account_users/returns_all_users_on_an_account.yml +0 -49
- data/spec/cassettes/Bugsnag_Api_Client_Users/_account_users/when_using_account_credentials/returns_all_users.yml +0 -51
- data/spec/cassettes/Bugsnag_Api_Client_Users/_invite_user/invites_a_user_to_an_account.yml +0 -48
- data/spec/cassettes/Bugsnag_Api_Client_Users/_project_users/returns_all_users_for_a_project.yml +0 -49
- data/spec/cassettes/Bugsnag_Api_Client_Users/_user/returns_a_user.yml +0 -48
- data/spec/cassettes/Bugsnag_Api_Client_Users/_user/when_using_user_credentials/returns_the_authed_user.yml +0 -48
- data/spec/cassettes/Bugsnag_Api_Client_Users/with_user/_remove_user/removes_a_user_from_an_account.yml +0 -89
- data/spec/cassettes/Bugsnag_Api_Client_Users/with_user/_update_user_permissions/updates_a_users_permissions.yml +0 -93
| @@ -1,48 +0,0 @@ | |
| 1 | 
            -
            ---
         | 
| 2 | 
            -
            http_interactions:
         | 
| 3 | 
            -
            - request:
         | 
| 4 | 
            -
                method: post
         | 
| 5 | 
            -
                uri: http://<BUGSNAG_LOGIN>:<BUGSNAG_PASSWORD>@api.bugsnag.com/accounts/<BUGSNAG_ACCOUNT_ID>/users
         | 
| 6 | 
            -
                body:
         | 
| 7 | 
            -
                  encoding: UTF-8
         | 
| 8 | 
            -
                  string: '{"email":"example@example.com"}'
         | 
| 9 | 
            -
                headers:
         | 
| 10 | 
            -
                  User-Agent:
         | 
| 11 | 
            -
                  - Bugsnag API Ruby Gem 1.0.0
         | 
| 12 | 
            -
                  Content-Type:
         | 
| 13 | 
            -
                  - application/json
         | 
| 14 | 
            -
                  Accept-Encoding:
         | 
| 15 | 
            -
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 16 | 
            -
                  Accept:
         | 
| 17 | 
            -
                  - '*/*'
         | 
| 18 | 
            -
              response:
         | 
| 19 | 
            -
                status:
         | 
| 20 | 
            -
                  code: 200
         | 
| 21 | 
            -
                  message: OK
         | 
| 22 | 
            -
                headers:
         | 
| 23 | 
            -
                  X-Frame-Options:
         | 
| 24 | 
            -
                  - SAMEORIGIN
         | 
| 25 | 
            -
                  X-Xss-Protection:
         | 
| 26 | 
            -
                  - 1; mode=block
         | 
| 27 | 
            -
                  X-Content-Type-Options:
         | 
| 28 | 
            -
                  - nosniff
         | 
| 29 | 
            -
                  Content-Type:
         | 
| 30 | 
            -
                  - application/json; charset=utf-8
         | 
| 31 | 
            -
                  Etag:
         | 
| 32 | 
            -
                  - '"9f7d538242c32229fd4e5e0c9f176a4f"'
         | 
| 33 | 
            -
                  Cache-Control:
         | 
| 34 | 
            -
                  - max-age=0, private, must-revalidate
         | 
| 35 | 
            -
                  X-Request-Id:
         | 
| 36 | 
            -
                  - 45ac04dd-eff0-4265-be6c-2e1a8dbdcdd9
         | 
| 37 | 
            -
                  X-Runtime:
         | 
| 38 | 
            -
                  - '0.127316'
         | 
| 39 | 
            -
                  Date:
         | 
| 40 | 
            -
                  - Tue, 02 Sep 2014 02:49:27 GMT
         | 
| 41 | 
            -
                  Connection:
         | 
| 42 | 
            -
                  - close
         | 
| 43 | 
            -
                body:
         | 
| 44 | 
            -
                  encoding: UTF-8
         | 
| 45 | 
            -
                  string: '{"id":"5404dc9c64657377ae000009","email":"example@example.com","name":null,"gravatar_id":"23463b99b62a72f26ed677cc556c44e8","gravatar_url":"https://secure.gravatar.com/avatar/23463b99b62a72f26ed677cc556c44e8","url":"https://api.bugsnag.com/users/5404dc9c64657377ae000009","projects_url":"https://api.bugsnag.com/users/5404dc9c64657377ae000009/projects","account_admin":false,"html_url":"http://bugsnag.dev/accounts/test-account/collaborators/5404dc9c64657377ae000009/edit"}'
         | 
| 46 | 
            -
                http_version: 
         | 
| 47 | 
            -
              recorded_at: Tue, 02 Sep 2014 02:49:27 GMT
         | 
| 48 | 
            -
            recorded_with: VCR 2.9.2
         | 
    
        data/spec/cassettes/Bugsnag_Api_Client_Users/_project_users/returns_all_users_for_a_project.yml
    DELETED
    
    | @@ -1,49 +0,0 @@ | |
| 1 | 
            -
            ---
         | 
| 2 | 
            -
            http_interactions:
         | 
| 3 | 
            -
            - request:
         | 
| 4 | 
            -
                method: get
         | 
| 5 | 
            -
                uri: http://<BUGSNAG_LOGIN>:<BUGSNAG_PASSWORD>@api.bugsnag.com/projects/<BUGSNAG_PROJECT_ID>/users
         | 
| 6 | 
            -
                body:
         | 
| 7 | 
            -
                  encoding: US-ASCII
         | 
| 8 | 
            -
                  string: ''
         | 
| 9 | 
            -
                headers:
         | 
| 10 | 
            -
                  User-Agent:
         | 
| 11 | 
            -
                  - Bugsnag API Ruby Gem 1.0.0
         | 
| 12 | 
            -
                  Content-Type:
         | 
| 13 | 
            -
                  - application/json
         | 
| 14 | 
            -
                  Accept-Encoding:
         | 
| 15 | 
            -
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 16 | 
            -
                  Accept:
         | 
| 17 | 
            -
                  - '*/*'
         | 
| 18 | 
            -
              response:
         | 
| 19 | 
            -
                status:
         | 
| 20 | 
            -
                  code: 200
         | 
| 21 | 
            -
                  message: OK
         | 
| 22 | 
            -
                headers:
         | 
| 23 | 
            -
                  X-Frame-Options:
         | 
| 24 | 
            -
                  - SAMEORIGIN
         | 
| 25 | 
            -
                  X-Xss-Protection:
         | 
| 26 | 
            -
                  - 1; mode=block
         | 
| 27 | 
            -
                  X-Content-Type-Options:
         | 
| 28 | 
            -
                  - nosniff
         | 
| 29 | 
            -
                  Content-Type:
         | 
| 30 | 
            -
                  - application/json; charset=utf-8
         | 
| 31 | 
            -
                  Etag:
         | 
| 32 | 
            -
                  - '"3a733fd3c2867b314fadd37f7c3ac1b5"'
         | 
| 33 | 
            -
                  Cache-Control:
         | 
| 34 | 
            -
                  - max-age=0, private, must-revalidate
         | 
| 35 | 
            -
                  X-Request-Id:
         | 
| 36 | 
            -
                  - 4d029297-01ea-4b52-8db2-0d8f20720fdf
         | 
| 37 | 
            -
                  X-Runtime:
         | 
| 38 | 
            -
                  - '0.134824'
         | 
| 39 | 
            -
                  Date:
         | 
| 40 | 
            -
                  - Tue, 02 Sep 2014 02:49:28 GMT
         | 
| 41 | 
            -
                  Connection:
         | 
| 42 | 
            -
                  - close
         | 
| 43 | 
            -
                body:
         | 
| 44 | 
            -
                  encoding: UTF-8
         | 
| 45 | 
            -
                  string: '[{"id":"5404dc9c64657377ae000009","email":"example@example.com","name":null,"gravatar_id":"23463b99b62a72f26ed677cc556c44e8","gravatar_url":"https://secure.gravatar.com/avatar/23463b99b62a72f26ed677cc556c44e8","url":"https://api.bugsnag.com/users/5404dc9c64657377ae000009","projects_url":"https://api.bugsnag.com/users/5404dc9c64657377ae000009/projects","account_admin":true,"html_url":"http://bugsnag.dev/accounts/test-account/collaborators/5404dc9c64657377ae000009/edit"},{"id":"<BUGSNAG_USER_ID>","email":"<BUGSNAG_EMAIL>","name":"James
         | 
| 46 | 
            -
                    Smith","gravatar_id":"8cbca651e77dc253a98e545590ed3387","gravatar_url":"https://secure.gravatar.com/avatar/8cbca651e77dc253a98e545590ed3387","url":"https://api.bugsnag.com/users/<BUGSNAG_USER_ID>","projects_url":"https://api.bugsnag.com/users/<BUGSNAG_USER_ID>/projects","account_admin":true,"html_url":"http://bugsnag.dev/accounts/test-account/collaborators/<BUGSNAG_USER_ID>/edit"}]'
         | 
| 47 | 
            -
                http_version: 
         | 
| 48 | 
            -
              recorded_at: Tue, 02 Sep 2014 02:49:28 GMT
         | 
| 49 | 
            -
            recorded_with: VCR 2.9.2
         | 
| @@ -1,48 +0,0 @@ | |
| 1 | 
            -
            ---
         | 
| 2 | 
            -
            http_interactions:
         | 
| 3 | 
            -
            - request:
         | 
| 4 | 
            -
                method: get
         | 
| 5 | 
            -
                uri: http://<BUGSNAG_LOGIN>:<BUGSNAG_PASSWORD>@api.bugsnag.com/users/<BUGSNAG_USER_ID>
         | 
| 6 | 
            -
                body:
         | 
| 7 | 
            -
                  encoding: US-ASCII
         | 
| 8 | 
            -
                  string: ''
         | 
| 9 | 
            -
                headers:
         | 
| 10 | 
            -
                  User-Agent:
         | 
| 11 | 
            -
                  - Bugsnag API Ruby Gem 1.0.0
         | 
| 12 | 
            -
                  Content-Type:
         | 
| 13 | 
            -
                  - application/json
         | 
| 14 | 
            -
                  Accept-Encoding:
         | 
| 15 | 
            -
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 16 | 
            -
                  Accept:
         | 
| 17 | 
            -
                  - '*/*'
         | 
| 18 | 
            -
              response:
         | 
| 19 | 
            -
                status:
         | 
| 20 | 
            -
                  code: 200
         | 
| 21 | 
            -
                  message: OK
         | 
| 22 | 
            -
                headers:
         | 
| 23 | 
            -
                  X-Frame-Options:
         | 
| 24 | 
            -
                  - SAMEORIGIN
         | 
| 25 | 
            -
                  X-Xss-Protection:
         | 
| 26 | 
            -
                  - 1; mode=block
         | 
| 27 | 
            -
                  X-Content-Type-Options:
         | 
| 28 | 
            -
                  - nosniff
         | 
| 29 | 
            -
                  Content-Type:
         | 
| 30 | 
            -
                  - application/json; charset=utf-8
         | 
| 31 | 
            -
                  Etag:
         | 
| 32 | 
            -
                  - '"605bcc250ebda765fc87a6401db995a1"'
         | 
| 33 | 
            -
                  Cache-Control:
         | 
| 34 | 
            -
                  - max-age=0, private, must-revalidate
         | 
| 35 | 
            -
                  X-Request-Id:
         | 
| 36 | 
            -
                  - 0b2bbee7-59ac-4b98-9391-990c68368a15
         | 
| 37 | 
            -
                  X-Runtime:
         | 
| 38 | 
            -
                  - '0.124337'
         | 
| 39 | 
            -
                  Date:
         | 
| 40 | 
            -
                  - Tue, 02 Sep 2014 02:49:28 GMT
         | 
| 41 | 
            -
                  Connection:
         | 
| 42 | 
            -
                  - close
         | 
| 43 | 
            -
                body:
         | 
| 44 | 
            -
                  encoding: UTF-8
         | 
| 45 | 
            -
                  string: '{"id":"<BUGSNAG_USER_ID>","email":"<BUGSNAG_EMAIL>","name":"James Smith","gravatar_id":"8cbca651e77dc253a98e545590ed3387","gravatar_url":"https://secure.gravatar.com/avatar/8cbca651e77dc253a98e545590ed3387","url":"https://api.bugsnag.com/users/<BUGSNAG_USER_ID>","projects_url":"https://api.bugsnag.com/users/<BUGSNAG_USER_ID>/projects"}'
         | 
| 46 | 
            -
                http_version: 
         | 
| 47 | 
            -
              recorded_at: Tue, 02 Sep 2014 02:49:28 GMT
         | 
| 48 | 
            -
            recorded_with: VCR 2.9.2
         | 
| @@ -1,48 +0,0 @@ | |
| 1 | 
            -
            ---
         | 
| 2 | 
            -
            http_interactions:
         | 
| 3 | 
            -
            - request:
         | 
| 4 | 
            -
                method: get
         | 
| 5 | 
            -
                uri: http://<BUGSNAG_LOGIN>:<BUGSNAG_PASSWORD>@api.bugsnag.com/user
         | 
| 6 | 
            -
                body:
         | 
| 7 | 
            -
                  encoding: US-ASCII
         | 
| 8 | 
            -
                  string: ''
         | 
| 9 | 
            -
                headers:
         | 
| 10 | 
            -
                  User-Agent:
         | 
| 11 | 
            -
                  - Bugsnag API Ruby Gem 1.0.0
         | 
| 12 | 
            -
                  Content-Type:
         | 
| 13 | 
            -
                  - application/json
         | 
| 14 | 
            -
                  Accept-Encoding:
         | 
| 15 | 
            -
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 16 | 
            -
                  Accept:
         | 
| 17 | 
            -
                  - '*/*'
         | 
| 18 | 
            -
              response:
         | 
| 19 | 
            -
                status:
         | 
| 20 | 
            -
                  code: 200
         | 
| 21 | 
            -
                  message: OK
         | 
| 22 | 
            -
                headers:
         | 
| 23 | 
            -
                  X-Frame-Options:
         | 
| 24 | 
            -
                  - SAMEORIGIN
         | 
| 25 | 
            -
                  X-Xss-Protection:
         | 
| 26 | 
            -
                  - 1; mode=block
         | 
| 27 | 
            -
                  X-Content-Type-Options:
         | 
| 28 | 
            -
                  - nosniff
         | 
| 29 | 
            -
                  Content-Type:
         | 
| 30 | 
            -
                  - application/json; charset=utf-8
         | 
| 31 | 
            -
                  Etag:
         | 
| 32 | 
            -
                  - '"605bcc250ebda765fc87a6401db995a1"'
         | 
| 33 | 
            -
                  Cache-Control:
         | 
| 34 | 
            -
                  - max-age=0, private, must-revalidate
         | 
| 35 | 
            -
                  X-Request-Id:
         | 
| 36 | 
            -
                  - 046d602f-58b8-4914-b443-fe429917b4d6
         | 
| 37 | 
            -
                  X-Runtime:
         | 
| 38 | 
            -
                  - '0.113503'
         | 
| 39 | 
            -
                  Date:
         | 
| 40 | 
            -
                  - Tue, 02 Sep 2014 02:49:27 GMT
         | 
| 41 | 
            -
                  Connection:
         | 
| 42 | 
            -
                  - close
         | 
| 43 | 
            -
                body:
         | 
| 44 | 
            -
                  encoding: UTF-8
         | 
| 45 | 
            -
                  string: '{"id":"<BUGSNAG_USER_ID>","email":"<BUGSNAG_EMAIL>","name":"James Smith","gravatar_id":"8cbca651e77dc253a98e545590ed3387","gravatar_url":"https://secure.gravatar.com/avatar/8cbca651e77dc253a98e545590ed3387","url":"https://api.bugsnag.com/users/<BUGSNAG_USER_ID>","projects_url":"https://api.bugsnag.com/users/<BUGSNAG_USER_ID>/projects"}'
         | 
| 46 | 
            -
                http_version: 
         | 
| 47 | 
            -
              recorded_at: Tue, 02 Sep 2014 02:49:27 GMT
         | 
| 48 | 
            -
            recorded_with: VCR 2.9.2
         | 
| @@ -1,89 +0,0 @@ | |
| 1 | 
            -
            ---
         | 
| 2 | 
            -
            http_interactions:
         | 
| 3 | 
            -
            - request:
         | 
| 4 | 
            -
                method: post
         | 
| 5 | 
            -
                uri: http://<BUGSNAG_LOGIN>:<BUGSNAG_PASSWORD>@api.bugsnag.com/accounts/<BUGSNAG_ACCOUNT_ID>/users
         | 
| 6 | 
            -
                body:
         | 
| 7 | 
            -
                  encoding: UTF-8
         | 
| 8 | 
            -
                  string: '{"admin":false,"email":"example@example.com"}'
         | 
| 9 | 
            -
                headers:
         | 
| 10 | 
            -
                  User-Agent:
         | 
| 11 | 
            -
                  - Bugsnag API Ruby Gem 1.0.0
         | 
| 12 | 
            -
                  Content-Type:
         | 
| 13 | 
            -
                  - application/json
         | 
| 14 | 
            -
                  Accept-Encoding:
         | 
| 15 | 
            -
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 16 | 
            -
                  Accept:
         | 
| 17 | 
            -
                  - '*/*'
         | 
| 18 | 
            -
              response:
         | 
| 19 | 
            -
                status:
         | 
| 20 | 
            -
                  code: 200
         | 
| 21 | 
            -
                  message: OK
         | 
| 22 | 
            -
                headers:
         | 
| 23 | 
            -
                  X-Frame-Options:
         | 
| 24 | 
            -
                  - SAMEORIGIN
         | 
| 25 | 
            -
                  X-Xss-Protection:
         | 
| 26 | 
            -
                  - 1; mode=block
         | 
| 27 | 
            -
                  X-Content-Type-Options:
         | 
| 28 | 
            -
                  - nosniff
         | 
| 29 | 
            -
                  Content-Type:
         | 
| 30 | 
            -
                  - application/json; charset=utf-8
         | 
| 31 | 
            -
                  Etag:
         | 
| 32 | 
            -
                  - '"9f7d538242c32229fd4e5e0c9f176a4f"'
         | 
| 33 | 
            -
                  Cache-Control:
         | 
| 34 | 
            -
                  - max-age=0, private, must-revalidate
         | 
| 35 | 
            -
                  X-Request-Id:
         | 
| 36 | 
            -
                  - 50f0158d-cd91-43f2-96c8-e4024291aa5f
         | 
| 37 | 
            -
                  X-Runtime:
         | 
| 38 | 
            -
                  - '0.129716'
         | 
| 39 | 
            -
                  Date:
         | 
| 40 | 
            -
                  - Tue, 02 Sep 2014 02:49:28 GMT
         | 
| 41 | 
            -
                  Connection:
         | 
| 42 | 
            -
                  - close
         | 
| 43 | 
            -
                body:
         | 
| 44 | 
            -
                  encoding: UTF-8
         | 
| 45 | 
            -
                  string: '{"id":"5404dc9c64657377ae000009","email":"example@example.com","name":null,"gravatar_id":"23463b99b62a72f26ed677cc556c44e8","gravatar_url":"https://secure.gravatar.com/avatar/23463b99b62a72f26ed677cc556c44e8","url":"https://api.bugsnag.com/users/5404dc9c64657377ae000009","projects_url":"https://api.bugsnag.com/users/5404dc9c64657377ae000009/projects","account_admin":false,"html_url":"http://bugsnag.dev/accounts/test-account/collaborators/5404dc9c64657377ae000009/edit"}'
         | 
| 46 | 
            -
                http_version: 
         | 
| 47 | 
            -
              recorded_at: Tue, 02 Sep 2014 02:49:28 GMT
         | 
| 48 | 
            -
            - request:
         | 
| 49 | 
            -
                method: delete
         | 
| 50 | 
            -
                uri: http://<BUGSNAG_LOGIN>:<BUGSNAG_PASSWORD>@api.bugsnag.com/accounts/<BUGSNAG_ACCOUNT_ID>/users/5404dc9c64657377ae000009
         | 
| 51 | 
            -
                body:
         | 
| 52 | 
            -
                  encoding: UTF-8
         | 
| 53 | 
            -
                  string: '{}'
         | 
| 54 | 
            -
                headers:
         | 
| 55 | 
            -
                  User-Agent:
         | 
| 56 | 
            -
                  - Bugsnag API Ruby Gem 1.0.0
         | 
| 57 | 
            -
                  Content-Type:
         | 
| 58 | 
            -
                  - application/json
         | 
| 59 | 
            -
                  Accept-Encoding:
         | 
| 60 | 
            -
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 61 | 
            -
                  Accept:
         | 
| 62 | 
            -
                  - '*/*'
         | 
| 63 | 
            -
              response:
         | 
| 64 | 
            -
                status:
         | 
| 65 | 
            -
                  code: 204
         | 
| 66 | 
            -
                  message: No Content
         | 
| 67 | 
            -
                headers:
         | 
| 68 | 
            -
                  X-Frame-Options:
         | 
| 69 | 
            -
                  - SAMEORIGIN
         | 
| 70 | 
            -
                  X-Xss-Protection:
         | 
| 71 | 
            -
                  - 1; mode=block
         | 
| 72 | 
            -
                  X-Content-Type-Options:
         | 
| 73 | 
            -
                  - nosniff
         | 
| 74 | 
            -
                  Cache-Control:
         | 
| 75 | 
            -
                  - no-cache
         | 
| 76 | 
            -
                  X-Request-Id:
         | 
| 77 | 
            -
                  - 2ab7722c-2d8d-4fe9-a30c-c6f3e18b3423
         | 
| 78 | 
            -
                  X-Runtime:
         | 
| 79 | 
            -
                  - '0.090745'
         | 
| 80 | 
            -
                  Date:
         | 
| 81 | 
            -
                  - Tue, 02 Sep 2014 02:49:28 GMT
         | 
| 82 | 
            -
                  Connection:
         | 
| 83 | 
            -
                  - close
         | 
| 84 | 
            -
                body:
         | 
| 85 | 
            -
                  encoding: UTF-8
         | 
| 86 | 
            -
                  string: ''
         | 
| 87 | 
            -
                http_version: 
         | 
| 88 | 
            -
              recorded_at: Tue, 02 Sep 2014 02:49:28 GMT
         | 
| 89 | 
            -
            recorded_with: VCR 2.9.2
         | 
| @@ -1,93 +0,0 @@ | |
| 1 | 
            -
            ---
         | 
| 2 | 
            -
            http_interactions:
         | 
| 3 | 
            -
            - request:
         | 
| 4 | 
            -
                method: post
         | 
| 5 | 
            -
                uri: http://<BUGSNAG_LOGIN>:<BUGSNAG_PASSWORD>@api.bugsnag.com/accounts/<BUGSNAG_ACCOUNT_ID>/users
         | 
| 6 | 
            -
                body:
         | 
| 7 | 
            -
                  encoding: UTF-8
         | 
| 8 | 
            -
                  string: '{"admin":false,"email":"example@example.com"}'
         | 
| 9 | 
            -
                headers:
         | 
| 10 | 
            -
                  User-Agent:
         | 
| 11 | 
            -
                  - Bugsnag API Ruby Gem 1.0.0
         | 
| 12 | 
            -
                  Content-Type:
         | 
| 13 | 
            -
                  - application/json
         | 
| 14 | 
            -
                  Accept-Encoding:
         | 
| 15 | 
            -
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 16 | 
            -
                  Accept:
         | 
| 17 | 
            -
                  - '*/*'
         | 
| 18 | 
            -
              response:
         | 
| 19 | 
            -
                status:
         | 
| 20 | 
            -
                  code: 200
         | 
| 21 | 
            -
                  message: OK
         | 
| 22 | 
            -
                headers:
         | 
| 23 | 
            -
                  X-Frame-Options:
         | 
| 24 | 
            -
                  - SAMEORIGIN
         | 
| 25 | 
            -
                  X-Xss-Protection:
         | 
| 26 | 
            -
                  - 1; mode=block
         | 
| 27 | 
            -
                  X-Content-Type-Options:
         | 
| 28 | 
            -
                  - nosniff
         | 
| 29 | 
            -
                  Content-Type:
         | 
| 30 | 
            -
                  - application/json; charset=utf-8
         | 
| 31 | 
            -
                  Etag:
         | 
| 32 | 
            -
                  - '"9f7d538242c32229fd4e5e0c9f176a4f"'
         | 
| 33 | 
            -
                  Cache-Control:
         | 
| 34 | 
            -
                  - max-age=0, private, must-revalidate
         | 
| 35 | 
            -
                  X-Request-Id:
         | 
| 36 | 
            -
                  - 47aadee0-c6c5-4d8f-9255-57a2765c40f6
         | 
| 37 | 
            -
                  X-Runtime:
         | 
| 38 | 
            -
                  - '0.136265'
         | 
| 39 | 
            -
                  Date:
         | 
| 40 | 
            -
                  - Tue, 02 Sep 2014 02:49:28 GMT
         | 
| 41 | 
            -
                  Connection:
         | 
| 42 | 
            -
                  - close
         | 
| 43 | 
            -
                body:
         | 
| 44 | 
            -
                  encoding: UTF-8
         | 
| 45 | 
            -
                  string: '{"id":"5404dc9c64657377ae000009","email":"example@example.com","name":null,"gravatar_id":"23463b99b62a72f26ed677cc556c44e8","gravatar_url":"https://secure.gravatar.com/avatar/23463b99b62a72f26ed677cc556c44e8","url":"https://api.bugsnag.com/users/5404dc9c64657377ae000009","projects_url":"https://api.bugsnag.com/users/5404dc9c64657377ae000009/projects","account_admin":false,"html_url":"http://bugsnag.dev/accounts/test-account/collaborators/5404dc9c64657377ae000009/edit"}'
         | 
| 46 | 
            -
                http_version: 
         | 
| 47 | 
            -
              recorded_at: Tue, 02 Sep 2014 02:49:28 GMT
         | 
| 48 | 
            -
            - request:
         | 
| 49 | 
            -
                method: patch
         | 
| 50 | 
            -
                uri: http://<BUGSNAG_LOGIN>:<BUGSNAG_PASSWORD>@api.bugsnag.com/accounts/<BUGSNAG_ACCOUNT_ID>/users/5404dc9c64657377ae000009
         | 
| 51 | 
            -
                body:
         | 
| 52 | 
            -
                  encoding: UTF-8
         | 
| 53 | 
            -
                  string: '{"admin":true}'
         | 
| 54 | 
            -
                headers:
         | 
| 55 | 
            -
                  User-Agent:
         | 
| 56 | 
            -
                  - Bugsnag API Ruby Gem 1.0.0
         | 
| 57 | 
            -
                  Content-Type:
         | 
| 58 | 
            -
                  - application/json
         | 
| 59 | 
            -
                  Accept-Encoding:
         | 
| 60 | 
            -
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 61 | 
            -
                  Accept:
         | 
| 62 | 
            -
                  - '*/*'
         | 
| 63 | 
            -
              response:
         | 
| 64 | 
            -
                status:
         | 
| 65 | 
            -
                  code: 200
         | 
| 66 | 
            -
                  message: OK
         | 
| 67 | 
            -
                headers:
         | 
| 68 | 
            -
                  X-Frame-Options:
         | 
| 69 | 
            -
                  - SAMEORIGIN
         | 
| 70 | 
            -
                  X-Xss-Protection:
         | 
| 71 | 
            -
                  - 1; mode=block
         | 
| 72 | 
            -
                  X-Content-Type-Options:
         | 
| 73 | 
            -
                  - nosniff
         | 
| 74 | 
            -
                  Content-Type:
         | 
| 75 | 
            -
                  - application/json; charset=utf-8
         | 
| 76 | 
            -
                  Etag:
         | 
| 77 | 
            -
                  - '"196dacb6c6f0811ea84b72ac7a09e47c"'
         | 
| 78 | 
            -
                  Cache-Control:
         | 
| 79 | 
            -
                  - max-age=0, private, must-revalidate
         | 
| 80 | 
            -
                  X-Request-Id:
         | 
| 81 | 
            -
                  - 2a642fff-de2f-4912-b791-dd35cec9a8b5
         | 
| 82 | 
            -
                  X-Runtime:
         | 
| 83 | 
            -
                  - '0.139348'
         | 
| 84 | 
            -
                  Date:
         | 
| 85 | 
            -
                  - Tue, 02 Sep 2014 02:49:28 GMT
         | 
| 86 | 
            -
                  Connection:
         | 
| 87 | 
            -
                  - close
         | 
| 88 | 
            -
                body:
         | 
| 89 | 
            -
                  encoding: UTF-8
         | 
| 90 | 
            -
                  string: '{"id":"5404dc9c64657377ae000009","email":"example@example.com","name":null,"gravatar_id":"23463b99b62a72f26ed677cc556c44e8","gravatar_url":"https://secure.gravatar.com/avatar/23463b99b62a72f26ed677cc556c44e8","url":"https://api.bugsnag.com/users/5404dc9c64657377ae000009","projects_url":"https://api.bugsnag.com/users/5404dc9c64657377ae000009/projects","account_admin":true,"html_url":"http://bugsnag.dev/accounts/test-account/collaborators/5404dc9c64657377ae000009/edit"}'
         | 
| 91 | 
            -
                http_version: 
         | 
| 92 | 
            -
              recorded_at: Tue, 02 Sep 2014 02:49:28 GMT
         | 
| 93 | 
            -
            recorded_with: VCR 2.9.2
         |