tracker_api 1.12.0 → 1.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby-tests.yml +34 -0
  3. data/Gemfile +2 -2
  4. data/README.md +3 -4
  5. data/lib/tracker_api.rb +1 -1
  6. data/lib/tracker_api/endpoints/attachment.rb +3 -1
  7. data/lib/tracker_api/endpoints/comment.rb +15 -5
  8. data/lib/tracker_api/endpoints/comments.rb +10 -5
  9. data/lib/tracker_api/file_utility.rb +1 -1
  10. data/lib/tracker_api/resources/comment.rb +2 -2
  11. data/lib/tracker_api/resources/epic.rb +10 -1
  12. data/lib/tracker_api/resources/story.rb +3 -3
  13. data/lib/tracker_api/version.rb +1 -1
  14. data/test/comment_test.rb +94 -25
  15. data/test/iteration_test.rb +3 -3
  16. data/test/minitest_helper.rb +2 -2
  17. data/test/story_test.rb +1 -1
  18. data/test/vcr/cassettes/create_epic_attachments.json +1 -0
  19. data/test/vcr/cassettes/create_epic_comment.json +1 -0
  20. data/test/vcr/cassettes/create_epic_comment_with_attachment.json +1 -0
  21. data/test/vcr/cassettes/create_story_attachments.json +1 -0
  22. data/test/vcr/cassettes/create_story_comment.json +1 -1
  23. data/test/vcr/cassettes/create_story_comment_with_attachment.json +1 -0
  24. data/test/vcr/cassettes/delete_epic_attachments.json +1 -0
  25. data/test/vcr/cassettes/delete_epic_comment.json +1 -0
  26. data/test/vcr/cassettes/delete_story_attachments.json +1 -0
  27. data/test/vcr/cassettes/delete_story_comment.json +1 -0
  28. data/test/vcr/cassettes/get_epic.json +1 -0
  29. data/test/vcr/cassettes/get_epic_comments.json +1 -0
  30. data/test/vcr/cassettes/save_epic_comment.json +1 -0
  31. data/test/vcr/cassettes/save_story_comment.json +1 -0
  32. data/tracker_api.gemspec +1 -1
  33. metadata +30 -4
  34. data/.travis.yml +0 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d0c3f349c8d57bc33c44401068ae359892d33a8d8ed2c5c20ed96110fe02b3b
4
- data.tar.gz: adac66edc9ddf17883734c6908b1cce46cbac8b932702a7c3f31573b0ad38b13
3
+ metadata.gz: 6d6e9b2c5ba26b416431288d39fe55c9309b753f8ba59572975cf5f424a328a4
4
+ data.tar.gz: 18f138d620e770815349ddad72c728055c7ca35cfdfa89170daf410c4f3db39e
5
5
  SHA512:
6
- metadata.gz: ea30f0006b6dff8684c3d46381d65ddfc00d3a481fbcea3489f844c7bb2c687b065e618114af8cd4392c63d770fcf1ad1ea86aad1305a5c8fca4f95ba58d7150
7
- data.tar.gz: e67ea8cd72e9947862bdd58230aecea038e311a14ecb081f65545003f2fb3d7924c680c55a4d34a1711492f9509a2da6c368d1c93689c7b9f92f2a91e8faf267
6
+ metadata.gz: fbd90b8f2549b18d5d22f4f1dbf743db182db643be68b4920daaff25f68ebdf3664785903118afc106edf44ae58474e54ac1b582e3b063428f7e6c5f47ec1096
7
+ data.tar.gz: ab1c688fbf08697ecb2705031f82a842357756ff812e0295ffd1dcbac43131db038379225e4265bc554fdc16852af8a205a16d2c0a46978024ee4a5a29cae84a
@@ -0,0 +1,34 @@
1
+ name: Ruby Tests
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
8
+
9
+ jobs:
10
+ test:
11
+
12
+ runs-on: ubuntu-latest
13
+
14
+ strategy:
15
+ matrix:
16
+ ruby-version: [2.7, 2.6, 2.5]
17
+
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ - name: Set up Ruby ${{ matrix.ruby-version }}
21
+ uses: ruby/setup-ruby@v1
22
+ with:
23
+ ruby-version: ${{ matrix.ruby-version }}
24
+ - name: Install dependencies
25
+ run: bundle install
26
+ - name: Run tests
27
+ run: bundle exec rake test
28
+ - name: Upload Coverage
29
+ uses: paambaati/codeclimate-action@v2.7.5
30
+ env:
31
+ CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
32
+ with:
33
+ coverageLocations: ${{github.workspace}}/coverage/.resultset.json:simplecov
34
+ if: matrix.ruby-version == '2.7'
data/Gemfile CHANGED
@@ -3,5 +3,5 @@ source 'https://rubygems.org'
3
3
  # Specify your gem's dependencies in tracker_api.gemspec
4
4
  gemspec
5
5
 
6
- gem 'coveralls', group: :test, require: false
7
-
6
+ # pinned until code climate figures out the new output format https://github.com/codeclimate/test-reporter/issues/418
7
+ gem 'simplecov', '< 0.18', require: false, group: :test
data/README.md CHANGED
@@ -1,10 +1,9 @@
1
1
  # TrackerApi
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/tracker_api.png)](http://badge.fury.io/rb/tracker_api)
4
- [![Build Status](https://travis-ci.org/dashofcode/tracker_api.png?branch=master)](https://travis-ci.org/dashofcode/tracker_api)
5
- [![Code Climate](https://codeclimate.com/github/dashofcode/tracker_api.png)](https://codeclimate.com/github/dashofcode/tracker_api)
6
- [![Coverage Status](https://coveralls.io/repos/dashofcode/tracker_api/badge.png?branch=master)](https://coveralls.io/r/dashofcode/tracker_api?branch=master)
7
- [![Dependency Status](https://gemnasium.com/dashofcode/tracker_api.png)](https://gemnasium.com/dashofcode/tracker_api)
4
+ [![Build Status](https://github.com/ProductPlan/tracker_api/actions/workflows/ruby-tests.yml/badge.svg?branch=master)](https://github.com/ProductPlan/tracker_api/actions)
5
+ [![Maintainability](https://api.codeclimate.com/v1/badges/c4602f519cd748d53492/maintainability)](https://codeclimate.com/github/ProductPlan/tracker_api/maintainability)
6
+ [![Test Coverage](https://api.codeclimate.com/v1/badges/c4602f519cd748d53492/test_coverage)](https://codeclimate.com/github/ProductPlan/tracker_api/test_coverage)
8
7
 
9
8
  This gem allows you to easily use the [Pivotal Tracker v5 API](https://www.pivotaltracker.com/help/api/rest/v5).
10
9
 
data/lib/tracker_api.rb CHANGED
@@ -4,7 +4,7 @@ require 'tracker_api/version'
4
4
  require 'faraday'
5
5
  require 'faraday_middleware'
6
6
  require 'pathname'
7
- require 'mimemagic'
7
+ require 'mini_mime'
8
8
 
9
9
  if defined?(ActiveSupport)
10
10
  require 'active_support/core_ext/object/blank'
@@ -19,7 +19,9 @@ module TrackerApi
19
19
  # end
20
20
 
21
21
  def get(comment)
22
- data = client.get("/projects/#{comment.project_id}/stories/#{comment.story_id}/comments/#{comment.id}?fields=file_attachments").body["file_attachments"]
22
+ comment_target_slug = !comment.story_id.nil? ? "stories/#{comment.story_id}" : "epics/#{comment.epic_id}"
23
+
24
+ data = client.get("/projects/#{comment.project_id}/#{comment_target_slug}/comments/#{comment.id}?fields=file_attachments").body["file_attachments"]
23
25
  raise Errors::UnexpectedData, 'Array of file attachments expected' unless data.is_a? Array
24
26
 
25
27
  data.map do |file_attachment|
@@ -7,16 +7,24 @@ module TrackerApi
7
7
  @client = client
8
8
  end
9
9
 
10
- def create(project_id, story_id, params={})
11
- data = client.post("/projects/#{project_id}/stories/#{story_id}/comments", params: params).body
10
+ def create(project_id, story_id: nil, epic_id: nil, params: {})
11
+ raise ArgumentError, 'One of story id or epic id must be provided.' if story_id.nil? && epic_id.nil?
12
+
13
+ comment_target_slug = !story_id.nil? ? "stories/#{story_id}" : "epics/#{epic_id}"
14
+
15
+ data = client.post("/projects/#{project_id}/#{comment_target_slug}/comments", params: params).body
12
16
  Resources::Comment.new({ client: client, project_id: project_id }.merge(data))
13
17
  end
14
18
 
15
19
  def update(comment, params={})
16
20
  raise ArgumentError, 'Valid comment required to update.' unless comment.instance_of?(Resources::Comment)
17
21
 
18
- path = "/projects/#{comment.project_id}/stories/#{comment.story_id}/comments/#{comment.id}"
19
- path += "?fields=:default,file_attachments" if params.represented.file_attachment_ids_to_add.present? || params.represented.file_attachment_ids_to_remove.present?
22
+ comment_target_slug = !comment.story_id.nil? ? "stories/#{comment.story_id}" : "epics/#{comment.epic_id}"
23
+
24
+ path = "/projects/#{comment.project_id}/#{comment_target_slug}/comments/#{comment.id}"
25
+ if params.represented.file_attachment_ids_to_add.present? || params.represented.file_attachment_ids_to_remove.present?
26
+ path += "?fields=:default,file_attachments"
27
+ end
20
28
  data = client.put(path, params: params).body
21
29
 
22
30
  comment.attributes = data
@@ -27,7 +35,9 @@ module TrackerApi
27
35
  def delete(comment)
28
36
  raise ArgumentError, 'Valid comment required to update.' unless comment.instance_of?(Resources::Comment)
29
37
 
30
- client.delete("/projects/#{comment.project_id}/stories/#{comment.story_id}/comments/#{comment.id}").body
38
+ comment_target_slug = !comment.story_id.nil? ? "stories/#{comment.story_id}" : "epics/#{comment.epic_id}"
39
+
40
+ client.delete("/projects/#{comment.project_id}/#{comment_target_slug}/comments/#{comment.id}").body
31
41
  end
32
42
  end
33
43
  end
@@ -7,14 +7,19 @@ module TrackerApi
7
7
  @client = client
8
8
  end
9
9
 
10
- def get(project_id, story_id, params={})
11
- data = client.paginate("/projects/#{project_id}/stories/#{story_id}/comments", params: params)
10
+ def get(project_id, story_id: nil, epic_id: nil, params: {})
11
+ raise ArgumentError, 'One of story id or epic id must be provided.' if story_id.nil? && epic_id.nil?
12
+
13
+ comment_target_slug = !story_id.nil? ? "stories/#{story_id}" : "epics/#{epic_id}"
14
+
15
+ data = client.paginate("/projects/#{project_id}/#{comment_target_slug}/comments", params: params)
12
16
  raise Errors::UnexpectedData, 'Array of comments expected' unless data.is_a? Array
13
17
 
14
18
  data.map do |comment|
15
- Resources::Comment.new({ client: client,
16
- project_id: project_id,
17
- story_id: story_id }.merge(comment))
19
+ Resources::Comment.new({
20
+ client: client,
21
+ project_id: project_id
22
+ }.merge(comment))
18
23
  end
19
24
  end
20
25
  end
@@ -2,7 +2,7 @@ module TrackerApi
2
2
  class FileUtility
3
3
  class << self
4
4
  def get_file_upload(file)
5
- mime_type = MimeMagic.by_path(file)
5
+ mime_type = MiniMime.lookup_by_filename(file)
6
6
  { :file => Faraday::UploadIO.new(file, mime_type) }
7
7
  end
8
8
 
@@ -32,13 +32,13 @@ module TrackerApi
32
32
  end
33
33
 
34
34
  def save
35
- raise ArgumentError, 'Cannot update a comment with an unknown story_id.' if story_id.nil?
35
+ raise ArgumentError, 'Cannot update a comment with an unknown story_id or epic_id.' if story_id.nil? && epic_id.nil?
36
36
 
37
37
  Endpoints::Comment.new(client).update(self, UpdateRepresenter.new(Comment.new(self.dirty_attributes)))
38
38
  end
39
39
 
40
40
  def delete
41
- raise ArgumentError, 'Cannot delete a comment with an unknown story_id.' if story_id.nil?
41
+ raise ArgumentError, 'Cannot delete a comment with an unknown story_id or epic_id.' if story_id.nil? && epic_id.nil?
42
42
 
43
43
  Endpoints::Comment.new(client).delete(self)
44
44
  end
@@ -35,11 +35,20 @@ module TrackerApi
35
35
  Endpoints::Epic.new(client).update(self, UpdateRepresenter.new(self))
36
36
  end
37
37
 
38
+ # Provides a list of all the comments on the epic.
39
+ def comments(reload: false)
40
+ if !reload && @comments.present?
41
+ @comments
42
+ else
43
+ @comments = Endpoints::Comments.new(client).get(project_id, epic_id: id)
44
+ end
45
+ end
46
+
38
47
  # @param [Hash] params attributes to create the comment with
39
48
  # @return [Comment] newly created Comment
40
49
  def create_comment(params)
41
50
  files = params.delete(:files)
42
- comment = Endpoints::Comment.new(client).create(project_id, id, params)
51
+ comment = Endpoints::Comment.new(client).create(project_id, epic_id: id, params: params)
43
52
  comment.create_attachments(files: files) if files.present?
44
53
  comment
45
54
  end
@@ -101,7 +101,7 @@ module TrackerApi
101
101
  #
102
102
  # @param [Person|Fixnum] owner
103
103
  def add_owner(owner)
104
- owner_id = if owner.kind_of?(Fixnum)
104
+ owner_id = if owner.kind_of?(Integer)
105
105
  owner_id = owner
106
106
  else
107
107
  raise ArgumentError, 'Valid Person expected.' unless owner.instance_of?(Resources::Person)
@@ -132,7 +132,7 @@ module TrackerApi
132
132
  if !reload && @comments.present?
133
133
  @comments
134
134
  else
135
- @comments = Endpoints::Comments.new(client).get(project_id, id)
135
+ @comments = Endpoints::Comments.new(client).get(project_id, story_id: id)
136
136
  end
137
137
  end
138
138
 
@@ -193,7 +193,7 @@ module TrackerApi
193
193
  # @return [Comment] newly created Comment
194
194
  def create_comment(params)
195
195
  files = params.delete(:files)
196
- comment = Endpoints::Comment.new(client).create(project_id, id, params)
196
+ comment = Endpoints::Comment.new(client).create(project_id, story_id: id, params: params)
197
197
  comment.create_attachments(files: files) if files.present?
198
198
  comment
199
199
  end
@@ -1,3 +1,3 @@
1
1
  module TrackerApi
2
- VERSION = '1.12.0'
2
+ VERSION = '1.13.0'
3
3
  end
data/test/comment_test.rb CHANGED
@@ -7,13 +7,17 @@ describe TrackerApi::Resources::Comment do
7
7
  let(:project) { VCR.use_cassette('get project') { client.project(project_id) } }
8
8
  let(:story_id) { '66728004' }
9
9
  let(:story) { VCR.use_cassette('get story') { project.story(story_id) } }
10
- let(:comments) { VCR.use_cassette('get comments') { story.comments } }
11
- let(:existing_comment) { comments.first }
10
+ let(:story_comments) { VCR.use_cassette('get story comments') { story.comments } }
11
+ let(:epic_id) { '4737194' }
12
+ let(:epic) { VCR.use_cassette('get epic') { project.epic(epic_id) } }
13
+ let(:epic_comments) { VCR.use_cassette('get epic comments') { epic.comments } }
14
+ let(:existing_story_comment) { story_comments.first }
15
+ let(:existing_epic_comment) { epic_comments.first }
12
16
 
13
17
  it 'can create a comment given a story' do
14
18
  text = "Test creating a comment"
15
19
  comment = nil
16
- VCR.use_cassette('create comment', record: :new_episodes) do
20
+ VCR.use_cassette('create story comment', record: :new_episodes) do
17
21
  comment = story.create_comment(text: text)
18
22
  end
19
23
 
@@ -21,11 +25,22 @@ describe TrackerApi::Resources::Comment do
21
25
  _(comment.clean?).must_equal true
22
26
  end
23
27
 
24
- it 'can create a comment with file attachment' do
28
+ it 'can create a comment given an epic' do
29
+ text = "Test creating a comment"
30
+ comment = nil
31
+ VCR.use_cassette('create epic comment', record: :new_episodes) do
32
+ comment = epic.create_comment(text: text)
33
+ end
34
+
35
+ _(comment.text).must_equal text
36
+ _(comment.clean?).must_equal true
37
+ end
38
+
39
+ it 'can create a story comment with file attachment' do
25
40
  text = "Test creating a comment"
26
41
  comment = nil
27
42
  files = [File.expand_path('../Gemfile', File.dirname(__FILE__))]
28
- VCR.use_cassette('create comment with attachment', record: :new_episodes) do
43
+ VCR.use_cassette('create story comment with attachment', record: :new_episodes) do
29
44
  comment = story.create_comment(text: text, files: files)
30
45
  end
31
46
  _(comment.text).must_equal text
@@ -33,39 +48,82 @@ describe TrackerApi::Resources::Comment do
33
48
  _(comment.clean?).must_equal true
34
49
  end
35
50
 
36
- it 'can update an existing comment' do
37
- new_text = "#{existing_comment.text}+"
38
- existing_comment.text = new_text
51
+ it 'can create an epic comment with file attachment' do
52
+ text = "Test creating a comment"
53
+ comment = nil
54
+ files = [File.expand_path('../Gemfile', File.dirname(__FILE__))]
55
+ VCR.use_cassette('create epic comment with attachment', record: :new_episodes) do
56
+ comment = epic.create_comment(text: text, files: files)
57
+ end
58
+ _(comment.text).must_equal text
59
+ _(comment.attachments.size).must_equal 1
60
+ _(comment.clean?).must_equal true
61
+ end
62
+
63
+ it 'can update an existing story comment' do
64
+ new_text = "#{existing_story_comment.text}+"
65
+ existing_story_comment.text = new_text
39
66
 
40
- VCR.use_cassette('save comment', record: :new_episodes) do
41
- existing_comment.save
67
+ VCR.use_cassette('save story comment', record: :new_episodes) do
68
+ existing_story_comment.save
42
69
  end
43
70
 
44
- _(existing_comment.text).must_equal new_text
45
- _(existing_comment.clean?).must_equal true
71
+ _(existing_story_comment.text).must_equal new_text
72
+ _(existing_story_comment.clean?).must_equal true
46
73
  end
47
74
 
48
- it 'can create attachments in a comment' do
75
+ it 'can update an existing epic comment' do
76
+ new_text = "#{existing_epic_comment.text}+"
77
+ existing_epic_comment.text = new_text
78
+
79
+ VCR.use_cassette('save epic comment', record: :new_episodes) do
80
+ existing_epic_comment.save
81
+ end
82
+
83
+ _(existing_epic_comment.text).must_equal new_text
84
+ _(existing_epic_comment.clean?).must_equal true
85
+ end
86
+
87
+ it 'can create attachments in a story comment' do
88
+ files = [File.expand_path('../Gemfile', File.dirname(__FILE__))]
89
+ VCR.use_cassette('create story attachments', record: :new_episodes) do
90
+ existing_story_comment.create_attachments(files: files)
91
+ assert existing_story_comment.attachments.size > 0
92
+ _(existing_story_comment.clean?).must_equal true
93
+ end
94
+ end
95
+
96
+ it 'can create attachments in an epic comment' do
97
+ files = [File.expand_path('../Gemfile', File.dirname(__FILE__))]
98
+ VCR.use_cassette('create epic attachments', record: :new_episodes) do
99
+ existing_epic_comment.create_attachments(files: files)
100
+ assert existing_epic_comment.attachments.size > 0
101
+ _(existing_epic_comment.clean?).must_equal true
102
+ end
103
+ end
104
+
105
+ it 'can delete attachments in a story comment' do
49
106
  files = [File.expand_path('../Gemfile', File.dirname(__FILE__))]
50
- VCR.use_cassette('create attachments', record: :new_episodes) do
51
- existing_comment.create_attachments(files: files)
52
- _(existing_comment.attachments.size).must_equal 1
53
- _(existing_comment.clean?).must_equal true
107
+ VCR.use_cassette('delete story attachments', record: :new_episodes) do
108
+ existing_story_comment.create_attachments(files: files)
109
+ assert existing_story_comment.attachments.size > 0
110
+ existing_story_comment.delete_attachments
111
+ _(existing_story_comment.attachments.size).must_equal 0
54
112
  end
55
113
  end
56
114
 
57
- it 'can delete attachments in a comment' do
115
+ it 'can delete attachments in an epic comment' do
58
116
  files = [File.expand_path('../Gemfile', File.dirname(__FILE__))]
59
- VCR.use_cassette('delete attachments', record: :new_episodes) do
60
- existing_comment.create_attachments(files: files)
61
- _(existing_comment.attachments.size).must_equal 1
62
- existing_comment.delete_attachments
63
- _(existing_comment.attachments.size).must_equal 0
117
+ VCR.use_cassette('delete epic attachments', record: :new_episodes) do
118
+ existing_epic_comment.create_attachments(files: files)
119
+ assert existing_epic_comment.attachments.size > 0
120
+ existing_epic_comment.delete_attachments
121
+ _(existing_epic_comment.attachments.size).must_equal 0
64
122
  end
65
123
  end
66
124
 
67
- it 'can delete a comment' do
68
- VCR.use_cassette('delete comment', record: :new_episodes) do
125
+ it 'can delete a story comment' do
126
+ VCR.use_cassette('delete story comment', record: :new_episodes) do
69
127
  current_story = project.story(story_id)
70
128
  new_comment_id = current_story.create_comment(text: "test comment").id
71
129
  _(current_story.comments.last.id).must_equal new_comment_id
@@ -74,4 +132,15 @@ describe TrackerApi::Resources::Comment do
74
132
  _(current_story.comments.last.id).wont_equal new_comment_id
75
133
  end
76
134
  end
135
+
136
+ it 'can delete an epic comment' do
137
+ VCR.use_cassette('delete epic comment', record: :new_episodes) do
138
+ current_epic = project.epic(epic_id)
139
+ new_comment_id = current_epic.create_comment(text: "test comment").id
140
+ _(current_epic.comments.last.id).must_equal new_comment_id
141
+ current_epic.comments.last.delete
142
+ current_epic = project.epic(epic_id)
143
+ _(current_epic.comments.last.id).wont_equal new_comment_id
144
+ end
145
+ end
77
146
  end
@@ -12,9 +12,9 @@ describe TrackerApi::Resources::Iteration do
12
12
  VCR.use_cassette('get cycle time details', record: :new_episodes) do
13
13
  cycle_time_details = iteration.cycle_time_details
14
14
 
15
- cycle_time_details.wont_be_empty
15
+ _(cycle_time_details).wont_be_empty
16
16
  cycle_time_detail = cycle_time_details.first
17
- cycle_time_detail.must_be_instance_of TrackerApi::Resources::CycleTimeDetails
17
+ _(cycle_time_detail).must_be_instance_of TrackerApi::Resources::CycleTimeDetails
18
18
  end
19
19
  end
20
20
  end
@@ -24,7 +24,7 @@ describe TrackerApi::Resources::Iteration do
24
24
  VCR.use_cassette('get daily history container', record: :new_episodes) do
25
25
  daily_history_container = iteration.get_history
26
26
 
27
- daily_history_container.must_be_instance_of TrackerApi::Resources::DailyHistoryContainer
27
+ _(daily_history_container).must_be_instance_of TrackerApi::Resources::DailyHistoryContainer
28
28
  end
29
29
  end
30
30
  end
@@ -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'
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
 
@@ -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":"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/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
@@ -34,5 +34,5 @@ Gem::Specification.new do |spec|
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
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tracker_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Forest Carlisle
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-12 00:00:00.000000000 Z
11
+ date: 2021-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -207,7 +207,7 @@ dependencies:
207
207
  - !ruby/object:Gem::Version
208
208
  version: '0'
209
209
  - !ruby/object:Gem::Dependency
210
- name: mimemagic
210
+ name: mini_mime
211
211
  requirement: !ruby/object:Gem::Requirement
212
212
  requirements:
213
213
  - - ">="
@@ -227,8 +227,8 @@ executables: []
227
227
  extensions: []
228
228
  extra_rdoc_files: []
229
229
  files:
230
+ - ".github/workflows/ruby-tests.yml"
230
231
  - ".gitignore"
231
- - ".travis.yml"
232
232
  - CHANGELOG.md
233
233
  - Gemfile
234
234
  - LICENSE.txt
@@ -325,14 +325,23 @@ files:
325
325
  - test/vcr/cassettes/create_attachments.json
326
326
  - test/vcr/cassettes/create_comment.json
327
327
  - test/vcr/cassettes/create_comment_with_attachment.json
328
+ - test/vcr/cassettes/create_epic_attachments.json
329
+ - test/vcr/cassettes/create_epic_comment.json
330
+ - test/vcr/cassettes/create_epic_comment_with_attachment.json
328
331
  - test/vcr/cassettes/create_story.json
332
+ - test/vcr/cassettes/create_story_attachments.json
329
333
  - test/vcr/cassettes/create_story_comment.json
334
+ - test/vcr/cassettes/create_story_comment_with_attachment.json
330
335
  - test/vcr/cassettes/create_story_with_lengthy_params.json
331
336
  - test/vcr/cassettes/create_task.json
332
337
  - test/vcr/cassettes/delete_an_attachment.json
333
338
  - test/vcr/cassettes/delete_attachments.json
334
339
  - test/vcr/cassettes/delete_comment.json
335
340
  - test/vcr/cassettes/delete_comments.json
341
+ - test/vcr/cassettes/delete_epic_attachments.json
342
+ - test/vcr/cassettes/delete_epic_comment.json
343
+ - test/vcr/cassettes/delete_story_attachments.json
344
+ - test/vcr/cassettes/delete_story_comment.json
336
345
  - test/vcr/cassettes/get_all_notifications.json
337
346
  - test/vcr/cassettes/get_all_projects.json
338
347
  - test/vcr/cassettes/get_all_workspaces.json
@@ -342,6 +351,8 @@ files:
342
351
  - test/vcr/cassettes/get_cycle_time_details.json
343
352
  - test/vcr/cassettes/get_daily_history_container.json
344
353
  - test/vcr/cassettes/get_done_iterations.json
354
+ - test/vcr/cassettes/get_epic.json
355
+ - test/vcr/cassettes/get_epic_comments.json
345
356
  - test/vcr/cassettes/get_epics.json
346
357
  - test/vcr/cassettes/get_iteration_by_number.json
347
358
  - test/vcr/cassettes/get_labels.json
@@ -371,9 +382,11 @@ files:
371
382
  - test/vcr/cassettes/get_workspace_projects.json
372
383
  - test/vcr/cassettes/release_stories.json
373
384
  - test/vcr/cassettes/save_comment.json
385
+ - test/vcr/cassettes/save_epic_comment.json
374
386
  - test/vcr/cassettes/save_previously_no_label_story_with_new_label.json
375
387
  - test/vcr/cassettes/save_review.json
376
388
  - test/vcr/cassettes/save_story.json
389
+ - test/vcr/cassettes/save_story_comment.json
377
390
  - test/vcr/cassettes/save_story_in_epic.json
378
391
  - test/vcr/cassettes/save_story_with_multiple_changes.json
379
392
  - test/vcr/cassettes/save_story_with_new_label.json
@@ -481,14 +494,23 @@ test_files:
481
494
  - test/vcr/cassettes/create_attachments.json
482
495
  - test/vcr/cassettes/create_comment.json
483
496
  - test/vcr/cassettes/create_comment_with_attachment.json
497
+ - test/vcr/cassettes/create_epic_attachments.json
498
+ - test/vcr/cassettes/create_epic_comment.json
499
+ - test/vcr/cassettes/create_epic_comment_with_attachment.json
484
500
  - test/vcr/cassettes/create_story.json
501
+ - test/vcr/cassettes/create_story_attachments.json
485
502
  - test/vcr/cassettes/create_story_comment.json
503
+ - test/vcr/cassettes/create_story_comment_with_attachment.json
486
504
  - test/vcr/cassettes/create_story_with_lengthy_params.json
487
505
  - test/vcr/cassettes/create_task.json
488
506
  - test/vcr/cassettes/delete_an_attachment.json
489
507
  - test/vcr/cassettes/delete_attachments.json
490
508
  - test/vcr/cassettes/delete_comment.json
491
509
  - test/vcr/cassettes/delete_comments.json
510
+ - test/vcr/cassettes/delete_epic_attachments.json
511
+ - test/vcr/cassettes/delete_epic_comment.json
512
+ - test/vcr/cassettes/delete_story_attachments.json
513
+ - test/vcr/cassettes/delete_story_comment.json
492
514
  - test/vcr/cassettes/get_all_notifications.json
493
515
  - test/vcr/cassettes/get_all_projects.json
494
516
  - test/vcr/cassettes/get_all_workspaces.json
@@ -498,6 +520,8 @@ test_files:
498
520
  - test/vcr/cassettes/get_cycle_time_details.json
499
521
  - test/vcr/cassettes/get_daily_history_container.json
500
522
  - test/vcr/cassettes/get_done_iterations.json
523
+ - test/vcr/cassettes/get_epic.json
524
+ - test/vcr/cassettes/get_epic_comments.json
501
525
  - test/vcr/cassettes/get_epics.json
502
526
  - test/vcr/cassettes/get_iteration_by_number.json
503
527
  - test/vcr/cassettes/get_labels.json
@@ -527,9 +551,11 @@ test_files:
527
551
  - test/vcr/cassettes/get_workspace_projects.json
528
552
  - test/vcr/cassettes/release_stories.json
529
553
  - test/vcr/cassettes/save_comment.json
554
+ - test/vcr/cassettes/save_epic_comment.json
530
555
  - test/vcr/cassettes/save_previously_no_label_story_with_new_label.json
531
556
  - test/vcr/cassettes/save_review.json
532
557
  - test/vcr/cassettes/save_story.json
558
+ - test/vcr/cassettes/save_story_comment.json
533
559
  - test/vcr/cassettes/save_story_in_epic.json
534
560
  - test/vcr/cassettes/save_story_with_multiple_changes.json
535
561
  - test/vcr/cassettes/save_story_with_new_label.json
data/.travis.yml DELETED
@@ -1,13 +0,0 @@
1
- dist: trusty
2
- language: ruby
3
- rvm:
4
- - 2.1
5
- - 2.2
6
- - 2.3
7
- - 2.4
8
- - 2.5
9
- - "jruby"
10
- # - rbx
11
- # - "1.8.7"
12
- # uncomment this line if your project needs to run something other than `rake`:
13
- # script: bundle exec rspec spec