ruby-trello 2.0.0 → 2.3.1
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 +5 -5
 - data/README.md +106 -17
 - data/lib/trello.rb +47 -34
 - data/lib/trello/action.rb +10 -8
 - data/lib/trello/association_builder/has_many.rb +17 -0
 - data/lib/trello/association_builder/has_one.rb +16 -0
 - data/lib/trello/association_fetcher/has_many.rb +26 -0
 - data/lib/trello/association_fetcher/has_many/fetch.rb +47 -0
 - data/lib/trello/association_fetcher/has_many/params.rb +56 -0
 - data/lib/trello/association_fetcher/has_one.rb +25 -0
 - data/lib/trello/association_fetcher/has_one/fetch.rb +49 -0
 - data/lib/trello/association_fetcher/has_one/params.rb +36 -0
 - data/lib/trello/association_infer_tool.rb +13 -0
 - data/lib/trello/association_proxy.rb +1 -1
 - data/lib/trello/attachment.rb +13 -10
 - data/lib/trello/basic_data.rb +16 -49
 - data/lib/trello/board.rb +17 -3
 - data/lib/trello/card.rb +103 -38
 - data/lib/trello/checklist.rb +14 -13
 - data/lib/trello/client.rb +1 -1
 - data/lib/trello/comment.rb +4 -4
 - data/lib/trello/custom_field.rb +131 -0
 - data/lib/trello/custom_field_item.rb +98 -0
 - data/lib/trello/custom_field_option.rb +22 -0
 - data/lib/trello/error.rb +12 -0
 - data/lib/trello/item.rb +7 -7
 - data/lib/trello/item_state.rb +3 -3
 - data/lib/trello/label.rb +30 -12
 - data/lib/trello/label_name.rb +10 -10
 - data/lib/trello/list.rb +6 -6
 - data/lib/trello/member.rb +10 -9
 - data/lib/trello/notification.rb +6 -6
 - data/lib/trello/organization.rb +11 -11
 - data/lib/trello/plugin_datum.rb +6 -6
 - data/lib/trello/register_attributes.rb +54 -0
 - data/lib/trello/token.rb +6 -5
 - data/lib/trello/webhook.rb +5 -5
 - data/spec/action_spec.rb +22 -1
 - data/spec/basic_data_spec.rb +58 -0
 - data/spec/board_spec.rb +28 -2
 - data/spec/card_spec.rb +183 -8
 - data/spec/cassettes/can_add_a_file_from_url_on_a_card.yml +189 -0
 - data/spec/cassettes/can_add_a_file_on_a_card.yml +200 -0
 - data/spec/cassettes/can_add_a_member_to_a_card.yml +190 -0
 - data/spec/cassettes/can_add_label_on_a_card.yml +281 -0
 - data/spec/cassettes/can_close_bong_a_card.yml +189 -0
 - data/spec/cassettes/can_get_actions.yml +196 -0
 - data/spec/cassettes/can_get_attachments.yml +187 -0
 - data/spec/cassettes/can_get_comments.yml +193 -0
 - data/spec/cassettes/can_move_a_card_to_another_board_with_specific_list.yml +373 -0
 - data/spec/cassettes/can_move_a_card_to_another_board_without_specific_list.yml +281 -0
 - data/spec/cassettes/can_move_a_card_to_another_list.yml +281 -0
 - data/spec/cassettes/can_remove_a_member_from_a_card.yml +185 -0
 - data/spec/cassettes/can_remove_an_attachment_on_a_card.yml +277 -0
 - data/spec/cassettes/can_remove_an_upvote_on_a_card.yml +465 -0
 - data/spec/cassettes/can_remove_label_on_a_card.yml +279 -0
 - data/spec/cassettes/can_success_add_comment_to_a_card.yml +196 -0
 - data/spec/cassettes/can_success_copy_checklist_to_a_card.yml +281 -0
 - data/spec/cassettes/can_success_copy_checklist_to_a_card_without_name_pos.yml +281 -0
 - data/spec/cassettes/can_success_create_a_card.yml +99 -0
 - data/spec/cassettes/can_success_create_new_checklist_to_a_card.yml +189 -0
 - data/spec/cassettes/can_success_delete_card.yml +185 -0
 - data/spec/cassettes/can_success_upate_a_card.yml +189 -0
 - data/spec/cassettes/can_success_update_bong_a_board.yml +283 -0
 - data/spec/cassettes/can_success_update_bong_a_card.yml +191 -0
 - data/spec/cassettes/can_upvote_on_a_card.yml +469 -0
 - data/spec/cassettes/card_find_with_id_and_get_all_fields.yml +95 -0
 - data/spec/cassettes/card_find_with_id_and_get_specific_fields.yml +96 -0
 - data/spec/cassettes/custom_field_item_save_1.yml +97 -0
 - data/spec/cassettes/custom_field_item_save_2.yml +281 -0
 - data/spec/cassettes/get_board_of_card.yml +187 -0
 - data/spec/cassettes/get_check_item_states_of_card.yml +188 -0
 - data/spec/cassettes/get_checklists_of_card.yml +187 -0
 - data/spec/cassettes/get_cover_image_of_card.yml +187 -0
 - data/spec/cassettes/get_custom_field_items_of_card.yml +187 -0
 - data/spec/cassettes/get_list_of_card.yml +188 -0
 - data/spec/cassettes/get_lists.yml +187 -0
 - data/spec/cassettes/get_members_of_card.yml +189 -0
 - data/spec/cassettes/get_plugin_data_of_card.yml +187 -0
 - data/spec/cassettes/get_voters_of_card.yml +188 -0
 - data/spec/cassettes/remove_upvote_on_a_card_when_have_not_voted.yml +366 -0
 - data/spec/cassettes/revote_on_a_card.yml +464 -0
 - data/spec/checklist_spec.rb +39 -3
 - data/spec/client_spec.rb +5 -1
 - data/spec/custom_field_item_spec.rb +192 -0
 - data/spec/custom_field_option_spec.rb +49 -0
 - data/spec/custom_field_spec.rb +261 -0
 - data/spec/integration/basic_data/many_spec.rb +123 -0
 - data/spec/integration/basic_data/one_spec.rb +84 -0
 - data/spec/integration/basic_data/register_attributes_spec.rb +75 -0
 - data/spec/integration/board/update!_spec.rb +31 -0
 - data/spec/integration/board_lists_spec.rb +21 -0
 - data/spec/integration/card/add_and_remove_attachment_spec.rb +45 -0
 - data/spec/integration/card/add_and_remove_label_spec.rb +35 -0
 - data/spec/integration/card/add_checklist_spec.rb +32 -0
 - data/spec/integration/card/add_comment_spec.rb +19 -0
 - data/spec/integration/card/add_memeber_spec.rb +19 -0
 - data/spec/integration/card/associations/actions_spec.rb +17 -0
 - data/spec/integration/card/associations/attachments_spec.rb +18 -0
 - data/spec/integration/card/associations/board_spec.rb +17 -0
 - data/spec/integration/card/associations/check_item_states_spec.rb +17 -0
 - data/spec/integration/card/associations/checklists_spec.rb +18 -0
 - data/spec/integration/card/associations/comments_spec.rb +19 -0
 - data/spec/integration/card/associations/cover_image_spec.rb +18 -0
 - data/spec/integration/card/associations/custom_field_items_spec.rb +18 -0
 - data/spec/integration/card/associations/list_spec.rb +16 -0
 - data/spec/integration/card/associations/members_spec.rb +18 -0
 - data/spec/integration/card/associations/plugin_data_spec.rb +18 -0
 - data/spec/integration/card/associations/voters_spec.rb +17 -0
 - data/spec/integration/card/close!_spec.rb +16 -0
 - data/spec/integration/card/create_new_check_list_spec.rb +19 -0
 - data/spec/integration/card/create_spec.rb +50 -0
 - data/spec/integration/card/delete_spec.rb +16 -0
 - data/spec/integration/card/find_spec.rb +67 -0
 - data/spec/integration/card/move_to_board_spec.rb +36 -0
 - data/spec/integration/card/move_to_list_spec.rb +20 -0
 - data/spec/integration/card/remove_member_spec.rb +19 -0
 - data/spec/integration/card/save_spec.rb +61 -0
 - data/spec/integration/card/update!_spec.rb +53 -0
 - data/spec/integration/card/vote_spec.rb +50 -0
 - data/spec/integration/custom_field_item_spec.rb +47 -0
 - data/spec/item_spec.rb +20 -0
 - data/spec/label_spec.rb +99 -0
 - data/spec/list_spec.rb +21 -0
 - data/spec/member_spec.rb +23 -0
 - data/spec/notification_spec.rb +21 -0
 - data/spec/organization_spec.rb +26 -0
 - data/spec/spec_helper.rb +96 -23
 - data/spec/token_spec.rb +19 -0
 - data/spec/unit/trello/association_builder/has_many_spec.rb +36 -0
 - data/spec/unit/trello/association_builder/has_one_spec.rb +36 -0
 - data/spec/unit/trello/association_fetcher/has_many/fetch_spec.rb +38 -0
 - data/spec/unit/trello/association_fetcher/has_many/params_spec.rb +107 -0
 - data/spec/unit/trello/association_fetcher/has_many_spec.rb +50 -0
 - data/spec/unit/trello/association_fetcher/has_one/fetch_spec.rb +51 -0
 - data/spec/unit/trello/association_fetcher/has_one/params_spec.rb +81 -0
 - data/spec/unit/trello/association_fetcher/has_one_spec.rb +49 -0
 - data/spec/unit/trello/association_infer_tool_spec.rb +41 -0
 - data/spec/unit/trello/basic_data_spec.rb +54 -0
 - data/spec/unit/trello/card_spec.rb +103 -0
 - data/spec/webhook_spec.rb +20 -0
 - metadata +224 -30
 
| 
         @@ -0,0 +1,189 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: https://api.trello.com/1/cards/5e946acb3cc40322434c214e?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - "*/*"
         
     | 
| 
      
 12 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - rest-client/2.1.0 (darwin19.2.0 x86_64) ruby/2.6.5p114
         
     | 
| 
      
 14 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 16 
     | 
    
         
            +
                  Host:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  - api.trello.com
         
     | 
| 
      
 18 
     | 
    
         
            +
              response:
         
     | 
| 
      
 19 
     | 
    
         
            +
                status:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 21 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 22 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 23 
     | 
    
         
            +
                  X-Dns-Prefetch-Control:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - 'off'
         
     | 
| 
      
 25 
     | 
    
         
            +
                  X-Frame-Options:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - DENY
         
     | 
| 
      
 27 
     | 
    
         
            +
                  Strict-Transport-Security:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - max-age=15552000; includeSubDomains
         
     | 
| 
      
 29 
     | 
    
         
            +
                  X-Download-Options:
         
     | 
| 
      
 30 
     | 
    
         
            +
                  - noopen
         
     | 
| 
      
 31 
     | 
    
         
            +
                  Surrogate-Control:
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - no-store
         
     | 
| 
      
 33 
     | 
    
         
            +
                  X-Content-Type-Options:
         
     | 
| 
      
 34 
     | 
    
         
            +
                  - nosniff
         
     | 
| 
      
 35 
     | 
    
         
            +
                  Referrer-Policy:
         
     | 
| 
      
 36 
     | 
    
         
            +
                  - strict-origin-when-cross-origin
         
     | 
| 
      
 37 
     | 
    
         
            +
                  X-Xss-Protection:
         
     | 
| 
      
 38 
     | 
    
         
            +
                  - 1; mode=block
         
     | 
| 
      
 39 
     | 
    
         
            +
                  X-Trello-Version:
         
     | 
| 
      
 40 
     | 
    
         
            +
                  - 1.2052.0
         
     | 
| 
      
 41 
     | 
    
         
            +
                  X-Trello-Environment:
         
     | 
| 
      
 42 
     | 
    
         
            +
                  - Production
         
     | 
| 
      
 43 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 44 
     | 
    
         
            +
                  - "*"
         
     | 
| 
      
 45 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - GET, PUT, POST, DELETE
         
     | 
| 
      
 47 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 48 
     | 
    
         
            +
                  - Authorization, Accept, Content-Type
         
     | 
| 
      
 49 
     | 
    
         
            +
                  Access-Control-Expose-Headers:
         
     | 
| 
      
 50 
     | 
    
         
            +
                  - x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
         
     | 
| 
      
 51 
     | 
    
         
            +
                    x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
         
     | 
| 
      
 52 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Interval-Ms:
         
     | 
| 
      
 53 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 54 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Max:
         
     | 
| 
      
 55 
     | 
    
         
            +
                  - '300'
         
     | 
| 
      
 56 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Remaining:
         
     | 
| 
      
 57 
     | 
    
         
            +
                  - '299'
         
     | 
| 
      
 58 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Interval-Ms:
         
     | 
| 
      
 59 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 60 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Max:
         
     | 
| 
      
 61 
     | 
    
         
            +
                  - '100'
         
     | 
| 
      
 62 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Remaining:
         
     | 
| 
      
 63 
     | 
    
         
            +
                  - '99'
         
     | 
| 
      
 64 
     | 
    
         
            +
                  X-Rate-Limit-Member-Interval-Ms:
         
     | 
| 
      
 65 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 66 
     | 
    
         
            +
                  X-Rate-Limit-Member-Max:
         
     | 
| 
      
 67 
     | 
    
         
            +
                  - '200'
         
     | 
| 
      
 68 
     | 
    
         
            +
                  X-Rate-Limit-Member-Remaining:
         
     | 
| 
      
 69 
     | 
    
         
            +
                  - '199'
         
     | 
| 
      
 70 
     | 
    
         
            +
                  X-Server-Time:
         
     | 
| 
      
 71 
     | 
    
         
            +
                  - '1586785263289'
         
     | 
| 
      
 72 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 73 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 74 
     | 
    
         
            +
                  Vary:
         
     | 
| 
      
 75 
     | 
    
         
            +
                  - Accept-Encoding
         
     | 
| 
      
 76 
     | 
    
         
            +
                  Expires:
         
     | 
| 
      
 77 
     | 
    
         
            +
                  - Mon, 13 Apr 2020 13:41:03 GMT
         
     | 
| 
      
 78 
     | 
    
         
            +
                  Cache-Control:
         
     | 
| 
      
 79 
     | 
    
         
            +
                  - max-age=0, no-cache, no-store
         
     | 
| 
      
 80 
     | 
    
         
            +
                  Pragma:
         
     | 
| 
      
 81 
     | 
    
         
            +
                  - no-cache
         
     | 
| 
      
 82 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 83 
     | 
    
         
            +
                  - Mon, 13 Apr 2020 13:41:03 GMT
         
     | 
| 
      
 84 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 85 
     | 
    
         
            +
                  - '998'
         
     | 
| 
      
 86 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 87 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 88 
     | 
    
         
            +
                  Set-Cookie:
         
     | 
| 
      
 89 
     | 
    
         
            +
                  - dsc=set_cookie_dsc; Path=/; Expires=Thu, 16 Apr 2020 13:41:03 GMT; Secure
         
     | 
| 
      
 90 
     | 
    
         
            +
                body:
         
     | 
| 
      
 91 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 92 
     | 
    
         
            +
                  string: '{"id":"5e946acb3cc40322434c214e","checkItemStates":[],"closed":false,"dateLastActivity":"2020-04-13T13:36:11.945Z","desc":"","descData":null,"dueReminder":null,"idBoard":"5e93ba403f1ab3603ba81a09","idList":"5e93ba4fe51ee2602ec671af","idMembersVoted":[],"idShort":2,"idAttachmentCover":null,"idLabels":[],"manualCoverAttachment":false,"name":"C2","pos":131071,"shortLink":"JyFUXwxF","isTemplate":false,"dueComplete":false,"due":null,"email":null,"labels":[],"shortUrl":"https://trello.com/c/JyFUXwxF","url":"https://trello.com/c/JyFUXwxF/2-c2","cover":{"idAttachment":null,"color":null,"idUploadedBackground":null,"size":"normal","brightness":"light"},"idMembers":[],"badges":{"attachmentsByType":{"trello":{"board":0,"card":0}},"location":false,"votes":0,"viewingMemberVoted":false,"subscribed":false,"fogbugz":"","checkItems":0,"checkItemsChecked":0,"checkItemsEarliestDue":null,"comments":0,"attachments":0,"description":false,"due":null,"dueComplete":false},"subscribed":false,"idChecklists":[]}'
         
     | 
| 
      
 93 
     | 
    
         
            +
                http_version: null
         
     | 
| 
      
 94 
     | 
    
         
            +
              recorded_at: Mon, 13 Apr 2020 13:41:03 GMT
         
     | 
| 
      
 95 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 96 
     | 
    
         
            +
                method: put
         
     | 
| 
      
 97 
     | 
    
         
            +
                uri: https://api.trello.com/1/cards/5e946acb3cc40322434c214e?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
         
     | 
| 
      
 98 
     | 
    
         
            +
                body:
         
     | 
| 
      
 99 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 100 
     | 
    
         
            +
                  string: name=C2-changed
         
     | 
| 
      
 101 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 102 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 103 
     | 
    
         
            +
                  - "*/*"
         
     | 
| 
      
 104 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 105 
     | 
    
         
            +
                  - rest-client/2.1.0 (darwin19.2.0 x86_64) ruby/2.6.5p114
         
     | 
| 
      
 106 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 107 
     | 
    
         
            +
                  - '15'
         
     | 
| 
      
 108 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 109 
     | 
    
         
            +
                  - application/x-www-form-urlencoded
         
     | 
| 
      
 110 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 111 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 112 
     | 
    
         
            +
                  Host:
         
     | 
| 
      
 113 
     | 
    
         
            +
                  - api.trello.com
         
     | 
| 
      
 114 
     | 
    
         
            +
              response:
         
     | 
| 
      
 115 
     | 
    
         
            +
                status:
         
     | 
| 
      
 116 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 117 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 118 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 119 
     | 
    
         
            +
                  X-Dns-Prefetch-Control:
         
     | 
| 
      
 120 
     | 
    
         
            +
                  - 'off'
         
     | 
| 
      
 121 
     | 
    
         
            +
                  X-Frame-Options:
         
     | 
| 
      
 122 
     | 
    
         
            +
                  - DENY
         
     | 
| 
      
 123 
     | 
    
         
            +
                  Strict-Transport-Security:
         
     | 
| 
      
 124 
     | 
    
         
            +
                  - max-age=15552000; includeSubDomains
         
     | 
| 
      
 125 
     | 
    
         
            +
                  X-Download-Options:
         
     | 
| 
      
 126 
     | 
    
         
            +
                  - noopen
         
     | 
| 
      
 127 
     | 
    
         
            +
                  Surrogate-Control:
         
     | 
| 
      
 128 
     | 
    
         
            +
                  - no-store
         
     | 
| 
      
 129 
     | 
    
         
            +
                  X-Content-Type-Options:
         
     | 
| 
      
 130 
     | 
    
         
            +
                  - nosniff
         
     | 
| 
      
 131 
     | 
    
         
            +
                  Referrer-Policy:
         
     | 
| 
      
 132 
     | 
    
         
            +
                  - strict-origin-when-cross-origin
         
     | 
| 
      
 133 
     | 
    
         
            +
                  X-Xss-Protection:
         
     | 
| 
      
 134 
     | 
    
         
            +
                  - 1; mode=block
         
     | 
| 
      
 135 
     | 
    
         
            +
                  X-Trello-Version:
         
     | 
| 
      
 136 
     | 
    
         
            +
                  - 1.2052.0
         
     | 
| 
      
 137 
     | 
    
         
            +
                  X-Trello-Environment:
         
     | 
| 
      
 138 
     | 
    
         
            +
                  - Production
         
     | 
| 
      
 139 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 140 
     | 
    
         
            +
                  - "*"
         
     | 
| 
      
 141 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 142 
     | 
    
         
            +
                  - GET, PUT, POST, DELETE
         
     | 
| 
      
 143 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 144 
     | 
    
         
            +
                  - Authorization, Accept, Content-Type
         
     | 
| 
      
 145 
     | 
    
         
            +
                  Access-Control-Expose-Headers:
         
     | 
| 
      
 146 
     | 
    
         
            +
                  - x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
         
     | 
| 
      
 147 
     | 
    
         
            +
                    x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
         
     | 
| 
      
 148 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Interval-Ms:
         
     | 
| 
      
 149 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 150 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Max:
         
     | 
| 
      
 151 
     | 
    
         
            +
                  - '300'
         
     | 
| 
      
 152 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Remaining:
         
     | 
| 
      
 153 
     | 
    
         
            +
                  - '298'
         
     | 
| 
      
 154 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Interval-Ms:
         
     | 
| 
      
 155 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 156 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Max:
         
     | 
| 
      
 157 
     | 
    
         
            +
                  - '100'
         
     | 
| 
      
 158 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Remaining:
         
     | 
| 
      
 159 
     | 
    
         
            +
                  - '98'
         
     | 
| 
      
 160 
     | 
    
         
            +
                  X-Rate-Limit-Member-Interval-Ms:
         
     | 
| 
      
 161 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 162 
     | 
    
         
            +
                  X-Rate-Limit-Member-Max:
         
     | 
| 
      
 163 
     | 
    
         
            +
                  - '200'
         
     | 
| 
      
 164 
     | 
    
         
            +
                  X-Rate-Limit-Member-Remaining:
         
     | 
| 
      
 165 
     | 
    
         
            +
                  - '198'
         
     | 
| 
      
 166 
     | 
    
         
            +
                  X-Server-Time:
         
     | 
| 
      
 167 
     | 
    
         
            +
                  - '1586785264465'
         
     | 
| 
      
 168 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 169 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 170 
     | 
    
         
            +
                  Vary:
         
     | 
| 
      
 171 
     | 
    
         
            +
                  - Accept-Encoding
         
     | 
| 
      
 172 
     | 
    
         
            +
                  Expires:
         
     | 
| 
      
 173 
     | 
    
         
            +
                  - Mon, 13 Apr 2020 13:41:04 GMT
         
     | 
| 
      
 174 
     | 
    
         
            +
                  Cache-Control:
         
     | 
| 
      
 175 
     | 
    
         
            +
                  - max-age=0, no-cache, no-store
         
     | 
| 
      
 176 
     | 
    
         
            +
                  Pragma:
         
     | 
| 
      
 177 
     | 
    
         
            +
                  - no-cache
         
     | 
| 
      
 178 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 179 
     | 
    
         
            +
                  - Mon, 13 Apr 2020 13:41:04 GMT
         
     | 
| 
      
 180 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 181 
     | 
    
         
            +
                  - '1014'
         
     | 
| 
      
 182 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 183 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 184 
     | 
    
         
            +
                body:
         
     | 
| 
      
 185 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 186 
     | 
    
         
            +
                  string: '{"id":"5e946acb3cc40322434c214e","checkItemStates":[],"closed":false,"dateLastActivity":"2020-04-13T13:41:04.107Z","desc":"","descData":null,"dueReminder":null,"idBoard":"5e93ba403f1ab3603ba81a09","idList":"5e93ba4fe51ee2602ec671af","idMembersVoted":[],"idShort":2,"idAttachmentCover":null,"idLabels":[],"manualCoverAttachment":false,"name":"C2-changed","pos":131071,"shortLink":"JyFUXwxF","isTemplate":false,"dueComplete":false,"due":null,"email":null,"labels":[],"shortUrl":"https://trello.com/c/JyFUXwxF","url":"https://trello.com/c/JyFUXwxF/2-c2-changed","cover":{"idAttachment":null,"color":null,"idUploadedBackground":null,"size":"normal","brightness":"light"},"idMembers":[],"badges":{"attachmentsByType":{"trello":{"board":0,"card":0}},"location":false,"votes":0,"viewingMemberVoted":false,"subscribed":false,"fogbugz":"","checkItems":0,"checkItemsChecked":0,"checkItemsEarliestDue":null,"comments":0,"attachments":0,"description":false,"due":null,"dueComplete":false},"subscribed":false,"idChecklists":[]}'
         
     | 
| 
      
 187 
     | 
    
         
            +
                http_version: null
         
     | 
| 
      
 188 
     | 
    
         
            +
              recorded_at: Mon, 13 Apr 2020 13:41:04 GMT
         
     | 
| 
      
 189 
     | 
    
         
            +
            recorded_with: VCR 5.1.0
         
     | 
| 
         @@ -0,0 +1,283 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: https://api.trello.com/1/boards/5e93ba403f1ab3603ba81a09?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - "*/*"
         
     | 
| 
      
 12 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
         
     | 
| 
      
 14 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 16 
     | 
    
         
            +
                  Host:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  - api.trello.com
         
     | 
| 
      
 18 
     | 
    
         
            +
              response:
         
     | 
| 
      
 19 
     | 
    
         
            +
                status:
         
     | 
| 
      
 20 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 21 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 22 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 23 
     | 
    
         
            +
                  X-Dns-Prefetch-Control:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - 'off'
         
     | 
| 
      
 25 
     | 
    
         
            +
                  X-Frame-Options:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - DENY
         
     | 
| 
      
 27 
     | 
    
         
            +
                  Strict-Transport-Security:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - max-age=15552000; includeSubDomains
         
     | 
| 
      
 29 
     | 
    
         
            +
                  X-Download-Options:
         
     | 
| 
      
 30 
     | 
    
         
            +
                  - noopen
         
     | 
| 
      
 31 
     | 
    
         
            +
                  Surrogate-Control:
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - no-store
         
     | 
| 
      
 33 
     | 
    
         
            +
                  X-Content-Type-Options:
         
     | 
| 
      
 34 
     | 
    
         
            +
                  - nosniff
         
     | 
| 
      
 35 
     | 
    
         
            +
                  Referrer-Policy:
         
     | 
| 
      
 36 
     | 
    
         
            +
                  - strict-origin-when-cross-origin
         
     | 
| 
      
 37 
     | 
    
         
            +
                  X-Xss-Protection:
         
     | 
| 
      
 38 
     | 
    
         
            +
                  - 1; mode=block
         
     | 
| 
      
 39 
     | 
    
         
            +
                  X-Trello-Version:
         
     | 
| 
      
 40 
     | 
    
         
            +
                  - 1.2083.0
         
     | 
| 
      
 41 
     | 
    
         
            +
                  X-Trello-Environment:
         
     | 
| 
      
 42 
     | 
    
         
            +
                  - Production
         
     | 
| 
      
 43 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 44 
     | 
    
         
            +
                  - "*"
         
     | 
| 
      
 45 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - GET, PUT, POST, DELETE
         
     | 
| 
      
 47 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 48 
     | 
    
         
            +
                  - Authorization, Accept, Content-Type
         
     | 
| 
      
 49 
     | 
    
         
            +
                  Access-Control-Expose-Headers:
         
     | 
| 
      
 50 
     | 
    
         
            +
                  - x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
         
     | 
| 
      
 51 
     | 
    
         
            +
                    x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
         
     | 
| 
      
 52 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Interval-Ms:
         
     | 
| 
      
 53 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 54 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Max:
         
     | 
| 
      
 55 
     | 
    
         
            +
                  - '300'
         
     | 
| 
      
 56 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Remaining:
         
     | 
| 
      
 57 
     | 
    
         
            +
                  - '299'
         
     | 
| 
      
 58 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Interval-Ms:
         
     | 
| 
      
 59 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 60 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Max:
         
     | 
| 
      
 61 
     | 
    
         
            +
                  - '100'
         
     | 
| 
      
 62 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Remaining:
         
     | 
| 
      
 63 
     | 
    
         
            +
                  - '99'
         
     | 
| 
      
 64 
     | 
    
         
            +
                  X-Rate-Limit-Member-Interval-Ms:
         
     | 
| 
      
 65 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 66 
     | 
    
         
            +
                  X-Rate-Limit-Member-Max:
         
     | 
| 
      
 67 
     | 
    
         
            +
                  - '200'
         
     | 
| 
      
 68 
     | 
    
         
            +
                  X-Rate-Limit-Member-Remaining:
         
     | 
| 
      
 69 
     | 
    
         
            +
                  - '199'
         
     | 
| 
      
 70 
     | 
    
         
            +
                  X-Server-Time:
         
     | 
| 
      
 71 
     | 
    
         
            +
                  - '1588865472527'
         
     | 
| 
      
 72 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 73 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 74 
     | 
    
         
            +
                  Vary:
         
     | 
| 
      
 75 
     | 
    
         
            +
                  - Accept-Encoding
         
     | 
| 
      
 76 
     | 
    
         
            +
                  Expires:
         
     | 
| 
      
 77 
     | 
    
         
            +
                  - Thu, 07 May 2020 15:31:12 GMT
         
     | 
| 
      
 78 
     | 
    
         
            +
                  Cache-Control:
         
     | 
| 
      
 79 
     | 
    
         
            +
                  - max-age=0, no-cache, no-store
         
     | 
| 
      
 80 
     | 
    
         
            +
                  Pragma:
         
     | 
| 
      
 81 
     | 
    
         
            +
                  - no-cache
         
     | 
| 
      
 82 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 83 
     | 
    
         
            +
                  - Thu, 07 May 2020 15:31:12 GMT
         
     | 
| 
      
 84 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 85 
     | 
    
         
            +
                  - '2611'
         
     | 
| 
      
 86 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 87 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 88 
     | 
    
         
            +
                  Set-Cookie:
         
     | 
| 
      
 89 
     | 
    
         
            +
                  - dsc=set_cookie_dsc; Path=/; Expires=Sun, 10 May 2020 15:31:12 GMT; Secure
         
     | 
| 
      
 90 
     | 
    
         
            +
                body:
         
     | 
| 
      
 91 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 92 
     | 
    
         
            +
                  string: '{"id":"5e93ba403f1ab3603ba81a09","name":"IT 1","desc":"","descData":{"emoji":{}},"closed":true,"idOrganization":"5e93ba154634282b6df23bcc","idEnterprise":null,"pinned":false,"url":"https://trello.com/b/0zx7ive1/it-1","shortUrl":"https://trello.com/b/0zx7ive1","labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"prefs":{"permissionLevel":"org","hideVotes":false,"voting":"disabled","comments":"members","invitations":"members","selfJoin":true,"cardCovers":true,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"5e92397e6ab226460dadee8e","backgroundImage":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/c7d6b0f6d7ea90a4629be964056c1e3e/photo-1586596436497-8d6f8d1d921f","backgroundImageScaled":[{"width":67,"height":100,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":128,"height":192,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":320,"height":480,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":640,"height":960,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/640x960/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":683,"height":1024,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/683x1024/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":853,"height":1280,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/853x1280/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":1280,"height":1920,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x1920/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":1066,"height":1600,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1066x1600/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":1365,"height":2048,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/c7d6b0f6d7ea90a4629be964056c1e3e/photo-1586596436497-8d6f8d1d921f"}],"backgroundTile":false,"backgroundBrightness":"dark","backgroundBottomColor":"#842fbb","backgroundTopColor":"#c04e37","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true}}'
         
     | 
| 
      
 93 
     | 
    
         
            +
                http_version: null
         
     | 
| 
      
 94 
     | 
    
         
            +
              recorded_at: Thu, 07 May 2020 15:31:12 GMT
         
     | 
| 
      
 95 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 96 
     | 
    
         
            +
                method: put
         
     | 
| 
      
 97 
     | 
    
         
            +
                uri: https://api.trello.com/1/boards/5e93ba403f1ab3603ba81a09/?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
         
     | 
| 
      
 98 
     | 
    
         
            +
                body:
         
     | 
| 
      
 99 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 100 
     | 
    
         
            +
                  string: name=IT+1+-+Changed&desc=This+is+a+test+board+called+IT+1&closed=false&pinned=true&idOrganization=5eb427016b5a464a74803f1c&prefs%2FpermissionLevel=org&prefs%2FhideVotes=false&prefs%2Fvoting=disabled&prefs%2Fcomments=members&prefs%2Finvitations=members&prefs%2FselfJoin=true&prefs%2FcardCovers=true&prefs%2FisTemplate=false&prefs%2FcardAging=regular&prefs%2FcalendarFeedEnabled=false&prefs%2Fbackground=5e92397e6ab226460dadee8e&prefs%2FbackgroundImage=https%3A%2F%2Ftrello-backgrounds.s3.amazonaws.com%2FSharedBackground%2Foriginal%2Fc7d6b0f6d7ea90a4629be964056c1e3e%2Fphoto-1586596436497-8d6f8d1d921f&prefs%2FbackgroundImageScaled[][width]=67&prefs%2FbackgroundImageScaled[][height]=100&prefs%2FbackgroundImageScaled[][url]=https%3A%2F%2Ftrello-backgrounds.s3.amazonaws.com%2FSharedBackground%2F67x100%2F44097ec60dd1549b6b98bf64d0e86eae%2Fphoto-1586596436497-8d6f8d1d921f.jpg&prefs%2FbackgroundImageScaled[][width]=128&prefs%2FbackgroundImageScaled[][height]=192&prefs%2FbackgroundImageScaled[][url]=https%3A%2F%2Ftrello-backgrounds.s3.amazonaws.com%2FSharedBackground%2F128x192%2F44097ec60dd1549b6b98bf64d0e86eae%2Fphoto-1586596436497-8d6f8d1d921f.jpg&prefs%2FbackgroundImageScaled[][width]=320&prefs%2FbackgroundImageScaled[][height]=480&prefs%2FbackgroundImageScaled[][url]=https%3A%2F%2Ftrello-backgrounds.s3.amazonaws.com%2FSharedBackground%2F320x480%2F44097ec60dd1549b6b98bf64d0e86eae%2Fphoto-1586596436497-8d6f8d1d921f.jpg&prefs%2FbackgroundImageScaled[][width]=640&prefs%2FbackgroundImageScaled[][height]=960&prefs%2FbackgroundImageScaled[][url]=https%3A%2F%2Ftrello-backgrounds.s3.amazonaws.com%2FSharedBackground%2F640x960%2F44097ec60dd1549b6b98bf64d0e86eae%2Fphoto-1586596436497-8d6f8d1d921f.jpg&prefs%2FbackgroundImageScaled[][width]=683&prefs%2FbackgroundImageScaled[][height]=1024&prefs%2FbackgroundImageScaled[][url]=https%3A%2F%2Ftrello-backgrounds.s3.amazonaws.com%2FSharedBackground%2F683x1024%2F44097ec60dd1549b6b98bf64d0e86eae%2Fphoto-1586596436497-8d6f8d1d921f.jpg&prefs%2FbackgroundImageScaled[][width]=853&prefs%2FbackgroundImageScaled[][height]=1280&prefs%2FbackgroundImageScaled[][url]=https%3A%2F%2Ftrello-backgrounds.s3.amazonaws.com%2FSharedBackground%2F853x1280%2F44097ec60dd1549b6b98bf64d0e86eae%2Fphoto-1586596436497-8d6f8d1d921f.jpg&prefs%2FbackgroundImageScaled[][width]=1280&prefs%2FbackgroundImageScaled[][height]=1920&prefs%2FbackgroundImageScaled[][url]=https%3A%2F%2Ftrello-backgrounds.s3.amazonaws.com%2FSharedBackground%2F1280x1920%2F44097ec60dd1549b6b98bf64d0e86eae%2Fphoto-1586596436497-8d6f8d1d921f.jpg&prefs%2FbackgroundImageScaled[][width]=1066&prefs%2FbackgroundImageScaled[][height]=1600&prefs%2FbackgroundImageScaled[][url]=https%3A%2F%2Ftrello-backgrounds.s3.amazonaws.com%2FSharedBackground%2F1066x1600%2F44097ec60dd1549b6b98bf64d0e86eae%2Fphoto-1586596436497-8d6f8d1d921f.jpg&prefs%2FbackgroundImageScaled[][width]=1365&prefs%2FbackgroundImageScaled[][height]=2048&prefs%2FbackgroundImageScaled[][url]=https%3A%2F%2Ftrello-backgrounds.s3.amazonaws.com%2FSharedBackground%2Foriginal%2Fc7d6b0f6d7ea90a4629be964056c1e3e%2Fphoto-1586596436497-8d6f8d1d921f&prefs%2FbackgroundTile=false&prefs%2FbackgroundBrightness=dark&prefs%2FbackgroundBottomColor=%23842fbb&prefs%2FbackgroundTopColor=%23c04e37&prefs%2FcanBePublic=true&prefs%2FcanBeEnterprise=true&prefs%2FcanBeOrg=true&prefs%2FcanBePrivate=true&prefs%2FcanInvite=true
         
     | 
| 
      
 101 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 102 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 103 
     | 
    
         
            +
                  - "*/*"
         
     | 
| 
      
 104 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 105 
     | 
    
         
            +
                  - rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
         
     | 
| 
      
 106 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 107 
     | 
    
         
            +
                  - '3367'
         
     | 
| 
      
 108 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 109 
     | 
    
         
            +
                  - application/x-www-form-urlencoded
         
     | 
| 
      
 110 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 111 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 112 
     | 
    
         
            +
                  Host:
         
     | 
| 
      
 113 
     | 
    
         
            +
                  - api.trello.com
         
     | 
| 
      
 114 
     | 
    
         
            +
              response:
         
     | 
| 
      
 115 
     | 
    
         
            +
                status:
         
     | 
| 
      
 116 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 117 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 118 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 119 
     | 
    
         
            +
                  X-Dns-Prefetch-Control:
         
     | 
| 
      
 120 
     | 
    
         
            +
                  - 'off'
         
     | 
| 
      
 121 
     | 
    
         
            +
                  X-Frame-Options:
         
     | 
| 
      
 122 
     | 
    
         
            +
                  - DENY
         
     | 
| 
      
 123 
     | 
    
         
            +
                  Strict-Transport-Security:
         
     | 
| 
      
 124 
     | 
    
         
            +
                  - max-age=15552000; includeSubDomains
         
     | 
| 
      
 125 
     | 
    
         
            +
                  X-Download-Options:
         
     | 
| 
      
 126 
     | 
    
         
            +
                  - noopen
         
     | 
| 
      
 127 
     | 
    
         
            +
                  Surrogate-Control:
         
     | 
| 
      
 128 
     | 
    
         
            +
                  - no-store
         
     | 
| 
      
 129 
     | 
    
         
            +
                  X-Content-Type-Options:
         
     | 
| 
      
 130 
     | 
    
         
            +
                  - nosniff
         
     | 
| 
      
 131 
     | 
    
         
            +
                  Referrer-Policy:
         
     | 
| 
      
 132 
     | 
    
         
            +
                  - strict-origin-when-cross-origin
         
     | 
| 
      
 133 
     | 
    
         
            +
                  X-Xss-Protection:
         
     | 
| 
      
 134 
     | 
    
         
            +
                  - 1; mode=block
         
     | 
| 
      
 135 
     | 
    
         
            +
                  X-Trello-Version:
         
     | 
| 
      
 136 
     | 
    
         
            +
                  - 1.2083.0
         
     | 
| 
      
 137 
     | 
    
         
            +
                  X-Trello-Environment:
         
     | 
| 
      
 138 
     | 
    
         
            +
                  - Production
         
     | 
| 
      
 139 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 140 
     | 
    
         
            +
                  - "*"
         
     | 
| 
      
 141 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 142 
     | 
    
         
            +
                  - GET, PUT, POST, DELETE
         
     | 
| 
      
 143 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 144 
     | 
    
         
            +
                  - Authorization, Accept, Content-Type
         
     | 
| 
      
 145 
     | 
    
         
            +
                  Access-Control-Expose-Headers:
         
     | 
| 
      
 146 
     | 
    
         
            +
                  - x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
         
     | 
| 
      
 147 
     | 
    
         
            +
                    x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
         
     | 
| 
      
 148 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Interval-Ms:
         
     | 
| 
      
 149 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 150 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Max:
         
     | 
| 
      
 151 
     | 
    
         
            +
                  - '300'
         
     | 
| 
      
 152 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Remaining:
         
     | 
| 
      
 153 
     | 
    
         
            +
                  - '298'
         
     | 
| 
      
 154 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Interval-Ms:
         
     | 
| 
      
 155 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 156 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Max:
         
     | 
| 
      
 157 
     | 
    
         
            +
                  - '100'
         
     | 
| 
      
 158 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Remaining:
         
     | 
| 
      
 159 
     | 
    
         
            +
                  - '98'
         
     | 
| 
      
 160 
     | 
    
         
            +
                  X-Rate-Limit-Member-Interval-Ms:
         
     | 
| 
      
 161 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 162 
     | 
    
         
            +
                  X-Rate-Limit-Member-Max:
         
     | 
| 
      
 163 
     | 
    
         
            +
                  - '200'
         
     | 
| 
      
 164 
     | 
    
         
            +
                  X-Rate-Limit-Member-Remaining:
         
     | 
| 
      
 165 
     | 
    
         
            +
                  - '198'
         
     | 
| 
      
 166 
     | 
    
         
            +
                  X-Server-Time:
         
     | 
| 
      
 167 
     | 
    
         
            +
                  - '1588865474112'
         
     | 
| 
      
 168 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 169 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 170 
     | 
    
         
            +
                  Vary:
         
     | 
| 
      
 171 
     | 
    
         
            +
                  - Accept-Encoding
         
     | 
| 
      
 172 
     | 
    
         
            +
                  Expires:
         
     | 
| 
      
 173 
     | 
    
         
            +
                  - Thu, 07 May 2020 15:31:14 GMT
         
     | 
| 
      
 174 
     | 
    
         
            +
                  Cache-Control:
         
     | 
| 
      
 175 
     | 
    
         
            +
                  - max-age=0, no-cache, no-store
         
     | 
| 
      
 176 
     | 
    
         
            +
                  Pragma:
         
     | 
| 
      
 177 
     | 
    
         
            +
                  - no-cache
         
     | 
| 
      
 178 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 179 
     | 
    
         
            +
                  - Thu, 07 May 2020 15:31:14 GMT
         
     | 
| 
      
 180 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 181 
     | 
    
         
            +
                  - '2662'
         
     | 
| 
      
 182 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 183 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 184 
     | 
    
         
            +
                body:
         
     | 
| 
      
 185 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 186 
     | 
    
         
            +
                  string: '{"id":"5e93ba403f1ab3603ba81a09","name":"IT 1 - Changed","desc":"This
         
     | 
| 
      
 187 
     | 
    
         
            +
                    is a test board called IT 1","descData":{"emoji":{}},"closed":false,"idOrganization":"5eb427016b5a464a74803f1c","idEnterprise":null,"pinned":false,"url":"https://trello.com/b/0zx7ive1/it-1-changed","shortUrl":"https://trello.com/b/0zx7ive1","prefs":{"permissionLevel":"org","hideVotes":false,"voting":"disabled","comments":"members","invitations":"members","selfJoin":true,"cardCovers":true,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"5e92397e6ab226460dadee8e","backgroundImage":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/c7d6b0f6d7ea90a4629be964056c1e3e/photo-1586596436497-8d6f8d1d921f","backgroundImageScaled":[{"width":67,"height":100,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":128,"height":192,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":320,"height":480,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":640,"height":960,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/640x960/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":683,"height":1024,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/683x1024/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":853,"height":1280,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/853x1280/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":1280,"height":1920,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x1920/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":1066,"height":1600,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1066x1600/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":1365,"height":2048,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/c7d6b0f6d7ea90a4629be964056c1e3e/photo-1586596436497-8d6f8d1d921f"}],"backgroundTile":false,"backgroundBrightness":"dark","backgroundBottomColor":"#842fbb","backgroundTopColor":"#c04e37","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true},"labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""}}'
         
     | 
| 
      
 188 
     | 
    
         
            +
                http_version: null
         
     | 
| 
      
 189 
     | 
    
         
            +
              recorded_at: Thu, 07 May 2020 15:31:14 GMT
         
     | 
| 
      
 190 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 191 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 192 
     | 
    
         
            +
                uri: https://api.trello.com/1/boards/5e93ba403f1ab3603ba81a09?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
         
     | 
| 
      
 193 
     | 
    
         
            +
                body:
         
     | 
| 
      
 194 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 195 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 196 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 197 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 198 
     | 
    
         
            +
                  - "*/*"
         
     | 
| 
      
 199 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 200 
     | 
    
         
            +
                  - rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
         
     | 
| 
      
 201 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 202 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 203 
     | 
    
         
            +
                  Host:
         
     | 
| 
      
 204 
     | 
    
         
            +
                  - api.trello.com
         
     | 
| 
      
 205 
     | 
    
         
            +
              response:
         
     | 
| 
      
 206 
     | 
    
         
            +
                status:
         
     | 
| 
      
 207 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 208 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 209 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 210 
     | 
    
         
            +
                  X-Dns-Prefetch-Control:
         
     | 
| 
      
 211 
     | 
    
         
            +
                  - 'off'
         
     | 
| 
      
 212 
     | 
    
         
            +
                  X-Frame-Options:
         
     | 
| 
      
 213 
     | 
    
         
            +
                  - DENY
         
     | 
| 
      
 214 
     | 
    
         
            +
                  Strict-Transport-Security:
         
     | 
| 
      
 215 
     | 
    
         
            +
                  - max-age=15552000; includeSubDomains
         
     | 
| 
      
 216 
     | 
    
         
            +
                  X-Download-Options:
         
     | 
| 
      
 217 
     | 
    
         
            +
                  - noopen
         
     | 
| 
      
 218 
     | 
    
         
            +
                  Surrogate-Control:
         
     | 
| 
      
 219 
     | 
    
         
            +
                  - no-store
         
     | 
| 
      
 220 
     | 
    
         
            +
                  X-Content-Type-Options:
         
     | 
| 
      
 221 
     | 
    
         
            +
                  - nosniff
         
     | 
| 
      
 222 
     | 
    
         
            +
                  Referrer-Policy:
         
     | 
| 
      
 223 
     | 
    
         
            +
                  - strict-origin-when-cross-origin
         
     | 
| 
      
 224 
     | 
    
         
            +
                  X-Xss-Protection:
         
     | 
| 
      
 225 
     | 
    
         
            +
                  - 1; mode=block
         
     | 
| 
      
 226 
     | 
    
         
            +
                  X-Trello-Version:
         
     | 
| 
      
 227 
     | 
    
         
            +
                  - 1.2083.0
         
     | 
| 
      
 228 
     | 
    
         
            +
                  X-Trello-Environment:
         
     | 
| 
      
 229 
     | 
    
         
            +
                  - Production
         
     | 
| 
      
 230 
     | 
    
         
            +
                  Access-Control-Allow-Origin:
         
     | 
| 
      
 231 
     | 
    
         
            +
                  - "*"
         
     | 
| 
      
 232 
     | 
    
         
            +
                  Access-Control-Allow-Methods:
         
     | 
| 
      
 233 
     | 
    
         
            +
                  - GET, PUT, POST, DELETE
         
     | 
| 
      
 234 
     | 
    
         
            +
                  Access-Control-Allow-Headers:
         
     | 
| 
      
 235 
     | 
    
         
            +
                  - Authorization, Accept, Content-Type
         
     | 
| 
      
 236 
     | 
    
         
            +
                  Access-Control-Expose-Headers:
         
     | 
| 
      
 237 
     | 
    
         
            +
                  - x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
         
     | 
| 
      
 238 
     | 
    
         
            +
                    x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
         
     | 
| 
      
 239 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Interval-Ms:
         
     | 
| 
      
 240 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 241 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Max:
         
     | 
| 
      
 242 
     | 
    
         
            +
                  - '300'
         
     | 
| 
      
 243 
     | 
    
         
            +
                  X-Rate-Limit-Api-Key-Remaining:
         
     | 
| 
      
 244 
     | 
    
         
            +
                  - '297'
         
     | 
| 
      
 245 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Interval-Ms:
         
     | 
| 
      
 246 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 247 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Max:
         
     | 
| 
      
 248 
     | 
    
         
            +
                  - '100'
         
     | 
| 
      
 249 
     | 
    
         
            +
                  X-Rate-Limit-Api-Token-Remaining:
         
     | 
| 
      
 250 
     | 
    
         
            +
                  - '97'
         
     | 
| 
      
 251 
     | 
    
         
            +
                  X-Rate-Limit-Member-Interval-Ms:
         
     | 
| 
      
 252 
     | 
    
         
            +
                  - '10000'
         
     | 
| 
      
 253 
     | 
    
         
            +
                  X-Rate-Limit-Member-Max:
         
     | 
| 
      
 254 
     | 
    
         
            +
                  - '200'
         
     | 
| 
      
 255 
     | 
    
         
            +
                  X-Rate-Limit-Member-Remaining:
         
     | 
| 
      
 256 
     | 
    
         
            +
                  - '196'
         
     | 
| 
      
 257 
     | 
    
         
            +
                  X-Server-Time:
         
     | 
| 
      
 258 
     | 
    
         
            +
                  - '1588865475248'
         
     | 
| 
      
 259 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 260 
     | 
    
         
            +
                  - application/json; charset=utf-8
         
     | 
| 
      
 261 
     | 
    
         
            +
                  Vary:
         
     | 
| 
      
 262 
     | 
    
         
            +
                  - Accept-Encoding
         
     | 
| 
      
 263 
     | 
    
         
            +
                  Expires:
         
     | 
| 
      
 264 
     | 
    
         
            +
                  - Thu, 07 May 2020 15:31:15 GMT
         
     | 
| 
      
 265 
     | 
    
         
            +
                  Cache-Control:
         
     | 
| 
      
 266 
     | 
    
         
            +
                  - max-age=0, no-cache, no-store
         
     | 
| 
      
 267 
     | 
    
         
            +
                  Pragma:
         
     | 
| 
      
 268 
     | 
    
         
            +
                  - no-cache
         
     | 
| 
      
 269 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 270 
     | 
    
         
            +
                  - Thu, 07 May 2020 15:31:15 GMT
         
     | 
| 
      
 271 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 272 
     | 
    
         
            +
                  - '2662'
         
     | 
| 
      
 273 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 274 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
      
 275 
     | 
    
         
            +
                  Set-Cookie:
         
     | 
| 
      
 276 
     | 
    
         
            +
                  - dsc=set_cookie_dsc; Path=/; Expires=Sun, 10 May 2020 15:31:15 GMT; Secure
         
     | 
| 
      
 277 
     | 
    
         
            +
                body:
         
     | 
| 
      
 278 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 279 
     | 
    
         
            +
                  string: '{"id":"5e93ba403f1ab3603ba81a09","name":"IT 1 - Changed","desc":"This
         
     | 
| 
      
 280 
     | 
    
         
            +
                    is a test board called IT 1","descData":{"emoji":{}},"closed":false,"idOrganization":"5eb427016b5a464a74803f1c","idEnterprise":null,"pinned":false,"url":"https://trello.com/b/0zx7ive1/it-1-changed","shortUrl":"https://trello.com/b/0zx7ive1","labelNames":{"green":"","yellow":"","orange":"","red":"","purple":"","blue":"","sky":"","lime":"","pink":"","black":""},"prefs":{"permissionLevel":"org","hideVotes":false,"voting":"disabled","comments":"members","invitations":"members","selfJoin":true,"cardCovers":true,"isTemplate":false,"cardAging":"regular","calendarFeedEnabled":false,"background":"5e92397e6ab226460dadee8e","backgroundImage":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/c7d6b0f6d7ea90a4629be964056c1e3e/photo-1586596436497-8d6f8d1d921f","backgroundImageScaled":[{"width":67,"height":100,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":128,"height":192,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":320,"height":480,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":640,"height":960,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/640x960/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":683,"height":1024,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/683x1024/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":853,"height":1280,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/853x1280/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":1280,"height":1920,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x1920/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":1066,"height":1600,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1066x1600/44097ec60dd1549b6b98bf64d0e86eae/photo-1586596436497-8d6f8d1d921f.jpg"},{"width":1365,"height":2048,"url":"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/c7d6b0f6d7ea90a4629be964056c1e3e/photo-1586596436497-8d6f8d1d921f"}],"backgroundTile":false,"backgroundBrightness":"dark","backgroundBottomColor":"#842fbb","backgroundTopColor":"#c04e37","canBePublic":true,"canBeEnterprise":true,"canBeOrg":true,"canBePrivate":true,"canInvite":true}}'
         
     | 
| 
      
 281 
     | 
    
         
            +
                http_version: null
         
     | 
| 
      
 282 
     | 
    
         
            +
              recorded_at: Thu, 07 May 2020 15:31:15 GMT
         
     | 
| 
      
 283 
     | 
    
         
            +
            recorded_with: VCR 5.1.0
         
     |