tracker_api 1.11.0 → 1.14.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.
Files changed (45) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/ruby-tests.yml +43 -0
  3. data/Gemfile +0 -3
  4. data/LICENSE.txt +17 -18
  5. data/README.md +13 -7
  6. data/gemfiles/faraday-1.gemfile +5 -0
  7. data/gemfiles/faraday-2.gemfile +5 -0
  8. data/lib/tracker_api/client.rb +1 -1
  9. data/lib/tracker_api/endpoints/attachment.rb +3 -1
  10. data/lib/tracker_api/endpoints/comment.rb +15 -5
  11. data/lib/tracker_api/endpoints/comments.rb +10 -5
  12. data/lib/tracker_api/endpoints/review.rb +21 -0
  13. data/lib/tracker_api/file_utility.rb +1 -1
  14. data/lib/tracker_api/logger.rb +1 -1
  15. data/lib/tracker_api/resources/comment.rb +2 -2
  16. data/lib/tracker_api/resources/epic.rb +10 -1
  17. data/lib/tracker_api/resources/pull_request.rb +22 -0
  18. data/lib/tracker_api/resources/review.rb +17 -1
  19. data/lib/tracker_api/resources/story.rb +4 -3
  20. data/lib/tracker_api/version.rb +1 -1
  21. data/lib/tracker_api.rb +4 -2
  22. data/test/comment_test.rb +94 -25
  23. data/test/iteration_test.rb +3 -3
  24. data/test/minitest_helper.rb +2 -2
  25. data/test/review_test.rb +27 -0
  26. data/test/story_test.rb +13 -1
  27. data/test/vcr/cassettes/create_epic_attachments.json +1 -0
  28. data/test/vcr/cassettes/create_epic_comment.json +1 -0
  29. data/test/vcr/cassettes/create_epic_comment_with_attachment.json +1 -0
  30. data/test/vcr/cassettes/create_story_attachments.json +1 -0
  31. data/test/vcr/cassettes/create_story_comment.json +1 -1
  32. data/test/vcr/cassettes/create_story_comment_with_attachment.json +1 -0
  33. data/test/vcr/cassettes/delete_epic_attachments.json +1 -0
  34. data/test/vcr/cassettes/delete_epic_comment.json +1 -0
  35. data/test/vcr/cassettes/delete_story_attachments.json +1 -0
  36. data/test/vcr/cassettes/delete_story_comment.json +1 -0
  37. data/test/vcr/cassettes/get_epic.json +1 -0
  38. data/test/vcr/cassettes/get_epic_comments.json +1 -0
  39. data/test/vcr/cassettes/get_story_with_pull_requests.json +1 -0
  40. data/test/vcr/cassettes/save_epic_comment.json +1 -0
  41. data/test/vcr/cassettes/save_review.json +1 -0
  42. data/test/vcr/cassettes/save_story_comment.json +1 -0
  43. data/tracker_api.gemspec +7 -7
  44. metadata +61 -20
  45. data/.travis.yml +0 -13
@@ -1,8 +1,8 @@
1
1
  #Bundler.require(:test)
2
2
  $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
3
3
 
4
- require 'coveralls'
5
- Coveralls.wear!
4
+ require 'simplecov'
5
+ SimpleCov.start
6
6
 
7
7
  require 'minitest/byebug' if ENV['DEBUG']
8
8
  require 'minitest/autorun'
@@ -0,0 +1,27 @@
1
+ require_relative 'minitest_helper'
2
+
3
+ describe TrackerApi::Resources::Review do
4
+ let(:pt_user) { PT_USER_1 }
5
+ let(:client) { TrackerApi::Client.new token: pt_user[:token] }
6
+ let(:story) do
7
+ TrackerApi::Resources::Story.new(
8
+ client: client,
9
+ project_id: pt_user[:project_id],
10
+ id: '66728004'
11
+ )
12
+ end
13
+ let(:reviews) { VCR.use_cassette('get story reviews') { story.reviews } }
14
+ let(:existing_review) { reviews.first }
15
+
16
+ it 'can update an existing review' do
17
+ new_state = 'pass'
18
+ existing_review.status = new_state
19
+
20
+ VCR.use_cassette('save review', record: :new_episodes) do
21
+ existing_review.save
22
+ end
23
+
24
+ _(existing_review.status).must_equal new_state
25
+ _(existing_review.clean?).must_equal true
26
+ end
27
+ end
data/test/story_test.rb CHANGED
@@ -147,7 +147,7 @@ describe TrackerApi::Resources::Story do
147
147
  owner_ids = story.owner_ids
148
148
 
149
149
  _(owner_ids).wont_be_empty
150
- _(owner_ids.first).must_be_instance_of Fixnum
150
+ _(owner_ids.first).must_be_instance_of Integer
151
151
  end
152
152
  end
153
153
 
@@ -319,4 +319,16 @@ describe TrackerApi::Resources::Story do
319
319
  end
320
320
  end
321
321
  end
322
+
323
+ describe '.pull_requests' do
324
+ it 'gets all pull requests for the story' do
325
+ pull_requests = VCR.use_cassette('get story with pull requests', record: :new_episodes) do
326
+ project.story(story_id, fields: ':default,pull_requests').pull_requests
327
+ end
328
+
329
+ _(pull_requests).wont_be_empty
330
+ pull_request = pull_requests.first
331
+ _(pull_request).must_be_instance_of TrackerApi::Resources::PullRequest
332
+ end
333
+ end
322
334
  end
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/uploads","body":{"encoding":"UTF-8","string":"-------------RubyMultipartPost-68d44c09d71195eaed6488511e72f5e7\r\nContent-Disposition: form-data; name=\"file\"; filename=\"Gemfile\"\r\nContent-Length: 144\r\nContent-Type: \r\nContent-Transfer-Encoding: binary\r\n\r\nsource 'https://rubygems.org'\n\n# Specify your gem's dependencies in tracker_api.gemspec\ngemspec\n\ngem 'coveralls', group: :test, require: false\n\n\r\n-------------RubyMultipartPost-68d44c09d71195eaed6488511e72f5e7--\r\n"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["multipart/form-data; boundary=-----------RubyMultipartPost-68d44c09d71195eaed6488511e72f5e7"],"Content-Length":["417"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["719"],"X-Request-Id":["d3adede0-bc9d-4a99-91bb-dcc7f08cc8c7"],"ETag":["W/\"9db9b707bdd96b935eba8384c75b8c8e\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.296196"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:04 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"file_attachment\",\"id\":109448651,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:22:04Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448651/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":false,\"big_url\":\"#\",\"thumbnail_url\":\"#\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:05 GMT"},{"request":{"method":"put","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194/comments/222404217?fields=%3Adefault%2Cfile_attachments","body":{"encoding":"UTF-8","string":"{\"file_attachment_ids_to_add\":[109448651]}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["720"],"X-Request-Id":["e6dd355a-c0d7-4911-a177-fda6c59fead1"],"ETag":["W/\"367e378fa31ce8e38044ad558cd7f47f\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.329043"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:05 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"file_attachments\":[{\"kind\":\"file_attachment\",\"id\":109448651,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:22:04Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448651/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":false,\"big_url\":\"#\",\"thumbnail_url\":\"#\"}],\"id\":222404217,\"epic_id\":4737194,\"text\":\"Test creating a comment+++\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:25Z\",\"updated_at\":\"2021-03-03T09:22:05Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:06 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194/comments","body":{"encoding":"UTF-8","string":"{\"text\":\"Test creating a comment\"}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["727"],"X-Request-Id":["f2b97d78-d9fc-40cf-8c59-01f3820ab130"],"ETag":["W/\"61de286759b9d4574641e38bf4d1fc55\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.239854"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:13 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"id\":222405254,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:22:13Z\",\"updated_at\":\"2021-03-03T09:22:13Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:13 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194/comments","body":{"encoding":"UTF-8","string":"{\"text\":\"Test creating a comment\"}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["706"],"X-Request-Id":["2d093db7-64cc-41c8-b88b-e82800440fe8"],"ETag":["W/\"b06cece5267bf9a846464fe742923012\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.280273"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:21:52 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"id\":222405242,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:21:51Z\",\"updated_at\":\"2021-03-03T09:21:51Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:21:52 GMT"},{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/uploads","body":{"encoding":"UTF-8","string":"-------------RubyMultipartPost-a9ba6d0341d7bd84677cc7635d5d07db\r\nContent-Disposition: form-data; name=\"file\"; filename=\"Gemfile\"\r\nContent-Length: 144\r\nContent-Type: \r\nContent-Transfer-Encoding: binary\r\n\r\nsource 'https://rubygems.org'\n\n# Specify your gem's dependencies in tracker_api.gemspec\ngemspec\n\ngem 'coveralls', group: :test, require: false\n\n\r\n-------------RubyMultipartPost-a9ba6d0341d7bd84677cc7635d5d07db--\r\n"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["multipart/form-data; boundary=-----------RubyMultipartPost-a9ba6d0341d7bd84677cc7635d5d07db"],"Content-Length":["417"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["706"],"X-Request-Id":["a4a39e88-a313-4551-a111-0d967c6a1af7"],"ETag":["W/\"4adb26c47932d7f47060e322b3bfe48f\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.284803"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:21:52 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"file_attachment\",\"id\":109448641,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:21:52Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448641/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":false,\"big_url\":\"#\",\"thumbnail_url\":\"#\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:21:53 GMT"},{"request":{"method":"put","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194/comments/222405242?fields=%3Adefault%2Cfile_attachments","body":{"encoding":"UTF-8","string":"{\"file_attachment_ids_to_add\":[109448641]}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["707"],"X-Request-Id":["43eee0ee-f1fc-44c2-8107-7eac729e9f03"],"ETag":["W/\"4502153e2248b4f7e04ca52f29b3886c\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.314023"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:21:53 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"file_attachments\":[{\"kind\":\"file_attachment\",\"id\":109448641,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:21:52Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448641/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":false,\"big_url\":\"#\",\"thumbnail_url\":\"#\"}],\"id\":222405242,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:21:51Z\",\"updated_at\":\"2021-03-03T09:21:53Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:21:54 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/uploads","body":{"encoding":"UTF-8","string":"-------------RubyMultipartPost-50f979600b8964f956733f78f7bc9480\r\nContent-Disposition: form-data; name=\"file\"; filename=\"Gemfile\"\r\nContent-Length: 144\r\nContent-Type: \r\nContent-Transfer-Encoding: binary\r\n\r\nsource 'https://rubygems.org'\n\n# Specify your gem's dependencies in tracker_api.gemspec\ngemspec\n\ngem 'coveralls', group: :test, require: false\n\n\r\n-------------RubyMultipartPost-50f979600b8964f956733f78f7bc9480--\r\n"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["multipart/form-data; boundary=-----------RubyMultipartPost-50f979600b8964f956733f78f7bc9480"],"Content-Length":["417"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["715"],"X-Request-Id":["3e13572e-a350-4f48-9e9d-438630877d89"],"ETag":["W/\"b8fd14fc42f1b84ae25e24630baf5eb8\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.327310"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:00 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"file_attachment\",\"id\":109448647,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:22:00Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448647/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":false,\"big_url\":\"#\",\"thumbnail_url\":\"#\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:00 GMT"},{"request":{"method":"put","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004/comments/120836920?fields=%3Adefault%2Cfile_attachments","body":{"encoding":"UTF-8","string":"{\"file_attachment_ids_to_add\":[109448647]}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["716"],"X-Request-Id":["61397dcc-bfd5-41fa-800f-f2ef70cbf7f8"],"ETag":["W/\"908d56753763868890976dbc8cde0ae0\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.212132"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:01 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"file_attachments\":[{\"kind\":\"file_attachment\",\"id\":109448609,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:20:48Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448609/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":true,\"big_url\":\"https://s3.amazonaws.com/prod.tracker2/resource/109448609/Gemfile_big?response-content-disposition=attachment&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJJBSFJ4TCVKKGAIA%2F20210303%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210303T092201Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=602d6c3ffb55fed137df5a731671e979565c1936da6a8822094ae37b97bda738\",\"thumbnail_url\":\"https://s3.amazonaws.com/prod.tracker2/resource/109448609/Gemfile_thumb?response-content-disposition=attachment&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJJBSFJ4TCVKKGAIA%2F20210303%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210303T092201Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=cca9f13c4d8e23adbf8ef7d1d82a182b70b88eb5a990101fc3d0a878d33801c8\"},{\"kind\":\"file_attachment\",\"id\":109448647,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:22:00Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448647/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":false,\"big_url\":\"#\",\"thumbnail_url\":\"#\"}],\"id\":120836920,\"story_id\":66728004,\"text\":\"This is a comment.+++\",\"person_id\":1266314,\"created_at\":\"2015-12-17T22:13:55Z\",\"updated_at\":\"2021-03-03T09:22:00Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:01 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -1 +1 @@
1
- {"http_interactions":[{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728030/comments","body":{"encoding":"UTF-8","string":"{\"text\":\"This is a test comment.\"}"},"headers":{"User-Agent":["Ruby/2.3.1 (x86_64-darwin15; ruby) TrackerApi/1.7.1 Faraday/0.9.2"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":null},"headers":{"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["max-age=0, private, must-revalidate"],"Content-Type":["application/json; charset=utf-8"],"Date":["Wed, 09 Aug 2017 22:02:51 GMT"],"Etag":["\"dda3e3dc085f4c98ff5f20fa92abf0ee\""],"Server":["nginx + Phusion Passenger"],"Status":["200 OK"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-Content-Type-Options":["nosniff"],"X-Powered-By":["Phusion Passenger Enterprise"],"X-Rack-Cache":["invalidate, pass"],"X-Request-Id":["c5ee798d0eaea73fe5df666bf14ca615"],"X-Runtime":["0.286458"],"X-Tracker-Client-Pinger-Interval":["20"],"X-Tracker-Project-Version":["294"],"X-Ua-Compatible":["IE=Edge,chrome=1"],"X-Vcap-Request-Id":["ffae63d3-492f-49db-4eb4-81f7ba85633b"],"X-Xss-Protection":["1; mode=block"],"Content-Length":["178"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"id\":178211829,\"story_id\":66728030,\"text\":\"This is a test comment.\",\"person_id\":1266314,\"created_at\":\"2017-08-09T22:02:51Z\",\"updated_at\":\"2017-08-09T22:02:51Z\"}"},"http_version":null},"recorded_at":"Wed, 09 Aug 2017 22:02:57 GMT"}],"recorded_with":"VCR 2.9.3"}
1
+ {"http_interactions":[{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728030/comments","body":{"encoding":"UTF-8","string":"{\"text\":\"This is a test comment.\"}"},"headers":{"User-Agent":["Ruby/2.3.1 (x86_64-darwin15; ruby) TrackerApi/1.7.1 Faraday/0.9.2"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":null},"headers":{"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Origin":["*"],"Cache-Control":["max-age=0, private, must-revalidate"],"Content-Type":["application/json; charset=utf-8"],"Date":["Wed, 09 Aug 2017 22:02:51 GMT"],"Etag":["\"dda3e3dc085f4c98ff5f20fa92abf0ee\""],"Server":["nginx + Phusion Passenger"],"Status":["200 OK"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-Content-Type-Options":["nosniff"],"X-Powered-By":["Phusion Passenger Enterprise"],"X-Rack-Cache":["invalidate, pass"],"X-Request-Id":["c5ee798d0eaea73fe5df666bf14ca615"],"X-Runtime":["0.286458"],"X-Tracker-Client-Pinger-Interval":["20"],"X-Tracker-Project-Version":["294"],"X-Ua-Compatible":["IE=Edge,chrome=1"],"X-Vcap-Request-Id":["ffae63d3-492f-49db-4eb4-81f7ba85633b"],"X-Xss-Protection":["1; mode=block"],"Content-Length":["178"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"id\":178211829,\"story_id\":66728030,\"text\":\"This is a test comment.\",\"person_id\":1266314,\"created_at\":\"2017-08-09T22:02:51Z\",\"updated_at\":\"2017-08-09T22:02:51Z\"}"}},"recorded_at":"Wed, 09 Aug 2017 22:02:57 GMT"},{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004/comments","body":{"encoding":"UTF-8","string":"{\"text\":\"Test creating a comment\"}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["719"],"X-Request-Id":["f95b7ae5-46f2-4d67-8966-a7c27f5fb9d5"],"ETag":["W/\"03acfd95c9b5962205d2d009efa57477\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.230505"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:04 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"id\":222405249,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:22:04Z\",\"updated_at\":\"2021-03-03T09:22:04Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:04 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004/comments","body":{"encoding":"UTF-8","string":"{\"text\":\"Test creating a comment\"}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["708"],"X-Request-Id":["2943b78d-0160-4545-abb3-e884aebd56b1"],"ETag":["W/\"2b6d2fe7e83fbe3dba91a1fdd02b59c9\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.287914"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:21:54 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"id\":222405243,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:21:54Z\",\"updated_at\":\"2021-03-03T09:21:54Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:21:54 GMT"},{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/uploads","body":{"encoding":"UTF-8","string":"-------------RubyMultipartPost-36e74237a5d382f20b1467a04bc851cc\r\nContent-Disposition: form-data; name=\"file\"; filename=\"Gemfile\"\r\nContent-Length: 144\r\nContent-Type: \r\nContent-Transfer-Encoding: binary\r\n\r\nsource 'https://rubygems.org'\n\n# Specify your gem's dependencies in tracker_api.gemspec\ngemspec\n\ngem 'coveralls', group: :test, require: false\n\n\r\n-------------RubyMultipartPost-36e74237a5d382f20b1467a04bc851cc--\r\n"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["multipart/form-data; boundary=-----------RubyMultipartPost-36e74237a5d382f20b1467a04bc851cc"],"Content-Length":["417"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["708"],"X-Request-Id":["92e99577-00d5-44bf-b070-82c3d3554c5c"],"ETag":["W/\"11a10dc3fc5ecfabb17b709662d288e8\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.303788"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:21:55 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"file_attachment\",\"id\":109448642,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:21:54Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448642/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":false,\"big_url\":\"#\",\"thumbnail_url\":\"#\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:21:55 GMT"},{"request":{"method":"put","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004/comments/222405243?fields=%3Adefault%2Cfile_attachments","body":{"encoding":"UTF-8","string":"{\"file_attachment_ids_to_add\":[109448642]}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["709"],"X-Request-Id":["df6eb1dc-c21a-42b9-8084-3fe764db495e"],"ETag":["W/\"35097db6ceea22733e5e6ad22d99fb1d\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.267745"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:21:55 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"file_attachments\":[{\"kind\":\"file_attachment\",\"id\":109448642,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:21:54Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448642/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":false,\"big_url\":\"#\",\"thumbnail_url\":\"#\"}],\"id\":222405243,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:21:54Z\",\"updated_at\":\"2021-03-03T09:21:55Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:21:56 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/uploads","body":{"encoding":"UTF-8","string":"-------------RubyMultipartPost-4d5f552220f420d2e6ed437c192f5a3b\r\nContent-Disposition: form-data; name=\"file\"; filename=\"Gemfile\"\r\nContent-Length: 144\r\nContent-Type: \r\nContent-Transfer-Encoding: binary\r\n\r\nsource 'https://rubygems.org'\n\n# Specify your gem's dependencies in tracker_api.gemspec\ngemspec\n\ngem 'coveralls', group: :test, require: false\n\n\r\n-------------RubyMultipartPost-4d5f552220f420d2e6ed437c192f5a3b--\r\n"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["multipart/form-data; boundary=-----------RubyMultipartPost-4d5f552220f420d2e6ed437c192f5a3b"],"Content-Length":["417"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["709"],"X-Request-Id":["f42ea809-08ae-40e9-b64e-1c4fd9d621c3"],"ETag":["W/\"92dd1eb0cff0d772a6a7d9884bf9d5fe\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.327241"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:21:56 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"file_attachment\",\"id\":109448644,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:21:56Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448644/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":false,\"big_url\":\"#\",\"thumbnail_url\":\"#\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:21:57 GMT"},{"request":{"method":"put","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194/comments/222404217?fields=%3Adefault%2Cfile_attachments","body":{"encoding":"UTF-8","string":"{\"file_attachment_ids_to_add\":[109448644]}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["711"],"X-Request-Id":["83302b0d-5d27-495b-9b57-f30b409b4aa9"],"ETag":["W/\"bf91738a951c1cb16ea2935a8e802300\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.457676"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:21:57 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"file_attachments\":[{\"kind\":\"file_attachment\",\"id\":109448644,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:21:56Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448644/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":false,\"big_url\":\"#\",\"thumbnail_url\":\"#\"}],\"id\":222404217,\"epic_id\":4737194,\"text\":\"Test creating a comment++\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:25Z\",\"updated_at\":\"2021-03-03T09:21:57Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:21:58 GMT"},{"request":{"method":"put","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194/comments/222404217?fields=%3Adefault%2Cfile_attachments","body":{"encoding":"UTF-8","string":"{\"file_attachment_ids_to_remove\":[109448644]}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["714"],"X-Request-Id":["7b0f9eef-abd8-49df-aac7-590dcf1ac682"],"ETag":["W/\"4348572de552102cc141ebc3451c109e\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.265728"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:21:58 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"file_attachments\":[],\"id\":222404217,\"epic_id\":4737194,\"text\":\"Test creating a comment++\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:25Z\",\"updated_at\":\"2021-03-03T09:21:58Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:21:58 GMT"},{"request":{"method":"get","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194/comments/222404217?fields=file_attachments","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["714"],"X-Request-Id":["90930f19-f27f-48dc-9068-8530fa73ac63"],"ETag":["W/\"029a922a452b88a98e9b8a847bd13964\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.041383"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:21:58 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"file_attachments\":[],\"id\":222404217}"}},"recorded_at":"Wed, 03 Mar 2021 09:21:59 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["723"],"X-Request-Id":["45bbdb1f-7122-4954-83cb-b43787695c83"],"ETag":["W/\"c6f9bd646812ad6dfa7144865f4d2bb1\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.040963"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:09 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"id\":4737194,\"kind\":\"epic\",\"created_at\":\"2021-03-03T08:35:42Z\",\"updated_at\":\"2021-03-03T09:22:05Z\",\"project_id\":1027488,\"name\":\"Test\",\"url\":\"https://www.pivotaltracker.com/epic/show/4737194\",\"label\":{\"id\":22934751,\"project_id\":1027488,\"kind\":\"label\",\"name\":\"test\",\"created_at\":\"2021-03-03T08:35:42Z\",\"updated_at\":\"2021-03-03T08:35:42Z\"}}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:09 GMT"},{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194/comments","body":{"encoding":"UTF-8","string":"{\"text\":\"test comment\"}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["724"],"X-Request-Id":["2d4d3a20-8103-463f-8210-22f2580c8b48"],"ETag":["W/\"aface2b86e06008b58b263bf024cd997\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.263438"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:09 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"id\":222405252,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:22:09Z\",\"updated_at\":\"2021-03-03T09:22:09Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:10 GMT"},{"request":{"method":"get","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194/comments","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["724"],"X-Request-Id":["3cfd87dd-d8a4-4642-8445-16f1c9b4cdfa"],"ETag":["W/\"4006b4780b30360e872e7d96ca1b8c42\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.042088"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:10 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"[{\"kind\":\"comment\",\"id\":222404217,\"epic_id\":4737194,\"text\":\"Test creating a comment+++\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:25Z\",\"updated_at\":\"2021-03-03T09:22:05Z\"},{\"kind\":\"comment\",\"id\":222404225,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:32Z\",\"updated_at\":\"2021-03-03T08:41:32Z\"},{\"kind\":\"comment\",\"id\":222404226,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:32Z\",\"updated_at\":\"2021-03-03T08:41:32Z\"},{\"kind\":\"comment\",\"id\":222404508,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:54:03Z\",\"updated_at\":\"2021-03-03T08:54:03Z\"},{\"kind\":\"comment\",\"id\":222404514,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:54:12Z\",\"updated_at\":\"2021-03-03T08:54:13Z\"},{\"kind\":\"comment\",\"id\":222404515,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:54:14Z\",\"updated_at\":\"2021-03-03T08:54:14Z\"},{\"kind\":\"comment\",\"id\":222404846,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:06Z\",\"updated_at\":\"2021-03-03T09:06:08Z\"},{\"kind\":\"comment\",\"id\":222404848,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:08Z\",\"updated_at\":\"2021-03-03T09:06:08Z\"},{\"kind\":\"comment\",\"id\":222404849,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:09Z\",\"updated_at\":\"2021-03-03T09:06:09Z\"},{\"kind\":\"comment\",\"id\":222404913,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:09:03Z\",\"updated_at\":\"2021-03-03T09:09:03Z\"},{\"kind\":\"comment\",\"id\":222404915,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:09:04Z\",\"updated_at\":\"2021-03-03T09:09:06Z\"},{\"kind\":\"comment\",\"id\":222404917,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:09:07Z\",\"updated_at\":\"2021-03-03T09:09:07Z\"},{\"kind\":\"comment\",\"id\":222404963,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:11:15Z\",\"updated_at\":\"2021-03-03T09:11:15Z\"},{\"kind\":\"comment\",\"id\":222404964,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:11:16Z\",\"updated_at\":\"2021-03-03T09:11:18Z\"},{\"kind\":\"comment\",\"id\":222404972,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:11:21Z\",\"updated_at\":\"2021-03-03T09:11:21Z\"},{\"kind\":\"comment\",\"id\":222405225,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:20:59Z\",\"updated_at\":\"2021-03-03T09:20:59Z\"},{\"kind\":\"comment\",\"id\":222405226,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:20:59Z\",\"updated_at\":\"2021-03-03T09:21:01Z\"},{\"kind\":\"comment\",\"id\":222405242,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:21:51Z\",\"updated_at\":\"2021-03-03T09:21:53Z\"},{\"kind\":\"comment\",\"id\":222405252,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:22:09Z\",\"updated_at\":\"2021-03-03T09:22:09Z\"}]"}},"recorded_at":"Wed, 03 Mar 2021 09:22:10 GMT"},{"request":{"method":"delete","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194/comments/222405252","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Status":["204 No Content"],"Cache-Control":["no-cache"],"X-Tracker-Project-Version":["725"],"X-Request-Id":["99020636-2ad2-4147-b431-7124b1338037"],"X-Runtime":["0.229518"],"X-Frame-Options":["SAMEORIGIN"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:11 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":""}},"recorded_at":"Wed, 03 Mar 2021 09:22:11 GMT"},{"request":{"method":"get","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["725"],"X-Request-Id":["469cf235-7546-488c-b53a-2b4630149ab8"],"ETag":["W/\"19661ca6db631bb21a396a87690619d8\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.041549"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:11 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"id\":4737194,\"kind\":\"epic\",\"created_at\":\"2021-03-03T08:35:42Z\",\"updated_at\":\"2021-03-03T09:22:10Z\",\"project_id\":1027488,\"name\":\"Test\",\"url\":\"https://www.pivotaltracker.com/epic/show/4737194\",\"label\":{\"id\":22934751,\"project_id\":1027488,\"kind\":\"label\",\"name\":\"test\",\"created_at\":\"2021-03-03T08:35:42Z\",\"updated_at\":\"2021-03-03T08:35:42Z\"}}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:11 GMT"},{"request":{"method":"get","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194/comments","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["725"],"X-Request-Id":["ce24d946-8dda-4a07-a418-d7d8f9e2441f"],"ETag":["W/\"6750fe5109663b3084324ebd836b74e0\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.064676"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:12 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"[{\"kind\":\"comment\",\"id\":222404217,\"epic_id\":4737194,\"text\":\"Test creating a comment+++\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:25Z\",\"updated_at\":\"2021-03-03T09:22:05Z\"},{\"kind\":\"comment\",\"id\":222404225,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:32Z\",\"updated_at\":\"2021-03-03T08:41:32Z\"},{\"kind\":\"comment\",\"id\":222404226,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:32Z\",\"updated_at\":\"2021-03-03T08:41:32Z\"},{\"kind\":\"comment\",\"id\":222404508,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:54:03Z\",\"updated_at\":\"2021-03-03T08:54:03Z\"},{\"kind\":\"comment\",\"id\":222404514,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:54:12Z\",\"updated_at\":\"2021-03-03T08:54:13Z\"},{\"kind\":\"comment\",\"id\":222404515,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:54:14Z\",\"updated_at\":\"2021-03-03T08:54:14Z\"},{\"kind\":\"comment\",\"id\":222404846,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:06Z\",\"updated_at\":\"2021-03-03T09:06:08Z\"},{\"kind\":\"comment\",\"id\":222404848,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:08Z\",\"updated_at\":\"2021-03-03T09:06:08Z\"},{\"kind\":\"comment\",\"id\":222404849,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:09Z\",\"updated_at\":\"2021-03-03T09:06:09Z\"},{\"kind\":\"comment\",\"id\":222404913,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:09:03Z\",\"updated_at\":\"2021-03-03T09:09:03Z\"},{\"kind\":\"comment\",\"id\":222404915,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:09:04Z\",\"updated_at\":\"2021-03-03T09:09:06Z\"},{\"kind\":\"comment\",\"id\":222404917,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:09:07Z\",\"updated_at\":\"2021-03-03T09:09:07Z\"},{\"kind\":\"comment\",\"id\":222404963,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:11:15Z\",\"updated_at\":\"2021-03-03T09:11:15Z\"},{\"kind\":\"comment\",\"id\":222404964,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:11:16Z\",\"updated_at\":\"2021-03-03T09:11:18Z\"},{\"kind\":\"comment\",\"id\":222404972,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:11:21Z\",\"updated_at\":\"2021-03-03T09:11:21Z\"},{\"kind\":\"comment\",\"id\":222405225,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:20:59Z\",\"updated_at\":\"2021-03-03T09:20:59Z\"},{\"kind\":\"comment\",\"id\":222405226,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:20:59Z\",\"updated_at\":\"2021-03-03T09:21:01Z\"},{\"kind\":\"comment\",\"id\":222405242,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:21:51Z\",\"updated_at\":\"2021-03-03T09:21:53Z\"}]"}},"recorded_at":"Wed, 03 Mar 2021 09:22:12 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/uploads","body":{"encoding":"UTF-8","string":"-------------RubyMultipartPost-3a486d91bdd77e1ee0871492bad480e2\r\nContent-Disposition: form-data; name=\"file\"; filename=\"Gemfile\"\r\nContent-Length: 144\r\nContent-Type: \r\nContent-Transfer-Encoding: binary\r\n\r\nsource 'https://rubygems.org'\n\n# Specify your gem's dependencies in tracker_api.gemspec\ngemspec\n\ngem 'coveralls', group: :test, require: false\n\n\r\n-------------RubyMultipartPost-3a486d91bdd77e1ee0871492bad480e2--\r\n"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["multipart/form-data; boundary=-----------RubyMultipartPost-3a486d91bdd77e1ee0871492bad480e2"],"Content-Length":["417"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["716"],"X-Request-Id":["28ecf968-c6d5-4cfc-9f35-e661c7e2f017"],"ETag":["W/\"11afc48a79f29b5e31e25b5d9261a9a5\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.293552"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:01 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"file_attachment\",\"id\":109448648,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:22:01Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448648/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":false,\"big_url\":\"#\",\"thumbnail_url\":\"#\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:02 GMT"},{"request":{"method":"put","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004/comments/120836920?fields=%3Adefault%2Cfile_attachments","body":{"encoding":"UTF-8","string":"{\"file_attachment_ids_to_add\":[109448648]}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["717"],"X-Request-Id":["71bef178-2fdf-46ec-a9ff-3fd9f0abec69"],"ETag":["W/\"3db20c68451d262d278e3410d6d9c1d7\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.221063"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:02 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"file_attachments\":[{\"kind\":\"file_attachment\",\"id\":109448609,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:20:48Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448609/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":true,\"big_url\":\"https://s3.amazonaws.com/prod.tracker2/resource/109448609/Gemfile_big?response-content-disposition=attachment&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJJBSFJ4TCVKKGAIA%2F20210303%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210303T092202Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=b2fdb135dc31f7fb3ae4a35f60dfbbd1bff309dd01d183a19ef938767424f7a5\",\"thumbnail_url\":\"https://s3.amazonaws.com/prod.tracker2/resource/109448609/Gemfile_thumb?response-content-disposition=attachment&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJJBSFJ4TCVKKGAIA%2F20210303%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210303T092202Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=5b3d845189d63c9c371c263c9172f9ff4f567afe8c36a2d47cf3beaecda61a50\"},{\"kind\":\"file_attachment\",\"id\":109448647,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:22:00Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448647/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":false,\"big_url\":\"#\",\"thumbnail_url\":\"#\"},{\"kind\":\"file_attachment\",\"id\":109448648,\"filename\":\"Gemfile\",\"created_at\":\"2021-03-03T09:22:01Z\",\"uploader_id\":1266314,\"thumbnailable\":false,\"size\":144,\"download_url\":\"/file_attachments/109448648/download\",\"content_type\":\"application/octet-stream\",\"uploaded\":false,\"big_url\":\"#\",\"thumbnail_url\":\"#\"}],\"id\":120836920,\"story_id\":66728004,\"text\":\"This is a comment.+++\",\"person_id\":1266314,\"created_at\":\"2015-12-17T22:13:55Z\",\"updated_at\":\"2021-03-03T09:22:02Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:02 GMT"},{"request":{"method":"put","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004/comments/120836920?fields=%3Adefault%2Cfile_attachments","body":{"encoding":"UTF-8","string":"{\"file_attachment_ids_to_remove\":[109448609,109448647,109448648]}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["718"],"X-Request-Id":["76a9c48d-3d07-4a8c-83f8-1631a22b27ee"],"ETag":["W/\"ca873afb4f600ff23657d973274eb973\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.287716"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:03 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"file_attachments\":[],\"id\":120836920,\"story_id\":66728004,\"text\":\"This is a comment.+++\",\"person_id\":1266314,\"created_at\":\"2015-12-17T22:13:55Z\",\"updated_at\":\"2021-03-03T09:22:03Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:03 GMT"},{"request":{"method":"get","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004/comments/120836920?fields=file_attachments","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["718"],"X-Request-Id":["9e7a5c52-1940-43bb-b6d1-a8224d89c316"],"ETag":["W/\"b579761d6d39646cda5c21c8d061abfa\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.040709"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:03 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"file_attachments\":[],\"id\":120836920}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:04 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["720"],"X-Request-Id":["a57da73d-25ae-40fe-ad80-8677d7cd1dd1"],"ETag":["W/\"c3c77cc9b4305bd33ecd8771464df475\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.041059"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:06 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"story\",\"id\":66728004,\"created_at\":\"2014-02-17T00:00:00Z\",\"updated_at\":\"2021-03-03T09:22:04Z\",\"story_type\":\"bug\",\"name\":\"Some product photos not scaled properly when browsing products+++++++++++++++++++++++++++\",\"description\":\"++++++++++++++++\",\"current_state\":\"started\",\"requested_by_id\":1266314,\"url\":\"https://www.pivotaltracker.com/story/show/66728004\",\"project_id\":1027488,\"owner_ids\":[1266314,1266316],\"labels\":[{\"id\":11049870,\"project_id\":1027488,\"kind\":\"label\",\"name\":\"label2\",\"created_at\":\"2015-03-07T12:51:39Z\",\"updated_at\":\"2015-03-07T12:51:39Z\"},{\"id\":14060665,\"project_id\":1027488,\"kind\":\"label\",\"name\":\"super-special-label\",\"created_at\":\"2016-02-12T23:45:13Z\",\"updated_at\":\"2016-02-12T23:45:13Z\"}],\"owned_by_id\":1266314}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:06 GMT"},{"request":{"method":"post","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004/comments","body":{"encoding":"UTF-8","string":"{\"text\":\"test comment\"}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["721"],"X-Request-Id":["ad249233-a8e5-474b-881e-ed05c7ae14a4"],"ETag":["W/\"1f16bc9699fc900851170bfd20758037\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.664104"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:07 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"id\":222405250,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:22:06Z\",\"updated_at\":\"2021-03-03T09:22:06Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:07 GMT"},{"request":{"method":"get","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004/comments","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["721"],"X-Request-Id":["59aa537a-c870-449d-83e8-2a34036da170"],"ETag":["W/\"2f4baab8b55b2c12a057646b0f5ecac7\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.074963"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:07 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"[{\"kind\":\"comment\",\"id\":120836920,\"story_id\":66728004,\"text\":\"This is a comment.+++\",\"person_id\":1266314,\"created_at\":\"2015-12-17T22:13:55Z\",\"updated_at\":\"2021-03-03T09:22:03Z\"},{\"kind\":\"comment\",\"id\":120836938,\"story_id\":66728004,\"text\":\"This is another comment.\",\"person_id\":1266314,\"created_at\":\"2015-12-17T22:14:04Z\",\"updated_at\":\"2015-12-17T22:14:04Z\"},{\"kind\":\"comment\",\"id\":155658605,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2016-11-16T14:17:47Z\",\"updated_at\":\"2016-11-16T14:17:47Z\"},{\"kind\":\"comment\",\"id\":170362899,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-05-03T23:23:33Z\",\"updated_at\":\"2017-05-03T23:23:33Z\"},{\"kind\":\"comment\",\"id\":170363243,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-05-03T23:29:39Z\",\"updated_at\":\"2017-05-03T23:29:39Z\"},{\"kind\":\"comment\",\"id\":173608993,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-06-12T00:26:32Z\",\"updated_at\":\"2017-06-12T02:13:39Z\"},{\"kind\":\"comment\",\"id\":173610235,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-06-12T02:16:13Z\",\"updated_at\":\"2017-06-12T02:16:15Z\"},{\"kind\":\"comment\",\"id\":173610269,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-06-12T02:19:10Z\",\"updated_at\":\"2017-06-12T02:19:13Z\"},{\"kind\":\"comment\",\"id\":173611341,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-06-12T03:19:55Z\",\"updated_at\":\"2017-06-12T03:19:58Z\"},{\"kind\":\"comment\",\"id\":173611767,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-06-12T03:41:24Z\",\"updated_at\":\"2017-06-12T03:41:26Z\"},{\"kind\":\"comment\",\"id\":173612961,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2017-06-12T04:32:05Z\",\"updated_at\":\"2017-06-12T04:36:28Z\"},{\"kind\":\"comment\",\"id\":181647277,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-10-31T16:00:08Z\",\"updated_at\":\"2017-10-31T16:00:08Z\"},{\"kind\":\"comment\",\"id\":181647653,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-10-31T16:05:38Z\",\"updated_at\":\"2017-10-31T16:05:46Z\"},{\"kind\":\"comment\",\"id\":181648070,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2017-10-31T16:11:25Z\",\"updated_at\":\"2017-10-31T16:11:27Z\"},{\"kind\":\"comment\",\"id\":181648318,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2017-10-31T16:15:38Z\",\"updated_at\":\"2017-10-31T16:15:45Z\"},{\"kind\":\"comment\",\"id\":181648335,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-10-31T16:15:50Z\",\"updated_at\":\"2017-10-31T16:15:52Z\"},{\"kind\":\"comment\",\"id\":192311200,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:17:56Z\",\"updated_at\":\"2018-07-25T19:17:57Z\"},{\"kind\":\"comment\",\"id\":192311212,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:18:02Z\",\"updated_at\":\"2018-07-25T19:18:02Z\"},{\"kind\":\"comment\",\"id\":192311226,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:18:28Z\",\"updated_at\":\"2018-07-25T19:18:30Z\"},{\"kind\":\"comment\",\"id\":192311307,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:19:29Z\",\"updated_at\":\"2018-07-25T19:19:30Z\"},{\"kind\":\"comment\",\"id\":192311316,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:19:42Z\",\"updated_at\":\"2018-07-25T19:19:42Z\"},{\"kind\":\"comment\",\"id\":192311322,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:19:46Z\",\"updated_at\":\"2018-07-25T19:19:47Z\"},{\"kind\":\"comment\",\"id\":192311452,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:22:29Z\",\"updated_at\":\"2018-07-25T19:22:29Z\"},{\"kind\":\"comment\",\"id\":192311453,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:22:30Z\",\"updated_at\":\"2018-07-25T19:22:31Z\"},{\"kind\":\"comment\",\"id\":192311480,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:22:50Z\",\"updated_at\":\"2018-07-25T19:22:52Z\"},{\"kind\":\"comment\",\"id\":192568622,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:36:59Z\",\"updated_at\":\"2018-08-01T17:37:01Z\"},{\"kind\":\"comment\",\"id\":192568641,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:37:12Z\",\"updated_at\":\"2018-08-01T17:37:12Z\"},{\"kind\":\"comment\",\"id\":192568647,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:37:16Z\",\"updated_at\":\"2018-08-01T17:37:16Z\"},{\"kind\":\"comment\",\"id\":192569413,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:47:02Z\",\"updated_at\":\"2018-08-01T17:47:04Z\"},{\"kind\":\"comment\",\"id\":192569433,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:47:22Z\",\"updated_at\":\"2018-08-01T17:47:23Z\"},{\"kind\":\"comment\",\"id\":192569441,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:47:27Z\",\"updated_at\":\"2018-08-01T17:47:27Z\"},{\"kind\":\"comment\",\"id\":192569650,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:50:56Z\",\"updated_at\":\"2018-08-01T17:50:56Z\"},{\"kind\":\"comment\",\"id\":192569656,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:51:00Z\",\"updated_at\":\"2018-08-01T17:51:01Z\"},{\"kind\":\"comment\",\"id\":192569771,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:52:13Z\",\"updated_at\":\"2018-08-01T17:52:14Z\"},{\"kind\":\"comment\",\"id\":192569775,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:52:15Z\",\"updated_at\":\"2018-08-01T17:52:15Z\"},{\"kind\":\"comment\",\"id\":192569938,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:54:32Z\",\"updated_at\":\"2018-08-01T17:54:32Z\"},{\"kind\":\"comment\",\"id\":192569939,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:54:33Z\",\"updated_at\":\"2018-08-01T17:54:33Z\"},{\"kind\":\"comment\",\"id\":214929997,\"story_id\":66728004,\"text\":\"**Code** review set to **pass**\\n\\nMy review comment for a Pass review\",\"person_id\":1266314,\"created_at\":\"2020-06-03T15:56:52Z\",\"updated_at\":\"2020-06-03T15:56:52Z\"},{\"kind\":\"comment\",\"id\":214930011,\"story_id\":66728004,\"text\":\"**Security** review set to **revise**\\n\\nMy review comment for a Revise review\",\"person_id\":1266314,\"created_at\":\"2020-06-03T15:57:09Z\",\"updated_at\":\"2020-06-03T15:57:09Z\"},{\"kind\":\"comment\",\"id\":222404221,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:26Z\",\"updated_at\":\"2021-03-03T08:41:28Z\"},{\"kind\":\"comment\",\"id\":222404224,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:31Z\",\"updated_at\":\"2021-03-03T08:41:31Z\"},{\"kind\":\"comment\",\"id\":222404509,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:54:04Z\",\"updated_at\":\"2021-03-03T08:54:04Z\"},{\"kind\":\"comment\",\"id\":222404511,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:54:05Z\",\"updated_at\":\"2021-03-03T08:54:07Z\"},{\"kind\":\"comment\",\"id\":222404845,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:05Z\",\"updated_at\":\"2021-03-03T09:06:05Z\"},{\"kind\":\"comment\",\"id\":222404852,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:11Z\",\"updated_at\":\"2021-03-03T09:06:11Z\"},{\"kind\":\"comment\",\"id\":222404854,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:11Z\",\"updated_at\":\"2021-03-03T09:06:13Z\"},{\"kind\":\"comment\",\"id\":222404916,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:09:07Z\",\"updated_at\":\"2021-03-03T09:09:07Z\"},{\"kind\":\"comment\",\"id\":222404919,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:09:08Z\",\"updated_at\":\"2021-03-03T09:09:10Z\"},{\"kind\":\"comment\",\"id\":222404966,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:11:18Z\",\"updated_at\":\"2021-03-03T09:11:18Z\"},{\"kind\":\"comment\",\"id\":222404968,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:11:19Z\",\"updated_at\":\"2021-03-03T09:11:21Z\"},{\"kind\":\"comment\",\"id\":222405223,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:20:56Z\",\"updated_at\":\"2021-03-03T09:20:56Z\"},{\"kind\":\"comment\",\"id\":222405224,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:20:57Z\",\"updated_at\":\"2021-03-03T09:20:58Z\"},{\"kind\":\"comment\",\"id\":222405243,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:21:54Z\",\"updated_at\":\"2021-03-03T09:21:55Z\"},{\"kind\":\"comment\",\"id\":222405249,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:22:04Z\",\"updated_at\":\"2021-03-03T09:22:04Z\"},{\"kind\":\"comment\",\"id\":222405250,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:22:06Z\",\"updated_at\":\"2021-03-03T09:22:06Z\"}]"}},"recorded_at":"Wed, 03 Mar 2021 09:22:07 GMT"},{"request":{"method":"delete","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004/comments/222405250","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":204,"message":"No Content"},"headers":{"Status":["204 No Content"],"Cache-Control":["no-cache"],"X-Tracker-Project-Version":["722"],"X-Request-Id":["4c9547e8-e2cf-4a1a-8fac-42ce46e3d8b1"],"X-Runtime":["0.206620"],"X-Frame-Options":["SAMEORIGIN"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:08 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":""}},"recorded_at":"Wed, 03 Mar 2021 09:22:08 GMT"},{"request":{"method":"get","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["722"],"X-Request-Id":["9c8f82f1-9589-4830-8d32-2498f8af8943"],"ETag":["W/\"69170c31a82fdf40fca7596f3dae611f\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.048360"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:08 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"story\",\"id\":66728004,\"created_at\":\"2014-02-17T00:00:00Z\",\"updated_at\":\"2021-03-03T09:22:07Z\",\"story_type\":\"bug\",\"name\":\"Some product photos not scaled properly when browsing products+++++++++++++++++++++++++++\",\"description\":\"++++++++++++++++\",\"current_state\":\"started\",\"requested_by_id\":1266314,\"url\":\"https://www.pivotaltracker.com/story/show/66728004\",\"project_id\":1027488,\"owner_ids\":[1266314,1266316],\"labels\":[{\"id\":11049870,\"project_id\":1027488,\"kind\":\"label\",\"name\":\"label2\",\"created_at\":\"2015-03-07T12:51:39Z\",\"updated_at\":\"2015-03-07T12:51:39Z\"},{\"id\":14060665,\"project_id\":1027488,\"kind\":\"label\",\"name\":\"super-special-label\",\"created_at\":\"2016-02-12T23:45:13Z\",\"updated_at\":\"2016-02-12T23:45:13Z\"}],\"owned_by_id\":1266314}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:08 GMT"},{"request":{"method":"get","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004/comments","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["722"],"X-Request-Id":["dde9d4f8-da13-41fe-88ce-a78ee8f03829"],"ETag":["W/\"4004b3ad9002447c43d2136ce82009df\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.060793"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:08 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"[{\"kind\":\"comment\",\"id\":120836920,\"story_id\":66728004,\"text\":\"This is a comment.+++\",\"person_id\":1266314,\"created_at\":\"2015-12-17T22:13:55Z\",\"updated_at\":\"2021-03-03T09:22:03Z\"},{\"kind\":\"comment\",\"id\":120836938,\"story_id\":66728004,\"text\":\"This is another comment.\",\"person_id\":1266314,\"created_at\":\"2015-12-17T22:14:04Z\",\"updated_at\":\"2015-12-17T22:14:04Z\"},{\"kind\":\"comment\",\"id\":155658605,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2016-11-16T14:17:47Z\",\"updated_at\":\"2016-11-16T14:17:47Z\"},{\"kind\":\"comment\",\"id\":170362899,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-05-03T23:23:33Z\",\"updated_at\":\"2017-05-03T23:23:33Z\"},{\"kind\":\"comment\",\"id\":170363243,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-05-03T23:29:39Z\",\"updated_at\":\"2017-05-03T23:29:39Z\"},{\"kind\":\"comment\",\"id\":173608993,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-06-12T00:26:32Z\",\"updated_at\":\"2017-06-12T02:13:39Z\"},{\"kind\":\"comment\",\"id\":173610235,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-06-12T02:16:13Z\",\"updated_at\":\"2017-06-12T02:16:15Z\"},{\"kind\":\"comment\",\"id\":173610269,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-06-12T02:19:10Z\",\"updated_at\":\"2017-06-12T02:19:13Z\"},{\"kind\":\"comment\",\"id\":173611341,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-06-12T03:19:55Z\",\"updated_at\":\"2017-06-12T03:19:58Z\"},{\"kind\":\"comment\",\"id\":173611767,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-06-12T03:41:24Z\",\"updated_at\":\"2017-06-12T03:41:26Z\"},{\"kind\":\"comment\",\"id\":173612961,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2017-06-12T04:32:05Z\",\"updated_at\":\"2017-06-12T04:36:28Z\"},{\"kind\":\"comment\",\"id\":181647277,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-10-31T16:00:08Z\",\"updated_at\":\"2017-10-31T16:00:08Z\"},{\"kind\":\"comment\",\"id\":181647653,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-10-31T16:05:38Z\",\"updated_at\":\"2017-10-31T16:05:46Z\"},{\"kind\":\"comment\",\"id\":181648070,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2017-10-31T16:11:25Z\",\"updated_at\":\"2017-10-31T16:11:27Z\"},{\"kind\":\"comment\",\"id\":181648318,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2017-10-31T16:15:38Z\",\"updated_at\":\"2017-10-31T16:15:45Z\"},{\"kind\":\"comment\",\"id\":181648335,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2017-10-31T16:15:50Z\",\"updated_at\":\"2017-10-31T16:15:52Z\"},{\"kind\":\"comment\",\"id\":192311200,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:17:56Z\",\"updated_at\":\"2018-07-25T19:17:57Z\"},{\"kind\":\"comment\",\"id\":192311212,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:18:02Z\",\"updated_at\":\"2018-07-25T19:18:02Z\"},{\"kind\":\"comment\",\"id\":192311226,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:18:28Z\",\"updated_at\":\"2018-07-25T19:18:30Z\"},{\"kind\":\"comment\",\"id\":192311307,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:19:29Z\",\"updated_at\":\"2018-07-25T19:19:30Z\"},{\"kind\":\"comment\",\"id\":192311316,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:19:42Z\",\"updated_at\":\"2018-07-25T19:19:42Z\"},{\"kind\":\"comment\",\"id\":192311322,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:19:46Z\",\"updated_at\":\"2018-07-25T19:19:47Z\"},{\"kind\":\"comment\",\"id\":192311452,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:22:29Z\",\"updated_at\":\"2018-07-25T19:22:29Z\"},{\"kind\":\"comment\",\"id\":192311453,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:22:30Z\",\"updated_at\":\"2018-07-25T19:22:31Z\"},{\"kind\":\"comment\",\"id\":192311480,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2018-07-25T19:22:50Z\",\"updated_at\":\"2018-07-25T19:22:52Z\"},{\"kind\":\"comment\",\"id\":192568622,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:36:59Z\",\"updated_at\":\"2018-08-01T17:37:01Z\"},{\"kind\":\"comment\",\"id\":192568641,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:37:12Z\",\"updated_at\":\"2018-08-01T17:37:12Z\"},{\"kind\":\"comment\",\"id\":192568647,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:37:16Z\",\"updated_at\":\"2018-08-01T17:37:16Z\"},{\"kind\":\"comment\",\"id\":192569413,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:47:02Z\",\"updated_at\":\"2018-08-01T17:47:04Z\"},{\"kind\":\"comment\",\"id\":192569433,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:47:22Z\",\"updated_at\":\"2018-08-01T17:47:23Z\"},{\"kind\":\"comment\",\"id\":192569441,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:47:27Z\",\"updated_at\":\"2018-08-01T17:47:27Z\"},{\"kind\":\"comment\",\"id\":192569650,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:50:56Z\",\"updated_at\":\"2018-08-01T17:50:56Z\"},{\"kind\":\"comment\",\"id\":192569656,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:51:00Z\",\"updated_at\":\"2018-08-01T17:51:01Z\"},{\"kind\":\"comment\",\"id\":192569771,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:52:13Z\",\"updated_at\":\"2018-08-01T17:52:14Z\"},{\"kind\":\"comment\",\"id\":192569775,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:52:15Z\",\"updated_at\":\"2018-08-01T17:52:15Z\"},{\"kind\":\"comment\",\"id\":192569938,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:54:32Z\",\"updated_at\":\"2018-08-01T17:54:32Z\"},{\"kind\":\"comment\",\"id\":192569939,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2018-08-01T17:54:33Z\",\"updated_at\":\"2018-08-01T17:54:33Z\"},{\"kind\":\"comment\",\"id\":214929997,\"story_id\":66728004,\"text\":\"**Code** review set to **pass**\\n\\nMy review comment for a Pass review\",\"person_id\":1266314,\"created_at\":\"2020-06-03T15:56:52Z\",\"updated_at\":\"2020-06-03T15:56:52Z\"},{\"kind\":\"comment\",\"id\":214930011,\"story_id\":66728004,\"text\":\"**Security** review set to **revise**\\n\\nMy review comment for a Revise review\",\"person_id\":1266314,\"created_at\":\"2020-06-03T15:57:09Z\",\"updated_at\":\"2020-06-03T15:57:09Z\"},{\"kind\":\"comment\",\"id\":222404221,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:26Z\",\"updated_at\":\"2021-03-03T08:41:28Z\"},{\"kind\":\"comment\",\"id\":222404224,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:31Z\",\"updated_at\":\"2021-03-03T08:41:31Z\"},{\"kind\":\"comment\",\"id\":222404509,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:54:04Z\",\"updated_at\":\"2021-03-03T08:54:04Z\"},{\"kind\":\"comment\",\"id\":222404511,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:54:05Z\",\"updated_at\":\"2021-03-03T08:54:07Z\"},{\"kind\":\"comment\",\"id\":222404845,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:05Z\",\"updated_at\":\"2021-03-03T09:06:05Z\"},{\"kind\":\"comment\",\"id\":222404852,\"story_id\":66728004,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:11Z\",\"updated_at\":\"2021-03-03T09:06:11Z\"},{\"kind\":\"comment\",\"id\":222404854,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:11Z\",\"updated_at\":\"2021-03-03T09:06:13Z\"},{\"kind\":\"comment\",\"id\":222404916,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:09:07Z\",\"updated_at\":\"2021-03-03T09:09:07Z\"},{\"kind\":\"comment\",\"id\":222404919,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:09:08Z\",\"updated_at\":\"2021-03-03T09:09:10Z\"},{\"kind\":\"comment\",\"id\":222404966,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:11:18Z\",\"updated_at\":\"2021-03-03T09:11:18Z\"},{\"kind\":\"comment\",\"id\":222404968,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:11:19Z\",\"updated_at\":\"2021-03-03T09:11:21Z\"},{\"kind\":\"comment\",\"id\":222405223,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:20:56Z\",\"updated_at\":\"2021-03-03T09:20:56Z\"},{\"kind\":\"comment\",\"id\":222405224,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:20:57Z\",\"updated_at\":\"2021-03-03T09:20:58Z\"},{\"kind\":\"comment\",\"id\":222405243,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:21:54Z\",\"updated_at\":\"2021-03-03T09:21:55Z\"},{\"kind\":\"comment\",\"id\":222405249,\"story_id\":66728004,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:22:04Z\",\"updated_at\":\"2021-03-03T09:22:04Z\"}]"}},"recorded_at":"Wed, 03 Mar 2021 09:22:09 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["705"],"X-Request-Id":["6a66b335-175a-4a71-b68e-1ac2306cea6a"],"ETag":["W/\"533c78c1f44f57a69022792057206e38\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.051479"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:21:51 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"id\":4737194,\"kind\":\"epic\",\"created_at\":\"2021-03-03T08:35:42Z\",\"updated_at\":\"2021-03-03T09:21:04Z\",\"project_id\":1027488,\"name\":\"Test\",\"url\":\"https://www.pivotaltracker.com/epic/show/4737194\",\"label\":{\"id\":22934751,\"project_id\":1027488,\"kind\":\"label\",\"name\":\"test\",\"created_at\":\"2021-03-03T08:35:42Z\",\"updated_at\":\"2021-03-03T08:35:42Z\"}}"}},"recorded_at":"Wed, 03 Mar 2021 09:21:51 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194/comments","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["709"],"X-Request-Id":["186ead31-3968-4e36-a340-9c03477c37d9"],"ETag":["W/\"10d2ff6cdbb20984aa55994579191f67\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.098021"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:21:56 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"[{\"kind\":\"comment\",\"id\":222404217,\"epic_id\":4737194,\"text\":\"Test creating a comment++\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:25Z\",\"updated_at\":\"2021-03-03T09:21:04Z\"},{\"kind\":\"comment\",\"id\":222404225,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:32Z\",\"updated_at\":\"2021-03-03T08:41:32Z\"},{\"kind\":\"comment\",\"id\":222404226,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:32Z\",\"updated_at\":\"2021-03-03T08:41:32Z\"},{\"kind\":\"comment\",\"id\":222404508,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:54:03Z\",\"updated_at\":\"2021-03-03T08:54:03Z\"},{\"kind\":\"comment\",\"id\":222404514,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:54:12Z\",\"updated_at\":\"2021-03-03T08:54:13Z\"},{\"kind\":\"comment\",\"id\":222404515,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:54:14Z\",\"updated_at\":\"2021-03-03T08:54:14Z\"},{\"kind\":\"comment\",\"id\":222404846,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:06Z\",\"updated_at\":\"2021-03-03T09:06:08Z\"},{\"kind\":\"comment\",\"id\":222404848,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:08Z\",\"updated_at\":\"2021-03-03T09:06:08Z\"},{\"kind\":\"comment\",\"id\":222404849,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:06:09Z\",\"updated_at\":\"2021-03-03T09:06:09Z\"},{\"kind\":\"comment\",\"id\":222404913,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:09:03Z\",\"updated_at\":\"2021-03-03T09:09:03Z\"},{\"kind\":\"comment\",\"id\":222404915,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:09:04Z\",\"updated_at\":\"2021-03-03T09:09:06Z\"},{\"kind\":\"comment\",\"id\":222404917,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:09:07Z\",\"updated_at\":\"2021-03-03T09:09:07Z\"},{\"kind\":\"comment\",\"id\":222404963,\"epic_id\":4737194,\"text\":\"test comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:11:15Z\",\"updated_at\":\"2021-03-03T09:11:15Z\"},{\"kind\":\"comment\",\"id\":222404964,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:11:16Z\",\"updated_at\":\"2021-03-03T09:11:18Z\"},{\"kind\":\"comment\",\"id\":222404972,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:11:21Z\",\"updated_at\":\"2021-03-03T09:11:21Z\"},{\"kind\":\"comment\",\"id\":222405225,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:20:59Z\",\"updated_at\":\"2021-03-03T09:20:59Z\"},{\"kind\":\"comment\",\"id\":222405226,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:20:59Z\",\"updated_at\":\"2021-03-03T09:21:01Z\"},{\"kind\":\"comment\",\"id\":222405242,\"epic_id\":4737194,\"text\":\"Test creating a comment\",\"person_id\":1266314,\"created_at\":\"2021-03-03T09:21:51Z\",\"updated_at\":\"2021-03-03T09:21:53Z\"}]"}},"recorded_at":"Wed, 03 Mar 2021 09:21:56 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"get","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004?fields=%3Adefault%2Cpull_requests","body":{"encoding":"US-ASCII","string":""},"headers":{"User-Agent":["Ruby/2.7.2 (x86_64-darwin19; ruby) TrackerApi/1.13.0 Faraday/1.4.1"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["728"],"X-Request-Id":["e17a5715-671b-487e-b1c2-561cc87c09bd"],"ETag":["W/\"d8502383608d12d511d24d83e41e7948\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.066465"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Fri, 23 Apr 2021 21:44:02 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"story\",\"id\":66728004,\"created_at\":\"2014-02-17T00:00:00Z\",\"updated_at\":\"2021-04-23T21:23:18Z\",\"story_type\":\"bug\",\"name\":\"Some product photos not scaled properly when browsing products+++++++++++++++++++++++++++\",\"description\":\"++++++++++++++++\",\"current_state\":\"started\",\"requested_by_id\":1266314,\"url\":\"https://www.pivotaltracker.com/story/show/66728004\",\"project_id\":1027488,\"owner_ids\":[1266314,1266316],\"labels\":[{\"id\":11049870,\"project_id\":1027488,\"kind\":\"label\",\"name\":\"label2\",\"created_at\":\"2015-03-07T12:51:39Z\",\"updated_at\":\"2015-03-07T12:51:39Z\"},{\"id\":14060665,\"project_id\":1027488,\"kind\":\"label\",\"name\":\"super-special-label\",\"created_at\":\"2016-02-12T23:45:13Z\",\"updated_at\":\"2016-02-12T23:45:13Z\"}],\"pull_requests\":[{\"id\":1606521,\"kind\":\"pull_request\",\"story_id\":66728004,\"owner\":\"ProductPlan\",\"repo\":\"tracker_api\",\"host_url\":\"https://github.com/\",\"original_url\":\"https://github.com/ProductPlan/tracker_api/pull/148\",\"status\":\"unknown\",\"number\":148,\"created_at\":\"2021-04-23T21:23:18Z\",\"updated_at\":\"2021-04-23T21:23:18Z\"}],\"owned_by_id\":1266314}"}},"recorded_at":"Fri, 23 Apr 2021 21:44:02 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"put","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/epics/4737194/comments/222404217","body":{"encoding":"UTF-8","string":"{\"text\":\"Test creating a comment+++\"}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["715"],"X-Request-Id":["470028e7-fbfa-455e-a994-58ceea2e583a"],"ETag":["W/\"bb994f35ba8eea5cd965644f11b4ed58\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.425120"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:21:59 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"id\":222404217,\"epic_id\":4737194,\"text\":\"Test creating a comment+++\",\"person_id\":1266314,\"created_at\":\"2021-03-03T08:41:25Z\",\"updated_at\":\"2021-03-03T09:21:59Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:00 GMT"}],"recorded_with":"VCR 6.0.0"}
@@ -0,0 +1 @@
1
+ { "http_interactions": [ { "request": { "method": "put", "uri": "https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004/reviews/1129224", "body": { "encoding": "UTF-8", "string": "{\"status\":\"pass\"}" }, "headers": { "User-Agent": [ "Ruby/2.3.1 (x86_64-darwin15; ruby) TrackerApi/1.7.0 Faraday/0.9.2" ], "X-TrackerToken": ["d55c3bc1f74346b843ca84ba340b29bf"], "Content-Type": ["application/json"] } }, "response": { "status": { "code": 200, "message": null }, "headers": { "Access-Control-Allow-Credentials": ["false"], "Access-Control-Allow-Headers": [ "X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is" ], "Access-Control-Allow-Methods": ["GET, POST, PUT, DELETE, OPTIONS"], "Access-Control-Allow-Origin": ["*"], "Cache-Control": ["max-age=0, private, must-revalidate"], "Content-Type": ["application/json; charset=utf-8"], "Date": ["Wed, 03 May 2017 23:29:39 GMT"], "Etag": ["\"32f56ee2d2f58495f5243892aa8ab824\""], "Server": ["nginx + Phusion Passenger"], "Status": ["200 OK"], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" ], "X-Content-Type-Options": ["nosniff"], "X-Powered-By": ["Phusion Passenger Enterprise"], "X-Rack-Cache": ["invalidate, pass"], "X-Request-Id": ["51304f42f751d73a2484764013fcd838"], "X-Runtime": ["0.344871"], "X-Tracker-Client-Pinger-Interval": ["20"], "X-Tracker-Project-Version": ["231"], "X-Ua-Compatible": ["IE=Edge,chrome=1"], "X-Vcap-Request-Id": ["76b36118-3332-4513-5eef-f0667c4b9bb6"], "X-Xss-Protection": ["1; mode=block"], "Content-Length": ["176"], "Connection": ["keep-alive"] }, "body": { "encoding": "ASCII-8BIT", "string": "{\"kind\":\"review\",\"id\":1129224,\"story_id\":66728004,\"review_type_id\":2293634,\"reviewer_id\":1266314,\"status\":\"pass\",\"created_at\":\"2020-06-03T15:55:47Z\",\"updated_at\":\"2020-06-03T15:56:00Z\"}" }, "http_version": null }, "recorded_at": "Wed, 03 May 2017 23:29:39 GMT" } ], "recorded_with": "VCR 2.9.3" }
@@ -0,0 +1 @@
1
+ {"http_interactions":[{"request":{"method":"put","uri":"https://www.pivotaltracker.com/services/v5/projects/1027488/stories/66728004/comments/120836920","body":{"encoding":"UTF-8","string":"{\"text\":\"This is a comment.+++\"}"},"headers":{"User-Agent":["Ruby/2.7.1 (x86_64-darwin19; ruby) TrackerApi/1.12.0 Faraday/1.3.0"],"X-TrackerToken":["d55c3bc1f74346b843ca84ba340b29bf"],"Accept":["application/json"],"Content-Type":["application/json"]}},"response":{"status":{"code":200,"message":"OK"},"headers":{"Content-Type":["application/json; charset=utf-8"],"Status":["200 OK"],"Cache-Control":["max-age=0, private, must-revalidate"],"X-Tracker-Project-Version":["726"],"X-Request-Id":["ca50d90b-16ef-44df-beef-831f46518859"],"ETag":["W/\"5a111cf1c6b1601c8741e19299251617\""],"X-Frame-Options":["SAMEORIGIN"],"X-Runtime":["0.298672"],"X-Content-Type-Options":["nosniff, nosniff"],"Date":["Wed, 03 Mar 2021 09:22:12 GMT"],"X-Powered-By":["Phusion Passenger"],"Server":["nginx + Phusion Passenger"],"Access-Control-Allow-Origin":["*"],"Access-Control-Allow-Credentials":["false"],"Access-Control-Allow-Methods":["GET, POST, PUT, DELETE, OPTIONS"],"Access-Control-Allow-Headers":["X-TrackerToken,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Tracker-Warn-Unless-Project-Version-Is"],"X-Tracker-Client-Pinger-Interval":["20"],"Strict-Transport-Security":["max-age=31536000; includeSubDomains; preload"],"X-XSS-Protection":["1; mode=block"],"Via":["1.1 google"],"Alt-Svc":["clear"]},"body":{"encoding":"ASCII-8BIT","string":"{\"kind\":\"comment\",\"id\":120836920,\"story_id\":66728004,\"text\":\"This is a comment.+++\",\"person_id\":1266314,\"created_at\":\"2015-12-17T22:13:55Z\",\"updated_at\":\"2021-03-03T09:22:12Z\"}"}},"recorded_at":"Wed, 03 Mar 2021 09:22:13 GMT"}],"recorded_with":"VCR 6.0.0"}
data/tracker_api.gemspec CHANGED
@@ -6,11 +6,11 @@ require 'tracker_api/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'tracker_api'
8
8
  spec.version = TrackerApi::VERSION
9
- spec.authors = ['Forest Carlisle']
10
- spec.email = ['forestcarlisle@gmail.com']
9
+ spec.authors = ['ProductPlan']
10
+ spec.email = ['development@productplan.com']
11
11
  spec.summary = %q{API client for the Pivotal Tracker v5 API}
12
12
  spec.description = %q{This gem allows you to easily use the Pivotal Tracker v5 API.}
13
- spec.homepage = 'https://github.com/dashofcode/tracker_api'
13
+ spec.homepage = 'https://github.com/ProductPlan/tracker_api'
14
14
  spec.license = 'MIT'
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
@@ -24,15 +24,15 @@ Gem::Specification.new do |spec|
24
24
  spec.add_development_dependency 'mocha'
25
25
  spec.add_development_dependency 'awesome_print'
26
26
  spec.add_development_dependency 'vcr'
27
+ spec.add_development_dependency 'simplecov'
27
28
  # spec.add_development_dependency 'minitest-byebug'
28
29
 
29
30
  spec.add_dependency 'addressable'
30
31
  spec.add_dependency 'virtus'
31
- spec.add_dependency 'faraday'
32
- spec.add_dependency 'faraday_middleware'
33
- spec.add_dependency 'excon'
32
+ spec.add_dependency 'faraday', ['>= 1.10', '< 3.0']
33
+ spec.add_dependency 'faraday-multipart'
34
34
  spec.add_dependency 'equalizer'
35
35
  spec.add_dependency 'representable'
36
36
  spec.add_dependency 'multi_json'
37
- spec.add_dependency 'mimemagic'
37
+ spec.add_dependency 'mini_mime'
38
38
  end