tracker_api 0.2.7 → 0.2.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/tracker_api/client.rb +7 -0
- data/lib/tracker_api/endpoints/comments.rb +20 -0
- data/lib/tracker_api/resources/base.rb +2 -2
- data/lib/tracker_api/resources/comment.rb +20 -0
- data/lib/tracker_api/resources/story.rb +13 -0
- data/lib/tracker_api/version.rb +1 -1
- data/lib/tracker_api.rb +2 -0
- data/test/project_test.rb +11 -0
- data/test/vcr/cassettes/client_get_all_stories_with_pagination.json +1 -1
- data/test/vcr/cassettes/client_get_limited_stories_with_no_pagination.json +1 -1
- data/test/vcr/cassettes/client_get_single_story_by_story_id.json +1 -1
- data/test/vcr/cassettes/create_story.json +1 -1
- data/test/vcr/cassettes/create_story_with_lengthy_params.json +1 -0
- data/test/vcr/cassettes/get_tasks.json +1 -1
- data/test/vcr/cassettes/get_tasks_when_stories_filtered.json +1 -1
- data/test/vcr/cassettes/get_unscheduled_stories.json +1 -1
- data/test/vcr/cassettes/save_story.json +1 -1
- data/test/vcr/cassettes/save_story_with_multiple_changes.json +1 -1
- data/test/vcr/cassettes/update_story_to_create_activity.json +1 -1
- data/tracker_api.gemspec +0 -3
- metadata +6 -2
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: 0.2.
|
4
|
+
version: 0.2.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Forest Carlisle
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-04-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -209,6 +209,7 @@ files:
|
|
209
209
|
- lib/tracker_api.rb
|
210
210
|
- lib/tracker_api/client.rb
|
211
211
|
- lib/tracker_api/endpoints/activity.rb
|
212
|
+
- lib/tracker_api/endpoints/comments.rb
|
212
213
|
- lib/tracker_api/endpoints/epic.rb
|
213
214
|
- lib/tracker_api/endpoints/epics.rb
|
214
215
|
- lib/tracker_api/endpoints/iterations.rb
|
@@ -226,6 +227,7 @@ files:
|
|
226
227
|
- lib/tracker_api/resources/activity.rb
|
227
228
|
- lib/tracker_api/resources/base.rb
|
228
229
|
- lib/tracker_api/resources/change.rb
|
230
|
+
- lib/tracker_api/resources/comment.rb
|
229
231
|
- lib/tracker_api/resources/epic.rb
|
230
232
|
- lib/tracker_api/resources/iteration.rb
|
231
233
|
- lib/tracker_api/resources/label.rb
|
@@ -249,6 +251,7 @@ files:
|
|
249
251
|
- test/vcr/cassettes/client_get_limited_stories_with_no_pagination.json
|
250
252
|
- test/vcr/cassettes/client_get_single_story_by_story_id.json
|
251
253
|
- test/vcr/cassettes/create_story.json
|
254
|
+
- test/vcr/cassettes/create_story_with_lengthy_params.json
|
252
255
|
- test/vcr/cassettes/get_activity.json
|
253
256
|
- test/vcr/cassettes/get_all_notifications.json
|
254
257
|
- test/vcr/cassettes/get_all_projects.json
|
@@ -305,6 +308,7 @@ test_files:
|
|
305
308
|
- test/vcr/cassettes/client_get_limited_stories_with_no_pagination.json
|
306
309
|
- test/vcr/cassettes/client_get_single_story_by_story_id.json
|
307
310
|
- test/vcr/cassettes/create_story.json
|
311
|
+
- test/vcr/cassettes/create_story_with_lengthy_params.json
|
308
312
|
- test/vcr/cassettes/get_activity.json
|
309
313
|
- test/vcr/cassettes/get_all_notifications.json
|
310
314
|
- test/vcr/cassettes/get_all_projects.json
|