From 331bfa13562b55ba903933e3f7e0c3477aedafdd Mon Sep 17 00:00:00 2001 From: kamrad117 Date: Fri, 23 Aug 2013 14:14:56 +0300 Subject: [PATCH 1/2] respond to code review --- lib/target_process/api_client.rb | 26 +- lib/target_process/api_error.rb | 2 +- .../_context/return_context_by_acid.yml | 14 +- .../return_context_by_acid_and_ids.yml | 14 +- .../_context/return_context_by_ids.yml | 327 +- .../_context/return_context_by_single_id.yml | 14 +- .../_context/return_global_context.yml | 327 +- .../raise_NotFound_error.yml | 4 +- .../respond_with_200_code.yml | 22 +- .../id/returns_hash_of_entity_attributes.yml | 10 +- ...ns_array_of_entities_attributes_hashes.yml | 10 +- .../it_raises_NotFound_error.yml | 10 +- .../it_raises_UnexpectedError.yml | 10 +- .../returns_hash_of_entities_attributes.yml | 24 +- .../raises_UnexpectedError.yml | 4 +- .../returns_all_subject_with_conditions_.yml | 14 +- .../returns_array_of_projects.yml | 258 +- .../provide_getter_for_referenced_items.yml | 464 +- .../provide_setters_for_referenced_items.yml | 430 +- ...project_on_remote_host_and_return_true.yml | 38 +- ...res_projects_with_different_attributes.yml | 24 +- .../returns_project.yml | 52 +- .../returns_formatted_requested_entity.yml | 42 +- .../raise_TargetProcess_BadRequest_error.yml | 10 +- .../raise_an_TargetProcess_NotFound_error.yml | 10 +- .../_meta/returns_project_metadata.yml | 29 +- ...lete_attribute_from_changed_attributes.yml | 24 +- .../add_it_to_changed_attributes.yml | 22 +- .../provide_getters_for_attributes_values.yml | 24 +- ...t_and_update_local_instance_attributes.yml | 116 +- ...mote_host_and_clean_changed_attributes.yml | 136 +- .../do_nothing_with_local_instance.yml | 126 +- .../return_array_of_subjects.yml | 446 +- .../raise_an_TargetProcess_BadRequest.yml | 10 +- ...eturn_array_of_subject_with_conditions.yml | 22 +- ...s_for_collections_with_different_class.yml | 72 +- ...or_collections_with_symbol-named_class.yml | 4570 ++++++++--------- 37 files changed, 4104 insertions(+), 3653 deletions(-) diff --git a/lib/target_process/api_client.rb b/lib/target_process/api_client.rb index 9e27b93..56aa646 100644 --- a/lib/target_process/api_client.rb +++ b/lib/target_process/api_client.rb @@ -7,8 +7,8 @@ class APIClient def get(path, options = {}) options.merge!(format: 'json') - options = { body: options } - response = perform(:get, path, options) + options = { query: options } + response = request(:get, path, options) normalize_response(response.parsed_response) end @@ -16,29 +16,27 @@ def post(path, attr_hash) content = prepare_data(attr_hash).to_json options = { body: content, headers: { 'Content-Type' => 'application/json' } } - response = perform(:post, path, options) + response = request(:post, path, options) normalize_response(response.parsed_response) end def delete(path) - perform(:delete, path).response + request(:delete, path).response end private - def perform(type, path, options = {}) - auth = { username: TargetProcess.configuration.username, - password: TargetProcess.configuration.password } - options.merge!(basic_auth: auth) - check_for_api_errors HTTParty.send(type, generate_url(path), options) + def request(type, path, options = {}) + auth = { basic_auth: { username: TargetProcess.configuration.username, + password: TargetProcess.configuration.password } } + options.merge!(auth) + response = HTTParty.send(type, generate_url(path), options) + check_for_api_errors(response) + response end def check_for_api_errors(response) - if response['Error'] - raise APIError.parse(response) - else - response - end + raise APIError.parse(response) unless response.success? end def generate_url(path) diff --git a/lib/target_process/api_error.rb b/lib/target_process/api_error.rb index 0d0a584..db30e35 100644 --- a/lib/target_process/api_error.rb +++ b/lib/target_process/api_error.rb @@ -11,7 +11,7 @@ class Unauthorized < APIError; end def self.parse(response) error = response['Error'] status = error['Status'] || response['Status'] || 'Undefined' - message = raw_message(response.parsed_response) + message = raw_message(response) type = "#{self}::#{status}".safe_constantize constants.include?(status.to_sym) ? type.new(message) : new(message) end diff --git a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid.yml b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid.yml index c301b45..e2dcfa1 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/context/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/context/?acid=2D2F0BA211357509A03167EECB5F3456&format=json body: - encoding: UTF-8 - string: acid=2D2F0BA211357509A03167EECB5F3456&format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:35 GMT + - Fri, 23 Aug 2013 11:07:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -35,13 +35,13 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '28' + - '25' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: "{\r\n \"Acid\": \"C8CC8C1F6C593B3A9A33F8F3C376BDF2\",\r\n \"Edition\": - \"Pro\",\r\n \"Version\": \"2.24.6.24152\",\r\n \"AppContext\": {\r\n \"ProjectContext\": + \"Pro\",\r\n \"Version\": \"2.24.7.24233\",\r\n \"AppContext\": {\r\n \"ProjectContext\": {\r\n \"No\": true\r\n },\r\n \"TeamContext\": {\r\n \"No\": true\r\n }\r\n },\r\n \"Culture\": {\r\n \"Name\": \"en-US\",\r\n \ \"TimePattern\": \"g:i A\",\r\n \"ShortDateFormat\": \"M/d/yyyy\",\r\n @@ -84,5 +84,5 @@ http_interactions: \ ]\r\n },\r\n \"SelectedProjects\": {\r\n \"Items\": []\r\n },\r\n \ \"SelectedTeams\": {\r\n \"Items\": []\r\n }\r\n}" http_version: - recorded_at: Thu, 15 Aug 2013 13:56:35 GMT + recorded_at: Fri, 23 Aug 2013 11:07:20 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid_and_ids.yml b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid_and_ids.yml index 9bea934..b0543c7 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid_and_ids.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid_and_ids.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/context/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/context/?acid=2D2F0BA211357509A03167EECB5F3456&format=json&ids%5B%5D=1706 body: - encoding: UTF-8 - string: acid=2D2F0BA211357509A03167EECB5F3456&ids[]=1705&ids[]=1706&format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:37 GMT + - Fri, 23 Aug 2013 11:07:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -35,13 +35,13 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '30' + - '25' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: "{\r\n \"Acid\": \"C8CC8C1F6C593B3A9A33F8F3C376BDF2\",\r\n \"Edition\": - \"Pro\",\r\n \"Version\": \"2.24.6.24152\",\r\n \"AppContext\": {\r\n \"ProjectContext\": + \"Pro\",\r\n \"Version\": \"2.24.7.24233\",\r\n \"AppContext\": {\r\n \"ProjectContext\": {\r\n \"No\": true\r\n },\r\n \"TeamContext\": {\r\n \"No\": true\r\n }\r\n },\r\n \"Culture\": {\r\n \"Name\": \"en-US\",\r\n \ \"TimePattern\": \"g:i A\",\r\n \"ShortDateFormat\": \"M/d/yyyy\",\r\n @@ -84,5 +84,5 @@ http_interactions: \ ]\r\n },\r\n \"SelectedProjects\": {\r\n \"Items\": []\r\n },\r\n \ \"SelectedTeams\": {\r\n \"Items\": []\r\n }\r\n}" http_version: - recorded_at: Thu, 15 Aug 2013 13:56:36 GMT + recorded_at: Fri, 23 Aug 2013 11:07:20 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_ids.yml b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_ids.yml index 2e6d8b1..cd4ca15 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_ids.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_ids.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/context/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/context/?format=json&ids%5B%5D=1706 body: - encoding: UTF-8 - string: ids[]=1705&ids[]=1706&format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,11 +15,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:34 GMT + - Fri, 23 Aug 2013 11:07:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '8606' + - '23463' Connection: - keep-alive Keep-Alive: @@ -35,13 +35,13 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '72' + - '127' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Acid\": \"DB2C55A27AE7CDD5A536A85E6C5A7FBB\",\r\n \"Edition\": - \"Pro\",\r\n \"Version\": \"2.24.6.24152\",\r\n \"AppContext\": {\r\n \"ProjectContext\": + string: "{\r\n \"Acid\": \"05ED10CDD8BD72D3A2C5263AF2D6F87F\",\r\n \"Edition\": + \"Pro\",\r\n \"Version\": \"2.24.7.24233\",\r\n \"AppContext\": {\r\n \"ProjectContext\": {\r\n \"No\": true\r\n },\r\n \"TeamContext\": {\r\n \"No\": true\r\n }\r\n },\r\n \"Culture\": {\r\n \"Name\": \"en-US\",\r\n \ \"TimePattern\": \"g:i A\",\r\n \"ShortDateFormat\": \"M/d/yyyy\",\r\n @@ -92,80 +92,301 @@ http_interactions: \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n \ \"Id\": 2276,\r\n \"Name\": \"Foo321bar\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2274,\r\n - \ \"Name\": \"Foobar\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2496,\r\n + \ \"Name\": \"Foobar1\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 2014,\r\n \"Name\": + \"foobar3318392\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5539,\r\n \"Name\": \"Pro103683955\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5760,\r\n + \ \"Name\": \"Pro121446515\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6524,\r\n \"Name\": + \"Pro122567198\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5575,\r\n \"Name\": \"Pro12528784\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6107,\r\n + \ \"Name\": \"Pro141631735\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6264,\r\n \"Name\": + \"Pro158609546\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5757,\r\n \"Name\": \"Pro159813995\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6359,\r\n + \ \"Name\": \"Pro216679486\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6362,\r\n \"Name\": + \"Pro235684102\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5244,\r\n \"Name\": \"Pro240982527\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5546,\r\n + \ \"Name\": \"Pro244654948\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5242,\r\n \"Name\": + \"Pro246959479\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6157,\r\n \"Name\": \"Pro259145757\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5780,\r\n + \ \"Name\": \"Pro263406813\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6209,\r\n \"Name\": + \"Pro267951225\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5812,\r\n \"Name\": \"Pro298431202\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5916,\r\n + \ \"Name\": \"Pro298458723\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6857,\r\n \"Name\": + \"Pro305079333\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6204,\r\n \"Name\": \"Pro334133141\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5549,\r\n + \ \"Name\": \"Pro345369757\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5824,\r\n \"Name\": + \"Pro359689253\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5604,\r\n \"Name\": \"Pro381704122\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6488,\r\n + \ \"Name\": \"Pro383103536\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6320,\r\n \"Name\": + \"Pro398900021\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6685,\r\n \"Name\": \"Pro410026954\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6072,\r\n + \ \"Name\": \"Pro416445554\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6724,\r\n \"Name\": + \"Pro427983583\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6669,\r\n \"Name\": \"Pro440987352\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5713,\r\n + \ \"Name\": \"Pro446198366\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5263,\r\n \"Name\": + \"Pro455094795\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5671,\r\n \"Name\": \"Pro469595164\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6826,\r\n + \ \"Name\": \"Pro471072885\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6605,\r\n \"Name\": + \"Pro498438092\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5728,\r\n \"Name\": \"Pro50060010\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6132,\r\n + \ \"Name\": \"Pro504512139\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6220,\r\n \"Name\": + \"Pro52849860\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6065,\r\n \"Name\": \"Pro546321018\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6403,\r\n + \ \"Name\": \"Pro562759858\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6216,\r\n \"Name\": + \"Pro578115572\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 4804,\r\n \"Name\": \"Pro593107887\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5254,\r\n + \ \"Name\": \"Pro59602249\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2496,\r\n \"Name\": - \"Foobar1\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6674,\r\n \"Name\": + \"Pro608166519\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 2014,\r\n \"Name\": \"foobar3318392\",\r\n \"Process\": + \ \"Id\": 6766,\r\n \"Name\": \"Pro612075580\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2030,\r\n - \ \"Name\": \"Project_new_name2499868962\",\r\n \"Process\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6580,\r\n + \ \"Name\": \"Pro64962675\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5815,\r\n \"Name\": + \"Pro654628017\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5487,\r\n \"Name\": \"Pro662543172\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5930,\r\n + \ \"Name\": \"Pro672453733\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5911,\r\n \"Name\": + \"Pro680525404\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 4815,\r\n \"Name\": \"Pro680760442\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6504,\r\n + \ \"Name\": \"Pro682900520\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6035,\r\n \"Name\": + \"Pro683391457\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6448,\r\n \"Name\": \"Pro68752860\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5253,\r\n + \ \"Name\": \"Pro693831933\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6804,\r\n \"Name\": + \"Pro695731416\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6453,\r\n \"Name\": \"Pro70549878\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4536,\r\n - \ \"Name\": \"Project_new_name3031244325\",\r\n \"Process\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6269,\r\n + \ \"Name\": \"Pro720706755\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5519,\r\n \"Name\": + \"Pro732389221\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6325,\r\n \"Name\": \"Pro740400251\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2022,\r\n - \ \"Name\": \"Project_new_name6757305669\",\r\n \"Process\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6260,\r\n + \ \"Name\": \"Pro7509074\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 4803,\r\n \"Name\": + \"Pro767593084\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6376,\r\n \"Name\": \"Pro770383188\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2026,\r\n - \ \"Name\": \"Project1306696328\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4802,\r\n + \ \"Name\": \"Pro789483755\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2023,\r\n \"Name\": - \"Project1694405550\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 5955,\r\n \"Name\": + \"Pro797028637\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5668,\r\n \"Name\": \"Pro813841994\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6401,\r\n + \ \"Name\": \"Pro815780701\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6449,\r\n \"Name\": + \"Pro824961957\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5982,\r\n \"Name\": \"Pro828186529\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6780,\r\n + \ \"Name\": \"Pro839948164\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6557,\r\n \"Name\": + \"Pro843416707\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5664,\r\n \"Name\": \"Pro845845758\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6671,\r\n + \ \"Name\": \"Pro875869217\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6399,\r\n \"Name\": + \"Pro879861284\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6007,\r\n \"Name\": \"Pro885719540\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6666,\r\n + \ \"Name\": \"Pro90330096\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6205,\r\n \"Name\": + \"Pro912426225\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5717,\r\n \"Name\": \"Pro913010036\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5882,\r\n + \ \"Name\": \"Pro913232634\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5857,\r\n \"Name\": + \"Pro924363580\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6694,\r\n \"Name\": \"Pro962296886\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6200,\r\n + \ \"Name\": \"Pro971094660\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5634,\r\n \"Name\": + \"Pro977160972\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5490,\r\n \"Name\": \"Pro988274817\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6444,\r\n + \ \"Name\": \"Pro994036877\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 2030,\r\n \"Name\": + \"Project_new_name2499868962\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 4536,\r\n \"Name\": + \"Project_new_name3031244325\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 2022,\r\n \"Name\": + \"Project_new_name6757305669\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 2026,\r\n \"Name\": + \"Project1306696328\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 4535,\r\n \"Name\": \"Project1736096232\",\r\n + \ },\r\n {\r\n \"Id\": 4671,\r\n \"Name\": \"Project148854312\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 2015,\r\n \"Name\": \"Project2135869770\",\r\n \"Process\": + 2023,\r\n \"Name\": \"Project1694405550\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2032,\r\n - \ \"Name\": \"Project2168633823\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4535,\r\n + \ \"Name\": \"Project1736096232\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 4531,\r\n \"Name\": - \"Project2498866686\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 2015,\r\n \"Name\": + \"Project2135869770\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 2031,\r\n \"Name\": \"Project321906060\",\r\n + \ },\r\n {\r\n \"Id\": 2032,\r\n \"Name\": \"Project2168633823\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 2019,\r\n \"Name\": \"Project3375152595\",\r\n \"Process\": + 4531,\r\n \"Name\": \"Project2498866686\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2027,\r\n - \ \"Name\": \"Project384976238\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2031,\r\n + \ \"Name\": \"Project321906060\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2017,\r\n \"Name\": - \"Project391746579\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 2019,\r\n \"Name\": + \"Project3375152595\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 2020,\r\n \"Name\": \"Project4201565256\",\r\n + \ },\r\n {\r\n \"Id\": 2027,\r\n \"Name\": \"Project384976238\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 2011,\r\n \"Name\": \"Project466748765\",\r\n \"Process\": {\r\n + 2017,\r\n \"Name\": \"Project391746579\",\r\n \"Process\": {\r\n \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2024,\r\n \"Name\": - \"Project4809733732\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 2020,\r\n \"Name\": + \"Project4201565256\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 4537,\r\n \"Name\": \"Project5007063875\",\r\n + \ },\r\n {\r\n \"Id\": 2011,\r\n \"Name\": \"Project466748765\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 2025,\r\n \"Name\": \"Project5677221732\",\r\n \"Process\": + 2024,\r\n \"Name\": \"Project4809733732\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2013,\r\n - \ \"Name\": \"Project58250070\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4537,\r\n + \ \"Name\": \"Project5007063875\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2012,\r\n \"Name\": - \"Project5946354427\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 2025,\r\n \"Name\": + \"Project5677221732\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 2029,\r\n \"Name\": \"Project66411145\",\r\n + \ },\r\n {\r\n \"Id\": 2013,\r\n \"Name\": \"Project58250070\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 2021,\r\n \"Name\": \"Project855107760\",\r\n \"Process\": {\r\n - \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2010,\r\n \"Name\": - \"Project8872909665\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + 2012,\r\n \"Name\": \"Project5946354427\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2029,\r\n + \ \"Name\": \"Project66411145\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 2021,\r\n \"Name\": + \"Project855107760\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ }\r\n ]\r\n },\r\n \"SelectedTeams\": {\r\n \"Items\": []\r\n - \ }\r\n}" + \ },\r\n {\r\n \"Id\": 2010,\r\n \"Name\": \"Project8872909665\",\r\n + \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Program\": null\r\n }\r\n ]\r\n },\r\n \"SelectedTeams\": + {\r\n \"Items\": []\r\n }\r\n}" http_version: - recorded_at: Thu, 15 Aug 2013 13:56:34 GMT + recorded_at: Fri, 23 Aug 2013 11:07:19 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_single_id.yml b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_single_id.yml index 6657bd1..8447c03 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_single_id.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_single_id.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/context/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/context/?format=json&ids=1705 body: - encoding: UTF-8 - string: ids=1705&format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:34 GMT + - Fri, 23 Aug 2013 11:07:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -35,13 +35,13 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '69' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: "{\r\n \"Acid\": \"6C17D8319C81AC3D36AFAD64CAE08A28\",\r\n \"Edition\": - \"Pro\",\r\n \"Version\": \"2.24.6.24152\",\r\n \"AppContext\": {\r\n \"ProjectContext\": + \"Pro\",\r\n \"Version\": \"2.24.7.24233\",\r\n \"AppContext\": {\r\n \"ProjectContext\": {\r\n \"No\": true\r\n },\r\n \"TeamContext\": {\r\n \"No\": true\r\n }\r\n },\r\n \"Culture\": {\r\n \"Name\": \"en-US\",\r\n \ \"TimePattern\": \"g:i A\",\r\n \"ShortDateFormat\": \"M/d/yyyy\",\r\n @@ -84,5 +84,5 @@ http_interactions: \ ]\r\n },\r\n \"SelectedProjects\": {\r\n \"Items\": []\r\n },\r\n \ \"SelectedTeams\": {\r\n \"Items\": []\r\n }\r\n}" http_version: - recorded_at: Thu, 15 Aug 2013 13:56:34 GMT + recorded_at: Fri, 23 Aug 2013 11:07:20 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_global_context.yml b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_global_context.yml index 0391a8f..7dcce6a 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_global_context.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_global_context.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/context/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/context/?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,11 +15,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:33 GMT + - Fri, 23 Aug 2013 11:07:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '8606' + - '23463' Connection: - keep-alive Keep-Alive: @@ -35,13 +35,13 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '54' + - '101' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Acid\": \"DB2C55A27AE7CDD5A536A85E6C5A7FBB\",\r\n \"Edition\": - \"Pro\",\r\n \"Version\": \"2.24.6.24152\",\r\n \"AppContext\": {\r\n \"ProjectContext\": + string: "{\r\n \"Acid\": \"05ED10CDD8BD72D3A2C5263AF2D6F87F\",\r\n \"Edition\": + \"Pro\",\r\n \"Version\": \"2.24.7.24233\",\r\n \"AppContext\": {\r\n \"ProjectContext\": {\r\n \"No\": true\r\n },\r\n \"TeamContext\": {\r\n \"No\": true\r\n }\r\n },\r\n \"Culture\": {\r\n \"Name\": \"en-US\",\r\n \ \"TimePattern\": \"g:i A\",\r\n \"ShortDateFormat\": \"M/d/yyyy\",\r\n @@ -92,80 +92,301 @@ http_interactions: \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n \ \"Id\": 2276,\r\n \"Name\": \"Foo321bar\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2274,\r\n - \ \"Name\": \"Foobar\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2496,\r\n + \ \"Name\": \"Foobar1\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 2014,\r\n \"Name\": + \"foobar3318392\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5539,\r\n \"Name\": \"Pro103683955\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5760,\r\n + \ \"Name\": \"Pro121446515\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6524,\r\n \"Name\": + \"Pro122567198\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5575,\r\n \"Name\": \"Pro12528784\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6107,\r\n + \ \"Name\": \"Pro141631735\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6264,\r\n \"Name\": + \"Pro158609546\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5757,\r\n \"Name\": \"Pro159813995\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6359,\r\n + \ \"Name\": \"Pro216679486\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6362,\r\n \"Name\": + \"Pro235684102\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5244,\r\n \"Name\": \"Pro240982527\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5546,\r\n + \ \"Name\": \"Pro244654948\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5242,\r\n \"Name\": + \"Pro246959479\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6157,\r\n \"Name\": \"Pro259145757\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5780,\r\n + \ \"Name\": \"Pro263406813\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6209,\r\n \"Name\": + \"Pro267951225\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5812,\r\n \"Name\": \"Pro298431202\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5916,\r\n + \ \"Name\": \"Pro298458723\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6857,\r\n \"Name\": + \"Pro305079333\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6204,\r\n \"Name\": \"Pro334133141\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5549,\r\n + \ \"Name\": \"Pro345369757\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5824,\r\n \"Name\": + \"Pro359689253\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5604,\r\n \"Name\": \"Pro381704122\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6488,\r\n + \ \"Name\": \"Pro383103536\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6320,\r\n \"Name\": + \"Pro398900021\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6685,\r\n \"Name\": \"Pro410026954\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6072,\r\n + \ \"Name\": \"Pro416445554\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6724,\r\n \"Name\": + \"Pro427983583\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6669,\r\n \"Name\": \"Pro440987352\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5713,\r\n + \ \"Name\": \"Pro446198366\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5263,\r\n \"Name\": + \"Pro455094795\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5671,\r\n \"Name\": \"Pro469595164\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6826,\r\n + \ \"Name\": \"Pro471072885\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6605,\r\n \"Name\": + \"Pro498438092\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5728,\r\n \"Name\": \"Pro50060010\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6132,\r\n + \ \"Name\": \"Pro504512139\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6220,\r\n \"Name\": + \"Pro52849860\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6065,\r\n \"Name\": \"Pro546321018\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6403,\r\n + \ \"Name\": \"Pro562759858\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6216,\r\n \"Name\": + \"Pro578115572\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 4804,\r\n \"Name\": \"Pro593107887\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5254,\r\n + \ \"Name\": \"Pro59602249\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2496,\r\n \"Name\": - \"Foobar1\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6674,\r\n \"Name\": + \"Pro608166519\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 2014,\r\n \"Name\": \"foobar3318392\",\r\n \"Process\": + \ \"Id\": 6766,\r\n \"Name\": \"Pro612075580\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2030,\r\n - \ \"Name\": \"Project_new_name2499868962\",\r\n \"Process\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6580,\r\n + \ \"Name\": \"Pro64962675\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5815,\r\n \"Name\": + \"Pro654628017\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5487,\r\n \"Name\": \"Pro662543172\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5930,\r\n + \ \"Name\": \"Pro672453733\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5911,\r\n \"Name\": + \"Pro680525404\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 4815,\r\n \"Name\": \"Pro680760442\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6504,\r\n + \ \"Name\": \"Pro682900520\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6035,\r\n \"Name\": + \"Pro683391457\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6448,\r\n \"Name\": \"Pro68752860\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5253,\r\n + \ \"Name\": \"Pro693831933\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6804,\r\n \"Name\": + \"Pro695731416\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6453,\r\n \"Name\": \"Pro70549878\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4536,\r\n - \ \"Name\": \"Project_new_name3031244325\",\r\n \"Process\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6269,\r\n + \ \"Name\": \"Pro720706755\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5519,\r\n \"Name\": + \"Pro732389221\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6325,\r\n \"Name\": \"Pro740400251\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2022,\r\n - \ \"Name\": \"Project_new_name6757305669\",\r\n \"Process\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6260,\r\n + \ \"Name\": \"Pro7509074\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 4803,\r\n \"Name\": + \"Pro767593084\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6376,\r\n \"Name\": \"Pro770383188\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2026,\r\n - \ \"Name\": \"Project1306696328\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4802,\r\n + \ \"Name\": \"Pro789483755\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2023,\r\n \"Name\": - \"Project1694405550\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 5955,\r\n \"Name\": + \"Pro797028637\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5668,\r\n \"Name\": \"Pro813841994\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6401,\r\n + \ \"Name\": \"Pro815780701\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6449,\r\n \"Name\": + \"Pro824961957\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5982,\r\n \"Name\": \"Pro828186529\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6780,\r\n + \ \"Name\": \"Pro839948164\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6557,\r\n \"Name\": + \"Pro843416707\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5664,\r\n \"Name\": \"Pro845845758\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6671,\r\n + \ \"Name\": \"Pro875869217\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6399,\r\n \"Name\": + \"Pro879861284\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6007,\r\n \"Name\": \"Pro885719540\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6666,\r\n + \ \"Name\": \"Pro90330096\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6205,\r\n \"Name\": + \"Pro912426225\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5717,\r\n \"Name\": \"Pro913010036\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5882,\r\n + \ \"Name\": \"Pro913232634\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5857,\r\n \"Name\": + \"Pro924363580\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6694,\r\n \"Name\": \"Pro962296886\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6200,\r\n + \ \"Name\": \"Pro971094660\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 5634,\r\n \"Name\": + \"Pro977160972\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 5490,\r\n \"Name\": \"Pro988274817\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6444,\r\n + \ \"Name\": \"Pro994036877\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 2030,\r\n \"Name\": + \"Project_new_name2499868962\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 4536,\r\n \"Name\": + \"Project_new_name3031244325\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 2022,\r\n \"Name\": + \"Project_new_name6757305669\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 2026,\r\n \"Name\": + \"Project1306696328\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 4535,\r\n \"Name\": \"Project1736096232\",\r\n + \ },\r\n {\r\n \"Id\": 4671,\r\n \"Name\": \"Project148854312\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 2015,\r\n \"Name\": \"Project2135869770\",\r\n \"Process\": + 2023,\r\n \"Name\": \"Project1694405550\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2032,\r\n - \ \"Name\": \"Project2168633823\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4535,\r\n + \ \"Name\": \"Project1736096232\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 4531,\r\n \"Name\": - \"Project2498866686\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 2015,\r\n \"Name\": + \"Project2135869770\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 2031,\r\n \"Name\": \"Project321906060\",\r\n + \ },\r\n {\r\n \"Id\": 2032,\r\n \"Name\": \"Project2168633823\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 2019,\r\n \"Name\": \"Project3375152595\",\r\n \"Process\": + 4531,\r\n \"Name\": \"Project2498866686\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2027,\r\n - \ \"Name\": \"Project384976238\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2031,\r\n + \ \"Name\": \"Project321906060\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2017,\r\n \"Name\": - \"Project391746579\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 2019,\r\n \"Name\": + \"Project3375152595\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 2020,\r\n \"Name\": \"Project4201565256\",\r\n + \ },\r\n {\r\n \"Id\": 2027,\r\n \"Name\": \"Project384976238\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 2011,\r\n \"Name\": \"Project466748765\",\r\n \"Process\": {\r\n + 2017,\r\n \"Name\": \"Project391746579\",\r\n \"Process\": {\r\n \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2024,\r\n \"Name\": - \"Project4809733732\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 2020,\r\n \"Name\": + \"Project4201565256\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 4537,\r\n \"Name\": \"Project5007063875\",\r\n + \ },\r\n {\r\n \"Id\": 2011,\r\n \"Name\": \"Project466748765\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 2025,\r\n \"Name\": \"Project5677221732\",\r\n \"Process\": + 2024,\r\n \"Name\": \"Project4809733732\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2013,\r\n - \ \"Name\": \"Project58250070\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4537,\r\n + \ \"Name\": \"Project5007063875\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2012,\r\n \"Name\": - \"Project5946354427\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 2025,\r\n \"Name\": + \"Project5677221732\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 2029,\r\n \"Name\": \"Project66411145\",\r\n + \ },\r\n {\r\n \"Id\": 2013,\r\n \"Name\": \"Project58250070\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 2021,\r\n \"Name\": \"Project855107760\",\r\n \"Process\": {\r\n - \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2010,\r\n \"Name\": - \"Project8872909665\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + 2012,\r\n \"Name\": \"Project5946354427\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2029,\r\n + \ \"Name\": \"Project66411145\",\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 2021,\r\n \"Name\": + \"Project855107760\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ }\r\n ]\r\n },\r\n \"SelectedTeams\": {\r\n \"Items\": []\r\n - \ }\r\n}" + \ },\r\n {\r\n \"Id\": 2010,\r\n \"Name\": \"Project8872909665\",\r\n + \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Program\": null\r\n }\r\n ]\r\n },\r\n \"SelectedTeams\": + {\r\n \"Items\": []\r\n }\r\n}" http_version: - recorded_at: Thu, 15 Aug 2013 13:56:33 GMT + recorded_at: Fri, 23 Aug 2013 11:07:18 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_unexisted_id_in_path/raise_NotFound_error.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_unexisted_id_in_path/raise_NotFound_error.yml index eba8066..cac7e62 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_unexisted_id_in_path/raise_NotFound_error.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_unexisted_id_in_path/raise_NotFound_error.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:03 GMT + - Fri, 23 Aug 2013 11:01:00 GMT Content-Type: - text/xml; charset=utf-8 Content-Length: @@ -65,5 +65,5 @@ http_interactions: parameters)\r\n at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)\r\n \r\n" http_version: - recorded_at: Thu, 15 Aug 2013 13:56:02 GMT + recorded_at: Fri, 23 Aug 2013 11:01:09 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_url_to_existed_entity/respond_with_200_code.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_url_to_existed_entity/respond_with_200_code.yml index 18ca193..53fb575 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_url_to_existed_entity/respond_with_200_code.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_url_to_existed_entity/respond_with_200_code.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Foo-899875"}' + string: '{"Name":"Foo-50110"}' headers: Content-Type: - application/json @@ -17,7 +17,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:02 GMT + - Fri, 23 Aug 2013 11:00:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '226' + - '491' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4540,\r\n \"Name\": \"Foo-899875\",\r\n \"Description\": + string: "{\r\n \"Id\": 6844,\r\n \"Name\": \"Foo-50110\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376574969000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376574969000-0500)\\/\",\r\n + \"\\/Date(1377255667000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255667000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 31.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"FOO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,10 +54,10 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Thu, 15 Aug 2013 13:56:02 GMT + recorded_at: Fri, 23 Aug 2013 11:01:08 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/projects/4540 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/projects/6844 body: encoding: US-ASCII string: '' @@ -70,7 +70,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:02 GMT + - Fri, 23 Aug 2013 11:01:12 GMT Content-Length: - '0' Connection: @@ -88,12 +88,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '102' + - '112' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Thu, 15 Aug 2013 13:56:02 GMT + recorded_at: Fri, 23 Aug 2013 11:01:09 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/id/returns_hash_of_entity_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/id/returns_hash_of_entity_attributes.yml index 8bc7f95..4c0e0eb 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/id/returns_hash_of_entity_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/id/returns_hash_of_entity_attributes.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/entitytypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/entitytypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:55:57 GMT + - Fri, 23 Aug 2013 11:00:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -43,5 +43,5 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Thu, 15 Aug 2013 13:55:57 GMT + recorded_at: Fri, 23 Aug 2013 11:01:04 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/it_returns_array_of_entities_attributes_hashes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/it_returns_array_of_entities_attributes_hashes.yml index 088ed03..59376cf 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/it_returns_array_of_entities_attributes_hashes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/it_returns_array_of_entities_attributes_hashes.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/entitytypes + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/entitytypes?format=json&orderby=id&skip=4&take=2 body: - encoding: UTF-8 - string: orderby=id&take=2&skip=4&format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:55:58 GMT + - Fri, 23 Aug 2013 11:00:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -47,5 +47,5 @@ http_interactions: \ {\r\n \"Id\": 6,\r\n \"Name\": \"User\",\r\n \"IsExtendable\": false,\r\n \"IsSearchable\": false\r\n }\r\n ]\r\n}" http_version: - recorded_at: Thu, 15 Aug 2013 13:55:58 GMT + recorded_at: Fri, 23 Aug 2013 11:01:05 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_id_/it_raises_NotFound_error.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_id_/it_raises_NotFound_error.yml index f15d0bf..7746aba 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_id_/it_raises_NotFound_error.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_id_/it_raises_NotFound_error.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/tasks/123123 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/tasks/123123?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:55:59 GMT + - Fri, 23 Aug 2013 11:00:56 GMT Content-Type: - text/xml; charset=utf-8 Content-Length: @@ -61,5 +61,5 @@ http_interactions: parameters)\r\n at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)\r\n \r\n" http_version: - recorded_at: Thu, 15 Aug 2013 13:55:59 GMT + recorded_at: Fri, 23 Aug 2013 11:01:05 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_path_/it_raises_UnexpectedError.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_path_/it_raises_UnexpectedError.yml index 944e523..9847a16 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_path_/it_raises_UnexpectedError.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_path_/it_raises_UnexpectedError.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/foobars/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/foobars/?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:55:58 GMT + - Fri, 23 Aug 2013 11:01:08 GMT Content-Type: - text/html; charset=utf-8 Content-Length: @@ -52,5 +52,5 @@ http_interactions: following URL and make sure that it is spelled correctly.\r\n

\r\n\r\n \ Requested URL: /api/v1/foobars/

\r\n\r\n \r\n\r\n" http_version: - recorded_at: Thu, 15 Aug 2013 13:55:58 GMT + recorded_at: Fri, 23 Aug 2013 11:01:05 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_correct_path_and_options/returns_hash_of_entities_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_correct_path_and_options/returns_hash_of_entities_attributes.yml index 4be2d60..135d2d6 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_correct_path_and_options/returns_hash_of_entities_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_correct_path_and_options/returns_hash_of_entities_attributes.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/projects body: encoding: UTF-8 - string: '{"Name":"foobar3193970"}' + string: '{"Name":"foobar4354710"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:00 GMT + - Fri, 23 Aug 2013 11:01:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '733' Connection: - keep-alive Keep-Alive: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '455' + - '643' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4539,\r\n \"Name\": \"foobar3193970\",\r\n \"Description\": + string: "{\r\n \"Id\": 6843,\r\n \"Name\": \"foobar4354710\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376574967000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376574967000-0500)\\/\",\r\n + \"\\/Date(1377255665000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255665000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 31.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"FOO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,10 +54,10 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Thu, 15 Aug 2013 13:56:00 GMT + recorded_at: Fri, 23 Aug 2013 11:01:06 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/projects/4539 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/projects/6843 body: encoding: US-ASCII string: '' @@ -70,7 +70,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:00 GMT + - Fri, 23 Aug 2013 11:00:58 GMT Content-Length: - '0' Connection: @@ -88,12 +88,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '93' + - '133' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Thu, 15 Aug 2013 13:56:00 GMT + recorded_at: Fri, 23 Aug 2013 11:01:07 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_incorrect_path_and_options/raises_UnexpectedError.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_incorrect_path_and_options/raises_UnexpectedError.yml index 6619504..dcfdf9a 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_incorrect_path_and_options/raises_UnexpectedError.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_incorrect_path_and_options/raises_UnexpectedError.yml @@ -17,7 +17,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:01 GMT + - Fri, 23 Aug 2013 11:01:11 GMT Content-Type: - text/html; charset=utf-8 Content-Length: @@ -54,5 +54,5 @@ http_interactions: following URL and make sure that it is spelled correctly.\r\n

\r\n\r\n \ Requested URL: /api/v1/foo/

\r\n\r\n \r\n\r\n" http_version: - recorded_at: Thu, 15 Aug 2013 13:56:01 GMT + recorded_at: Fri, 23 Aug 2013 11:01:07 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/with_options/returns_all_subject_with_conditions_.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/with_options/returns_all_subject_with_conditions_.yml index d2f5c64..077b7e6 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/with_options/returns_all_subject_with_conditions_.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/with_options/returns_all_subject_with_conditions_.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/?format=json&skip=1&take=1 body: - encoding: UTF-8 - string: take=1&skip=1&format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:37 GMT + - Fri, 23 Aug 2013 11:03:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -35,7 +35,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '63' + - '81' X-Ua-Compatible: - IE=edge body: @@ -46,7 +46,7 @@ http_interactions: \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376476665000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376476665000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n - \ \"Tags\": \"\",\r\n \"NumericPriority\": 26.0,\r\n \"IsActive\": + \ \"Tags\": \"\",\r\n \"NumericPriority\": 25.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"FB\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -56,5 +56,5 @@ http_interactions: 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:36 GMT + recorded_at: Fri, 23 Aug 2013 11:03:38 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/without_options/returns_array_of_projects.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/without_options/returns_array_of_projects.yml index c4185c1..fd78be8 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/without_options/returns_array_of_projects.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/without_options/returns_array_of_projects.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,11 +15,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:33 GMT + - Fri, 23 Aug 2013 11:03:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '22092' + - '21937' Connection: - keep-alive Keep-Alive: @@ -35,7 +35,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '76' + - '91' X-Ua-Compatible: - IE=edge body: @@ -45,7 +45,7 @@ http_interactions: \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376417060000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376417060000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n - \ \"Tags\": \"\",\r\n \"NumericPriority\": 25.0,\r\n \"IsActive\": + \ \"Tags\": \"\",\r\n \"NumericPriority\": 24.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"BAR\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -57,7 +57,7 @@ http_interactions: \"foo bar\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376476665000-0500)\\/\",\r\n \ \"ModifyDate\": \"\\/Date(1376476665000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 26.0,\r\n \"IsActive\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 25.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"FB\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -69,7 +69,7 @@ http_interactions: \"Foo123bar\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376385905000-0500)\\/\",\r\n \ \"ModifyDate\": \"\\/Date(1376385912000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 22.0,\r\n \"IsActive\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 21.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"FOO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -81,19 +81,7 @@ http_interactions: \"Foo321bar\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376385923000-0500)\\/\",\r\n \ \"ModifyDate\": \"\\/Date(1376385923000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 23.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"FOO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2274,\r\n \"Name\": - \"Foobar\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376385752000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376385759000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 21.0,\r\n \"IsActive\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 22.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"FOO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -105,7 +93,7 @@ http_interactions: \"Foobar1\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376392539000-0500)\\/\",\r\n \ \"ModifyDate\": \"\\/Date(1376392539000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 24.0,\r\n \"IsActive\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 23.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"FOO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -125,11 +113,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2030,\r\n \"Name\": - \"Project_new_name2499868962\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310873000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310875000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 18.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5539,\r\n \"Name\": + \"Pro103683955\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377101050000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377101050000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 43.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -137,11 +125,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 4536,\r\n \"Name\": - \"Project_new_name3031244325\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376568045000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376568045000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 29.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5760,\r\n \"Name\": + \"Pro121446515\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377102831000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377102831000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 56.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -149,11 +137,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2022,\r\n \"Name\": - \"Project_new_name6757305669\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310855000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310856000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 11.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6524,\r\n \"Name\": + \"Pro122567198\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377158244000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377158244000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 98.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -161,11 +149,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2026,\r\n \"Name\": - \"Project1306696328\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310862000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310862000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 15.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5575,\r\n \"Name\": + \"Pro12528784\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377101092000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377101092000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 46.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -173,11 +161,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2023,\r\n \"Name\": - \"Project1694405550\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310857000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310857000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 12.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6107,\r\n \"Name\": + \"Pro141631735\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377104887000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377104887000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 72.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -185,11 +173,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 4535,\r\n \"Name\": - \"Project1736096232\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376568042000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376568042000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 28.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6264,\r\n \"Name\": + \"Pro158609546\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377157628000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377157628000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 82.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -197,11 +185,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2015,\r\n \"Name\": - \"Project2135869770\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310842000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310842000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 6.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5757,\r\n \"Name\": + \"Pro159813995\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377102829000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377102829000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 55.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -209,11 +197,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2032,\r\n \"Name\": - \"Project2168633823\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310879000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310879000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 20.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6359,\r\n \"Name\": + \"Pro216679486\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377157937000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377157937000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 86.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -221,11 +209,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 4531,\r\n \"Name\": - \"Project2498866686\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376568036000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376568036000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 27.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6362,\r\n \"Name\": + \"Pro235684102\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377157938000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377157938000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 87.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -233,11 +221,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2031,\r\n \"Name\": - \"Project321906060\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310876000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310876000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 19.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5244,\r\n \"Name\": + \"Pro240982527\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377008766000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377008766000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 36.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -245,24 +233,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2019,\r\n \"Name\": - \"Project3375152595\",\r\n \"Description\": null,\r\n \"StartDate\": - \"\\/Date(1376310842000-0500)\\/\",\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376310848000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376310848000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 8.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n - \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n - \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": - \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n - \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": - null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n - \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n - \ {\r\n \"Id\": 2027,\r\n \"Name\": \"Project384976238\",\r\n - \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": - null,\r\n \"CreateDate\": \"\\/Date(1376310864000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1376310864000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n - \ \"Tags\": \"\",\r\n \"NumericPriority\": 16.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5546,\r\n \"Name\": + \"Pro244654948\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377101056000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377101056000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 44.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -270,11 +245,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2017,\r\n \"Name\": - \"Project391746579\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310845000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310845000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 7.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5242,\r\n \"Name\": + \"Pro246959479\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377008764000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377008764000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 35.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -282,24 +257,47 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2020,\r\n \"Name\": - \"Project4201565256\",\r\n \"Description\": null,\r\n \"StartDate\": - \"\\/Date(1376310845000-0500)\\/\",\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376310851000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376310851000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 9.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n - \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n - \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": - \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n - \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": - null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n - \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n - \ {\r\n \"Id\": 2011,\r\n \"Name\": \"Project466748765\",\r\n - \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": - null,\r\n \"CreateDate\": \"\\/Date(1376310831000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1376310831000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n - \ \"Tags\": \"\",\r\n \"NumericPriority\": 2.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6157,\r\n \"Name\": + \"Pro259145757\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377105364000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377105364000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 74.0,\r\n \"IsActive\": + true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n + \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": + {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": + {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": + \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": + null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5780,\r\n \"Name\": + \"Pro263406813\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377102866000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377102866000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 57.0,\r\n \"IsActive\": + true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n + \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": + {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": + {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": + \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": + null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6209,\r\n \"Name\": + \"Pro267951225\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377157594000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377157594000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 78.0,\r\n \"IsActive\": + true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n + \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": + {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": + {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": + \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": + null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5812,\r\n \"Name\": + \"Pro298431202\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377102920000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377102920000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 58.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -307,11 +305,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2024,\r\n \"Name\": - \"Project4809733732\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310859000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310859000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 13.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5916,\r\n \"Name\": + \"Pro298458723\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377103697000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377103697000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 64.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -319,11 +317,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 4537,\r\n \"Name\": - \"Project5007063875\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376568048000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376568048000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 30.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6204,\r\n \"Name\": + \"Pro334133141\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377157592000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377157592000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 76.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -331,11 +329,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2025,\r\n \"Name\": - \"Project5677221732\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310861000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310861000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 14.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5549,\r\n \"Name\": + \"Pro345369757\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377101058000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377101058000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 45.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -345,5 +343,5 @@ http_interactions: 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:35 GMT + recorded_at: Fri, 23 Aug 2013 11:03:38 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_getter_for_referenced_items.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_getter_for_referenced_items.yml index c4bc618..a73b996 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_getter_for_referenced_items.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_getter_for_referenced_items.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Pro381650585"}' + string: '{"Name":"Pro981891334"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:01 GMT + - Fri, 23 Aug 2013 11:03:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '406' + - '460' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5488,\r\n \"Name\": \"Pro381650585\",\r\n \"Description\": + string: "{\r\n \"Id\": 6855,\r\n \"Name\": \"Pro981891334\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377087544000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377087544000-0500)\\/\",\r\n + \"\\/Date(1377255842000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255842000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,13 +54,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:06 GMT + recorded_at: Fri, 23 Aug 2013 11:04:04 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/ body: encoding: UTF-8 - string: '{"Name":"story2","Project":{"id":5488}}' + string: '{"Name":"story2","Project":{"id":6855}}' headers: Content-Type: - application/json @@ -72,11 +72,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:09 GMT + - Fri, 23 Aug 2013 11:04:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -92,33 +92,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '269' + - '348' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5489,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6856,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377087545000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377087545000-0500)\\/\",\r\n + \"\\/Date(1377255843000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255844000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5488,\r\n \"Name\": \"Pro381650585\"\r\n + \ \"Project\": {\r\n \"Id\": 6855,\r\n \"Name\": \"Pro981891334\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:07 GMT + recorded_at: Fri, 23 Aug 2013 11:04:05 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5488 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6855?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -128,11 +128,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:02 GMT + - Fri, 23 Aug 2013 11:03:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -148,16 +148,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '28' + - '48' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5488,\r\n \"Name\": \"Pro381650585\",\r\n \"Description\": + string: "{\r\n \"Id\": 6855,\r\n \"Name\": \"Pro981891334\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377087544000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377087544000-0500)\\/\",\r\n + \"\\/Date(1377255842000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255842000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -165,13 +165,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:07 GMT + recorded_at: Fri, 23 Aug 2013 11:04:05 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5488 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6855?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -181,11 +181,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:10 GMT + - Fri, 23 Aug 2013 11:04:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -201,16 +201,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '29' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5488,\r\n \"Name\": \"Pro381650585\",\r\n \"Description\": + string: "{\r\n \"Id\": 6855,\r\n \"Name\": \"Pro981891334\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377087544000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377087544000-0500)\\/\",\r\n + \"\\/Date(1377255842000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255842000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -218,13 +218,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:08 GMT + recorded_at: Fri, 23 Aug 2013 11:04:05 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -234,7 +234,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:03 GMT + - Fri, 23 Aug 2013 11:03:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -254,7 +254,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -262,13 +262,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:08 GMT + recorded_at: Fri, 23 Aug 2013 11:04:06 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -278,7 +278,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:11 GMT + - Fri, 23 Aug 2013 11:04:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -298,7 +298,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -306,13 +306,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:09 GMT + recorded_at: Fri, 23 Aug 2013 11:04:06 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -322,7 +322,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:04 GMT + - Fri, 23 Aug 2013 11:03:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -342,7 +342,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -353,13 +353,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:09 GMT + recorded_at: Fri, 23 Aug 2013 11:04:07 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -369,7 +369,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:12 GMT + - Fri, 23 Aug 2013 11:04:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -389,7 +389,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -400,13 +400,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:10 GMT + recorded_at: Fri, 23 Aug 2013 11:04:07 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -416,7 +416,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:05 GMT + - Fri, 23 Aug 2013 11:03:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -436,7 +436,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -445,13 +445,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:10 GMT + recorded_at: Fri, 23 Aug 2013 11:04:07 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -461,7 +461,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:13 GMT + - Fri, 23 Aug 2013 11:04:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -481,7 +481,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -490,13 +490,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:11 GMT + recorded_at: Fri, 23 Aug 2013 11:04:08 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5488/UserStories + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6855/UserStories?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -506,11 +506,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:06 GMT + - Fri, 23 Aug 2013 11:03:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '1155' + - '1156' Connection: - keep-alive Keep-Alive: @@ -526,36 +526,36 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '92' + - '116' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 5489,\r\n \"Name\": + string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 6856,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377087545000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377087545000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 85.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255843000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377255844000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 232.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \ \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n \ },\r\n \"LastCommentedUser\": null,\r\n \"Project\": {\r\n - \ \"Id\": 5488,\r\n \"Name\": \"Pro381650585\"\r\n },\r\n + \ \"Id\": 6855,\r\n \"Name\": \"Pro981891334\"\r\n },\r\n \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:12 GMT + recorded_at: Fri, 23 Aug 2013 11:04:08 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -565,7 +565,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:14 GMT + - Fri, 23 Aug 2013 11:04:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -585,7 +585,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -593,13 +593,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:12 GMT + recorded_at: Fri, 23 Aug 2013 11:04:08 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -609,7 +609,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:07 GMT + - Fri, 23 Aug 2013 11:04:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -629,7 +629,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -637,13 +637,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:13 GMT + recorded_at: Fri, 23 Aug 2013 11:04:09 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -653,7 +653,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:15 GMT + - Fri, 23 Aug 2013 11:04:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -673,7 +673,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -684,13 +684,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:13 GMT + recorded_at: Fri, 23 Aug 2013 11:04:09 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -700,7 +700,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:08 GMT + - Fri, 23 Aug 2013 11:04:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -720,7 +720,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -731,13 +731,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:14 GMT + recorded_at: Fri, 23 Aug 2013 11:04:09 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5488 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6855?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -747,11 +747,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:16 GMT + - Fri, 23 Aug 2013 11:04:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -767,16 +767,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '28' + - '46' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5488,\r\n \"Name\": \"Pro381650585\",\r\n \"Description\": + string: "{\r\n \"Id\": 6855,\r\n \"Name\": \"Pro981891334\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377087544000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377087544000-0500)\\/\",\r\n + \"\\/Date(1377255842000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255842000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -784,13 +784,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:14 GMT + recorded_at: Fri, 23 Aug 2013 11:04:10 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5488 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6855?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -800,11 +800,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:09 GMT + - Fri, 23 Aug 2013 11:04:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -820,16 +820,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '28' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5488,\r\n \"Name\": \"Pro381650585\",\r\n \"Description\": + string: "{\r\n \"Id\": 6855,\r\n \"Name\": \"Pro981891334\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377087544000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377087544000-0500)\\/\",\r\n + \"\\/Date(1377255842000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255842000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -837,13 +837,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:15 GMT + recorded_at: Fri, 23 Aug 2013 11:04:10 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -853,7 +853,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:17 GMT + - Fri, 23 Aug 2013 11:04:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -873,7 +873,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -881,13 +881,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:15 GMT + recorded_at: Fri, 23 Aug 2013 11:04:10 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -897,7 +897,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:10 GMT + - Fri, 23 Aug 2013 11:04:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -917,7 +917,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -925,13 +925,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:16 GMT + recorded_at: Fri, 23 Aug 2013 11:04:11 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -941,7 +941,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:18 GMT + - Fri, 23 Aug 2013 11:04:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -961,7 +961,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -972,13 +972,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:16 GMT + recorded_at: Fri, 23 Aug 2013 11:04:11 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -988,7 +988,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:11 GMT + - Fri, 23 Aug 2013 11:04:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1008,7 +1008,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -1019,13 +1019,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:17 GMT + recorded_at: Fri, 23 Aug 2013 11:04:11 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1035,7 +1035,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:19 GMT + - Fri, 23 Aug 2013 11:04:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1055,7 +1055,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1064,13 +1064,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:17 GMT + recorded_at: Fri, 23 Aug 2013 11:04:12 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1080,7 +1080,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:12 GMT + - Fri, 23 Aug 2013 11:04:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1100,7 +1100,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1109,13 +1109,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:18 GMT + recorded_at: Fri, 23 Aug 2013 11:04:12 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1125,7 +1125,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:20 GMT + - Fri, 23 Aug 2013 11:04:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1154,13 +1154,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:18 GMT + recorded_at: Fri, 23 Aug 2013 11:04:12 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1170,7 +1170,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:13 GMT + - Fri, 23 Aug 2013 11:04:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1190,7 +1190,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '5' X-Ua-Compatible: - IE=edge body: @@ -1199,13 +1199,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:19 GMT + recorded_at: Fri, 23 Aug 2013 11:04:13 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1215,7 +1215,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:21 GMT + - Fri, 23 Aug 2013 11:04:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1235,7 +1235,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '18' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1243,13 +1243,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:19 GMT + recorded_at: Fri, 23 Aug 2013 11:04:13 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1259,7 +1259,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:14 GMT + - Fri, 23 Aug 2013 11:04:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1279,7 +1279,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1287,13 +1287,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:19 GMT + recorded_at: Fri, 23 Aug 2013 11:04:14 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1303,7 +1303,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:22 GMT + - Fri, 23 Aug 2013 11:04:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1323,7 +1323,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '14' X-Ua-Compatible: - IE=edge body: @@ -1334,13 +1334,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:20 GMT + recorded_at: Fri, 23 Aug 2013 11:04:14 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1350,7 +1350,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:15 GMT + - Fri, 23 Aug 2013 11:04:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1370,7 +1370,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '9' X-Ua-Compatible: - IE=edge body: @@ -1381,13 +1381,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:21 GMT + recorded_at: Fri, 23 Aug 2013 11:04:14 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1397,7 +1397,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:23 GMT + - Fri, 23 Aug 2013 11:04:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1417,7 +1417,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1425,13 +1425,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:21 GMT + recorded_at: Fri, 23 Aug 2013 11:04:15 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1441,7 +1441,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:16 GMT + - Fri, 23 Aug 2013 11:04:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1461,7 +1461,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1469,13 +1469,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:21 GMT + recorded_at: Fri, 23 Aug 2013 11:04:15 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1485,7 +1485,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:24 GMT + - Fri, 23 Aug 2013 11:04:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1505,7 +1505,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1514,13 +1514,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:22 GMT + recorded_at: Fri, 23 Aug 2013 11:04:15 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1530,7 +1530,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:17 GMT + - Fri, 23 Aug 2013 11:04:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1550,7 +1550,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1559,10 +1559,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:22 GMT + recorded_at: Fri, 23 Aug 2013 11:04:16 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5488/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6855/ body: encoding: US-ASCII string: '' @@ -1575,7 +1575,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:25 GMT + - Fri, 23 Aug 2013 11:04:19 GMT Content-Length: - '0' Connection: @@ -1593,17 +1593,17 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '86' + - '113' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Wed, 21 Aug 2013 12:19:23 GMT + recorded_at: Fri, 23 Aug 2013 11:04:16 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5489/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6856/ body: encoding: US-ASCII string: '' @@ -1616,7 +1616,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:18 GMT + - Fri, 23 Aug 2013 11:04:08 GMT Content-Length: - '0' Connection: @@ -1634,12 +1634,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '187' + - '228' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Wed, 21 Aug 2013 12:19:23 GMT + recorded_at: Fri, 23 Aug 2013 11:04:17 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_setters_for_referenced_items.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_setters_for_referenced_items.yml index 104dd99..f9de6ef 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_setters_for_referenced_items.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_setters_for_referenced_items.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Pro988274817"}' + string: '{"Name":"Pro305079333"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:26 GMT + - Fri, 23 Aug 2013 11:04:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '215' + - '476' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5490,\r\n \"Name\": \"Pro988274817\",\r\n \"Description\": + string: "{\r\n \"Id\": 6857,\r\n \"Name\": \"Pro305079333\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377087562000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377087562000-0500)\\/\",\r\n + \"\\/Date(1377255856000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255856000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,13 +54,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:24 GMT + recorded_at: Fri, 23 Aug 2013 11:04:18 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/ body: encoding: UTF-8 - string: '{"Name":"story2","Project":{"id":5490}}' + string: '{"Name":"story2","Project":{"id":6857}}' headers: Content-Type: - application/json @@ -72,11 +72,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:22 GMT + - Fri, 23 Aug 2013 11:04:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -92,33 +92,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '140' + - '197' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5491,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6858,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377087565000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377087565000-0500)\\/\",\r\n + \"\\/Date(1377255857000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255857000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5490,\r\n \"Name\": \"Pro988274817\"\r\n + \ \"Project\": {\r\n \"Id\": 6857,\r\n \"Name\": \"Pro305079333\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:27 GMT + recorded_at: Fri, 23 Aug 2013 11:04:18 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5490 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6857?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -128,11 +128,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:30 GMT + - Fri, 23 Aug 2013 11:04:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -148,16 +148,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '30' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5490,\r\n \"Name\": \"Pro988274817\",\r\n \"Description\": + string: "{\r\n \"Id\": 6857,\r\n \"Name\": \"Pro305079333\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377087562000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377087562000-0500)\\/\",\r\n + \"\\/Date(1377255856000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255856000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -165,13 +165,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:28 GMT + recorded_at: Fri, 23 Aug 2013 11:04:19 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -181,7 +181,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:23 GMT + - Fri, 23 Aug 2013 11:04:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -201,7 +201,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -209,13 +209,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:28 GMT + recorded_at: Fri, 23 Aug 2013 11:04:19 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -225,7 +225,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:31 GMT + - Fri, 23 Aug 2013 11:04:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -245,7 +245,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -253,13 +253,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:29 GMT + recorded_at: Fri, 23 Aug 2013 11:04:19 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -269,7 +269,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:24 GMT + - Fri, 23 Aug 2013 11:04:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -289,7 +289,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -300,13 +300,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:29 GMT + recorded_at: Fri, 23 Aug 2013 11:04:20 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -316,7 +316,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:32 GMT + - Fri, 23 Aug 2013 11:04:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -336,7 +336,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -347,13 +347,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:30 GMT + recorded_at: Fri, 23 Aug 2013 11:04:20 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -363,7 +363,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:25 GMT + - Fri, 23 Aug 2013 11:04:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -383,7 +383,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -392,13 +392,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:30 GMT + recorded_at: Fri, 23 Aug 2013 11:04:20 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -408,7 +408,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:33 GMT + - Fri, 23 Aug 2013 11:04:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -428,7 +428,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -437,13 +437,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:31 GMT + recorded_at: Fri, 23 Aug 2013 11:04:21 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5490/UserStories + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6857/UserStories?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -453,11 +453,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:26 GMT + - Fri, 23 Aug 2013 11:04:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '1155' + - '1156' Connection: - keep-alive Keep-Alive: @@ -473,36 +473,36 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '36' + - '60' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 5491,\r\n \"Name\": + string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 6858,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377087565000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377087565000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 85.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255857000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377255857000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 232.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \ \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n \ },\r\n \"LastCommentedUser\": null,\r\n \"Project\": {\r\n - \ \"Id\": 5490,\r\n \"Name\": \"Pro988274817\"\r\n },\r\n + \ \"Id\": 6857,\r\n \"Name\": \"Pro305079333\"\r\n },\r\n \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:31 GMT + recorded_at: Fri, 23 Aug 2013 11:04:21 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -512,7 +512,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:34 GMT + - Fri, 23 Aug 2013 11:04:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -532,7 +532,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -540,13 +540,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:32 GMT + recorded_at: Fri, 23 Aug 2013 11:04:22 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -556,7 +556,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:27 GMT + - Fri, 23 Aug 2013 11:04:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -576,7 +576,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -584,13 +584,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:32 GMT + recorded_at: Fri, 23 Aug 2013 11:04:22 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -600,7 +600,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:35 GMT + - Fri, 23 Aug 2013 11:04:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -620,7 +620,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -631,13 +631,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:33 GMT + recorded_at: Fri, 23 Aug 2013 11:04:22 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -647,7 +647,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:28 GMT + - Fri, 23 Aug 2013 11:04:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -667,7 +667,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -678,13 +678,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:33 GMT + recorded_at: Fri, 23 Aug 2013 11:04:23 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5490 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6857?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -694,11 +694,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:36 GMT + - Fri, 23 Aug 2013 11:04:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -714,16 +714,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '29' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5490,\r\n \"Name\": \"Pro988274817\",\r\n \"Description\": + string: "{\r\n \"Id\": 6857,\r\n \"Name\": \"Pro305079333\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377087562000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377087562000-0500)\\/\",\r\n + \"\\/Date(1377255856000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255856000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -731,13 +731,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:34 GMT + recorded_at: Fri, 23 Aug 2013 11:04:23 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5490 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6857?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -747,11 +747,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:29 GMT + - Fri, 23 Aug 2013 11:04:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -767,16 +767,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '28' + - '48' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5490,\r\n \"Name\": \"Pro988274817\",\r\n \"Description\": + string: "{\r\n \"Id\": 6857,\r\n \"Name\": \"Pro305079333\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377087562000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377087562000-0500)\\/\",\r\n + \"\\/Date(1377255856000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255856000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -784,13 +784,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:34 GMT + recorded_at: Fri, 23 Aug 2013 11:04:23 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -800,7 +800,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:37 GMT + - Fri, 23 Aug 2013 11:04:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -820,7 +820,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -828,13 +828,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:35 GMT + recorded_at: Fri, 23 Aug 2013 11:04:24 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -844,7 +844,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:30 GMT + - Fri, 23 Aug 2013 11:04:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -864,7 +864,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -872,13 +872,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:35 GMT + recorded_at: Fri, 23 Aug 2013 11:04:24 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -888,7 +888,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:38 GMT + - Fri, 23 Aug 2013 11:04:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -908,7 +908,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -919,13 +919,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:36 GMT + recorded_at: Fri, 23 Aug 2013 11:04:24 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -935,7 +935,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:31 GMT + - Fri, 23 Aug 2013 11:04:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -955,7 +955,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -966,13 +966,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:36 GMT + recorded_at: Fri, 23 Aug 2013 11:04:25 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -982,7 +982,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:39 GMT + - Fri, 23 Aug 2013 11:04:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1002,7 +1002,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1011,13 +1011,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:37 GMT + recorded_at: Fri, 23 Aug 2013 11:04:25 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1027,7 +1027,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:32 GMT + - Fri, 23 Aug 2013 11:04:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1047,7 +1047,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1056,13 +1056,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:37 GMT + recorded_at: Fri, 23 Aug 2013 11:04:25 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1072,7 +1072,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:40 GMT + - Fri, 23 Aug 2013 11:04:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1092,7 +1092,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '5' X-Ua-Compatible: - IE=edge body: @@ -1101,13 +1101,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:38 GMT + recorded_at: Fri, 23 Aug 2013 11:04:26 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1117,7 +1117,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:33 GMT + - Fri, 23 Aug 2013 11:04:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1137,7 +1137,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -1146,13 +1146,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:39 GMT + recorded_at: Fri, 23 Aug 2013 11:04:26 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1162,7 +1162,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:41 GMT + - Fri, 23 Aug 2013 11:04:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1182,7 +1182,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1190,13 +1190,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:39 GMT + recorded_at: Fri, 23 Aug 2013 11:04:26 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1206,7 +1206,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:34 GMT + - Fri, 23 Aug 2013 11:04:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1226,7 +1226,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1234,13 +1234,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:40 GMT + recorded_at: Fri, 23 Aug 2013 11:04:27 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1250,7 +1250,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:42 GMT + - Fri, 23 Aug 2013 11:04:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1270,7 +1270,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '10' X-Ua-Compatible: - IE=edge body: @@ -1281,13 +1281,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:40 GMT + recorded_at: Fri, 23 Aug 2013 11:04:27 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1297,7 +1297,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:35 GMT + - Fri, 23 Aug 2013 11:04:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1317,7 +1317,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '10' X-Ua-Compatible: - IE=edge body: @@ -1328,13 +1328,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:41 GMT + recorded_at: Fri, 23 Aug 2013 11:04:27 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1344,7 +1344,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:43 GMT + - Fri, 23 Aug 2013 11:04:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1364,7 +1364,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1372,13 +1372,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:41 GMT + recorded_at: Fri, 23 Aug 2013 11:04:28 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1388,7 +1388,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:36 GMT + - Fri, 23 Aug 2013 11:04:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1408,7 +1408,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1416,13 +1416,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:42 GMT + recorded_at: Fri, 23 Aug 2013 11:04:28 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1432,7 +1432,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:44 GMT + - Fri, 23 Aug 2013 11:04:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1452,7 +1452,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1461,13 +1461,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:42 GMT + recorded_at: Fri, 23 Aug 2013 11:04:28 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1477,7 +1477,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:37 GMT + - Fri, 23 Aug 2013 11:04:20 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1497,7 +1497,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1506,5 +1506,5 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:43 GMT + recorded_at: Fri, 23 Aug 2013 11:04:29 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_delete/if_project_exist_on_remote_host/delete_project_on_remote_host_and_return_true.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_delete/if_project_exist_on_remote_host/delete_project_on_remote_host_and_return_true.yml index 1f7320e..fedbcd9 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_delete/if_project_exist_on_remote_host/delete_project_on_remote_host_and_return_true.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_delete/if_project_exist_on_remote_host/delete_project_on_remote_host_and_return_true.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project1843846326"}' + string: '{"Name":"Project1130397814"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:40 GMT + - Fri, 23 Aug 2013 11:03:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '736' + - '737' Connection: - keep-alive Keep-Alive: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '259' + - '496' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4674,\r\n \"Name\": \"Project1843846326\",\r\n \"Description\": + string: "{\r\n \"Id\": 6850,\r\n \"Name\": \"Project1130397814\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376927979000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376927979000-0500)\\/\",\r\n + \"\\/Date(1377255825000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255825000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,10 +54,10 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:43 GMT + recorded_at: Fri, 23 Aug 2013 11:03:46 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4674/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6850/ body: encoding: US-ASCII string: '' @@ -70,7 +70,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:44 GMT + - Fri, 23 Aug 2013 11:03:50 GMT Content-Length: - '0' Connection: @@ -88,20 +88,20 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '72' + - '110' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Mon, 19 Aug 2013 15:59:43 GMT + recorded_at: Fri, 23 Aug 2013 11:03:47 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4674 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6850?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -111,7 +111,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:41 GMT + - Fri, 23 Aug 2013 11:03:38 GMT Content-Type: - text/xml; charset=utf-8 Content-Length: @@ -135,9 +135,9 @@ http_interactions: body: encoding: UTF-8 string: "\r\n NotFound\r\n Project with Id - 4674 not found\r\n Tp.Web.Mvc.Exceptions.NotFoundException\r\n + 6850 not found\r\n Tp.Web.Mvc.Exceptions.NotFoundException\r\n \ \r\n \r\n Project with Id - 4674 not found\r\n Tp.Integration.Common.EntityNotFoundException\r\n + 6850 not found\r\n Tp.Integration.Common.EntityNotFoundException\r\n \ at Tp.Rest.Services.RestService.ThrowIfInvalidResult(IResource[] resources, Object resourceId) in c:\\.jenkins\\workspace\\BuildPackage\\Code\\Main\\Tp.Rest\\Services\\RestService.cs:line 133\r\n at Tp.Rest.Services.RestService.Tp.Rest.Services.IRestService.Read(Object @@ -157,5 +157,5 @@ http_interactions: parameters)\r\n at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)\r\n \r\n" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:43 GMT + recorded_at: Fri, 23 Aug 2013 11:03:47 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_eq/comapres_projects_with_different_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_eq/comapres_projects_with_different_attributes.yml index 84e7d1c..0509b40 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_eq/comapres_projects_with_different_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_eq/comapres_projects_with_different_attributes.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project2746805022"}' + string: '{"Name":"Project4465000891"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:58 GMT + - Fri, 23 Aug 2013 11:03:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '736' + - '737' Connection: - keep-alive Keep-Alive: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '256' + - '490' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4678,\r\n \"Name\": \"Project2746805022\",\r\n \"Description\": + string: "{\r\n \"Id\": 6854,\r\n \"Name\": \"Project4465000891\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376927997000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376927997000-0500)\\/\",\r\n + \"\\/Date(1377255841000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255841000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,10 +54,10 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 16:00:00 GMT + recorded_at: Fri, 23 Aug 2013 11:04:02 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4678/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6854/ body: encoding: US-ASCII string: '' @@ -70,7 +70,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:00:02 GMT + - Fri, 23 Aug 2013 11:04:06 GMT Content-Length: - '0' Connection: @@ -88,12 +88,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '74' + - '116' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Mon, 19 Aug 2013 16:00:00 GMT + recorded_at: Fri, 23 Aug 2013 11:04:03 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id/returns_project.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id/returns_project.yml index a2dff2a..e4341bb 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id/returns_project.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id/returns_project.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project8353122016","StartDate":"/Date(1376927970000+0300)/"}' + string: '{"Name":"Project4429169200","StartDate":"/Date(1377255813000+0300)/"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:28 GMT + - Fri, 23 Aug 2013 11:03:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '762' + - '763' Connection: - keep-alive Keep-Alive: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '328' + - '524' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4669,\r\n \"Name\": \"Project8353122016\",\r\n \"Description\": - null,\r\n \"StartDate\": \"\\/Date(1376927970000-0500)\\/\",\r\n \"EndDate\": - null,\r\n \"CreateDate\": \"\\/Date(1376927967000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1376927967000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": - \"\",\r\n \"NumericPriority\": 31.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + string: "{\r\n \"Id\": 6845,\r\n \"Name\": \"Project4429169200\",\r\n \"Description\": + null,\r\n \"StartDate\": \"\\/Date(1377255813000-0500)\\/\",\r\n \"EndDate\": + null,\r\n \"CreateDate\": \"\\/Date(1377255812000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377255812000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -55,13 +55,13 @@ http_interactions: \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:30 GMT + recorded_at: Fri, 23 Aug 2013 11:03:34 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4669 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6845?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -71,11 +71,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:32 GMT + - Fri, 23 Aug 2013 11:03:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '762' + - '763' Connection: - keep-alive Keep-Alive: @@ -91,16 +91,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '34' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4669,\r\n \"Name\": \"Project8353122016\",\r\n \"Description\": - null,\r\n \"StartDate\": \"\\/Date(1376927970000-0500)\\/\",\r\n \"EndDate\": - null,\r\n \"CreateDate\": \"\\/Date(1376927967000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1376927967000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": - \"\",\r\n \"NumericPriority\": 31.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + string: "{\r\n \"Id\": 6845,\r\n \"Name\": \"Project4429169200\",\r\n \"Description\": + null,\r\n \"StartDate\": \"\\/Date(1377255813000-0500)\\/\",\r\n \"EndDate\": + null,\r\n \"CreateDate\": \"\\/Date(1377255812000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377255812000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -109,10 +109,10 @@ http_interactions: \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:31 GMT + recorded_at: Fri, 23 Aug 2013 11:03:34 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4669/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6845/ body: encoding: US-ASCII string: '' @@ -125,7 +125,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:29 GMT + - Fri, 23 Aug 2013 11:03:26 GMT Content-Length: - '0' Connection: @@ -143,12 +143,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '126' + - '127' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Mon, 19 Aug 2013 15:59:31 GMT + recorded_at: Fri, 23 Aug 2013 11:03:35 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id_and_options/returns_formatted_requested_entity.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id_and_options/returns_formatted_requested_entity.yml index c7bb893..2e89836 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id_and_options/returns_formatted_requested_entity.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id_and_options/returns_formatted_requested_entity.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project4166808984","StartDate":"/Date(1376927971000+0300)/"}' + string: '{"Name":"Project5420802976","StartDate":"/Date(1377255815000+0300)/"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:33 GMT + - Fri, 23 Aug 2013 11:03:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '762' + - '763' Connection: - keep-alive Keep-Alive: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '231' + - '535' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4670,\r\n \"Name\": \"Project4166808984\",\r\n \"Description\": - null,\r\n \"StartDate\": \"\\/Date(1376927971000-0500)\\/\",\r\n \"EndDate\": - null,\r\n \"CreateDate\": \"\\/Date(1376927969000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1376927969000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": - \"\",\r\n \"NumericPriority\": 31.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + string: "{\r\n \"Id\": 6846,\r\n \"Name\": \"Project5420802976\",\r\n \"Description\": + null,\r\n \"StartDate\": \"\\/Date(1377255815000-0500)\\/\",\r\n \"EndDate\": + null,\r\n \"CreateDate\": \"\\/Date(1377255814000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377255814000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -55,13 +55,13 @@ http_interactions: \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:32 GMT + recorded_at: Fri, 23 Aug 2013 11:03:36 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4670 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6846?append=%5BTasks-Count%5D&format=json&include=%5BTasks%5D body: - encoding: UTF-8 - string: include=%5BTasks%5D&append=%5BTasks-Count%5D&format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -71,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:31 GMT + - Fri, 23 Aug 2013 11:03:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -91,18 +91,18 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '74' + - '80' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4670,\r\n \"Tasks-Count\": 0,\r\n \"Tasks\": {\r\n + string: "{\r\n \"Id\": 6846,\r\n \"Tasks-Count\": 0,\r\n \"Tasks\": {\r\n \ \"Items\": []\r\n }\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:33 GMT + recorded_at: Fri, 23 Aug 2013 11:03:36 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4670/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6846/ body: encoding: US-ASCII string: '' @@ -115,7 +115,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:34 GMT + - Fri, 23 Aug 2013 11:03:40 GMT Content-Length: - '0' Connection: @@ -133,12 +133,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '80' + - '127' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Mon, 19 Aug 2013 15:59:33 GMT + recorded_at: Fri, 23 Aug 2013 11:03:37 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_string/raise_TargetProcess_BadRequest_error.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_string/raise_TargetProcess_BadRequest_error.yml index 30d4a42..fce5d99 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_string/raise_TargetProcess_BadRequest_error.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_string/raise_TargetProcess_BadRequest_error.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/asd + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/asd?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:32 GMT + - Fri, 23 Aug 2013 11:03:28 GMT Content-Type: - text/xml; charset=utf-8 Content-Length: @@ -58,5 +58,5 @@ http_interactions: controllerContext, String actionName)\r\n
{ ServerErrorCodes = System.String[] }
\r\n" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:34 GMT + recorded_at: Fri, 23 Aug 2013 11:03:37 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_unexisted_id/raise_an_TargetProcess_NotFound_error.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_unexisted_id/raise_an_TargetProcess_NotFound_error.yml index d11faca..1bc8e49 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_unexisted_id/raise_an_TargetProcess_NotFound_error.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_unexisted_id/raise_an_TargetProcess_NotFound_error.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/12412 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/12412?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:35 GMT + - Fri, 23 Aug 2013 11:03:41 GMT Content-Type: - text/xml; charset=utf-8 Content-Length: @@ -61,5 +61,5 @@ http_interactions: parameters)\r\n at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)\r\n \r\n" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:34 GMT + recorded_at: Fri, 23 Aug 2013 11:03:37 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_meta/returns_project_metadata.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_meta/returns_project_metadata.yml index 8cc3d2e..a3a2682 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_meta/returns_project_metadata.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_meta/returns_project_metadata.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects//meta + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects//meta?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,11 +15,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:39 GMT + - Fri, 23 Aug 2013 11:03:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '20107' + - '21281' Connection: - keep-alive Keep-Alive: @@ -35,7 +35,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '14' + - '17' X-Ua-Compatible: - IE=edge body: @@ -101,6 +101,21 @@ http_interactions: false,\r\n \"Description\": \"Calculated priority of entity\",\r\n \ \"Uri\": \"http://tpruby.tpondemand.com/api/v1/Double/meta\",\r\n \ \"IsBoundToParent\": true\r\n },\r\n {\r\n \"Name\": + \"IsNow\",\r\n \"CanSet\": false,\r\n \"CanGet\": true,\r\n + \ \"IsRequired\": false,\r\n \"Type\": \"Boolean\",\r\n \"IsTypeComplex\": + false,\r\n \"Description\": \"True if entity start date is in the + past and end date is in the future\",\r\n \"Uri\": \"http://tpruby.tpondemand.com/api/v1/Boolean/meta\",\r\n + \ \"IsBoundToParent\": false\r\n },\r\n {\r\n \"Name\": + \"IsNext\",\r\n \"CanSet\": false,\r\n \"CanGet\": true,\r\n + \ \"IsRequired\": false,\r\n \"Type\": \"Boolean\",\r\n \"IsTypeComplex\": + false,\r\n \"Description\": \"True if entity is not in the past and + is not current\",\r\n \"Uri\": \"http://tpruby.tpondemand.com/api/v1/Boolean/meta\",\r\n + \ \"IsBoundToParent\": false\r\n },\r\n {\r\n \"Name\": + \"IsPrevious\",\r\n \"CanSet\": false,\r\n \"CanGet\": true,\r\n + \ \"IsRequired\": false,\r\n \"Type\": \"Boolean\",\r\n \"IsTypeComplex\": + false,\r\n \"Description\": \"True if entity is in the past\",\r\n + \ \"Uri\": \"http://tpruby.tpondemand.com/api/v1/Boolean/meta\",\r\n + \ \"IsBoundToParent\": false\r\n },\r\n {\r\n \"Name\": \"IsActive\",\r\n \"CanSet\": true,\r\n \"CanGet\": true,\r\n \ \"IsRequired\": false,\r\n \"Type\": \"Boolean\",\r\n \"IsTypeComplex\": false,\r\n \"Description\": \"Defines whether project is active\",\r\n @@ -311,5 +326,5 @@ http_interactions: {\r\n \"Body\": \"Result of GET request is ordered by Name field with ascending direction.\"\r\n }\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:38 GMT + recorded_at: Fri, 23 Aug 2013 11:03:41 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_edit_attribute_with_the_same_old_value_in_attributes/delete_attribute_from_changed_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_edit_attribute_with_the_same_old_value_in_attributes/delete_attribute_from_changed_attributes.yml index 89e0d5c..af00dbd 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_edit_attribute_with_the_same_old_value_in_attributes/delete_attribute_from_changed_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_edit_attribute_with_the_same_old_value_in_attributes/delete_attribute_from_changed_attributes.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project2968735626"}' + string: '{"Name":"Project9042277860"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:02:25 GMT + - Fri, 23 Aug 2013 11:03:36 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '736' + - '737' Connection: - keep-alive Keep-Alive: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '206' + - '505' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4681,\r\n \"Name\": \"Project2968735626\",\r\n \"Description\": + string: "{\r\n \"Id\": 6849,\r\n \"Name\": \"Project9042277860\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376928143000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376928143000-0500)\\/\",\r\n + \"\\/Date(1377255823000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255823000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,10 +54,10 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 16:02:27 GMT + recorded_at: Fri, 23 Aug 2013 11:03:45 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4681/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6849/ body: encoding: US-ASCII string: '' @@ -70,7 +70,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:02:28 GMT + - Fri, 23 Aug 2013 11:03:48 GMT Content-Length: - '0' Connection: @@ -88,12 +88,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '66' + - '124' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Mon, 19 Aug 2013 16:02:27 GMT + recorded_at: Fri, 23 Aug 2013 11:03:45 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_set_any_attribute/add_it_to_changed_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_set_any_attribute/add_it_to_changed_attributes.yml index 80aa2f8..1b996c1 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_set_any_attribute/add_it_to_changed_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_set_any_attribute/add_it_to_changed_attributes.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project5504872872"}' + string: '{"Name":"Project830605716"}' headers: Content-Type: - application/json @@ -17,7 +17,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:02:23 GMT + - Fri, 23 Aug 2013 11:03:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '200' + - '472' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4680,\r\n \"Name\": \"Project5504872872\",\r\n \"Description\": + string: "{\r\n \"Id\": 6848,\r\n \"Name\": \"Project830605716\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376928142000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376928142000-0500)\\/\",\r\n + \"\\/Date(1377255822000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255822000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,10 +54,10 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 16:02:25 GMT + recorded_at: Fri, 23 Aug 2013 11:03:43 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4680/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6848/ body: encoding: US-ASCII string: '' @@ -70,7 +70,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:02:27 GMT + - Fri, 23 Aug 2013 11:03:47 GMT Content-Length: - '0' Connection: @@ -88,12 +88,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '74' + - '119' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Mon, 19 Aug 2013 16:02:26 GMT + recorded_at: Fri, 23 Aug 2013 11:03:44 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/provide_getters_for_attributes_values.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/provide_getters_for_attributes_values.yml index 76f578f..5f6b439 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/provide_getters_for_attributes_values.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/provide_getters_for_attributes_values.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project880347936"}' + string: '{"Name":"Project4092589350"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:02:22 GMT + - Fri, 23 Aug 2013 11:03:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '735' + - '737' Connection: - keep-alive Keep-Alive: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '215' + - '548' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4679,\r\n \"Name\": \"Project880347936\",\r\n \"Description\": + string: "{\r\n \"Id\": 6847,\r\n \"Name\": \"Project4092589350\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376928141000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376928141000-0500)\\/\",\r\n + \"\\/Date(1377255820000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255820000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,10 +54,10 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 16:02:24 GMT + recorded_at: Fri, 23 Aug 2013 11:03:42 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4679/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6847/ body: encoding: US-ASCII string: '' @@ -70,7 +70,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:02:26 GMT + - Fri, 23 Aug 2013 11:03:46 GMT Content-Length: - '0' Connection: @@ -88,12 +88,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '72' + - '125' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Mon, 19 Aug 2013 16:02:25 GMT + recorded_at: Fri, 23 Aug 2013 11:03:42 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_required_fields/save_it_on_remote_host_and_update_local_instance_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_required_fields/save_it_on_remote_host_and_update_local_instance_attributes.yml index 682ba48..a19e06d 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_required_fields/save_it_on_remote_host_and_update_local_instance_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_required_fields/save_it_on_remote_host_and_update_local_instance_attributes.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project101304504"}' + string: '{"Name":"Project8569975128"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:45 GMT + - Fri, 23 Aug 2013 11:03:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '735' + - '737' Connection: - keep-alive Keep-Alive: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '248' + - '488' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4675,\r\n \"Name\": \"Project101304504\",\r\n \"Description\": + string: "{\r\n \"Id\": 6851,\r\n \"Name\": \"Project8569975128\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376927981000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376927981000-0500)\\/\",\r\n + \"\\/Date(1377255827000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255827000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,13 +54,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:44 GMT + recorded_at: Fri, 23 Aug 2013 11:03:48 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4675 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6851?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -70,11 +70,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:43 GMT + - Fri, 23 Aug 2013 11:03:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '735' + - '737' Connection: - keep-alive Keep-Alive: @@ -90,16 +90,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '577' + - '68' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4675,\r\n \"Name\": \"Project101304504\",\r\n \"Description\": + string: "{\r\n \"Id\": 6851,\r\n \"Name\": \"Project8569975128\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376927981000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376927981000-0500)\\/\",\r\n + \"\\/Date(1377255827000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255827000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -107,13 +107,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:45 GMT + recorded_at: Fri, 23 Aug 2013 11:03:48 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -123,7 +123,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:47 GMT + - Fri, 23 Aug 2013 11:03:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -143,7 +143,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -151,13 +151,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:46 GMT + recorded_at: Fri, 23 Aug 2013 11:03:49 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -167,7 +167,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:44 GMT + - Fri, 23 Aug 2013 11:03:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -187,7 +187,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '3' X-Ua-Compatible: - IE=edge body: @@ -195,13 +195,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:46 GMT + recorded_at: Fri, 23 Aug 2013 11:03:49 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -211,7 +211,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:48 GMT + - Fri, 23 Aug 2013 11:03:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -231,7 +231,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '8' X-Ua-Compatible: - IE=edge body: @@ -242,13 +242,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:47 GMT + recorded_at: Fri, 23 Aug 2013 11:03:49 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -258,7 +258,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:45 GMT + - Fri, 23 Aug 2013 11:03:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -278,7 +278,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -289,13 +289,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:47 GMT + recorded_at: Fri, 23 Aug 2013 11:03:50 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -305,7 +305,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:49 GMT + - Fri, 23 Aug 2013 11:03:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -325,7 +325,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '5' X-Ua-Compatible: - IE=edge body: @@ -334,13 +334,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:48 GMT + recorded_at: Fri, 23 Aug 2013 11:03:50 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -350,7 +350,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:46 GMT + - Fri, 23 Aug 2013 11:03:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -370,7 +370,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -379,10 +379,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:48 GMT + recorded_at: Fri, 23 Aug 2013 11:03:50 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4675/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6851/ body: encoding: US-ASCII string: '' @@ -395,7 +395,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:50 GMT + - Fri, 23 Aug 2013 11:03:54 GMT Content-Length: - '0' Connection: @@ -413,12 +413,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '115' + - '113' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Mon, 19 Aug 2013 15:59:49 GMT + recorded_at: Fri, 23 Aug 2013 11:03:51 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_updated_attributes/updates_task_on_remote_host_and_clean_changed_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_updated_attributes/updates_task_on_remote_host_and_clean_changed_attributes.yml index ab1d8ca..680498e 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_updated_attributes/updates_task_on_remote_host_and_clean_changed_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_updated_attributes/updates_task_on_remote_host_and_clean_changed_attributes.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project1996513354"}' + string: '{"Name":"Project1470738225"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:47 GMT + - Fri, 23 Aug 2013 11:03:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '736' + - '737' Connection: - keep-alive Keep-Alive: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '221' + - '518' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4676,\r\n \"Name\": \"Project1996513354\",\r\n \"Description\": + string: "{\r\n \"Id\": 6852,\r\n \"Name\": \"Project1470738225\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376927986000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376927986000-0500)\\/\",\r\n + \"\\/Date(1377255831000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255831000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,13 +54,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:50 GMT + recorded_at: Fri, 23 Aug 2013 11:03:52 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project_new_name722724607","Id":4676}' + string: '{"Name":"Project_new_name539483213","Id":6852}' headers: Content-Type: - application/json @@ -72,11 +72,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:51 GMT + - Fri, 23 Aug 2013 11:03:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '744' + - '745' Connection: - keep-alive Keep-Alive: @@ -92,16 +92,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '93' + - '112' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4676,\r\n \"Name\": \"Project_new_name722724607\",\r\n + string: "{\r\n \"Id\": 6852,\r\n \"Name\": \"Project_new_name539483213\",\r\n \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n - \ \"CreateDate\": \"\\/Date(1376927986000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1376927987000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": - \"\",\r\n \"NumericPriority\": 32.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + \ \"CreateDate\": \"\\/Date(1377255831000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377255832000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -110,13 +110,13 @@ http_interactions: \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:50 GMT + recorded_at: Fri, 23 Aug 2013 11:03:53 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4676 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6852?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -126,11 +126,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:49 GMT + - Fri, 23 Aug 2013 11:03:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '744' + - '745' Connection: - keep-alive Keep-Alive: @@ -146,16 +146,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '35' + - '52' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4676,\r\n \"Name\": \"Project_new_name722724607\",\r\n + string: "{\r\n \"Id\": 6852,\r\n \"Name\": \"Project_new_name539483213\",\r\n \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n - \ \"CreateDate\": \"\\/Date(1376927986000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1376927987000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": - \"\",\r\n \"NumericPriority\": 32.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + \ \"CreateDate\": \"\\/Date(1377255831000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377255832000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -164,13 +164,13 @@ http_interactions: \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:51 GMT + recorded_at: Fri, 23 Aug 2013 11:03:53 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -180,7 +180,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:52 GMT + - Fri, 23 Aug 2013 11:03:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -200,7 +200,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -208,13 +208,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:51 GMT + recorded_at: Fri, 23 Aug 2013 11:03:53 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -224,7 +224,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:50 GMT + - Fri, 23 Aug 2013 11:03:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -244,7 +244,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -252,13 +252,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:52 GMT + recorded_at: Fri, 23 Aug 2013 11:03:54 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -268,7 +268,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:53 GMT + - Fri, 23 Aug 2013 11:03:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -288,7 +288,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -299,13 +299,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:52 GMT + recorded_at: Fri, 23 Aug 2013 11:03:54 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -315,7 +315,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:51 GMT + - Fri, 23 Aug 2013 11:03:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -335,7 +335,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -346,13 +346,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:53 GMT + recorded_at: Fri, 23 Aug 2013 11:03:54 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -362,7 +362,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:54 GMT + - Fri, 23 Aug 2013 11:03:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -382,7 +382,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -391,13 +391,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:53 GMT + recorded_at: Fri, 23 Aug 2013 11:03:55 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -407,7 +407,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:51 GMT + - Fri, 23 Aug 2013 11:03:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -427,7 +427,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '5' X-Ua-Compatible: - IE=edge body: @@ -436,10 +436,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:54 GMT + recorded_at: Fri, 23 Aug 2013 11:03:55 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4676/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6852/ body: encoding: US-ASCII string: '' @@ -452,7 +452,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:55 GMT + - Fri, 23 Aug 2013 11:03:59 GMT Content-Length: - '0' Connection: @@ -470,12 +470,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '71' + - '113' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Mon, 19 Aug 2013 15:59:54 GMT + recorded_at: Fri, 23 Aug 2013 11:03:55 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_up-to-date_local_project/do_nothing_with_local_instance.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_up-to-date_local_project/do_nothing_with_local_instance.yml index 783f4e9..46cf5d7 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_up-to-date_local_project/do_nothing_with_local_instance.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_up-to-date_local_project/do_nothing_with_local_instance.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project1905034809"}' + string: '{"Name":"Project114128301"}' headers: Content-Type: - application/json @@ -17,7 +17,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:53 GMT + - Fri, 23 Aug 2013 11:03:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '220' + - '491' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4677,\r\n \"Name\": \"Project1905034809\",\r\n \"Description\": + string: "{\r\n \"Id\": 6853,\r\n \"Name\": \"Project114128301\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376927991000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376927991000-0500)\\/\",\r\n + \"\\/Date(1377255835000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255835000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,13 +54,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:55 GMT + recorded_at: Fri, 23 Aug 2013 11:03:56 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Id":4677}' + string: '{"Id":6853}' headers: Content-Type: - application/json @@ -72,7 +72,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:56 GMT + - Fri, 23 Aug 2013 11:04:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -92,16 +92,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '56' + - '64' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4677,\r\n \"Name\": \"Project1905034809\",\r\n \"Description\": + string: "{\r\n \"Id\": 6853,\r\n \"Name\": \"Project114128301\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376927991000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376927991000-0500)\\/\",\r\n + \"\\/Date(1377255835000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255835000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -109,13 +109,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:55 GMT + recorded_at: Fri, 23 Aug 2013 11:03:57 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4677 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6853?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -125,7 +125,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:54 GMT + - Fri, 23 Aug 2013 11:03:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -145,16 +145,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '53' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4677,\r\n \"Name\": \"Project1905034809\",\r\n \"Description\": + string: "{\r\n \"Id\": 6853,\r\n \"Name\": \"Project114128301\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376927991000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376927991000-0500)\\/\",\r\n + \"\\/Date(1377255835000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255835000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -162,13 +162,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:56 GMT + recorded_at: Fri, 23 Aug 2013 11:03:57 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -178,7 +178,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:57 GMT + - Fri, 23 Aug 2013 11:04:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -198,7 +198,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -206,13 +206,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:56 GMT + recorded_at: Fri, 23 Aug 2013 11:03:58 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -222,7 +222,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:55 GMT + - Fri, 23 Aug 2013 11:03:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -242,7 +242,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -250,13 +250,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:57 GMT + recorded_at: Fri, 23 Aug 2013 11:03:58 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -266,7 +266,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:58 GMT + - Fri, 23 Aug 2013 11:04:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -286,7 +286,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '7' X-Ua-Compatible: - IE=edge body: @@ -297,13 +297,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:57 GMT + recorded_at: Fri, 23 Aug 2013 11:03:58 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -313,7 +313,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:56 GMT + - Fri, 23 Aug 2013 11:03:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -333,7 +333,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -344,13 +344,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:58 GMT + recorded_at: Fri, 23 Aug 2013 11:03:59 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -360,7 +360,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:59 GMT + - Fri, 23 Aug 2013 11:04:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -380,7 +380,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -389,13 +389,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:58 GMT + recorded_at: Fri, 23 Aug 2013 11:03:59 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -405,7 +405,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:57 GMT + - Fri, 23 Aug 2013 11:03:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -425,7 +425,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -434,10 +434,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:59 GMT + recorded_at: Fri, 23 Aug 2013 11:04:00 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/4677/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6853/ body: encoding: US-ASCII string: '' @@ -450,7 +450,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:00:00 GMT + - Fri, 23 Aug 2013 11:04:03 GMT Content-Length: - '0' Connection: @@ -468,12 +468,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '72' + - '112' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Mon, 19 Aug 2013 15:59:59 GMT + recorded_at: Fri, 23 Aug 2013 11:04:00 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_correct_condition/return_array_of_subjects.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_correct_condition/return_array_of_subjects.yml index 867b218..cb7f121 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_correct_condition/return_array_of_subjects.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_correct_condition/return_array_of_subjects.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/?format=json&where=CreateDate%20lt%20%222014-10-10%22 body: - encoding: UTF-8 - string: where=CreateDate%20lt%20%222014-10-10%22&format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,11 +15,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:34 GMT + - Fri, 23 Aug 2013 11:03:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '22127' + - '21972' Connection: - keep-alive Keep-Alive: @@ -35,7 +35,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '157' + - '175' X-Ua-Compatible: - IE=edge body: @@ -46,7 +46,7 @@ http_interactions: null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376417060000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376417060000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 25.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 24.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"BAR\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -58,7 +58,7 @@ http_interactions: null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376476665000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376476665000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 26.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 25.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"FB\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -70,7 +70,7 @@ http_interactions: null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376385905000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376385912000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 22.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 21.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"FOO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -82,7 +82,7 @@ http_interactions: null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376385923000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376385923000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 23.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 22.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"FOO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -90,11 +90,11 @@ http_interactions: \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n - \ {\r\n \"Id\": 2274,\r\n \"Name\": \"Foobar\",\r\n \"Description\": + \ {\r\n \"Id\": 2496,\r\n \"Name\": \"Foobar1\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376385752000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376385759000-0500)\\/\",\r\n + \"\\/Date(1376392539000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376392539000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 21.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 23.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"FOO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -102,11 +102,11 @@ http_interactions: \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n - \ {\r\n \"Id\": 2496,\r\n \"Name\": \"Foobar1\",\r\n \"Description\": + \ {\r\n \"Id\": 2014,\r\n \"Name\": \"foobar3318392\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376392539000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376392539000-0500)\\/\",\r\n + \"\\/Date(1376310840000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376310840000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 24.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 5.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"FOO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -114,144 +114,191 @@ http_interactions: \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n - \ {\r\n \"Id\": 2014,\r\n \"Name\": \"foobar3318392\",\r\n \"Description\": + \ {\r\n \"Id\": 5539,\r\n \"Name\": \"Pro103683955\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376310840000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376310840000-0500)\\/\",\r\n + \"\\/Date(1377101050000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377101050000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 5.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"FOO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + 43.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 5760,\r\n \"Name\": \"Pro121446515\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377102831000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377102831000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 56.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 6524,\r\n \"Name\": \"Pro122567198\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377158244000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377158244000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 98.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 5575,\r\n \"Name\": \"Pro12528784\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377101092000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377101092000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 46.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 6107,\r\n \"Name\": \"Pro141631735\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377104887000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377104887000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 72.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 6264,\r\n \"Name\": \"Pro158609546\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377157628000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377157628000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 82.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 5757,\r\n \"Name\": \"Pro159813995\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377102829000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377102829000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 55.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 6359,\r\n \"Name\": \"Pro216679486\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377157937000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377157937000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 86.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 6362,\r\n \"Name\": \"Pro235684102\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377157938000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377157938000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 87.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 5244,\r\n \"Name\": \"Pro240982527\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377008766000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377008766000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 36.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 5546,\r\n \"Name\": \"Pro244654948\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377101056000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377101056000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 44.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 5242,\r\n \"Name\": \"Pro246959479\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377008764000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377008764000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 35.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 6157,\r\n \"Name\": \"Pro259145757\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377105364000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377105364000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 74.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 5780,\r\n \"Name\": \"Pro263406813\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377102866000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377102866000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 57.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 6209,\r\n \"Name\": \"Pro267951225\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377157594000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377157594000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 78.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n - \ {\r\n \"Id\": 2030,\r\n \"Name\": \"Project_new_name2499868962\",\r\n - \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": - null,\r\n \"CreateDate\": \"\\/Date(1376310873000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1376310875000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n - \ \"Tags\": \"\",\r\n \"NumericPriority\": 18.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 4536,\r\n \"Name\": - \"Project_new_name3031244325\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376568045000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376568045000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 29.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2022,\r\n \"Name\": - \"Project_new_name6757305669\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310855000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310856000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 11.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2026,\r\n \"Name\": - \"Project1306696328\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310862000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310862000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 15.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2023,\r\n \"Name\": - \"Project1694405550\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310857000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310857000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 12.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 4535,\r\n \"Name\": - \"Project1736096232\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376568042000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376568042000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 28.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2015,\r\n \"Name\": - \"Project2135869770\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310842000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310842000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 6.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2032,\r\n \"Name\": - \"Project2168633823\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310879000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310879000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 20.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 4531,\r\n \"Name\": - \"Project2498866686\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376568036000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376568036000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 27.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2031,\r\n \"Name\": - \"Project321906060\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310876000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310876000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 19.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2019,\r\n \"Name\": - \"Project3375152595\",\r\n \"Description\": null,\r\n \"StartDate\": - \"\\/Date(1376310842000-0500)\\/\",\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376310848000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376310848000-0500)\\/\",\r\n + \ {\r\n \"Id\": 5812,\r\n \"Name\": \"Pro298431202\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377102920000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377102920000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 8.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 58.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -259,36 +306,11 @@ http_interactions: \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n - \ {\r\n \"Id\": 2027,\r\n \"Name\": \"Project384976238\",\r\n - \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": - null,\r\n \"CreateDate\": \"\\/Date(1376310864000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1376310864000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n - \ \"Tags\": \"\",\r\n \"NumericPriority\": 16.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2017,\r\n \"Name\": - \"Project391746579\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310845000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310845000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 7.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2020,\r\n \"Name\": - \"Project4201565256\",\r\n \"Description\": null,\r\n \"StartDate\": - \"\\/Date(1376310845000-0500)\\/\",\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376310851000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376310851000-0500)\\/\",\r\n + \ {\r\n \"Id\": 5916,\r\n \"Name\": \"Pro298458723\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377103697000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377103697000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 9.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 64.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -296,55 +318,31 @@ http_interactions: \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n - \ {\r\n \"Id\": 2011,\r\n \"Name\": \"Project466748765\",\r\n - \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": - null,\r\n \"CreateDate\": \"\\/Date(1376310831000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1376310831000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n - \ \"Tags\": \"\",\r\n \"NumericPriority\": 2.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2024,\r\n \"Name\": - \"Project4809733732\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310859000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310859000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 13.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 4537,\r\n \"Name\": - \"Project5007063875\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376568048000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376568048000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 30.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 2025,\r\n \"Name\": - \"Project5677221732\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1376310861000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1376310861000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 14.0,\r\n \"IsActive\": - true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n - \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": - {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n }\r\n ]\r\n}" + \ {\r\n \"Id\": 6204,\r\n \"Name\": \"Pro334133141\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377157592000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377157592000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 76.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n + \ {\r\n \"Id\": 5549,\r\n \"Name\": \"Pro345369757\",\r\n \"Description\": + null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": + \"\\/Date(1377101058000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377101058000-0500)\\/\",\r\n + \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": + 45.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n + \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n + \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n + \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": + null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n }\r\n + \ ]\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:36 GMT + recorded_at: Fri, 23 Aug 2013 11:03:39 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_random_string_without_search_condition/raise_an_TargetProcess_BadRequest.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_random_string_without_search_condition/raise_an_TargetProcess_BadRequest.yml index ab79d3f..1f7cb79 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_random_string_without_search_condition/raise_an_TargetProcess_BadRequest.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_random_string_without_search_condition/raise_an_TargetProcess_BadRequest.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/?format=json&where=asdad%20asd%20asda body: - encoding: UTF-8 - string: where=asdad%20asd%20asda&format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:35 GMT + - Fri, 23 Aug 2013 11:03:31 GMT Content-Type: - text/xml; charset=utf-8 Content-Length: @@ -78,5 +78,5 @@ http_interactions: ResourceContext resourceContext) in c:\\.jenkins\\workspace\\BuildPackage\\Code\\Main\\Tp.Rest.Web\\Controllers\\RequestParameters.cs:line 233\r\n \r\n \r\n" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:38 GMT + recorded_at: Fri, 23 Aug 2013 11:03:40 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_search_condition_and_options/return_array_of_subject_with_conditions.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_search_condition_and_options/return_array_of_subject_with_conditions.yml index 739700c..555038f 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_search_condition_and_options/return_array_of_subject_with_conditions.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_search_condition_and_options/return_array_of_subject_with_conditions.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/?OrderByDesc=id&Take=1&format=json&where=CreateDate%20lt%20%222014-10-10%22 body: - encoding: UTF-8 - string: OrderByDesc=id&Take=1&where=CreateDate%20lt%20%222014-10-10%22&format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15,11 +15,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:38 GMT + - Fri, 23 Aug 2013 11:03:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '1037' + - '1033' Connection: - keep-alive Keep-Alive: @@ -35,18 +35,18 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '150' + - '162' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: "{\r\n \"Next\": \"http://tpruby.tpondemand.com/api/v1/Projects/?where=CreateDate lt \\\"2014-10-10\\\"&orderByDesc=id&format=json&take=1&skip=1\",\r\n \"Items\": - [\r\n {\r\n \"Id\": 4537,\r\n \"Name\": \"Project5007063875\",\r\n + [\r\n {\r\n \"Id\": 6826,\r\n \"Name\": \"Pro471072885\",\r\n \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": - null,\r\n \"CreateDate\": \"\\/Date(1376568048000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1376568048000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n - \ \"Tags\": \"\",\r\n \"NumericPriority\": 30.0,\r\n \"IsActive\": + null,\r\n \"CreateDate\": \"\\/Date(1377246357000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377246357000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n + \ \"Tags\": \"\",\r\n \"NumericPriority\": 112.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -56,5 +56,5 @@ http_interactions: 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:37 GMT + recorded_at: Fri, 23 Aug 2013 11:03:40 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_different_class.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_different_class.yml index da8f321..ef26de0 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_different_class.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_different_class.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Pro394154672"}' + string: '{"Name":"Pro574423864"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:11 GMT + - Fri, 23 Aug 2013 11:06:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '276' + - '499' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5276,\r\n \"Name\": \"Pro394154672\",\r\n \"Description\": + string: "{\r\n \"Id\": 6866,\r\n \"Name\": \"Pro574423864\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009792000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009792000-0500)\\/\",\r\n + \"\\/Date(1377256011000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377256011000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,13 +54,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:14 GMT + recorded_at: Fri, 23 Aug 2013 11:06:52 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/ body: encoding: UTF-8 - string: '{"Name":"story2","Project":{"id":5276},"Owner":{"id":1}}' + string: '{"Name":"story2","Project":{"id":6866},"Owner":{"id":1}}' headers: Content-Type: - application/json @@ -72,11 +72,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:17 GMT + - Fri, 23 Aug 2013 11:06:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -92,33 +92,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '189' + - '200' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5277,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6867,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009792000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009792000-0500)\\/\",\r\n + \"\\/Date(1377256012000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377256012000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5276,\r\n \"Name\": \"Pro394154672\"\r\n + \ \"Project\": {\r\n \"Id\": 6866,\r\n \"Name\": \"Pro574423864\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:15 GMT + recorded_at: Fri, 23 Aug 2013 11:06:53 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Assignments/ body: encoding: UTF-8 - string: '{"Assignable":{"id":5277},"GeneralUser":{"id":1},"Role":{"id":1}}' + string: '{"Assignable":{"id":6867},"GeneralUser":{"id":1},"Role":{"id":1}}' headers: Content-Type: - application/json @@ -130,7 +130,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:12 GMT + - Fri, 23 Aug 2013 11:06:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -150,24 +150,24 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '69' + - '95' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 175,\r\n \"Assignable\": {\r\n \"Id\": 5277,\r\n + string: "{\r\n \"Id\": 239,\r\n \"Assignable\": {\r\n \"Id\": 6867,\r\n \ \"Name\": \"story2\"\r\n },\r\n \"GeneralUser\": {\r\n \"Kind\": \"User\",\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"Role\": {\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:16 GMT + recorded_at: Fri, 23 Aug 2013 11:06:53 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5277/AssignedUser + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6867/AssignedUser?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -177,7 +177,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:18 GMT + - Fri, 23 Aug 2013 11:06:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -197,7 +197,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '9' + - '19' X-Ua-Compatible: - IE=edge body: @@ -209,10 +209,10 @@ http_interactions: \ \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n }\r\n ]\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:17 GMT + recorded_at: Fri, 23 Aug 2013 11:06:54 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5277/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6867/ body: encoding: US-ASCII string: '' @@ -225,7 +225,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:13 GMT + - Fri, 23 Aug 2013 11:06:58 GMT Content-Length: - '0' Connection: @@ -243,17 +243,17 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '246' + - '235' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Tue, 20 Aug 2013 14:43:17 GMT + recorded_at: Fri, 23 Aug 2013 11:06:54 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5276/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6866/ body: encoding: US-ASCII string: '' @@ -266,7 +266,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:19 GMT + - Fri, 23 Aug 2013 11:06:46 GMT Content-Length: - '0' Connection: @@ -284,12 +284,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '76' + - '127' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Tue, 20 Aug 2013 14:43:18 GMT + recorded_at: Fri, 23 Aug 2013 11:06:55 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_symbol-named_class.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_symbol-named_class.yml index d16d330..8bcdd24 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_symbol-named_class.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_symbol-named_class.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Pro194521092"}' + string: '{"Name":"Pro170019915"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:36 GMT + - Fri, 23 Aug 2013 11:04:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -37,16 +37,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '248' + - '479' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -54,13 +54,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:40 GMT + recorded_at: Fri, 23 Aug 2013 11:04:30 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/ body: encoding: UTF-8 - string: '{"Name":"story2","Project":{"id":5269}}' + string: '{"Name":"story2","Project":{"id":6859}}' headers: Content-Type: - application/json @@ -72,11 +72,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:42 GMT + - Fri, 23 Aug 2013 11:04:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -92,33 +92,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '248' + - '201' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:41 GMT + recorded_at: Fri, 23 Aug 2013 11:04:31 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Tasks/ body: encoding: UTF-8 - string: '{"Name":"task","UserStory":{"id":5270}}' + string: '{"Name":"task","UserStory":{"id":6860}}' headers: Content-Type: - application/json @@ -130,11 +130,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:38 GMT + - Fri, 23 Aug 2013 11:04:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '942' + - '943' Connection: - keep-alive Keep-Alive: @@ -150,34 +150,34 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '255' + - '279' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5271,\r\n \"Name\": \"task\",\r\n \"Description\": + string: "{\r\n \"Id\": 6861,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009579000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009579000-0500)\\/\",\r\n + \"\\/Date(1377255870000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255870000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n \"Release\": + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \ \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n - \ \"UserStory\": {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"UserStory\": {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:41 GMT + recorded_at: Fri, 23 Aug 2013 11:04:31 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Tasks/ body: encoding: UTF-8 - string: '{"Name":"task","UserStory":{"id":5270}}' + string: '{"Name":"task","UserStory":{"id":6860}}' headers: Content-Type: - application/json @@ -189,11 +189,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:44 GMT + - Fri, 23 Aug 2013 11:04:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '942' + - '943' Connection: - keep-alive Keep-Alive: @@ -209,34 +209,34 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '281' + - '474' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5272,\r\n \"Name\": \"task\",\r\n \"Description\": + string: "{\r\n \"Id\": 6862,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009579000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009579000-0500)\\/\",\r\n + \"\\/Date(1377255871000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255871000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 86.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n \"Release\": + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \ \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n - \ \"UserStory\": {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"UserStory\": {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:42 GMT + recorded_at: Fri, 23 Aug 2013 11:04:32 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Tasks/ body: encoding: UTF-8 - string: '{"Name":"task","UserStory":{"id":5270}}' + string: '{"Name":"task","UserStory":{"id":6860}}' headers: Content-Type: - application/json @@ -248,11 +248,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:39 GMT + - Fri, 23 Aug 2013 11:04:36 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '942' + - '943' Connection: - keep-alive Keep-Alive: @@ -268,34 +268,34 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '222' + - '218' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5273,\r\n \"Name\": \"task\",\r\n \"Description\": + string: "{\r\n \"Id\": 6863,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009580000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009580000-0500)\\/\",\r\n + \"\\/Date(1377255872000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255872000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 86.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 234.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n \"Release\": + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \ \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n - \ \"UserStory\": {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"UserStory\": {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:43 GMT + recorded_at: Fri, 23 Aug 2013 11:04:33 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Tasks/ body: encoding: UTF-8 - string: '{"Name":"task","UserStory":{"id":5270}}' + string: '{"Name":"task","UserStory":{"id":6860}}' headers: Content-Type: - application/json @@ -307,11 +307,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:45 GMT + - Fri, 23 Aug 2013 11:04:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '942' + - '943' Connection: - keep-alive Keep-Alive: @@ -327,34 +327,34 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '274' + - '237' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5274,\r\n \"Name\": \"task\",\r\n \"Description\": + string: "{\r\n \"Id\": 6864,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009581000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009581000-0500)\\/\",\r\n + \"\\/Date(1377255873000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 87.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 234.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n \"Release\": + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \ \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n - \ \"UserStory\": {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"UserStory\": {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:44 GMT + recorded_at: Fri, 23 Aug 2013 11:04:34 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Tasks/ body: encoding: UTF-8 - string: '{"Name":"task","UserStory":{"id":5270}}' + string: '{"Name":"task","UserStory":{"id":6860}}' headers: Content-Type: - application/json @@ -366,11 +366,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:41 GMT + - Fri, 23 Aug 2013 11:04:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '942' + - '943' Connection: - keep-alive Keep-Alive: @@ -386,34 +386,34 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '227' + - '213' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5275,\r\n \"Name\": \"task\",\r\n \"Description\": + string: "{\r\n \"Id\": 6865,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009582000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009582000-0500)\\/\",\r\n + \"\\/Date(1377255873000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 87.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 235.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n \"Release\": + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \ \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n - \ \"UserStory\": {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"UserStory\": {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:44 GMT + recorded_at: Fri, 23 Aug 2013 11:04:34 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270/Tasks + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860/Tasks?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -423,11 +423,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:47 GMT + - Fri, 23 Aug 2013 11:04:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '5707' + - '5712' Connection: - keep-alive Keep-Alive: @@ -443,100 +443,100 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '62' + - '141' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 5271,\r\n \"Name\": + string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 6861,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377009579000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377009579000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 85.5,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255870000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377255870000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5272,\r\n \"Name\": + {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6862,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377009579000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377009579000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 86.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255871000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377255871000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 233.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5273,\r\n \"Name\": + {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6863,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377009580000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377009580000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 86.5,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255872000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377255872000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 234.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5274,\r\n \"Name\": + {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6864,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377009581000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377009581000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 87.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 234.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5275,\r\n \"Name\": + {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6865,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377009582000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377009582000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 87.5,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 235.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n + {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n \ \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:45 GMT + recorded_at: Fri, 23 Aug 2013 11:04:35 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -546,7 +546,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:42 GMT + - Fri, 23 Aug 2013 11:04:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -574,13 +574,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:45 GMT + recorded_at: Fri, 23 Aug 2013 11:04:35 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -590,7 +590,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:48 GMT + - Fri, 23 Aug 2013 11:04:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -618,13 +618,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:46 GMT + recorded_at: Fri, 23 Aug 2013 11:04:36 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -634,7 +634,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:43 GMT + - Fri, 23 Aug 2013 11:04:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -665,13 +665,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:46 GMT + recorded_at: Fri, 23 Aug 2013 11:04:36 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -681,7 +681,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:49 GMT + - Fri, 23 Aug 2013 11:04:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -712,13 +712,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:47 GMT + recorded_at: Fri, 23 Aug 2013 11:04:36 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -728,11 +728,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:44 GMT + - Fri, 23 Aug 2013 11:04:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -748,16 +748,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '47' + - '48' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -765,13 +765,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:48 GMT + recorded_at: Fri, 23 Aug 2013 11:04:37 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -781,11 +781,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:50 GMT + - Fri, 23 Aug 2013 11:04:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -801,16 +801,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '62' + - '58' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -818,13 +818,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:48 GMT + recorded_at: Fri, 23 Aug 2013 11:04:37 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -834,7 +834,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:46 GMT + - Fri, 23 Aug 2013 11:04:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -862,13 +862,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:50 GMT + recorded_at: Fri, 23 Aug 2013 11:04:38 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -878,7 +878,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:52 GMT + - Fri, 23 Aug 2013 11:04:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -906,13 +906,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:50 GMT + recorded_at: Fri, 23 Aug 2013 11:04:38 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -922,7 +922,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:47 GMT + - Fri, 23 Aug 2013 11:04:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -942,7 +942,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -953,13 +953,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:51 GMT + recorded_at: Fri, 23 Aug 2013 11:04:39 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -969,7 +969,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:53 GMT + - Fri, 23 Aug 2013 11:04:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -989,7 +989,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '6' X-Ua-Compatible: - IE=edge body: @@ -1000,13 +1000,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:51 GMT + recorded_at: Fri, 23 Aug 2013 11:04:39 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1016,7 +1016,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:48 GMT + - Fri, 23 Aug 2013 11:04:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1045,13 +1045,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:52 GMT + recorded_at: Fri, 23 Aug 2013 11:04:39 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1061,7 +1061,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:54 GMT + - Fri, 23 Aug 2013 11:04:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1081,7 +1081,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '38' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1090,13 +1090,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:53 GMT + recorded_at: Fri, 23 Aug 2013 11:04:40 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1106,7 +1106,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:49 GMT + - Fri, 23 Aug 2013 11:04:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1126,7 +1126,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -1135,13 +1135,13 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:53 GMT + recorded_at: Fri, 23 Aug 2013 11:04:40 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1151,7 +1151,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:55 GMT + - Fri, 23 Aug 2013 11:04:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1171,7 +1171,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -1180,13 +1180,13 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:54 GMT + recorded_at: Fri, 23 Aug 2013 11:04:40 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1196,7 +1196,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:50 GMT + - Fri, 23 Aug 2013 11:04:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1216,7 +1216,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '3' X-Ua-Compatible: - IE=edge body: @@ -1224,13 +1224,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:54 GMT + recorded_at: Fri, 23 Aug 2013 11:04:41 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1240,7 +1240,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:56 GMT + - Fri, 23 Aug 2013 11:04:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1268,13 +1268,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:55 GMT + recorded_at: Fri, 23 Aug 2013 11:04:41 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1284,7 +1284,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:51 GMT + - Fri, 23 Aug 2013 11:04:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1304,7 +1304,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '10' + - '11' X-Ua-Compatible: - IE=edge body: @@ -1316,13 +1316,13 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:55 GMT + recorded_at: Fri, 23 Aug 2013 11:04:41 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1332,7 +1332,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:57 GMT + - Fri, 23 Aug 2013 11:04:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1364,13 +1364,13 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:56 GMT + recorded_at: Fri, 23 Aug 2013 11:04:42 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1380,7 +1380,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:52 GMT + - Fri, 23 Aug 2013 11:04:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1400,7 +1400,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -1408,13 +1408,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:56 GMT + recorded_at: Fri, 23 Aug 2013 11:04:42 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1424,7 +1424,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:58 GMT + - Fri, 23 Aug 2013 11:04:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1444,7 +1444,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -1452,13 +1452,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:57 GMT + recorded_at: Fri, 23 Aug 2013 11:04:43 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1468,7 +1468,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:53 GMT + - Fri, 23 Aug 2013 11:04:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1496,13 +1496,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:57 GMT + recorded_at: Fri, 23 Aug 2013 11:04:43 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1512,7 +1512,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:59 GMT + - Fri, 23 Aug 2013 11:04:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1532,7 +1532,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '29' X-Ua-Compatible: - IE=edge body: @@ -1540,13 +1540,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:58 GMT + recorded_at: Fri, 23 Aug 2013 11:04:43 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1556,7 +1556,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:54 GMT + - Fri, 23 Aug 2013 11:04:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1585,13 +1585,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:58 GMT + recorded_at: Fri, 23 Aug 2013 11:04:44 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1601,7 +1601,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:00 GMT + - Fri, 23 Aug 2013 11:04:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1621,7 +1621,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '3' X-Ua-Compatible: - IE=edge body: @@ -1630,13 +1630,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:59 GMT + recorded_at: Fri, 23 Aug 2013 11:04:44 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1646,11 +1646,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:56 GMT + - Fri, 23 Aug 2013 11:04:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -1666,33 +1666,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '60' + - '65' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:39:59 GMT + recorded_at: Fri, 23 Aug 2013 11:04:44 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1702,11 +1702,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:02 GMT + - Fri, 23 Aug 2013 11:04:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -1722,33 +1722,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '60' + - '72' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:00 GMT + recorded_at: Fri, 23 Aug 2013 11:04:46 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1758,7 +1758,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:57 GMT + - Fri, 23 Aug 2013 11:04:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1786,13 +1786,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:00 GMT + recorded_at: Fri, 23 Aug 2013 11:04:46 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1802,7 +1802,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:03 GMT + - Fri, 23 Aug 2013 11:04:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1822,7 +1822,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1830,13 +1830,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:01 GMT + recorded_at: Fri, 23 Aug 2013 11:04:46 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1846,7 +1846,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:58 GMT + - Fri, 23 Aug 2013 11:04:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1866,7 +1866,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -1877,13 +1877,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:01 GMT + recorded_at: Fri, 23 Aug 2013 11:04:47 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1893,7 +1893,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:04 GMT + - Fri, 23 Aug 2013 11:04:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1913,7 +1913,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -1924,13 +1924,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:02 GMT + recorded_at: Fri, 23 Aug 2013 11:04:47 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1940,11 +1940,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:00 GMT + - Fri, 23 Aug 2013 11:04:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -1960,16 +1960,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '49' + - '48' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -1977,13 +1977,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:03 GMT + recorded_at: Fri, 23 Aug 2013 11:04:48 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1993,11 +1993,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:06 GMT + - Fri, 23 Aug 2013 11:04:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -2018,11 +2018,11 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -2030,13 +2030,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:04 GMT + recorded_at: Fri, 23 Aug 2013 11:04:48 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2046,7 +2046,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:01 GMT + - Fri, 23 Aug 2013 11:04:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2066,7 +2066,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '7' X-Ua-Compatible: - IE=edge body: @@ -2074,13 +2074,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:04 GMT + recorded_at: Fri, 23 Aug 2013 11:04:48 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2090,7 +2090,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:07 GMT + - Fri, 23 Aug 2013 11:04:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2110,7 +2110,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '4' X-Ua-Compatible: - IE=edge body: @@ -2118,13 +2118,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:05 GMT + recorded_at: Fri, 23 Aug 2013 11:04:49 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2134,7 +2134,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:02 GMT + - Fri, 23 Aug 2013 11:04:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2154,7 +2154,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -2165,13 +2165,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:05 GMT + recorded_at: Fri, 23 Aug 2013 11:04:49 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2181,7 +2181,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:08 GMT + - Fri, 23 Aug 2013 11:04:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2212,13 +2212,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:06 GMT + recorded_at: Fri, 23 Aug 2013 11:04:49 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2228,7 +2228,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:03 GMT + - Fri, 23 Aug 2013 11:04:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2248,7 +2248,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '11' X-Ua-Compatible: - IE=edge body: @@ -2257,13 +2257,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:06 GMT + recorded_at: Fri, 23 Aug 2013 11:04:50 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2273,7 +2273,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:09 GMT + - Fri, 23 Aug 2013 11:04:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2302,13 +2302,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:07 GMT + recorded_at: Fri, 23 Aug 2013 11:04:50 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2318,7 +2318,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:04 GMT + - Fri, 23 Aug 2013 11:04:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2338,7 +2338,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -2347,13 +2347,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:07 GMT + recorded_at: Fri, 23 Aug 2013 11:04:50 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2363,7 +2363,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:10 GMT + - Fri, 23 Aug 2013 11:04:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2383,7 +2383,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -2392,13 +2392,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:08 GMT + recorded_at: Fri, 23 Aug 2013 11:04:51 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2408,7 +2408,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:05 GMT + - Fri, 23 Aug 2013 11:04:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2436,13 +2436,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:08 GMT + recorded_at: Fri, 23 Aug 2013 11:04:51 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2452,7 +2452,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:11 GMT + - Fri, 23 Aug 2013 11:04:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2472,7 +2472,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '3' X-Ua-Compatible: - IE=edge body: @@ -2480,13 +2480,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:09 GMT + recorded_at: Fri, 23 Aug 2013 11:04:51 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2496,7 +2496,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:06 GMT + - Fri, 23 Aug 2013 11:04:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2516,7 +2516,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '10' + - '11' X-Ua-Compatible: - IE=edge body: @@ -2527,13 +2527,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:09 GMT + recorded_at: Fri, 23 Aug 2013 11:04:52 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2543,7 +2543,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:12 GMT + - Fri, 23 Aug 2013 11:04:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2574,13 +2574,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:10 GMT + recorded_at: Fri, 23 Aug 2013 11:04:52 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2590,7 +2590,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:07 GMT + - Fri, 23 Aug 2013 11:04:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2610,7 +2610,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '6' X-Ua-Compatible: - IE=edge body: @@ -2618,13 +2618,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:10 GMT + recorded_at: Fri, 23 Aug 2013 11:04:52 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2634,7 +2634,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:13 GMT + - Fri, 23 Aug 2013 11:04:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2662,13 +2662,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:11 GMT + recorded_at: Fri, 23 Aug 2013 11:04:53 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2678,7 +2678,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:08 GMT + - Fri, 23 Aug 2013 11:04:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2707,13 +2707,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:11 GMT + recorded_at: Fri, 23 Aug 2013 11:04:53 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2723,7 +2723,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:14 GMT + - Fri, 23 Aug 2013 11:04:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2743,7 +2743,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -2752,13 +2752,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:12 GMT + recorded_at: Fri, 23 Aug 2013 11:04:53 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2768,7 +2768,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:09 GMT + - Fri, 23 Aug 2013 11:04:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2796,13 +2796,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:12 GMT + recorded_at: Fri, 23 Aug 2013 11:04:54 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2812,7 +2812,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:15 GMT + - Fri, 23 Aug 2013 11:04:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2840,13 +2840,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:13 GMT + recorded_at: Fri, 23 Aug 2013 11:04:54 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2856,7 +2856,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:10 GMT + - Fri, 23 Aug 2013 11:04:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2876,7 +2876,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '13' X-Ua-Compatible: - IE=edge body: @@ -2887,13 +2887,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:13 GMT + recorded_at: Fri, 23 Aug 2013 11:04:55 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2903,7 +2903,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:16 GMT + - Fri, 23 Aug 2013 11:04:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2923,7 +2923,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '8' X-Ua-Compatible: - IE=edge body: @@ -2934,13 +2934,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:14 GMT + recorded_at: Fri, 23 Aug 2013 11:04:55 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2950,11 +2950,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:11 GMT + - Fri, 23 Aug 2013 11:04:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -2970,16 +2970,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '51' + - '61' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -2987,13 +2987,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:14 GMT + recorded_at: Fri, 23 Aug 2013 11:04:56 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3003,11 +3003,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:17 GMT + - Fri, 23 Aug 2013 11:04:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -3023,16 +3023,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '54' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -3040,13 +3040,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:15 GMT + recorded_at: Fri, 23 Aug 2013 11:04:56 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3056,7 +3056,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:12 GMT + - Fri, 23 Aug 2013 11:05:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3084,13 +3084,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:16 GMT + recorded_at: Fri, 23 Aug 2013 11:04:56 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3100,7 +3100,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:18 GMT + - Fri, 23 Aug 2013 11:04:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3128,13 +3128,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:16 GMT + recorded_at: Fri, 23 Aug 2013 11:04:57 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3144,7 +3144,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:13 GMT + - Fri, 23 Aug 2013 11:05:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3164,7 +3164,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '8' X-Ua-Compatible: - IE=edge body: @@ -3175,13 +3175,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:17 GMT + recorded_at: Fri, 23 Aug 2013 11:04:57 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3191,7 +3191,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:19 GMT + - Fri, 23 Aug 2013 11:04:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3211,7 +3211,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -3222,13 +3222,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:17 GMT + recorded_at: Fri, 23 Aug 2013 11:04:57 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3238,7 +3238,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:14 GMT + - Fri, 23 Aug 2013 11:05:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3267,13 +3267,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:18 GMT + recorded_at: Fri, 23 Aug 2013 11:04:58 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3283,7 +3283,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:20 GMT + - Fri, 23 Aug 2013 11:04:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3303,7 +3303,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '8' X-Ua-Compatible: - IE=edge body: @@ -3312,13 +3312,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:18 GMT + recorded_at: Fri, 23 Aug 2013 11:04:58 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3328,7 +3328,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:15 GMT + - Fri, 23 Aug 2013 11:05:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3348,7 +3348,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -3357,13 +3357,13 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:19 GMT + recorded_at: Fri, 23 Aug 2013 11:04:58 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3373,7 +3373,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:21 GMT + - Fri, 23 Aug 2013 11:04:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3402,13 +3402,13 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:19 GMT + recorded_at: Fri, 23 Aug 2013 11:04:59 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3418,7 +3418,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:16 GMT + - Fri, 23 Aug 2013 11:05:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3446,13 +3446,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:20 GMT + recorded_at: Fri, 23 Aug 2013 11:04:59 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3462,7 +3462,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:22 GMT + - Fri, 23 Aug 2013 11:04:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3490,13 +3490,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:20 GMT + recorded_at: Fri, 23 Aug 2013 11:04:59 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3506,7 +3506,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:17 GMT + - Fri, 23 Aug 2013 11:05:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3538,13 +3538,13 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:21 GMT + recorded_at: Fri, 23 Aug 2013 11:05:00 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3554,7 +3554,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:23 GMT + - Fri, 23 Aug 2013 11:04:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3586,13 +3586,13 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:21 GMT + recorded_at: Fri, 23 Aug 2013 11:05:00 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3602,7 +3602,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:18 GMT + - Fri, 23 Aug 2013 11:05:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3630,13 +3630,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:22 GMT + recorded_at: Fri, 23 Aug 2013 11:05:00 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3646,7 +3646,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:24 GMT + - Fri, 23 Aug 2013 11:04:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3674,13 +3674,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:22 GMT + recorded_at: Fri, 23 Aug 2013 11:05:01 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3690,7 +3690,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:19 GMT + - Fri, 23 Aug 2013 11:05:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3718,13 +3718,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:23 GMT + recorded_at: Fri, 23 Aug 2013 11:05:01 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3734,7 +3734,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:25 GMT + - Fri, 23 Aug 2013 11:04:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3762,13 +3762,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:23 GMT + recorded_at: Fri, 23 Aug 2013 11:05:01 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3778,7 +3778,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:22 GMT + - Fri, 23 Aug 2013 11:05:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3807,13 +3807,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:25 GMT + recorded_at: Fri, 23 Aug 2013 11:05:02 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3823,7 +3823,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:28 GMT + - Fri, 23 Aug 2013 11:04:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3852,13 +3852,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:26 GMT + recorded_at: Fri, 23 Aug 2013 11:05:02 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3868,11 +3868,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:23 GMT + - Fri, 23 Aug 2013 11:05:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -3888,33 +3888,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '63' + - '58' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:27 GMT + recorded_at: Fri, 23 Aug 2013 11:05:03 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3924,11 +3924,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:29 GMT + - Fri, 23 Aug 2013 11:04:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -3944,33 +3944,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '61' + - '57' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:28 GMT + recorded_at: Fri, 23 Aug 2013 11:05:03 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3980,7 +3980,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:24 GMT + - Fri, 23 Aug 2013 11:05:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4008,13 +4008,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:28 GMT + recorded_at: Fri, 23 Aug 2013 11:05:03 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4024,7 +4024,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:30 GMT + - Fri, 23 Aug 2013 11:04:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4052,13 +4052,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:29 GMT + recorded_at: Fri, 23 Aug 2013 11:05:04 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4068,7 +4068,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:25 GMT + - Fri, 23 Aug 2013 11:05:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4088,7 +4088,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -4099,13 +4099,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:29 GMT + recorded_at: Fri, 23 Aug 2013 11:05:04 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4115,7 +4115,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:31 GMT + - Fri, 23 Aug 2013 11:04:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4135,7 +4135,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -4146,13 +4146,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:30 GMT + recorded_at: Fri, 23 Aug 2013 11:05:04 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4162,11 +4162,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:27 GMT + - Fri, 23 Aug 2013 11:05:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -4187,11 +4187,11 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -4199,13 +4199,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:30 GMT + recorded_at: Fri, 23 Aug 2013 11:05:05 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4215,11 +4215,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:33 GMT + - Fri, 23 Aug 2013 11:04:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -4235,16 +4235,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '101' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -4252,13 +4252,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:31 GMT + recorded_at: Fri, 23 Aug 2013 11:05:05 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4268,7 +4268,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:28 GMT + - Fri, 23 Aug 2013 11:05:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4296,13 +4296,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:32 GMT + recorded_at: Fri, 23 Aug 2013 11:05:05 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4312,7 +4312,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:34 GMT + - Fri, 23 Aug 2013 11:04:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4340,13 +4340,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:32 GMT + recorded_at: Fri, 23 Aug 2013 11:05:06 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4356,7 +4356,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:29 GMT + - Fri, 23 Aug 2013 11:05:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4376,7 +4376,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '8' X-Ua-Compatible: - IE=edge body: @@ -4387,13 +4387,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:33 GMT + recorded_at: Fri, 23 Aug 2013 11:05:06 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4403,7 +4403,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:36 GMT + - Fri, 23 Aug 2013 11:04:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4434,13 +4434,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:34 GMT + recorded_at: Fri, 23 Aug 2013 11:05:07 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4450,7 +4450,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:31 GMT + - Fri, 23 Aug 2013 11:05:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4479,13 +4479,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:35 GMT + recorded_at: Fri, 23 Aug 2013 11:05:07 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4495,7 +4495,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:37 GMT + - Fri, 23 Aug 2013 11:04:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4515,7 +4515,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '61' + - '4' X-Ua-Compatible: - IE=edge body: @@ -4524,13 +4524,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:35 GMT + recorded_at: Fri, 23 Aug 2013 11:05:07 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4540,7 +4540,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:32 GMT + - Fri, 23 Aug 2013 11:05:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4560,7 +4560,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -4569,13 +4569,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:36 GMT + recorded_at: Fri, 23 Aug 2013 11:05:08 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4585,7 +4585,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:38 GMT + - Fri, 23 Aug 2013 11:04:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4605,7 +4605,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -4614,13 +4614,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:36 GMT + recorded_at: Fri, 23 Aug 2013 11:05:08 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4630,7 +4630,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:33 GMT + - Fri, 23 Aug 2013 11:05:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4658,13 +4658,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:37 GMT + recorded_at: Fri, 23 Aug 2013 11:05:08 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4674,7 +4674,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:39 GMT + - Fri, 23 Aug 2013 11:05:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4702,13 +4702,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:37 GMT + recorded_at: Fri, 23 Aug 2013 11:05:09 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4718,7 +4718,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:34 GMT + - Fri, 23 Aug 2013 11:05:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4749,13 +4749,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:38 GMT + recorded_at: Fri, 23 Aug 2013 11:05:09 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4765,7 +4765,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:40 GMT + - Fri, 23 Aug 2013 11:05:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4785,7 +4785,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -4796,13 +4796,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:38 GMT + recorded_at: Fri, 23 Aug 2013 11:05:09 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4812,7 +4812,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:35 GMT + - Fri, 23 Aug 2013 11:05:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4832,7 +4832,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '7' X-Ua-Compatible: - IE=edge body: @@ -4840,13 +4840,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:39 GMT + recorded_at: Fri, 23 Aug 2013 11:05:10 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4856,7 +4856,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:41 GMT + - Fri, 23 Aug 2013 11:05:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4884,13 +4884,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:39 GMT + recorded_at: Fri, 23 Aug 2013 11:05:10 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4900,7 +4900,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:37 GMT + - Fri, 23 Aug 2013 11:05:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4929,13 +4929,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:41 GMT + recorded_at: Fri, 23 Aug 2013 11:05:10 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4945,7 +4945,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:43 GMT + - Fri, 23 Aug 2013 11:05:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4974,13 +4974,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:42 GMT + recorded_at: Fri, 23 Aug 2013 11:05:11 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4990,7 +4990,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:38 GMT + - Fri, 23 Aug 2013 11:05:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5018,13 +5018,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:42 GMT + recorded_at: Fri, 23 Aug 2013 11:05:11 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5034,7 +5034,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:44 GMT + - Fri, 23 Aug 2013 11:05:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5062,13 +5062,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:43 GMT + recorded_at: Fri, 23 Aug 2013 11:05:11 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5078,7 +5078,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:39 GMT + - Fri, 23 Aug 2013 11:05:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5098,7 +5098,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -5109,13 +5109,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:43 GMT + recorded_at: Fri, 23 Aug 2013 11:05:12 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5125,7 +5125,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:45 GMT + - Fri, 23 Aug 2013 11:05:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5156,13 +5156,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:44 GMT + recorded_at: Fri, 23 Aug 2013 11:05:12 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5172,11 +5172,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:42 GMT + - Fri, 23 Aug 2013 11:05:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -5192,16 +5192,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '51' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -5209,13 +5209,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:45 GMT + recorded_at: Fri, 23 Aug 2013 11:05:13 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5225,11 +5225,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:48 GMT + - Fri, 23 Aug 2013 11:05:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -5245,16 +5245,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '48' + - '49' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -5262,13 +5262,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:46 GMT + recorded_at: Fri, 23 Aug 2013 11:05:14 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5278,7 +5278,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:43 GMT + - Fri, 23 Aug 2013 11:05:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5298,7 +5298,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -5306,13 +5306,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:46 GMT + recorded_at: Fri, 23 Aug 2013 11:05:15 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5322,7 +5322,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:49 GMT + - Fri, 23 Aug 2013 11:05:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5350,13 +5350,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:47 GMT + recorded_at: Fri, 23 Aug 2013 11:05:15 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5366,7 +5366,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:44 GMT + - Fri, 23 Aug 2013 11:05:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5397,13 +5397,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:48 GMT + recorded_at: Fri, 23 Aug 2013 11:05:15 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5413,7 +5413,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:50 GMT + - Fri, 23 Aug 2013 11:05:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5433,7 +5433,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -5444,13 +5444,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:48 GMT + recorded_at: Fri, 23 Aug 2013 11:05:16 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5460,7 +5460,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:45 GMT + - Fri, 23 Aug 2013 11:05:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5489,13 +5489,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:49 GMT + recorded_at: Fri, 23 Aug 2013 11:05:16 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5505,7 +5505,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:51 GMT + - Fri, 23 Aug 2013 11:05:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5534,13 +5534,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:49 GMT + recorded_at: Fri, 23 Aug 2013 11:05:16 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5550,7 +5550,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:46 GMT + - Fri, 23 Aug 2013 11:05:20 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5570,7 +5570,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -5579,13 +5579,13 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:50 GMT + recorded_at: Fri, 23 Aug 2013 11:05:17 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5595,7 +5595,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:52 GMT + - Fri, 23 Aug 2013 11:05:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5615,7 +5615,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -5624,13 +5624,13 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:50 GMT + recorded_at: Fri, 23 Aug 2013 11:05:17 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5640,7 +5640,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:47 GMT + - Fri, 23 Aug 2013 11:05:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5668,13 +5668,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:51 GMT + recorded_at: Fri, 23 Aug 2013 11:05:17 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5684,7 +5684,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:53 GMT + - Fri, 23 Aug 2013 11:05:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5712,13 +5712,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:51 GMT + recorded_at: Fri, 23 Aug 2013 11:05:18 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5728,7 +5728,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:48 GMT + - Fri, 23 Aug 2013 11:05:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5760,13 +5760,13 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:52 GMT + recorded_at: Fri, 23 Aug 2013 11:05:18 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5776,7 +5776,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:54 GMT + - Fri, 23 Aug 2013 11:05:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5796,7 +5796,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '10' + - '11' X-Ua-Compatible: - IE=edge body: @@ -5808,13 +5808,13 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:52 GMT + recorded_at: Fri, 23 Aug 2013 11:05:18 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5824,7 +5824,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:49 GMT + - Fri, 23 Aug 2013 11:05:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5852,13 +5852,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:53 GMT + recorded_at: Fri, 23 Aug 2013 11:05:19 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5868,7 +5868,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:55 GMT + - Fri, 23 Aug 2013 11:05:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5896,13 +5896,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:53 GMT + recorded_at: Fri, 23 Aug 2013 11:05:19 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5912,7 +5912,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:50 GMT + - Fri, 23 Aug 2013 11:05:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5940,13 +5940,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:54 GMT + recorded_at: Fri, 23 Aug 2013 11:05:19 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5956,7 +5956,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:56 GMT + - Fri, 23 Aug 2013 11:05:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5984,13 +5984,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:54 GMT + recorded_at: Fri, 23 Aug 2013 11:05:20 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6000,7 +6000,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:51 GMT + - Fri, 23 Aug 2013 11:05:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6029,13 +6029,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:55 GMT + recorded_at: Fri, 23 Aug 2013 11:05:20 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6045,7 +6045,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:57 GMT + - Fri, 23 Aug 2013 11:05:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6074,13 +6074,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:55 GMT + recorded_at: Fri, 23 Aug 2013 11:05:20 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6090,11 +6090,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:52 GMT + - Fri, 23 Aug 2013 11:05:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -6110,33 +6110,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '62' + - '66' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:56 GMT + recorded_at: Fri, 23 Aug 2013 11:05:21 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6146,11 +6146,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:59 GMT + - Fri, 23 Aug 2013 11:05:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -6166,33 +6166,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '66' + - '63' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:57 GMT + recorded_at: Fri, 23 Aug 2013 11:05:21 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6202,7 +6202,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:54 GMT + - Fri, 23 Aug 2013 11:05:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6222,7 +6222,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '4' X-Ua-Compatible: - IE=edge body: @@ -6230,13 +6230,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:58 GMT + recorded_at: Fri, 23 Aug 2013 11:05:22 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6246,7 +6246,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:00 GMT + - Fri, 23 Aug 2013 11:05:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6274,13 +6274,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:58 GMT + recorded_at: Fri, 23 Aug 2013 11:05:22 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6290,7 +6290,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:55 GMT + - Fri, 23 Aug 2013 11:05:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6310,7 +6310,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '38' X-Ua-Compatible: - IE=edge body: @@ -6321,13 +6321,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:59 GMT + recorded_at: Fri, 23 Aug 2013 11:05:22 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6337,7 +6337,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:01 GMT + - Fri, 23 Aug 2013 11:05:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6357,7 +6357,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -6368,13 +6368,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:40:59 GMT + recorded_at: Fri, 23 Aug 2013 11:05:23 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6384,11 +6384,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:56 GMT + - Fri, 23 Aug 2013 11:05:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -6404,16 +6404,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '48' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -6421,13 +6421,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:00 GMT + recorded_at: Fri, 23 Aug 2013 11:05:23 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6437,11 +6437,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:02 GMT + - Fri, 23 Aug 2013 11:05:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -6457,16 +6457,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '54' + - '53' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -6474,13 +6474,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:00 GMT + recorded_at: Fri, 23 Aug 2013 11:05:23 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6490,7 +6490,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:57 GMT + - Fri, 23 Aug 2013 11:05:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6518,13 +6518,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:01 GMT + recorded_at: Fri, 23 Aug 2013 11:05:24 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6534,7 +6534,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:03 GMT + - Fri, 23 Aug 2013 11:05:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6562,13 +6562,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:01 GMT + recorded_at: Fri, 23 Aug 2013 11:05:24 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6578,7 +6578,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:58 GMT + - Fri, 23 Aug 2013 11:05:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6609,13 +6609,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:02 GMT + recorded_at: Fri, 23 Aug 2013 11:05:24 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6625,7 +6625,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:04 GMT + - Fri, 23 Aug 2013 11:05:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6656,13 +6656,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:02 GMT + recorded_at: Fri, 23 Aug 2013 11:05:25 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6672,7 +6672,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:59 GMT + - Fri, 23 Aug 2013 11:05:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6692,7 +6692,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -6701,13 +6701,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:03 GMT + recorded_at: Fri, 23 Aug 2013 11:05:25 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6717,7 +6717,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:05 GMT + - Fri, 23 Aug 2013 11:05:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6746,13 +6746,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:03 GMT + recorded_at: Fri, 23 Aug 2013 11:05:25 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6762,7 +6762,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:00 GMT + - Fri, 23 Aug 2013 11:05:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6782,7 +6782,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '7' X-Ua-Compatible: - IE=edge body: @@ -6791,13 +6791,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:04 GMT + recorded_at: Fri, 23 Aug 2013 11:05:26 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6807,7 +6807,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:06 GMT + - Fri, 23 Aug 2013 11:05:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6827,7 +6827,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '14' X-Ua-Compatible: - IE=edge body: @@ -6836,13 +6836,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:04 GMT + recorded_at: Fri, 23 Aug 2013 11:05:26 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6852,7 +6852,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:01 GMT + - Fri, 23 Aug 2013 11:05:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6880,13 +6880,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:05 GMT + recorded_at: Fri, 23 Aug 2013 11:05:26 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6896,7 +6896,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:07 GMT + - Fri, 23 Aug 2013 11:05:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6924,13 +6924,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:05 GMT + recorded_at: Fri, 23 Aug 2013 11:05:27 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6940,7 +6940,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:02 GMT + - Fri, 23 Aug 2013 11:05:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6960,7 +6960,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '15' + - '10' X-Ua-Compatible: - IE=edge body: @@ -6971,13 +6971,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:06 GMT + recorded_at: Fri, 23 Aug 2013 11:05:27 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6987,7 +6987,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:09 GMT + - Fri, 23 Aug 2013 11:05:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7007,7 +7007,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -7018,13 +7018,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:07 GMT + recorded_at: Fri, 23 Aug 2013 11:05:28 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7034,7 +7034,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:04 GMT + - Fri, 23 Aug 2013 11:05:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7062,13 +7062,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:07 GMT + recorded_at: Fri, 23 Aug 2013 11:05:28 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7078,7 +7078,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:10 GMT + - Fri, 23 Aug 2013 11:05:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7106,13 +7106,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:08 GMT + recorded_at: Fri, 23 Aug 2013 11:05:28 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7122,7 +7122,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:05 GMT + - Fri, 23 Aug 2013 11:05:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7151,13 +7151,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:09 GMT + recorded_at: Fri, 23 Aug 2013 11:05:29 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7167,7 +7167,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:11 GMT + - Fri, 23 Aug 2013 11:05:20 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7187,7 +7187,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '13' X-Ua-Compatible: - IE=edge body: @@ -7196,13 +7196,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:09 GMT + recorded_at: Fri, 23 Aug 2013 11:05:29 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7212,7 +7212,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:06 GMT + - Fri, 23 Aug 2013 11:05:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7232,7 +7232,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '3' X-Ua-Compatible: - IE=edge body: @@ -7240,13 +7240,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:10 GMT + recorded_at: Fri, 23 Aug 2013 11:05:29 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7256,7 +7256,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:12 GMT + - Fri, 23 Aug 2013 11:05:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7284,13 +7284,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:10 GMT + recorded_at: Fri, 23 Aug 2013 11:05:30 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7300,7 +7300,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:07 GMT + - Fri, 23 Aug 2013 11:05:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7331,13 +7331,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:11 GMT + recorded_at: Fri, 23 Aug 2013 11:05:30 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7347,7 +7347,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:13 GMT + - Fri, 23 Aug 2013 11:05:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7378,13 +7378,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:11 GMT + recorded_at: Fri, 23 Aug 2013 11:05:30 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7394,11 +7394,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:08 GMT + - Fri, 23 Aug 2013 11:05:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -7414,16 +7414,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '51' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -7431,13 +7431,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:12 GMT + recorded_at: Fri, 23 Aug 2013 11:05:31 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7447,11 +7447,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:14 GMT + - Fri, 23 Aug 2013 11:05:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -7467,16 +7467,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '49' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -7484,13 +7484,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:12 GMT + recorded_at: Fri, 23 Aug 2013 11:05:31 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7500,7 +7500,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:09 GMT + - Fri, 23 Aug 2013 11:05:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7528,13 +7528,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:13 GMT + recorded_at: Fri, 23 Aug 2013 11:05:31 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7544,7 +7544,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:15 GMT + - Fri, 23 Aug 2013 11:05:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7572,13 +7572,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:14 GMT + recorded_at: Fri, 23 Aug 2013 11:05:32 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7588,7 +7588,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:11 GMT + - Fri, 23 Aug 2013 11:05:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7608,7 +7608,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -7619,13 +7619,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:14 GMT + recorded_at: Fri, 23 Aug 2013 11:05:32 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7635,7 +7635,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:17 GMT + - Fri, 23 Aug 2013 11:05:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7655,7 +7655,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -7666,13 +7666,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:15 GMT + recorded_at: Fri, 23 Aug 2013 11:05:32 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7682,7 +7682,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:12 GMT + - Fri, 23 Aug 2013 11:05:36 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7711,13 +7711,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:15 GMT + recorded_at: Fri, 23 Aug 2013 11:05:33 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7727,7 +7727,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:18 GMT + - Fri, 23 Aug 2013 11:05:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7756,13 +7756,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:16 GMT + recorded_at: Fri, 23 Aug 2013 11:05:34 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7772,7 +7772,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:13 GMT + - Fri, 23 Aug 2013 11:05:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7792,7 +7792,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '14' X-Ua-Compatible: - IE=edge body: @@ -7801,13 +7801,13 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:16 GMT + recorded_at: Fri, 23 Aug 2013 11:05:34 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7817,7 +7817,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:19 GMT + - Fri, 23 Aug 2013 11:05:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7837,7 +7837,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -7846,13 +7846,13 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:17 GMT + recorded_at: Fri, 23 Aug 2013 11:05:34 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7862,7 +7862,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:14 GMT + - Fri, 23 Aug 2013 11:05:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7890,13 +7890,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:17 GMT + recorded_at: Fri, 23 Aug 2013 11:05:35 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7906,7 +7906,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:20 GMT + - Fri, 23 Aug 2013 11:05:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7926,7 +7926,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '4' X-Ua-Compatible: - IE=edge body: @@ -7934,13 +7934,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:18 GMT + recorded_at: Fri, 23 Aug 2013 11:05:35 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7950,7 +7950,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:15 GMT + - Fri, 23 Aug 2013 11:05:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7970,7 +7970,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -7982,13 +7982,13 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:18 GMT + recorded_at: Fri, 23 Aug 2013 11:05:36 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7998,7 +7998,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:21 GMT + - Fri, 23 Aug 2013 11:05:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8018,7 +8018,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -8030,13 +8030,13 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:19 GMT + recorded_at: Fri, 23 Aug 2013 11:05:36 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8046,7 +8046,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:16 GMT + - Fri, 23 Aug 2013 11:05:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8074,13 +8074,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:19 GMT + recorded_at: Fri, 23 Aug 2013 11:05:37 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8090,7 +8090,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:22 GMT + - Fri, 23 Aug 2013 11:05:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8118,13 +8118,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:20 GMT + recorded_at: Fri, 23 Aug 2013 11:05:37 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8134,7 +8134,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:17 GMT + - Fri, 23 Aug 2013 11:05:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8162,13 +8162,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:20 GMT + recorded_at: Fri, 23 Aug 2013 11:05:37 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8178,7 +8178,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:23 GMT + - Fri, 23 Aug 2013 11:05:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8206,13 +8206,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:21 GMT + recorded_at: Fri, 23 Aug 2013 11:05:38 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8222,7 +8222,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:18 GMT + - Fri, 23 Aug 2013 11:05:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8251,13 +8251,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:21 GMT + recorded_at: Fri, 23 Aug 2013 11:05:38 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8267,7 +8267,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:24 GMT + - Fri, 23 Aug 2013 11:05:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8296,13 +8296,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:22 GMT + recorded_at: Fri, 23 Aug 2013 11:05:38 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8312,11 +8312,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:19 GMT + - Fri, 23 Aug 2013 11:05:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -8332,33 +8332,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '65' + - '66' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:22 GMT + recorded_at: Fri, 23 Aug 2013 11:05:39 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8368,11 +8368,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:25 GMT + - Fri, 23 Aug 2013 11:05:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -8388,33 +8388,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '62' + - '61' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:23 GMT + recorded_at: Fri, 23 Aug 2013 11:05:39 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8424,7 +8424,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:20 GMT + - Fri, 23 Aug 2013 11:05:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8452,13 +8452,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:24 GMT + recorded_at: Fri, 23 Aug 2013 11:05:40 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8468,7 +8468,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:26 GMT + - Fri, 23 Aug 2013 11:05:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8496,13 +8496,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:24 GMT + recorded_at: Fri, 23 Aug 2013 11:05:40 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8512,7 +8512,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:21 GMT + - Fri, 23 Aug 2013 11:05:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8532,7 +8532,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -8543,13 +8543,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:25 GMT + recorded_at: Fri, 23 Aug 2013 11:05:41 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8559,7 +8559,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:27 GMT + - Fri, 23 Aug 2013 11:05:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8579,7 +8579,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -8590,13 +8590,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:25 GMT + recorded_at: Fri, 23 Aug 2013 11:05:41 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8606,11 +8606,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:22 GMT + - Fri, 23 Aug 2013 11:05:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -8631,11 +8631,11 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -8643,13 +8643,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:26 GMT + recorded_at: Fri, 23 Aug 2013 11:05:41 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8659,11 +8659,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:28 GMT + - Fri, 23 Aug 2013 11:05:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -8679,16 +8679,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '49' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -8696,13 +8696,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:26 GMT + recorded_at: Fri, 23 Aug 2013 11:05:42 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8712,7 +8712,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:23 GMT + - Fri, 23 Aug 2013 11:05:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8740,13 +8740,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:27 GMT + recorded_at: Fri, 23 Aug 2013 11:05:42 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8756,7 +8756,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:29 GMT + - Fri, 23 Aug 2013 11:05:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8776,7 +8776,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -8784,13 +8784,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:27 GMT + recorded_at: Fri, 23 Aug 2013 11:05:42 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8800,7 +8800,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:24 GMT + - Fri, 23 Aug 2013 11:05:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8820,7 +8820,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -8831,13 +8831,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:28 GMT + recorded_at: Fri, 23 Aug 2013 11:05:43 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8847,7 +8847,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:30 GMT + - Fri, 23 Aug 2013 11:05:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8867,7 +8867,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -8878,13 +8878,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:28 GMT + recorded_at: Fri, 23 Aug 2013 11:05:43 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8894,7 +8894,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:25 GMT + - Fri, 23 Aug 2013 11:05:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8923,13 +8923,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:29 GMT + recorded_at: Fri, 23 Aug 2013 11:05:43 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8939,7 +8939,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:31 GMT + - Fri, 23 Aug 2013 11:05:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8968,13 +8968,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:29 GMT + recorded_at: Fri, 23 Aug 2013 11:05:44 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8984,7 +8984,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:26 GMT + - Fri, 23 Aug 2013 11:05:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9013,13 +9013,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:30 GMT + recorded_at: Fri, 23 Aug 2013 11:05:44 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9029,7 +9029,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:32 GMT + - Fri, 23 Aug 2013 11:05:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9049,7 +9049,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -9058,13 +9058,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:30 GMT + recorded_at: Fri, 23 Aug 2013 11:05:44 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9074,7 +9074,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:27 GMT + - Fri, 23 Aug 2013 11:05:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9102,13 +9102,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:31 GMT + recorded_at: Fri, 23 Aug 2013 11:05:45 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9118,7 +9118,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:33 GMT + - Fri, 23 Aug 2013 11:05:36 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9146,13 +9146,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:31 GMT + recorded_at: Fri, 23 Aug 2013 11:05:45 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9162,7 +9162,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:28 GMT + - Fri, 23 Aug 2013 11:05:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9193,13 +9193,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:32 GMT + recorded_at: Fri, 23 Aug 2013 11:05:45 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9209,7 +9209,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:34 GMT + - Fri, 23 Aug 2013 11:05:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9240,13 +9240,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:32 GMT + recorded_at: Fri, 23 Aug 2013 11:05:46 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9256,7 +9256,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:29 GMT + - Fri, 23 Aug 2013 11:05:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9284,13 +9284,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:33 GMT + recorded_at: Fri, 23 Aug 2013 11:05:46 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9300,7 +9300,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:35 GMT + - Fri, 23 Aug 2013 11:05:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9328,13 +9328,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:33 GMT + recorded_at: Fri, 23 Aug 2013 11:05:46 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9344,7 +9344,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:30 GMT + - Fri, 23 Aug 2013 11:05:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9373,13 +9373,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:34 GMT + recorded_at: Fri, 23 Aug 2013 11:05:47 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9389,7 +9389,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:36 GMT + - Fri, 23 Aug 2013 11:05:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9409,7 +9409,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '9' X-Ua-Compatible: - IE=edge body: @@ -9418,13 +9418,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:34 GMT + recorded_at: Fri, 23 Aug 2013 11:05:48 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9434,7 +9434,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:31 GMT + - Fri, 23 Aug 2013 11:05:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9462,13 +9462,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:35 GMT + recorded_at: Fri, 23 Aug 2013 11:05:48 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9478,7 +9478,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:37 GMT + - Fri, 23 Aug 2013 11:05:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9506,13 +9506,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:35 GMT + recorded_at: Fri, 23 Aug 2013 11:05:48 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9522,7 +9522,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:32 GMT + - Fri, 23 Aug 2013 11:05:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9542,7 +9542,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '26' X-Ua-Compatible: - IE=edge body: @@ -9553,13 +9553,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:36 GMT + recorded_at: Fri, 23 Aug 2013 11:05:49 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9569,7 +9569,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:38 GMT + - Fri, 23 Aug 2013 11:05:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9589,7 +9589,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -9600,13 +9600,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:37 GMT + recorded_at: Fri, 23 Aug 2013 11:05:49 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9616,11 +9616,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:33 GMT + - Fri, 23 Aug 2013 11:05:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -9636,16 +9636,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '49' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -9653,13 +9653,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:37 GMT + recorded_at: Fri, 23 Aug 2013 11:05:49 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9669,11 +9669,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:39 GMT + - Fri, 23 Aug 2013 11:05:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -9689,16 +9689,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -9706,13 +9706,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:38 GMT + recorded_at: Fri, 23 Aug 2013 11:05:50 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9722,7 +9722,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:34 GMT + - Fri, 23 Aug 2013 11:05:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9750,13 +9750,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:38 GMT + recorded_at: Fri, 23 Aug 2013 11:05:51 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9766,7 +9766,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:40 GMT + - Fri, 23 Aug 2013 11:05:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9786,7 +9786,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -9794,13 +9794,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:39 GMT + recorded_at: Fri, 23 Aug 2013 11:05:51 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9810,7 +9810,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:35 GMT + - Fri, 23 Aug 2013 11:05:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9830,7 +9830,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -9841,13 +9841,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:39 GMT + recorded_at: Fri, 23 Aug 2013 11:05:51 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9857,7 +9857,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:41 GMT + - Fri, 23 Aug 2013 11:05:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9888,13 +9888,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:40 GMT + recorded_at: Fri, 23 Aug 2013 11:05:52 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9904,7 +9904,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:36 GMT + - Fri, 23 Aug 2013 11:05:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9933,13 +9933,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:40 GMT + recorded_at: Fri, 23 Aug 2013 11:05:52 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9949,7 +9949,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:42 GMT + - Fri, 23 Aug 2013 11:05:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9978,13 +9978,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:41 GMT + recorded_at: Fri, 23 Aug 2013 11:05:52 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9994,7 +9994,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:37 GMT + - Fri, 23 Aug 2013 11:05:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10014,7 +10014,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -10023,13 +10023,13 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:41 GMT + recorded_at: Fri, 23 Aug 2013 11:05:53 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10039,7 +10039,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:44 GMT + - Fri, 23 Aug 2013 11:05:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10059,7 +10059,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -10068,13 +10068,13 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:43 GMT + recorded_at: Fri, 23 Aug 2013 11:05:53 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10084,7 +10084,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:39 GMT + - Fri, 23 Aug 2013 11:05:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10112,13 +10112,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:43 GMT + recorded_at: Fri, 23 Aug 2013 11:05:53 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10128,7 +10128,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:45 GMT + - Fri, 23 Aug 2013 11:05:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10156,13 +10156,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:44 GMT + recorded_at: Fri, 23 Aug 2013 11:05:54 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10172,7 +10172,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:40 GMT + - Fri, 23 Aug 2013 11:05:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10204,13 +10204,13 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:44 GMT + recorded_at: Fri, 23 Aug 2013 11:05:54 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10220,7 +10220,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:46 GMT + - Fri, 23 Aug 2013 11:05:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10240,7 +10240,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -10252,13 +10252,13 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:45 GMT + recorded_at: Fri, 23 Aug 2013 11:05:54 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10268,7 +10268,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:41 GMT + - Fri, 23 Aug 2013 11:05:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10296,13 +10296,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:45 GMT + recorded_at: Fri, 23 Aug 2013 11:05:55 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10312,7 +10312,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:47 GMT + - Fri, 23 Aug 2013 11:05:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10340,13 +10340,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:46 GMT + recorded_at: Fri, 23 Aug 2013 11:05:55 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10356,7 +10356,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:42 GMT + - Fri, 23 Aug 2013 11:05:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10376,7 +10376,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -10384,13 +10384,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:46 GMT + recorded_at: Fri, 23 Aug 2013 11:05:55 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10400,7 +10400,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:48 GMT + - Fri, 23 Aug 2013 11:05:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10428,13 +10428,13 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:47 GMT + recorded_at: Fri, 23 Aug 2013 11:05:56 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10444,7 +10444,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:44 GMT + - Fri, 23 Aug 2013 11:05:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10464,7 +10464,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '3' X-Ua-Compatible: - IE=edge body: @@ -10473,13 +10473,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:48 GMT + recorded_at: Fri, 23 Aug 2013 11:05:56 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10489,7 +10489,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:50 GMT + - Fri, 23 Aug 2013 11:05:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10509,7 +10509,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '3' X-Ua-Compatible: - IE=edge body: @@ -10518,13 +10518,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:48 GMT + recorded_at: Fri, 23 Aug 2013 11:05:56 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10534,11 +10534,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:45 GMT + - Fri, 23 Aug 2013 11:06:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -10554,33 +10554,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '66' + - '65' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:49 GMT + recorded_at: Fri, 23 Aug 2013 11:05:57 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10590,11 +10590,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:51 GMT + - Fri, 23 Aug 2013 11:05:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -10610,33 +10610,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '94' + - '63' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:49 GMT + recorded_at: Fri, 23 Aug 2013 11:05:58 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10646,7 +10646,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:46 GMT + - Fri, 23 Aug 2013 11:06:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10674,13 +10674,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:50 GMT + recorded_at: Fri, 23 Aug 2013 11:05:59 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10690,7 +10690,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:52 GMT + - Fri, 23 Aug 2013 11:05:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10710,7 +10710,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '4' X-Ua-Compatible: - IE=edge body: @@ -10718,13 +10718,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:50 GMT + recorded_at: Fri, 23 Aug 2013 11:05:59 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10734,7 +10734,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:47 GMT + - Fri, 23 Aug 2013 11:06:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10765,13 +10765,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:51 GMT + recorded_at: Fri, 23 Aug 2013 11:05:59 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10781,7 +10781,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:53 GMT + - Fri, 23 Aug 2013 11:05:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10812,13 +10812,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:51 GMT + recorded_at: Fri, 23 Aug 2013 11:06:00 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10828,11 +10828,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:48 GMT + - Fri, 23 Aug 2013 11:06:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -10848,16 +10848,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '56' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -10865,13 +10865,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:52 GMT + recorded_at: Fri, 23 Aug 2013 11:06:00 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10881,11 +10881,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:54 GMT + - Fri, 23 Aug 2013 11:05:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -10901,16 +10901,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '55' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -10918,13 +10918,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:52 GMT + recorded_at: Fri, 23 Aug 2013 11:06:00 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10934,7 +10934,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:49 GMT + - Fri, 23 Aug 2013 11:06:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10962,13 +10962,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:53 GMT + recorded_at: Fri, 23 Aug 2013 11:06:01 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10978,7 +10978,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:55 GMT + - Fri, 23 Aug 2013 11:05:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11006,13 +11006,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:53 GMT + recorded_at: Fri, 23 Aug 2013 11:06:01 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11022,7 +11022,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:50 GMT + - Fri, 23 Aug 2013 11:06:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11042,7 +11042,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -11053,13 +11053,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:54 GMT + recorded_at: Fri, 23 Aug 2013 11:06:01 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11069,7 +11069,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:56 GMT + - Fri, 23 Aug 2013 11:05:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11089,7 +11089,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -11100,13 +11100,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:54 GMT + recorded_at: Fri, 23 Aug 2013 11:06:02 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11116,7 +11116,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:51 GMT + - Fri, 23 Aug 2013 11:06:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11136,7 +11136,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '3' X-Ua-Compatible: - IE=edge body: @@ -11145,13 +11145,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:55 GMT + recorded_at: Fri, 23 Aug 2013 11:06:02 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11161,7 +11161,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:57 GMT + - Fri, 23 Aug 2013 11:05:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11181,7 +11181,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -11190,13 +11190,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:55 GMT + recorded_at: Fri, 23 Aug 2013 11:06:02 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11206,7 +11206,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:52 GMT + - Fri, 23 Aug 2013 11:06:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11226,7 +11226,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '8' X-Ua-Compatible: - IE=edge body: @@ -11235,13 +11235,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:56 GMT + recorded_at: Fri, 23 Aug 2013 11:06:03 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11251,7 +11251,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:58 GMT + - Fri, 23 Aug 2013 11:05:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11280,13 +11280,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:56 GMT + recorded_at: Fri, 23 Aug 2013 11:06:03 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11296,7 +11296,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:53 GMT + - Fri, 23 Aug 2013 11:06:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11316,7 +11316,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -11324,13 +11324,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:57 GMT + recorded_at: Fri, 23 Aug 2013 11:06:03 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11340,7 +11340,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:59 GMT + - Fri, 23 Aug 2013 11:05:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11360,7 +11360,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '3' X-Ua-Compatible: - IE=edge body: @@ -11368,13 +11368,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:57 GMT + recorded_at: Fri, 23 Aug 2013 11:06:04 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11384,7 +11384,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:55 GMT + - Fri, 23 Aug 2013 11:06:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11404,7 +11404,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '15' + - '11' X-Ua-Compatible: - IE=edge body: @@ -11415,13 +11415,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:59 GMT + recorded_at: Fri, 23 Aug 2013 11:06:04 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11431,7 +11431,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:01 GMT + - Fri, 23 Aug 2013 11:05:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11451,7 +11451,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '12' + - '10' X-Ua-Compatible: - IE=edge body: @@ -11462,13 +11462,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:41:59 GMT + recorded_at: Fri, 23 Aug 2013 11:06:04 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11478,7 +11478,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:56 GMT + - Fri, 23 Aug 2013 11:06:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11506,13 +11506,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:00 GMT + recorded_at: Fri, 23 Aug 2013 11:06:05 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11522,7 +11522,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:02 GMT + - Fri, 23 Aug 2013 11:05:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11550,13 +11550,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:00 GMT + recorded_at: Fri, 23 Aug 2013 11:06:05 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11566,7 +11566,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:57 GMT + - Fri, 23 Aug 2013 11:06:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11595,13 +11595,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:01 GMT + recorded_at: Fri, 23 Aug 2013 11:06:05 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11611,7 +11611,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:03 GMT + - Fri, 23 Aug 2013 11:05:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11640,13 +11640,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:01 GMT + recorded_at: Fri, 23 Aug 2013 11:06:06 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270/Tasks + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860/Tasks?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11656,11 +11656,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:58 GMT + - Fri, 23 Aug 2013 11:06:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '5707' + - '5712' Connection: - keep-alive Keep-Alive: @@ -11676,100 +11676,100 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '67' + - '63' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 5271,\r\n \"Name\": + string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 6861,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377009579000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377009579000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 85.5,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255870000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377255870000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5272,\r\n \"Name\": + {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6862,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377009579000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377009579000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 86.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255871000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377255871000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 233.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5273,\r\n \"Name\": + {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6863,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377009580000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377009580000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 86.5,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255872000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377255872000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 234.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5274,\r\n \"Name\": + {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6864,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377009581000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377009581000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 87.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 234.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5275,\r\n \"Name\": + {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6865,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377009582000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377009582000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 87.5,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 235.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n },\r\n + {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n + {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n \ \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:02 GMT + recorded_at: Fri, 23 Aug 2013 11:06:06 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11779,11 +11779,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:04 GMT + - Fri, 23 Aug 2013 11:05:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -11799,33 +11799,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '67' + - '59' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:02 GMT + recorded_at: Fri, 23 Aug 2013 11:06:07 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11835,7 +11835,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:59 GMT + - Fri, 23 Aug 2013 11:06:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11855,7 +11855,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -11863,13 +11863,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:03 GMT + recorded_at: Fri, 23 Aug 2013 11:06:07 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11879,7 +11879,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:05 GMT + - Fri, 23 Aug 2013 11:05:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11899,7 +11899,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -11907,13 +11907,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:03 GMT + recorded_at: Fri, 23 Aug 2013 11:06:07 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11923,7 +11923,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:00 GMT + - Fri, 23 Aug 2013 11:06:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11943,7 +11943,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -11954,13 +11954,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:04 GMT + recorded_at: Fri, 23 Aug 2013 11:06:08 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11970,7 +11970,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:06 GMT + - Fri, 23 Aug 2013 11:05:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11990,7 +11990,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '9' + - '7' X-Ua-Compatible: - IE=edge body: @@ -12001,13 +12001,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:04 GMT + recorded_at: Fri, 23 Aug 2013 11:06:08 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12017,11 +12017,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:01 GMT + - Fri, 23 Aug 2013 11:06:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -12037,16 +12037,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '48' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -12054,13 +12054,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:05 GMT + recorded_at: Fri, 23 Aug 2013 11:06:08 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12070,11 +12070,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:07 GMT + - Fri, 23 Aug 2013 11:06:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -12095,11 +12095,11 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -12107,13 +12107,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:05 GMT + recorded_at: Fri, 23 Aug 2013 11:06:09 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12123,7 +12123,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:02 GMT + - Fri, 23 Aug 2013 11:06:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12151,13 +12151,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:06 GMT + recorded_at: Fri, 23 Aug 2013 11:06:09 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12167,7 +12167,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:08 GMT + - Fri, 23 Aug 2013 11:06:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12195,13 +12195,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:06 GMT + recorded_at: Fri, 23 Aug 2013 11:06:09 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12211,7 +12211,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:03 GMT + - Fri, 23 Aug 2013 11:06:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12242,13 +12242,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:07 GMT + recorded_at: Fri, 23 Aug 2013 11:06:10 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12258,7 +12258,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:10 GMT + - Fri, 23 Aug 2013 11:06:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12289,13 +12289,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:08 GMT + recorded_at: Fri, 23 Aug 2013 11:06:10 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12305,7 +12305,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:05 GMT + - Fri, 23 Aug 2013 11:06:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12334,13 +12334,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:08 GMT + recorded_at: Fri, 23 Aug 2013 11:06:10 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12350,7 +12350,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:11 GMT + - Fri, 23 Aug 2013 11:06:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12379,13 +12379,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:09 GMT + recorded_at: Fri, 23 Aug 2013 11:06:11 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12395,7 +12395,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:06 GMT + - Fri, 23 Aug 2013 11:06:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12424,13 +12424,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:10 GMT + recorded_at: Fri, 23 Aug 2013 11:06:11 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12440,7 +12440,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:12 GMT + - Fri, 23 Aug 2013 11:06:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12469,13 +12469,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:10 GMT + recorded_at: Fri, 23 Aug 2013 11:06:11 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12485,7 +12485,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:08 GMT + - Fri, 23 Aug 2013 11:06:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12513,13 +12513,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:11 GMT + recorded_at: Fri, 23 Aug 2013 11:06:12 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12529,7 +12529,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:14 GMT + - Fri, 23 Aug 2013 11:06:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12549,7 +12549,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -12557,13 +12557,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:12 GMT + recorded_at: Fri, 23 Aug 2013 11:06:12 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12573,7 +12573,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:09 GMT + - Fri, 23 Aug 2013 11:06:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12593,7 +12593,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '14' X-Ua-Compatible: - IE=edge body: @@ -12604,13 +12604,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:12 GMT + recorded_at: Fri, 23 Aug 2013 11:06:13 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12620,7 +12620,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:16 GMT + - Fri, 23 Aug 2013 11:06:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12640,7 +12640,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '10' + - '18' X-Ua-Compatible: - IE=edge body: @@ -12651,13 +12651,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:15 GMT + recorded_at: Fri, 23 Aug 2013 11:06:13 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12667,7 +12667,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:12 GMT + - Fri, 23 Aug 2013 11:06:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12695,13 +12695,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:16 GMT + recorded_at: Fri, 23 Aug 2013 11:06:13 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12711,7 +12711,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:18 GMT + - Fri, 23 Aug 2013 11:06:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12731,7 +12731,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -12739,13 +12739,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:16 GMT + recorded_at: Fri, 23 Aug 2013 11:06:14 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12755,7 +12755,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:13 GMT + - Fri, 23 Aug 2013 11:06:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12784,13 +12784,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:17 GMT + recorded_at: Fri, 23 Aug 2013 11:06:14 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12800,7 +12800,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:19 GMT + - Fri, 23 Aug 2013 11:06:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12829,13 +12829,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:17 GMT + recorded_at: Fri, 23 Aug 2013 11:06:14 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12845,11 +12845,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:14 GMT + - Fri, 23 Aug 2013 11:06:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -12865,33 +12865,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '112' + - '59' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:18 GMT + recorded_at: Fri, 23 Aug 2013 11:06:15 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12901,7 +12901,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:20 GMT + - Fri, 23 Aug 2013 11:06:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12929,13 +12929,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:18 GMT + recorded_at: Fri, 23 Aug 2013 11:06:15 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12945,7 +12945,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:15 GMT + - Fri, 23 Aug 2013 11:06:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12973,13 +12973,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:19 GMT + recorded_at: Fri, 23 Aug 2013 11:06:15 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12989,7 +12989,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:21 GMT + - Fri, 23 Aug 2013 11:06:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13009,7 +13009,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -13020,13 +13020,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:19 GMT + recorded_at: Fri, 23 Aug 2013 11:06:16 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13036,7 +13036,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:16 GMT + - Fri, 23 Aug 2013 11:06:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13056,7 +13056,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -13067,13 +13067,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:20 GMT + recorded_at: Fri, 23 Aug 2013 11:06:16 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13083,11 +13083,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:22 GMT + - Fri, 23 Aug 2013 11:06:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -13103,16 +13103,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '48' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -13120,13 +13120,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:21 GMT + recorded_at: Fri, 23 Aug 2013 11:06:16 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13136,11 +13136,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:17 GMT + - Fri, 23 Aug 2013 11:06:20 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -13156,16 +13156,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '48' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -13173,13 +13173,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:21 GMT + recorded_at: Fri, 23 Aug 2013 11:06:17 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13189,7 +13189,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:23 GMT + - Fri, 23 Aug 2013 11:06:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13209,7 +13209,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -13217,13 +13217,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:22 GMT + recorded_at: Fri, 23 Aug 2013 11:06:17 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13233,7 +13233,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:19 GMT + - Fri, 23 Aug 2013 11:06:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13261,13 +13261,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:23 GMT + recorded_at: Fri, 23 Aug 2013 11:06:17 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13277,7 +13277,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:25 GMT + - Fri, 23 Aug 2013 11:06:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13297,7 +13297,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -13308,13 +13308,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:23 GMT + recorded_at: Fri, 23 Aug 2013 11:06:18 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13324,7 +13324,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:20 GMT + - Fri, 23 Aug 2013 11:06:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13344,7 +13344,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '6' X-Ua-Compatible: - IE=edge body: @@ -13355,13 +13355,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:24 GMT + recorded_at: Fri, 23 Aug 2013 11:06:18 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13371,7 +13371,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:26 GMT + - Fri, 23 Aug 2013 11:06:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13391,7 +13391,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -13400,13 +13400,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:24 GMT + recorded_at: Fri, 23 Aug 2013 11:06:19 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13416,7 +13416,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:21 GMT + - Fri, 23 Aug 2013 11:06:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13436,7 +13436,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '9' + - '4' X-Ua-Compatible: - IE=edge body: @@ -13445,13 +13445,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:25 GMT + recorded_at: Fri, 23 Aug 2013 11:06:19 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13461,7 +13461,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:28 GMT + - Fri, 23 Aug 2013 11:06:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13490,13 +13490,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:26 GMT + recorded_at: Fri, 23 Aug 2013 11:06:19 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13506,7 +13506,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:23 GMT + - Fri, 23 Aug 2013 11:06:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13526,7 +13526,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '21' X-Ua-Compatible: - IE=edge body: @@ -13535,13 +13535,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:27 GMT + recorded_at: Fri, 23 Aug 2013 11:06:20 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13551,7 +13551,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:29 GMT + - Fri, 23 Aug 2013 11:06:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13579,13 +13579,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:27 GMT + recorded_at: Fri, 23 Aug 2013 11:06:20 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13595,7 +13595,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:24 GMT + - Fri, 23 Aug 2013 11:06:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13615,7 +13615,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '99' + - '4' X-Ua-Compatible: - IE=edge body: @@ -13623,13 +13623,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:28 GMT + recorded_at: Fri, 23 Aug 2013 11:06:20 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13639,7 +13639,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:30 GMT + - Fri, 23 Aug 2013 11:06:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13670,13 +13670,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:28 GMT + recorded_at: Fri, 23 Aug 2013 11:06:21 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13686,7 +13686,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:25 GMT + - Fri, 23 Aug 2013 11:06:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13706,7 +13706,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '10' + - '12' X-Ua-Compatible: - IE=edge body: @@ -13717,13 +13717,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:29 GMT + recorded_at: Fri, 23 Aug 2013 11:06:21 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13733,7 +13733,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:31 GMT + - Fri, 23 Aug 2013 11:06:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13761,13 +13761,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:29 GMT + recorded_at: Fri, 23 Aug 2013 11:06:21 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13777,7 +13777,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:26 GMT + - Fri, 23 Aug 2013 11:06:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13805,13 +13805,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:30 GMT + recorded_at: Fri, 23 Aug 2013 11:06:22 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13821,7 +13821,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:32 GMT + - Fri, 23 Aug 2013 11:06:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13841,7 +13841,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '25' + - '4' X-Ua-Compatible: - IE=edge body: @@ -13850,13 +13850,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:31 GMT + recorded_at: Fri, 23 Aug 2013 11:06:22 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13866,7 +13866,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:27 GMT + - Fri, 23 Aug 2013 11:06:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13895,13 +13895,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:31 GMT + recorded_at: Fri, 23 Aug 2013 11:06:22 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13911,11 +13911,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:33 GMT + - Fri, 23 Aug 2013 11:06:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -13931,33 +13931,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '60' + - '64' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:32 GMT + recorded_at: Fri, 23 Aug 2013 11:06:23 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13967,7 +13967,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:28 GMT + - Fri, 23 Aug 2013 11:06:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13995,13 +13995,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:32 GMT + recorded_at: Fri, 23 Aug 2013 11:06:23 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14011,7 +14011,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:34 GMT + - Fri, 23 Aug 2013 11:06:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14031,7 +14031,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '4' X-Ua-Compatible: - IE=edge body: @@ -14039,13 +14039,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:33 GMT + recorded_at: Fri, 23 Aug 2013 11:06:23 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14055,7 +14055,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:29 GMT + - Fri, 23 Aug 2013 11:06:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14075,7 +14075,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '6' X-Ua-Compatible: - IE=edge body: @@ -14086,13 +14086,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:33 GMT + recorded_at: Fri, 23 Aug 2013 11:06:24 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14102,7 +14102,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:35 GMT + - Fri, 23 Aug 2013 11:06:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14122,7 +14122,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -14133,13 +14133,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:34 GMT + recorded_at: Fri, 23 Aug 2013 11:06:24 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14149,11 +14149,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:30 GMT + - Fri, 23 Aug 2013 11:06:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -14169,16 +14169,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '59' + - '51' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -14186,13 +14186,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:34 GMT + recorded_at: Fri, 23 Aug 2013 11:06:25 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14202,11 +14202,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:36 GMT + - Fri, 23 Aug 2013 11:06:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -14222,16 +14222,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '51' + - '52' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -14239,13 +14239,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:35 GMT + recorded_at: Fri, 23 Aug 2013 11:06:25 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14255,7 +14255,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:32 GMT + - Fri, 23 Aug 2013 11:06:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14283,13 +14283,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:35 GMT + recorded_at: Fri, 23 Aug 2013 11:06:25 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14299,7 +14299,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:38 GMT + - Fri, 23 Aug 2013 11:06:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14327,13 +14327,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:36 GMT + recorded_at: Fri, 23 Aug 2013 11:06:26 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14343,7 +14343,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:33 GMT + - Fri, 23 Aug 2013 11:06:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14363,7 +14363,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -14374,13 +14374,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:36 GMT + recorded_at: Fri, 23 Aug 2013 11:06:26 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14390,7 +14390,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:38 GMT + - Fri, 23 Aug 2013 11:06:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14410,7 +14410,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -14421,13 +14421,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:37 GMT + recorded_at: Fri, 23 Aug 2013 11:06:26 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14437,7 +14437,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:34 GMT + - Fri, 23 Aug 2013 11:06:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14466,13 +14466,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:37 GMT + recorded_at: Fri, 23 Aug 2013 11:06:28 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14482,7 +14482,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:40 GMT + - Fri, 23 Aug 2013 11:06:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14511,13 +14511,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:38 GMT + recorded_at: Fri, 23 Aug 2013 11:06:28 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14527,7 +14527,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:35 GMT + - Fri, 23 Aug 2013 11:06:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14556,13 +14556,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:38 GMT + recorded_at: Fri, 23 Aug 2013 11:06:29 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14572,7 +14572,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:40 GMT + - Fri, 23 Aug 2013 11:06:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14601,13 +14601,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:39 GMT + recorded_at: Fri, 23 Aug 2013 11:06:30 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14617,7 +14617,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:35 GMT + - Fri, 23 Aug 2013 11:06:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14645,13 +14645,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:40 GMT + recorded_at: Fri, 23 Aug 2013 11:06:30 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14661,7 +14661,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:42 GMT + - Fri, 23 Aug 2013 11:06:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14689,13 +14689,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:40 GMT + recorded_at: Fri, 23 Aug 2013 11:06:31 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14705,7 +14705,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:37 GMT + - Fri, 23 Aug 2013 11:06:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14736,13 +14736,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:41 GMT + recorded_at: Fri, 23 Aug 2013 11:06:31 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14752,7 +14752,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:43 GMT + - Fri, 23 Aug 2013 11:06:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14772,7 +14772,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -14783,13 +14783,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:41 GMT + recorded_at: Fri, 23 Aug 2013 11:06:31 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14799,7 +14799,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:38 GMT + - Fri, 23 Aug 2013 11:06:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14827,13 +14827,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:42 GMT + recorded_at: Fri, 23 Aug 2013 11:06:32 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14843,7 +14843,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:44 GMT + - Fri, 23 Aug 2013 11:06:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14871,13 +14871,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:42 GMT + recorded_at: Fri, 23 Aug 2013 11:06:32 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14887,7 +14887,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:39 GMT + - Fri, 23 Aug 2013 11:06:36 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14916,13 +14916,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:43 GMT + recorded_at: Fri, 23 Aug 2013 11:06:33 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14932,7 +14932,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:45 GMT + - Fri, 23 Aug 2013 11:06:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14952,7 +14952,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -14961,13 +14961,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:43 GMT + recorded_at: Fri, 23 Aug 2013 11:06:33 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14977,11 +14977,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:40 GMT + - Fri, 23 Aug 2013 11:06:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -14997,33 +14997,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '92' + - '70' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:44 GMT + recorded_at: Fri, 23 Aug 2013 11:06:33 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15033,7 +15033,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:48 GMT + - Fri, 23 Aug 2013 11:06:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15053,7 +15053,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -15061,13 +15061,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:46 GMT + recorded_at: Fri, 23 Aug 2013 11:06:34 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15077,7 +15077,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:43 GMT + - Fri, 23 Aug 2013 11:06:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15105,13 +15105,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:47 GMT + recorded_at: Fri, 23 Aug 2013 11:06:34 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15121,7 +15121,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:50 GMT + - Fri, 23 Aug 2013 11:06:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15152,13 +15152,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:48 GMT + recorded_at: Fri, 23 Aug 2013 11:06:34 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15168,7 +15168,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:45 GMT + - Fri, 23 Aug 2013 11:06:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15188,7 +15188,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '6' X-Ua-Compatible: - IE=edge body: @@ -15199,13 +15199,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:49 GMT + recorded_at: Fri, 23 Aug 2013 11:06:35 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15215,11 +15215,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:51 GMT + - Fri, 23 Aug 2013 11:06:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -15240,11 +15240,11 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -15252,13 +15252,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:50 GMT + recorded_at: Fri, 23 Aug 2013 11:06:35 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15268,11 +15268,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:47 GMT + - Fri, 23 Aug 2013 11:06:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -15288,16 +15288,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '52' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -15305,13 +15305,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:50 GMT + recorded_at: Fri, 23 Aug 2013 11:06:35 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15321,7 +15321,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:53 GMT + - Fri, 23 Aug 2013 11:06:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15349,13 +15349,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:51 GMT + recorded_at: Fri, 23 Aug 2013 11:06:36 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15365,7 +15365,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:48 GMT + - Fri, 23 Aug 2013 11:06:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15393,13 +15393,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:52 GMT + recorded_at: Fri, 23 Aug 2013 11:06:36 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15409,7 +15409,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:54 GMT + - Fri, 23 Aug 2013 11:06:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15440,13 +15440,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:52 GMT + recorded_at: Fri, 23 Aug 2013 11:06:36 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15456,7 +15456,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:49 GMT + - Fri, 23 Aug 2013 11:06:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15487,13 +15487,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:53 GMT + recorded_at: Fri, 23 Aug 2013 11:06:37 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15503,7 +15503,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:55 GMT + - Fri, 23 Aug 2013 11:06:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15532,13 +15532,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:53 GMT + recorded_at: Fri, 23 Aug 2013 11:06:37 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15548,7 +15548,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:50 GMT + - Fri, 23 Aug 2013 11:06:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15577,13 +15577,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:54 GMT + recorded_at: Fri, 23 Aug 2013 11:06:37 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15593,7 +15593,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:56 GMT + - Fri, 23 Aug 2013 11:06:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15613,7 +15613,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -15622,13 +15622,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:54 GMT + recorded_at: Fri, 23 Aug 2013 11:06:38 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15638,7 +15638,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:51 GMT + - Fri, 23 Aug 2013 11:06:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15658,7 +15658,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -15667,13 +15667,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:55 GMT + recorded_at: Fri, 23 Aug 2013 11:06:38 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15683,7 +15683,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:57 GMT + - Fri, 23 Aug 2013 11:06:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15711,13 +15711,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:55 GMT + recorded_at: Fri, 23 Aug 2013 11:06:39 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15727,7 +15727,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:52 GMT + - Fri, 23 Aug 2013 11:06:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15755,13 +15755,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:56 GMT + recorded_at: Fri, 23 Aug 2013 11:06:39 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15771,7 +15771,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:58 GMT + - Fri, 23 Aug 2013 11:06:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15802,13 +15802,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:56 GMT + recorded_at: Fri, 23 Aug 2013 11:06:39 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15818,7 +15818,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:53 GMT + - Fri, 23 Aug 2013 11:06:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15838,7 +15838,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '10' + - '9' X-Ua-Compatible: - IE=edge body: @@ -15849,13 +15849,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:57 GMT + recorded_at: Fri, 23 Aug 2013 11:06:40 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15865,7 +15865,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:59 GMT + - Fri, 23 Aug 2013 11:06:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15893,13 +15893,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:57 GMT + recorded_at: Fri, 23 Aug 2013 11:06:40 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15909,7 +15909,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:54 GMT + - Fri, 23 Aug 2013 11:06:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15937,13 +15937,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:58 GMT + recorded_at: Fri, 23 Aug 2013 11:06:40 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15953,7 +15953,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:00 GMT + - Fri, 23 Aug 2013 11:06:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15973,7 +15973,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -15982,13 +15982,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:58 GMT + recorded_at: Fri, 23 Aug 2013 11:06:41 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15998,7 +15998,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:55 GMT + - Fri, 23 Aug 2013 11:06:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16027,13 +16027,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:59 GMT + recorded_at: Fri, 23 Aug 2013 11:06:41 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16043,11 +16043,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:01 GMT + - Fri, 23 Aug 2013 11:06:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '947' Connection: - keep-alive Keep-Alive: @@ -16063,33 +16063,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '61' + - '64' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5270,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009578000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009578000-0500)\\/\",\r\n + \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 85.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\"\r\n + \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:42:59 GMT + recorded_at: Fri, 23 Aug 2013 11:06:41 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16099,7 +16099,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:56 GMT + - Fri, 23 Aug 2013 11:06:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16119,7 +16119,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -16127,13 +16127,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:00 GMT + recorded_at: Fri, 23 Aug 2013 11:06:42 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16143,7 +16143,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:02 GMT + - Fri, 23 Aug 2013 11:06:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16171,13 +16171,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:00 GMT + recorded_at: Fri, 23 Aug 2013 11:06:42 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16187,7 +16187,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:57 GMT + - Fri, 23 Aug 2013 11:06:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16207,7 +16207,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -16218,13 +16218,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:01 GMT + recorded_at: Fri, 23 Aug 2013 11:06:42 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16234,7 +16234,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:03 GMT + - Fri, 23 Aug 2013 11:06:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16254,7 +16254,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '8' X-Ua-Compatible: - IE=edge body: @@ -16265,13 +16265,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:01 GMT + recorded_at: Fri, 23 Aug 2013 11:06:43 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16281,11 +16281,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:58 GMT + - Fri, 23 Aug 2013 11:06:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -16306,11 +16306,11 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -16318,13 +16318,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:02 GMT + recorded_at: Fri, 23 Aug 2013 11:06:43 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16334,11 +16334,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:04 GMT + - Fri, 23 Aug 2013 11:06:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '732' Connection: - keep-alive Keep-Alive: @@ -16354,16 +16354,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '52' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\r\n \"Description\": + string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n + \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": @@ -16371,13 +16371,13 @@ http_interactions: null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:02 GMT + recorded_at: Fri, 23 Aug 2013 11:06:44 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16387,7 +16387,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:59 GMT + - Fri, 23 Aug 2013 11:06:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16415,13 +16415,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:03 GMT + recorded_at: Fri, 23 Aug 2013 11:06:44 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16431,7 +16431,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:05 GMT + - Fri, 23 Aug 2013 11:06:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16459,13 +16459,13 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:03 GMT + recorded_at: Fri, 23 Aug 2013 11:06:44 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16475,7 +16475,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:00 GMT + - Fri, 23 Aug 2013 11:06:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16506,13 +16506,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:04 GMT + recorded_at: Fri, 23 Aug 2013 11:06:45 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16522,7 +16522,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:06 GMT + - Fri, 23 Aug 2013 11:06:36 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16553,13 +16553,13 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:04 GMT + recorded_at: Fri, 23 Aug 2013 11:06:45 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16569,7 +16569,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:01 GMT + - Fri, 23 Aug 2013 11:06:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16589,7 +16589,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -16598,13 +16598,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:05 GMT + recorded_at: Fri, 23 Aug 2013 11:06:45 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16614,7 +16614,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:07 GMT + - Fri, 23 Aug 2013 11:06:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16643,13 +16643,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:05 GMT + recorded_at: Fri, 23 Aug 2013 11:06:46 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16659,7 +16659,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:02 GMT + - Fri, 23 Aug 2013 11:06:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16688,13 +16688,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:06 GMT + recorded_at: Fri, 23 Aug 2013 11:06:46 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16704,7 +16704,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:08 GMT + - Fri, 23 Aug 2013 11:06:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16733,13 +16733,13 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:06 GMT + recorded_at: Fri, 23 Aug 2013 11:06:46 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16749,7 +16749,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:03 GMT + - Fri, 23 Aug 2013 11:06:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16769,7 +16769,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -16777,13 +16777,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:07 GMT + recorded_at: Fri, 23 Aug 2013 11:06:47 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16793,7 +16793,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:10 GMT + - Fri, 23 Aug 2013 11:06:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16821,13 +16821,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:08 GMT + recorded_at: Fri, 23 Aug 2013 11:06:47 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16837,7 +16837,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:05 GMT + - Fri, 23 Aug 2013 11:06:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16857,7 +16857,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '10' X-Ua-Compatible: - IE=edge body: @@ -16868,13 +16868,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:09 GMT + recorded_at: Fri, 23 Aug 2013 11:06:47 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16884,7 +16884,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:11 GMT + - Fri, 23 Aug 2013 11:06:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16904,7 +16904,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '47' + - '9' X-Ua-Compatible: - IE=edge body: @@ -16915,13 +16915,13 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:09 GMT + recorded_at: Fri, 23 Aug 2013 11:06:48 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16931,7 +16931,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:06 GMT + - Fri, 23 Aug 2013 11:06:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16959,13 +16959,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:10 GMT + recorded_at: Fri, 23 Aug 2013 11:06:48 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16975,7 +16975,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:12 GMT + - Fri, 23 Aug 2013 11:06:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -17003,13 +17003,13 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:10 GMT + recorded_at: Fri, 23 Aug 2013 11:06:48 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -17019,7 +17019,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:07 GMT + - Fri, 23 Aug 2013 11:06:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -17048,13 +17048,13 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:11 GMT + recorded_at: Fri, 23 Aug 2013 11:06:49 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -17064,7 +17064,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:13 GMT + - Fri, 23 Aug 2013 11:06:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -17093,10 +17093,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Tue, 20 Aug 2013 14:43:11 GMT + recorded_at: Fri, 23 Aug 2013 11:06:49 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5269/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859/ body: encoding: US-ASCII string: '' @@ -17109,7 +17109,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:08 GMT + - Fri, 23 Aug 2013 11:06:53 GMT Content-Length: - '0' Connection: @@ -17127,17 +17127,17 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '85' + - '119' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Tue, 20 Aug 2013 14:43:12 GMT + recorded_at: Fri, 23 Aug 2013 11:06:50 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/5270/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860/ body: encoding: US-ASCII string: '' @@ -17150,7 +17150,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:15 GMT + - Fri, 23 Aug 2013 11:06:42 GMT Content-Length: - '0' Connection: @@ -17168,12 +17168,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '989' + - '843' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Tue, 20 Aug 2013 14:43:13 GMT + recorded_at: Fri, 23 Aug 2013 11:06:51 GMT recorded_with: VCR 2.5.0 From 070e86575843b12f2542dbf08e2e9645f97339a4 Mon Sep 17 00:00:00 2001 From: kamrad117 Date: Fri, 23 Aug 2013 15:30:05 +0300 Subject: [PATCH 2/2] refactor --- lib/target_process.rb | 2 +- lib/target_process/api_client.rb | 12 +- lib/target_process/base.rb | 10 +- .../_context/return_context_by_acid.yml | 4 +- .../return_context_by_acid_and_ids.yml | 6 +- .../_context/return_context_by_ids.yml | 264 +- .../_context/return_context_by_single_id.yml | 6 +- .../_context/return_global_context.yml | 264 +- .../raise_NotFound_error.yml | 4 +- .../respond_with_200_code.yml | 39 +- .../id/returns_hash_of_entity_attributes.yml | 6 +- ...ns_array_of_entities_attributes_hashes.yml | 4 +- .../it_raises_NotFound_error.yml | 4 +- .../it_raises_UnexpectedError.yml | 4 +- .../returns_hash_of_entities_attributes.yml | 41 +- .../raises_UnexpectedError.yml | 4 +- .../returns_all_subject_with_conditions_.yml | 6 +- .../returns_array_of_projects.yml | 28 +- .../provide_getter_for_referenced_items.yml | 408 ++- .../provide_setters_for_referenced_items.yml | 312 +- ...project_on_remote_host_and_return_true.yml | 51 +- ...res_projects_with_different_attributes.yml | 41 +- .../returns_project.yml | 54 +- .../returns_formatted_requested_entity.yml | 42 +- .../raise_TargetProcess_BadRequest_error.yml | 4 +- .../raise_an_TargetProcess_NotFound_error.yml | 4 +- .../_meta/returns_project_metadata.yml | 6 +- ...lete_attribute_from_changed_attributes.yml | 41 +- .../add_it_to_changed_attributes.yml | 41 +- .../provide_getters_for_attributes_values.yml | 41 +- ...t_and_update_local_instance_attributes.yml | 102 +- ...mote_host_and_clean_changed_attributes.yml | 105 +- .../do_nothing_with_local_instance.yml | 135 +- .../return_array_of_subjects.yml | 20 +- .../raise_an_TargetProcess_BadRequest.yml | 4 +- ...eturn_array_of_subject_with_conditions.yml | 14 +- ...s_for_collections_with_different_class.yml | 85 +- ...or_collections_with_symbol-named_class.yml | 3083 +++++++++-------- spec/lib/target_process/api_client_spec.rb | 6 +- spec/lib/target_process/base_spec.rb | 47 +- spec/spec_helper.rb | 6 +- 41 files changed, 2705 insertions(+), 2655 deletions(-) diff --git a/lib/target_process.rb b/lib/target_process.rb index 6300501..fac52a5 100644 --- a/lib/target_process.rb +++ b/lib/target_process.rb @@ -3,7 +3,7 @@ require 'target_process/api_error' require 'target_process/api_client' require 'target_process/base' -Dir["./lib/target_process/entities/*.rb"].each {|file| require file } +Dir["./lib/target_process/entities/*.rb"].each { |file| require file } module TargetProcess class ConfigurationError < StandardError; end diff --git a/lib/target_process/api_client.rb b/lib/target_process/api_client.rb index 56aa646..f9ad4aa 100644 --- a/lib/target_process/api_client.rb +++ b/lib/target_process/api_client.rb @@ -7,8 +7,7 @@ class APIClient def get(path, options = {}) options.merge!(format: 'json') - options = { query: options } - response = request(:get, path, options) + response = request(:get, path, query: options) normalize_response(response.parsed_response) end @@ -27,9 +26,7 @@ def delete(path) private def request(type, path, options = {}) - auth = { basic_auth: { username: TargetProcess.configuration.username, - password: TargetProcess.configuration.password } } - options.merge!(auth) + options.merge!(basic_auth) response = HTTParty.send(type, generate_url(path), options) check_for_api_errors(response) response @@ -71,5 +68,10 @@ def prepare_data(hash) hash = Hash[hash.map { |k, v| [k.to_s.camelize.to_sym, v] }] hash.each { |k, v| hash[k] = json_date(v) if v.is_a?(::Time) } end + + def basic_auth + { basic_auth: { username: TargetProcess.configuration.username, + password: TargetProcess.configuration.password } } + end end end diff --git a/lib/target_process/base.rb b/lib/target_process/base.rb index 0cd05c4..af1d282 100644 --- a/lib/target_process/base.rb +++ b/lib/target_process/base.rb @@ -105,11 +105,11 @@ def self.has_many(name, klass = nil) klass ||= name.to_s.singularize.camelize define_method(name) do path = entity_path + name.to_s.camelize - collection = TargetProcess.client.get(path)[:items].collect do |hash| - entity = "TargetProcess::#{klass}".constantize.new - entity.attributes.merge!(hash) - entity - end + TargetProcess.client.get(path)[:items].collect do |hash| + entity = "TargetProcess::#{klass}".constantize.new + entity.attributes.merge!(hash) + entity + end end end diff --git a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid.yml b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid.yml index e2dcfa1..c13e401 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:07:11 GMT + - Fri, 23 Aug 2013 11:44:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -84,5 +84,5 @@ http_interactions: \ ]\r\n },\r\n \"SelectedProjects\": {\r\n \"Items\": []\r\n },\r\n \ \"SelectedTeams\": {\r\n \"Items\": []\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:07:20 GMT + recorded_at: Fri, 23 Aug 2013 11:44:12 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid_and_ids.yml b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid_and_ids.yml index b0543c7..0c29aae 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid_and_ids.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_acid_and_ids.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:07:24 GMT + - Fri, 23 Aug 2013 11:44:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -35,7 +35,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '25' + - '26' X-Ua-Compatible: - IE=edge body: @@ -84,5 +84,5 @@ http_interactions: \ ]\r\n },\r\n \"SelectedProjects\": {\r\n \"Items\": []\r\n },\r\n \ \"SelectedTeams\": {\r\n \"Items\": []\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:07:20 GMT + recorded_at: Fri, 23 Aug 2013 11:44:13 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_ids.yml b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_ids.yml index cd4ca15..be81c04 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_ids.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_ids.yml @@ -15,11 +15,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:07:10 GMT + - Fri, 23 Aug 2013 11:44:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '23463' + - '23669' Connection: - keep-alive Keep-Alive: @@ -35,12 +35,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '127' + - '88' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Acid\": \"05ED10CDD8BD72D3A2C5263AF2D6F87F\",\r\n \"Edition\": + string: "{\r\n \"Acid\": \"5B677B14931EC647EEB13108E8EE381A\",\r\n \"Edition\": \"Pro\",\r\n \"Version\": \"2.24.7.24233\",\r\n \"AppContext\": {\r\n \"ProjectContext\": {\r\n \"No\": true\r\n },\r\n \"TeamContext\": {\r\n \"No\": true\r\n }\r\n },\r\n \"Culture\": {\r\n \"Name\": \"en-US\",\r\n @@ -154,202 +154,204 @@ http_interactions: null\r\n },\r\n {\r\n \"Id\": 5824,\r\n \"Name\": \"Pro359689253\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5604,\r\n \"Name\": \"Pro381704122\",\r\n \"Process\": + \ \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\",\r\n + \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": + 5604,\r\n \"Name\": \"Pro381704122\",\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6488,\r\n \"Name\": + \"Pro383103536\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6320,\r\n \"Name\": \"Pro398900021\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6488,\r\n - \ \"Name\": \"Pro383103536\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6685,\r\n + \ \"Name\": \"Pro410026954\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6320,\r\n \"Name\": - \"Pro398900021\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6072,\r\n \"Name\": + \"Pro416445554\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6685,\r\n \"Name\": \"Pro410026954\",\r\n \"Process\": + \ \"Id\": 6724,\r\n \"Name\": \"Pro427983583\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6072,\r\n - \ \"Name\": \"Pro416445554\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6669,\r\n + \ \"Name\": \"Pro440987352\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6724,\r\n \"Name\": - \"Pro427983583\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 5713,\r\n \"Name\": + \"Pro446198366\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6669,\r\n \"Name\": \"Pro440987352\",\r\n \"Process\": + \ \"Id\": 5263,\r\n \"Name\": \"Pro455094795\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5713,\r\n - \ \"Name\": \"Pro446198366\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5671,\r\n + \ \"Name\": \"Pro469595164\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5263,\r\n \"Name\": - \"Pro455094795\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6826,\r\n \"Name\": + \"Pro471072885\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5671,\r\n \"Name\": \"Pro469595164\",\r\n \"Process\": + \ \"Id\": 6605,\r\n \"Name\": \"Pro498438092\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6826,\r\n - \ \"Name\": \"Pro471072885\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5728,\r\n + \ \"Name\": \"Pro50060010\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6605,\r\n \"Name\": - \"Pro498438092\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6132,\r\n \"Name\": + \"Pro504512139\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5728,\r\n \"Name\": \"Pro50060010\",\r\n \"Process\": + \ \"Id\": 6220,\r\n \"Name\": \"Pro52849860\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6132,\r\n - \ \"Name\": \"Pro504512139\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6065,\r\n + \ \"Name\": \"Pro546321018\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6220,\r\n \"Name\": - \"Pro52849860\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6403,\r\n \"Name\": + \"Pro562759858\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6065,\r\n \"Name\": \"Pro546321018\",\r\n \"Process\": + \ \"Id\": 6216,\r\n \"Name\": \"Pro578115572\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6403,\r\n - \ \"Name\": \"Pro562759858\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4804,\r\n + \ \"Name\": \"Pro593107887\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6216,\r\n \"Name\": - \"Pro578115572\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 5254,\r\n \"Name\": + \"Pro59602249\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 4804,\r\n \"Name\": \"Pro593107887\",\r\n \"Process\": + \ \"Id\": 6674,\r\n \"Name\": \"Pro608166519\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5254,\r\n - \ \"Name\": \"Pro59602249\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6766,\r\n + \ \"Name\": \"Pro612075580\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6674,\r\n \"Name\": - \"Pro608166519\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6580,\r\n \"Name\": + \"Pro64962675\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6766,\r\n \"Name\": \"Pro612075580\",\r\n \"Process\": + \ \"Id\": 5815,\r\n \"Name\": \"Pro654628017\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6580,\r\n - \ \"Name\": \"Pro64962675\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5487,\r\n + \ \"Name\": \"Pro662543172\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5815,\r\n \"Name\": - \"Pro654628017\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 5930,\r\n \"Name\": + \"Pro672453733\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5487,\r\n \"Name\": \"Pro662543172\",\r\n \"Process\": + \ \"Id\": 5911,\r\n \"Name\": \"Pro680525404\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5930,\r\n - \ \"Name\": \"Pro672453733\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4815,\r\n + \ \"Name\": \"Pro680760442\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5911,\r\n \"Name\": - \"Pro680525404\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6504,\r\n \"Name\": + \"Pro682900520\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 4815,\r\n \"Name\": \"Pro680760442\",\r\n \"Process\": + \ \"Id\": 6035,\r\n \"Name\": \"Pro683391457\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6504,\r\n - \ \"Name\": \"Pro682900520\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6448,\r\n + \ \"Name\": \"Pro68752860\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6035,\r\n \"Name\": - \"Pro683391457\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 5253,\r\n \"Name\": + \"Pro693831933\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6448,\r\n \"Name\": \"Pro68752860\",\r\n \"Process\": + \ \"Id\": 6804,\r\n \"Name\": \"Pro695731416\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5253,\r\n - \ \"Name\": \"Pro693831933\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6453,\r\n + \ \"Name\": \"Pro70549878\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6804,\r\n \"Name\": - \"Pro695731416\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6269,\r\n \"Name\": + \"Pro720706755\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6453,\r\n \"Name\": \"Pro70549878\",\r\n \"Process\": + \ \"Id\": 5519,\r\n \"Name\": \"Pro732389221\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6269,\r\n - \ \"Name\": \"Pro720706755\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6325,\r\n + \ \"Name\": \"Pro740400251\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5519,\r\n \"Name\": - \"Pro732389221\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6260,\r\n \"Name\": + \"Pro7509074\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6325,\r\n \"Name\": \"Pro740400251\",\r\n \"Process\": + \ \"Id\": 4803,\r\n \"Name\": \"Pro767593084\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6260,\r\n - \ \"Name\": \"Pro7509074\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6376,\r\n + \ \"Name\": \"Pro770383188\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 4803,\r\n \"Name\": - \"Pro767593084\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 4802,\r\n \"Name\": + \"Pro789483755\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6376,\r\n \"Name\": \"Pro770383188\",\r\n \"Process\": + \ \"Id\": 5955,\r\n \"Name\": \"Pro797028637\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4802,\r\n - \ \"Name\": \"Pro789483755\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5668,\r\n + \ \"Name\": \"Pro813841994\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5955,\r\n \"Name\": - \"Pro797028637\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6401,\r\n \"Name\": + \"Pro815780701\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5668,\r\n \"Name\": \"Pro813841994\",\r\n \"Process\": + \ \"Id\": 6449,\r\n \"Name\": \"Pro824961957\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6401,\r\n - \ \"Name\": \"Pro815780701\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5982,\r\n + \ \"Name\": \"Pro828186529\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6449,\r\n \"Name\": - \"Pro824961957\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6780,\r\n \"Name\": + \"Pro839948164\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5982,\r\n \"Name\": \"Pro828186529\",\r\n \"Process\": + \ \"Id\": 6557,\r\n \"Name\": \"Pro843416707\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6780,\r\n - \ \"Name\": \"Pro839948164\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5664,\r\n + \ \"Name\": \"Pro845845758\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6557,\r\n \"Name\": - \"Pro843416707\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6671,\r\n \"Name\": + \"Pro875869217\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5664,\r\n \"Name\": \"Pro845845758\",\r\n \"Process\": + \ \"Id\": 6399,\r\n \"Name\": \"Pro879861284\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6671,\r\n - \ \"Name\": \"Pro875869217\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6007,\r\n + \ \"Name\": \"Pro885719540\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6399,\r\n \"Name\": - \"Pro879861284\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6666,\r\n \"Name\": + \"Pro90330096\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6007,\r\n \"Name\": \"Pro885719540\",\r\n \"Process\": + \ \"Id\": 6205,\r\n \"Name\": \"Pro912426225\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6666,\r\n - \ \"Name\": \"Pro90330096\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5717,\r\n + \ \"Name\": \"Pro913010036\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6205,\r\n \"Name\": - \"Pro912426225\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 5882,\r\n \"Name\": + \"Pro913232634\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5717,\r\n \"Name\": \"Pro913010036\",\r\n \"Process\": + \ \"Id\": 5857,\r\n \"Name\": \"Pro924363580\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5882,\r\n - \ \"Name\": \"Pro913232634\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6694,\r\n + \ \"Name\": \"Pro962296886\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5857,\r\n \"Name\": - \"Pro924363580\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6200,\r\n \"Name\": + \"Pro971094660\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6694,\r\n \"Name\": \"Pro962296886\",\r\n \"Process\": + \ \"Id\": 5634,\r\n \"Name\": \"Pro977160972\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6200,\r\n - \ \"Name\": \"Pro971094660\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5490,\r\n + \ \"Name\": \"Pro988274817\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5634,\r\n \"Name\": - \"Pro977160972\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6444,\r\n \"Name\": + \"Pro994036877\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5490,\r\n \"Name\": \"Pro988274817\",\r\n \"Process\": + \ \"Id\": 2030,\r\n \"Name\": \"Project_new_name2499868962\",\r\n + \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": + 4536,\r\n \"Name\": \"Project_new_name3031244325\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6444,\r\n - \ \"Name\": \"Pro994036877\",\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2030,\r\n \"Name\": - \"Project_new_name2499868962\",\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 4536,\r\n \"Name\": - \"Project_new_name3031244325\",\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2022,\r\n \"Name\": - \"Project_new_name6757305669\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2022,\r\n + \ \"Name\": \"Project_new_name6757305669\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2026,\r\n + \ \"Name\": \"Project1306696328\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2026,\r\n \"Name\": - \"Project1306696328\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 4671,\r\n \"Name\": + \"Project148854312\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 4671,\r\n \"Name\": \"Project148854312\",\r\n + \ },\r\n {\r\n \"Id\": 2023,\r\n \"Name\": \"Project1694405550\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 2023,\r\n \"Name\": \"Project1694405550\",\r\n \"Process\": + 4535,\r\n \"Name\": \"Project1736096232\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4535,\r\n - \ \"Name\": \"Project1736096232\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2015,\r\n + \ \"Name\": \"Project2135869770\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2015,\r\n \"Name\": - \"Project2135869770\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 2032,\r\n \"Name\": + \"Project2168633823\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 2032,\r\n \"Name\": \"Project2168633823\",\r\n + \ },\r\n {\r\n \"Id\": 4531,\r\n \"Name\": \"Project2498866686\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 4531,\r\n \"Name\": \"Project2498866686\",\r\n \"Process\": - {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2031,\r\n - \ \"Name\": \"Project321906060\",\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + 2031,\r\n \"Name\": \"Project321906060\",\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": 2019,\r\n \"Name\": \"Project3375152595\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n @@ -388,5 +390,5 @@ http_interactions: \ },\r\n \"Program\": null\r\n }\r\n ]\r\n },\r\n \"SelectedTeams\": {\r\n \"Items\": []\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:07:19 GMT + recorded_at: Fri, 23 Aug 2013 11:44:12 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_single_id.yml b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_single_id.yml index 8447c03..c57395a 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_single_id.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_context_by_single_id.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:07:23 GMT + - Fri, 23 Aug 2013 11:44:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -35,7 +35,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '69' + - '82' X-Ua-Compatible: - IE=edge body: @@ -84,5 +84,5 @@ http_interactions: \ ]\r\n },\r\n \"SelectedProjects\": {\r\n \"Items\": []\r\n },\r\n \ \"SelectedTeams\": {\r\n \"Items\": []\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:07:20 GMT + recorded_at: Fri, 23 Aug 2013 11:44:12 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_global_context.yml b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_global_context.yml index 7dcce6a..2005566 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_global_context.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess/_context/return_global_context.yml @@ -15,11 +15,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:07:22 GMT + - Fri, 23 Aug 2013 11:44:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '23463' + - '23669' Connection: - keep-alive Keep-Alive: @@ -35,12 +35,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '101' + - '89' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Acid\": \"05ED10CDD8BD72D3A2C5263AF2D6F87F\",\r\n \"Edition\": + string: "{\r\n \"Acid\": \"5B677B14931EC647EEB13108E8EE381A\",\r\n \"Edition\": \"Pro\",\r\n \"Version\": \"2.24.7.24233\",\r\n \"AppContext\": {\r\n \"ProjectContext\": {\r\n \"No\": true\r\n },\r\n \"TeamContext\": {\r\n \"No\": true\r\n }\r\n },\r\n \"Culture\": {\r\n \"Name\": \"en-US\",\r\n @@ -154,202 +154,204 @@ http_interactions: null\r\n },\r\n {\r\n \"Id\": 5824,\r\n \"Name\": \"Pro359689253\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5604,\r\n \"Name\": \"Pro381704122\",\r\n \"Process\": + \ \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\",\r\n + \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": + 5604,\r\n \"Name\": \"Pro381704122\",\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + null\r\n },\r\n {\r\n \"Id\": 6488,\r\n \"Name\": + \"Pro383103536\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n + \ \"Id\": 6320,\r\n \"Name\": \"Pro398900021\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6488,\r\n - \ \"Name\": \"Pro383103536\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6685,\r\n + \ \"Name\": \"Pro410026954\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6320,\r\n \"Name\": - \"Pro398900021\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6072,\r\n \"Name\": + \"Pro416445554\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6685,\r\n \"Name\": \"Pro410026954\",\r\n \"Process\": + \ \"Id\": 6724,\r\n \"Name\": \"Pro427983583\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6072,\r\n - \ \"Name\": \"Pro416445554\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6669,\r\n + \ \"Name\": \"Pro440987352\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6724,\r\n \"Name\": - \"Pro427983583\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 5713,\r\n \"Name\": + \"Pro446198366\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6669,\r\n \"Name\": \"Pro440987352\",\r\n \"Process\": + \ \"Id\": 5263,\r\n \"Name\": \"Pro455094795\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5713,\r\n - \ \"Name\": \"Pro446198366\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5671,\r\n + \ \"Name\": \"Pro469595164\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5263,\r\n \"Name\": - \"Pro455094795\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6826,\r\n \"Name\": + \"Pro471072885\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5671,\r\n \"Name\": \"Pro469595164\",\r\n \"Process\": + \ \"Id\": 6605,\r\n \"Name\": \"Pro498438092\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6826,\r\n - \ \"Name\": \"Pro471072885\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5728,\r\n + \ \"Name\": \"Pro50060010\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6605,\r\n \"Name\": - \"Pro498438092\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6132,\r\n \"Name\": + \"Pro504512139\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5728,\r\n \"Name\": \"Pro50060010\",\r\n \"Process\": + \ \"Id\": 6220,\r\n \"Name\": \"Pro52849860\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6132,\r\n - \ \"Name\": \"Pro504512139\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6065,\r\n + \ \"Name\": \"Pro546321018\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6220,\r\n \"Name\": - \"Pro52849860\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6403,\r\n \"Name\": + \"Pro562759858\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6065,\r\n \"Name\": \"Pro546321018\",\r\n \"Process\": + \ \"Id\": 6216,\r\n \"Name\": \"Pro578115572\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6403,\r\n - \ \"Name\": \"Pro562759858\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4804,\r\n + \ \"Name\": \"Pro593107887\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6216,\r\n \"Name\": - \"Pro578115572\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 5254,\r\n \"Name\": + \"Pro59602249\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 4804,\r\n \"Name\": \"Pro593107887\",\r\n \"Process\": + \ \"Id\": 6674,\r\n \"Name\": \"Pro608166519\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5254,\r\n - \ \"Name\": \"Pro59602249\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6766,\r\n + \ \"Name\": \"Pro612075580\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6674,\r\n \"Name\": - \"Pro608166519\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6580,\r\n \"Name\": + \"Pro64962675\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6766,\r\n \"Name\": \"Pro612075580\",\r\n \"Process\": + \ \"Id\": 5815,\r\n \"Name\": \"Pro654628017\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6580,\r\n - \ \"Name\": \"Pro64962675\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5487,\r\n + \ \"Name\": \"Pro662543172\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5815,\r\n \"Name\": - \"Pro654628017\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 5930,\r\n \"Name\": + \"Pro672453733\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5487,\r\n \"Name\": \"Pro662543172\",\r\n \"Process\": + \ \"Id\": 5911,\r\n \"Name\": \"Pro680525404\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5930,\r\n - \ \"Name\": \"Pro672453733\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4815,\r\n + \ \"Name\": \"Pro680760442\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5911,\r\n \"Name\": - \"Pro680525404\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6504,\r\n \"Name\": + \"Pro682900520\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 4815,\r\n \"Name\": \"Pro680760442\",\r\n \"Process\": + \ \"Id\": 6035,\r\n \"Name\": \"Pro683391457\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6504,\r\n - \ \"Name\": \"Pro682900520\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6448,\r\n + \ \"Name\": \"Pro68752860\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6035,\r\n \"Name\": - \"Pro683391457\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 5253,\r\n \"Name\": + \"Pro693831933\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6448,\r\n \"Name\": \"Pro68752860\",\r\n \"Process\": + \ \"Id\": 6804,\r\n \"Name\": \"Pro695731416\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5253,\r\n - \ \"Name\": \"Pro693831933\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6453,\r\n + \ \"Name\": \"Pro70549878\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6804,\r\n \"Name\": - \"Pro695731416\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6269,\r\n \"Name\": + \"Pro720706755\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6453,\r\n \"Name\": \"Pro70549878\",\r\n \"Process\": + \ \"Id\": 5519,\r\n \"Name\": \"Pro732389221\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6269,\r\n - \ \"Name\": \"Pro720706755\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6325,\r\n + \ \"Name\": \"Pro740400251\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5519,\r\n \"Name\": - \"Pro732389221\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6260,\r\n \"Name\": + \"Pro7509074\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6325,\r\n \"Name\": \"Pro740400251\",\r\n \"Process\": + \ \"Id\": 4803,\r\n \"Name\": \"Pro767593084\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6260,\r\n - \ \"Name\": \"Pro7509074\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6376,\r\n + \ \"Name\": \"Pro770383188\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 4803,\r\n \"Name\": - \"Pro767593084\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 4802,\r\n \"Name\": + \"Pro789483755\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6376,\r\n \"Name\": \"Pro770383188\",\r\n \"Process\": + \ \"Id\": 5955,\r\n \"Name\": \"Pro797028637\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4802,\r\n - \ \"Name\": \"Pro789483755\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5668,\r\n + \ \"Name\": \"Pro813841994\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5955,\r\n \"Name\": - \"Pro797028637\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6401,\r\n \"Name\": + \"Pro815780701\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5668,\r\n \"Name\": \"Pro813841994\",\r\n \"Process\": + \ \"Id\": 6449,\r\n \"Name\": \"Pro824961957\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6401,\r\n - \ \"Name\": \"Pro815780701\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5982,\r\n + \ \"Name\": \"Pro828186529\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6449,\r\n \"Name\": - \"Pro824961957\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6780,\r\n \"Name\": + \"Pro839948164\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5982,\r\n \"Name\": \"Pro828186529\",\r\n \"Process\": + \ \"Id\": 6557,\r\n \"Name\": \"Pro843416707\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6780,\r\n - \ \"Name\": \"Pro839948164\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5664,\r\n + \ \"Name\": \"Pro845845758\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6557,\r\n \"Name\": - \"Pro843416707\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6671,\r\n \"Name\": + \"Pro875869217\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5664,\r\n \"Name\": \"Pro845845758\",\r\n \"Process\": + \ \"Id\": 6399,\r\n \"Name\": \"Pro879861284\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6671,\r\n - \ \"Name\": \"Pro875869217\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6007,\r\n + \ \"Name\": \"Pro885719540\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6399,\r\n \"Name\": - \"Pro879861284\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6666,\r\n \"Name\": + \"Pro90330096\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6007,\r\n \"Name\": \"Pro885719540\",\r\n \"Process\": + \ \"Id\": 6205,\r\n \"Name\": \"Pro912426225\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6666,\r\n - \ \"Name\": \"Pro90330096\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5717,\r\n + \ \"Name\": \"Pro913010036\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 6205,\r\n \"Name\": - \"Pro912426225\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 5882,\r\n \"Name\": + \"Pro913232634\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5717,\r\n \"Name\": \"Pro913010036\",\r\n \"Process\": + \ \"Id\": 5857,\r\n \"Name\": \"Pro924363580\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5882,\r\n - \ \"Name\": \"Pro913232634\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6694,\r\n + \ \"Name\": \"Pro962296886\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5857,\r\n \"Name\": - \"Pro924363580\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6200,\r\n \"Name\": + \"Pro971094660\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 6694,\r\n \"Name\": \"Pro962296886\",\r\n \"Process\": + \ \"Id\": 5634,\r\n \"Name\": \"Pro977160972\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6200,\r\n - \ \"Name\": \"Pro971094660\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 5490,\r\n + \ \"Name\": \"Pro988274817\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 5634,\r\n \"Name\": - \"Pro977160972\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + null\r\n },\r\n {\r\n \"Id\": 6444,\r\n \"Name\": + \"Pro994036877\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n - \ \"Id\": 5490,\r\n \"Name\": \"Pro988274817\",\r\n \"Process\": + \ \"Id\": 2030,\r\n \"Name\": \"Project_new_name2499868962\",\r\n + \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n + \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": + 4536,\r\n \"Name\": \"Project_new_name3031244325\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 6444,\r\n - \ \"Name\": \"Pro994036877\",\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2030,\r\n \"Name\": - \"Project_new_name2499868962\",\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 4536,\r\n \"Name\": - \"Project_new_name3031244325\",\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2022,\r\n \"Name\": - \"Project_new_name6757305669\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2022,\r\n + \ \"Name\": \"Project_new_name6757305669\",\r\n \"Process\": + {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2026,\r\n + \ \"Name\": \"Project1306696328\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2026,\r\n \"Name\": - \"Project1306696328\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 4671,\r\n \"Name\": + \"Project148854312\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 4671,\r\n \"Name\": \"Project148854312\",\r\n + \ },\r\n {\r\n \"Id\": 2023,\r\n \"Name\": \"Project1694405550\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 2023,\r\n \"Name\": \"Project1694405550\",\r\n \"Process\": + 4535,\r\n \"Name\": \"Project1736096232\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 4535,\r\n - \ \"Name\": \"Project1736096232\",\r\n \"Process\": {\r\n \"Id\": + \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2015,\r\n + \ \"Name\": \"Project2135869770\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": - null\r\n },\r\n {\r\n \"Id\": 2015,\r\n \"Name\": - \"Project2135869770\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + null\r\n },\r\n {\r\n \"Id\": 2032,\r\n \"Name\": + \"Project2168633823\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n - \ },\r\n {\r\n \"Id\": 2032,\r\n \"Name\": \"Project2168633823\",\r\n + \ },\r\n {\r\n \"Id\": 4531,\r\n \"Name\": \"Project2498866686\",\r\n \ \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": - 4531,\r\n \"Name\": \"Project2498866686\",\r\n \"Process\": - {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n - \ \"Program\": null\r\n },\r\n {\r\n \"Id\": 2031,\r\n - \ \"Name\": \"Project321906060\",\r\n \"Process\": {\r\n \"Id\": - 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": + 2031,\r\n \"Name\": \"Project321906060\",\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n },\r\n {\r\n \"Id\": 2019,\r\n \"Name\": \"Project3375152595\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n },\r\n \"Program\": null\r\n @@ -388,5 +390,5 @@ http_interactions: \ },\r\n \"Program\": null\r\n }\r\n ]\r\n },\r\n \"SelectedTeams\": {\r\n \"Items\": []\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:07:18 GMT + recorded_at: Fri, 23 Aug 2013 11:44:10 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_unexisted_id_in_path/raise_NotFound_error.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_unexisted_id_in_path/raise_NotFound_error.yml index cac7e62..a24b620 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_unexisted_id_in_path/raise_NotFound_error.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_unexisted_id_in_path/raise_NotFound_error.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:01:00 GMT + - Fri, 23 Aug 2013 11:40:50 GMT Content-Type: - text/xml; charset=utf-8 Content-Length: @@ -65,5 +65,5 @@ http_interactions: parameters)\r\n at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)\r\n \r\n" http_version: - recorded_at: Fri, 23 Aug 2013 11:01:09 GMT + recorded_at: Fri, 23 Aug 2013 11:40:46 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_url_to_existed_entity/respond_with_200_code.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_url_to_existed_entity/respond_with_200_code.yml index 53fb575..64a240a 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_url_to_existed_entity/respond_with_200_code.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_delete/with_url_to_existed_entity/respond_with_200_code.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Foo-50110"}' + string: '{"Name":"Foo51f597ef-cb75-448c-9faa-1fd62d5b1c68"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:00:59 GMT + - Fri, 23 Aug 2013 11:40:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '729' + - '759' Connection: - keep-alive Keep-Alive: @@ -37,27 +37,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '491' + - '489' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6844,\r\n \"Name\": \"Foo-50110\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255667000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255667000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"FOO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6869,\r\n \"Name\": \"Foo51f597ef-cb75-448c-9faa-1fd62d5b1c68\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258044000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258044000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"FOO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:01:08 GMT + recorded_at: Fri, 23 Aug 2013 11:40:46 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/projects/6844 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/projects/6869 body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:01:12 GMT + - Fri, 23 Aug 2013 11:40:37 GMT Content-Length: - '0' Connection: @@ -95,5 +96,5 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:01:09 GMT + recorded_at: Fri, 23 Aug 2013 11:40:46 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/id/returns_hash_of_entity_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/id/returns_hash_of_entity_attributes.yml index 4c0e0eb..02994b8 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/id/returns_hash_of_entity_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/id/returns_hash_of_entity_attributes.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:00:55 GMT + - Fri, 23 Aug 2013 11:40:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -35,7 +35,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -43,5 +43,5 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:01:04 GMT + recorded_at: Fri, 23 Aug 2013 11:40:41 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/it_returns_array_of_entities_attributes_hashes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/it_returns_array_of_entities_attributes_hashes.yml index 59376cf..59de78e 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/it_returns_array_of_entities_attributes_hashes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_path_like_entity/it_returns_array_of_entities_attributes_hashes.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:00:56 GMT + - Fri, 23 Aug 2013 11:40:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -47,5 +47,5 @@ http_interactions: \ {\r\n \"Id\": 6,\r\n \"Name\": \"User\",\r\n \"IsExtendable\": false,\r\n \"IsSearchable\": false\r\n }\r\n ]\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:01:05 GMT + recorded_at: Fri, 23 Aug 2013 11:40:42 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_id_/it_raises_NotFound_error.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_id_/it_raises_NotFound_error.yml index 7746aba..0ef9e42 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_id_/it_raises_NotFound_error.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_id_/it_raises_NotFound_error.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:00:56 GMT + - Fri, 23 Aug 2013 11:40:46 GMT Content-Type: - text/xml; charset=utf-8 Content-Length: @@ -61,5 +61,5 @@ http_interactions: parameters)\r\n at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)\r\n \r\n" http_version: - recorded_at: Fri, 23 Aug 2013 11:01:05 GMT + recorded_at: Fri, 23 Aug 2013 11:40:43 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_path_/it_raises_UnexpectedError.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_path_/it_raises_UnexpectedError.yml index 9847a16..2b6ba0c 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_path_/it_raises_UnexpectedError.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_get/with_unexisted_path_/it_raises_UnexpectedError.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:01:08 GMT + - Fri, 23 Aug 2013 11:40:33 GMT Content-Type: - text/html; charset=utf-8 Content-Length: @@ -52,5 +52,5 @@ http_interactions: following URL and make sure that it is spelled correctly.\r\n

\r\n\r\n \ Requested URL: /api/v1/foobars/

\r\n\r\n \r\n\r\n" http_version: - recorded_at: Fri, 23 Aug 2013 11:01:05 GMT + recorded_at: Fri, 23 Aug 2013 11:40:42 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_correct_path_and_options/returns_hash_of_entities_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_correct_path_and_options/returns_hash_of_entities_attributes.yml index 135d2d6..9434c0f 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_correct_path_and_options/returns_hash_of_entities_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_correct_path_and_options/returns_hash_of_entities_attributes.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/projects body: encoding: UTF-8 - string: '{"Name":"foobar4354710"}' + string: '{"Name":"foobarb6dcdc32-fa5b-45ff-979c-188f77fe4a30"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:01:10 GMT + - Fri, 23 Aug 2013 11:40:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '733' + - '762' Connection: - keep-alive Keep-Alive: @@ -37,27 +37,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '643' + - '594' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6843,\r\n \"Name\": \"foobar4354710\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255665000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255665000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"FOO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6868,\r\n \"Name\": \"foobarb6dcdc32-fa5b-45ff-979c-188f77fe4a30\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258042000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258042000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"FOO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:01:06 GMT + recorded_at: Fri, 23 Aug 2013 11:40:44 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/projects/6843 + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/projects/6868 body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:00:58 GMT + - Fri, 23 Aug 2013 11:40:48 GMT Content-Length: - '0' Connection: @@ -88,12 +89,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '133' + - '173' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:01:07 GMT + recorded_at: Fri, 23 Aug 2013 11:40:44 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_incorrect_path_and_options/raises_UnexpectedError.yml b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_incorrect_path_and_options/raises_UnexpectedError.yml index dcfdf9a..2fa51a2 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_incorrect_path_and_options/raises_UnexpectedError.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_APIClient/_post/with_incorrect_path_and_options/raises_UnexpectedError.yml @@ -17,7 +17,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:01:11 GMT + - Fri, 23 Aug 2013 11:40:36 GMT Content-Type: - text/html; charset=utf-8 Content-Length: @@ -54,5 +54,5 @@ http_interactions: following URL and make sure that it is spelled correctly.\r\n

\r\n\r\n \ Requested URL: /api/v1/foo/

\r\n\r\n \r\n\r\n" http_version: - recorded_at: Fri, 23 Aug 2013 11:01:07 GMT + recorded_at: Fri, 23 Aug 2013 11:40:45 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/with_options/returns_all_subject_with_conditions_.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/with_options/returns_all_subject_with_conditions_.yml index 077b7e6..fbf7644 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/with_options/returns_all_subject_with_conditions_.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/with_options/returns_all_subject_with_conditions_.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:42 GMT + - Fri, 23 Aug 2013 11:40:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -35,7 +35,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '81' + - '87' X-Ua-Compatible: - IE=edge body: @@ -56,5 +56,5 @@ http_interactions: 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:38 GMT + recorded_at: Fri, 23 Aug 2013 11:40:53 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/without_options/returns_array_of_projects.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/without_options/returns_array_of_projects.yml index fd78be8..bde24e9 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/without_options/returns_array_of_projects.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_all/without_options/returns_array_of_projects.yml @@ -15,11 +15,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:29 GMT + - Fri, 23 Aug 2013 11:40:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '21937' + - '21938' Connection: - keep-alive Keep-Alive: @@ -35,7 +35,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '91' + - '97' X-Ua-Compatible: - IE=edge body: @@ -317,11 +317,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6204,\r\n \"Name\": - \"Pro334133141\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377157592000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377157592000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 76.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6857,\r\n \"Name\": + \"Pro305079333\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255856000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377255856000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -329,11 +329,11 @@ http_interactions: \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5549,\r\n \"Name\": - \"Pro345369757\",\r\n \"Description\": null,\r\n \"StartDate\": - null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377101058000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377101058000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 45.0,\r\n \"IsActive\": + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6204,\r\n \"Name\": + \"Pro334133141\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377157592000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377157592000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 76.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -343,5 +343,5 @@ http_interactions: 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:38 GMT + recorded_at: Fri, 23 Aug 2013 11:40:53 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_getter_for_referenced_items.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_getter_for_referenced_items.yml index a73b996..bd9baa5 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_getter_for_referenced_items.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_getter_for_referenced_items.yml @@ -1,27 +1,25 @@ --- http_interactions: - request: - method: post - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ + method: get + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/?format=json&orderByDesc=id&take=1 body: - encoding: UTF-8 - string: '{"Name":"Pro981891334"}' - headers: - Content-Type: - - application/json + encoding: US-ASCII + string: '' + headers: {} response: status: - code: 201 - message: Created + code: 200 + message: OK headers: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:55 GMT + - Fri, 23 Aug 2013 12:27:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '1025' Connection: - keep-alive Keep-Alive: @@ -37,30 +35,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '460' + - '84' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6855,\r\n \"Name\": \"Pro981891334\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255842000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255842000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Next\": \"http://tpruby.tpondemand.com/api/v1/Projects/?orderByDesc=id&format=json&take=1&skip=1\",\r\n + \ \"Items\": [\r\n {\r\n \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": + null,\r\n \"CreateDate\": \"\\/Date(1377258091000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258091000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n + \ \"Tags\": \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": + true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n + \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": + {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": + {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": + \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": + null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:04 GMT + recorded_at: Fri, 23 Aug 2013 12:27:07 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/ body: encoding: UTF-8 - string: '{"Name":"story2","Project":{"id":6855}}' + string: '{"Name":"story2","Project":{"id":6882}}' headers: Content-Type: - application/json @@ -72,11 +73,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:08 GMT + - Fri, 23 Aug 2013 12:26:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -92,30 +93,30 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '348' + - '224' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6856,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6893,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255843000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255844000-0500)\\/\",\r\n + \"\\/Date(1377260826000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377260826000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6855,\r\n \"Name\": \"Pro981891334\"\r\n + \ \"Project\": {\r\n \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:05 GMT + recorded_at: Fri, 23 Aug 2013 12:27:07 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6855?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6882?format=json body: encoding: US-ASCII string: '' @@ -128,11 +129,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:56 GMT + - Fri, 23 Aug 2013 12:27:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -148,27 +149,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '48' + - '49' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6855,\r\n \"Name\": \"Pro981891334\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255842000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255842000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258091000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258091000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:05 GMT + recorded_at: Fri, 23 Aug 2013 12:27:08 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6855?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6882?format=json body: encoding: US-ASCII string: '' @@ -181,11 +183,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:09 GMT + - Fri, 23 Aug 2013 12:26:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -201,24 +203,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '63' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6855,\r\n \"Name\": \"Pro981891334\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255842000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255842000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258091000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258091000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:05 GMT + recorded_at: Fri, 23 Aug 2013 12:27:08 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -234,7 +237,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:57 GMT + - Fri, 23 Aug 2013 12:27:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -262,7 +265,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:06 GMT + recorded_at: Fri, 23 Aug 2013 12:27:08 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -278,7 +281,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:10 GMT + - Fri, 23 Aug 2013 12:27:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -306,7 +309,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:06 GMT + recorded_at: Fri, 23 Aug 2013 12:27:09 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -322,7 +325,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:58 GMT + - Fri, 23 Aug 2013 12:27:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -353,7 +356,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:07 GMT + recorded_at: Fri, 23 Aug 2013 12:27:09 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -369,7 +372,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:10 GMT + - Fri, 23 Aug 2013 12:27:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -389,7 +392,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -400,7 +403,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:07 GMT + recorded_at: Fri, 23 Aug 2013 12:27:09 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -416,7 +419,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:58 GMT + - Fri, 23 Aug 2013 12:27:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -445,7 +448,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:07 GMT + recorded_at: Fri, 23 Aug 2013 12:27:10 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -461,7 +464,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:11 GMT + - Fri, 23 Aug 2013 12:27:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -490,10 +493,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:08 GMT + recorded_at: Fri, 23 Aug 2013 12:27:10 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6855/UserStories?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6882/UserStories?format=json body: encoding: US-ASCII string: '' @@ -506,11 +509,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:59 GMT + - Fri, 23 Aug 2013 12:27:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '1156' + - '2344' Connection: - keep-alive Keep-Alive: @@ -526,30 +529,46 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '116' + - '61' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 6856,\r\n \"Name\": + string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 6893,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255843000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377255844000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 232.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377260826000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377260826000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \ \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n \ },\r\n \"LastCommentedUser\": null,\r\n \"Project\": {\r\n - \ \"Id\": 6855,\r\n \"Name\": \"Pro981891334\"\r\n },\r\n - \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + \ \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": + 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": + {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": + null,\r\n \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6883,\r\n + \ \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258092000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258092000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 232.5,\r\n \"Effort\": + 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n + \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": + 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": + \"UserStory\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n + \ \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n + \ },\r\n \"LastCommentedUser\": null,\r\n \"Project\": {\r\n + \ \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:08 GMT + recorded_at: Fri, 23 Aug 2013 12:27:11 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -565,7 +584,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:12 GMT + - Fri, 23 Aug 2013 12:27:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -593,7 +612,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:08 GMT + recorded_at: Fri, 23 Aug 2013 12:27:11 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -609,7 +628,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:00 GMT + - Fri, 23 Aug 2013 12:27:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -637,7 +656,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:09 GMT + recorded_at: Fri, 23 Aug 2013 12:27:11 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -653,7 +672,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:12 GMT + - Fri, 23 Aug 2013 12:27:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -684,7 +703,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:09 GMT + recorded_at: Fri, 23 Aug 2013 12:27:12 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -700,7 +719,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:00 GMT + - Fri, 23 Aug 2013 12:27:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -720,7 +739,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -731,10 +750,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:09 GMT + recorded_at: Fri, 23 Aug 2013 12:27:12 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6855?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6882?format=json body: encoding: US-ASCII string: '' @@ -747,11 +766,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:13 GMT + - Fri, 23 Aug 2013 12:27:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -767,27 +786,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '46' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6855,\r\n \"Name\": \"Pro981891334\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255842000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255842000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258091000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258091000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:10 GMT + recorded_at: Fri, 23 Aug 2013 12:27:12 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6855?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6882?format=json body: encoding: US-ASCII string: '' @@ -800,11 +820,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:01 GMT + - Fri, 23 Aug 2013 12:27:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -820,24 +840,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '47' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6855,\r\n \"Name\": \"Pro981891334\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255842000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255842000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258091000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258091000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:10 GMT + recorded_at: Fri, 23 Aug 2013 12:27:13 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -853,7 +874,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:14 GMT + - Fri, 23 Aug 2013 12:27:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -881,7 +902,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:10 GMT + recorded_at: Fri, 23 Aug 2013 12:27:13 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -897,7 +918,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:02 GMT + - Fri, 23 Aug 2013 12:27:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -925,7 +946,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:11 GMT + recorded_at: Fri, 23 Aug 2013 12:27:13 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -941,7 +962,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:14 GMT + - Fri, 23 Aug 2013 12:27:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -972,7 +993,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:11 GMT + recorded_at: Fri, 23 Aug 2013 12:27:14 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -988,7 +1009,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:02 GMT + - Fri, 23 Aug 2013 12:27:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1008,7 +1029,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -1019,7 +1040,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:11 GMT + recorded_at: Fri, 23 Aug 2013 12:27:14 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -1035,7 +1056,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:15 GMT + - Fri, 23 Aug 2013 12:27:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1055,7 +1076,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -1064,7 +1085,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:12 GMT + recorded_at: Fri, 23 Aug 2013 12:27:14 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -1080,7 +1101,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:03 GMT + - Fri, 23 Aug 2013 12:27:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1109,7 +1130,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:12 GMT + recorded_at: Fri, 23 Aug 2013 12:27:15 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -1125,7 +1146,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:16 GMT + - Fri, 23 Aug 2013 12:27:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1145,7 +1166,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -1154,7 +1175,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:12 GMT + recorded_at: Fri, 23 Aug 2013 12:27:15 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -1170,7 +1191,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:04 GMT + - Fri, 23 Aug 2013 12:27:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1190,7 +1211,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '7' X-Ua-Compatible: - IE=edge body: @@ -1199,7 +1220,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:13 GMT + recorded_at: Fri, 23 Aug 2013 12:27:15 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -1215,7 +1236,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:17 GMT + - Fri, 23 Aug 2013 12:27:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1243,7 +1264,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:13 GMT + recorded_at: Fri, 23 Aug 2013 12:27:16 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -1259,7 +1280,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:05 GMT + - Fri, 23 Aug 2013 12:27:20 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1287,7 +1308,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:14 GMT + recorded_at: Fri, 23 Aug 2013 12:27:16 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -1303,7 +1324,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:17 GMT + - Fri, 23 Aug 2013 12:27:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1323,7 +1344,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '14' + - '10' X-Ua-Compatible: - IE=edge body: @@ -1334,7 +1355,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:14 GMT + recorded_at: Fri, 23 Aug 2013 12:27:17 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -1350,7 +1371,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:05 GMT + - Fri, 23 Aug 2013 12:27:20 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1370,7 +1391,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '9' + - '11' X-Ua-Compatible: - IE=edge body: @@ -1381,7 +1402,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:14 GMT + recorded_at: Fri, 23 Aug 2013 12:27:17 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -1397,7 +1418,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:18 GMT + - Fri, 23 Aug 2013 12:27:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1425,7 +1446,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:15 GMT + recorded_at: Fri, 23 Aug 2013 12:27:17 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -1441,7 +1462,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:06 GMT + - Fri, 23 Aug 2013 12:27:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1469,7 +1490,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:15 GMT + recorded_at: Fri, 23 Aug 2013 12:27:18 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -1485,7 +1506,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:19 GMT + - Fri, 23 Aug 2013 12:27:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1514,7 +1535,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:15 GMT + recorded_at: Fri, 23 Aug 2013 12:27:18 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -1530,7 +1551,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:07 GMT + - Fri, 23 Aug 2013 12:27:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1550,7 +1571,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -1559,51 +1580,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:16 GMT -- request: - method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6855/ - body: - encoding: US-ASCII - string: '' - headers: {} - response: - status: - code: 200 - message: OK - headers: - Server: - - nginx/1.4.1 - Date: - - Fri, 23 Aug 2013 11:04:19 GMT - Content-Length: - - '0' - Connection: - - keep-alive - Keep-Alive: - - timeout=60 - Cache-Control: - - no-cache, no-store, must-revalidate - Pragma: - - no-cache - Expires: - - '-1' - X-Aspnet-Version: - - 4.0.30319 - X-Aspnetmvc-Version: - - '3.0' - X-Stopwatch: - - '113' - X-Ua-Compatible: - - IE=edge - body: - encoding: UTF-8 - string: '' - http_version: - recorded_at: Fri, 23 Aug 2013 11:04:16 GMT + recorded_at: Fri, 23 Aug 2013 12:27:18 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6856/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6893/ body: encoding: US-ASCII string: '' @@ -1616,7 +1596,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:08 GMT + - Fri, 23 Aug 2013 12:27:10 GMT Content-Length: - '0' Connection: @@ -1634,12 +1614,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '228' + - '193' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:04:17 GMT + recorded_at: Fri, 23 Aug 2013 12:27:19 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_setters_for_referenced_items.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_setters_for_referenced_items.yml index f9de6ef..902d21c 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_setters_for_referenced_items.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_belongs_to/provide_setters_for_referenced_items.yml @@ -1,27 +1,25 @@ --- http_interactions: - request: - method: post - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ + method: get + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/?format=json&orderByDesc=id&take=1 body: - encoding: UTF-8 - string: '{"Name":"Pro305079333"}' - headers: - Content-Type: - - application/json + encoding: US-ASCII + string: '' + headers: {} response: status: - code: 201 - message: Created + code: 200 + message: OK headers: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:21 GMT + - Fri, 23 Aug 2013 12:27:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '1025' Connection: - keep-alive Keep-Alive: @@ -37,30 +35,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '476' + - '55' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6857,\r\n \"Name\": \"Pro305079333\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255856000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255856000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Next\": \"http://tpruby.tpondemand.com/api/v1/Projects/?orderByDesc=id&format=json&take=1&skip=1\",\r\n + \ \"Items\": [\r\n {\r\n \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": + null,\r\n \"CreateDate\": \"\\/Date(1377258091000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258091000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n + \ \"Tags\": \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": + true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n + \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": + {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": + {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": + \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": + null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": + 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:18 GMT + recorded_at: Fri, 23 Aug 2013 12:27:19 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/ body: encoding: UTF-8 - string: '{"Name":"story2","Project":{"id":6857}}' + string: '{"Name":"story2","Project":{"id":6882}}' headers: Content-Type: - application/json @@ -72,11 +73,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:09 GMT + - Fri, 23 Aug 2013 12:27:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -92,30 +93,30 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '197' + - '192' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6858,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6894,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255857000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255857000-0500)\\/\",\r\n + \"\\/Date(1377260839000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377260839000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6857,\r\n \"Name\": \"Pro305079333\"\r\n + \ \"Project\": {\r\n \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:18 GMT + recorded_at: Fri, 23 Aug 2013 12:27:20 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6857?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6882?format=json body: encoding: US-ASCII string: '' @@ -128,11 +129,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:22 GMT + - Fri, 23 Aug 2013 12:27:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -148,24 +149,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '56' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6857,\r\n \"Name\": \"Pro305079333\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255856000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255856000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258091000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258091000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:19 GMT + recorded_at: Fri, 23 Aug 2013 12:27:20 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -181,7 +183,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:10 GMT + - Fri, 23 Aug 2013 12:27:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -209,7 +211,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:19 GMT + recorded_at: Fri, 23 Aug 2013 12:27:21 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -225,7 +227,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:23 GMT + - Fri, 23 Aug 2013 12:27:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -253,7 +255,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:19 GMT + recorded_at: Fri, 23 Aug 2013 12:27:21 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -269,7 +271,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:11 GMT + - Fri, 23 Aug 2013 12:27:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -300,7 +302,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:20 GMT + recorded_at: Fri, 23 Aug 2013 12:27:21 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -316,7 +318,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:23 GMT + - Fri, 23 Aug 2013 12:27:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -347,7 +349,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:20 GMT + recorded_at: Fri, 23 Aug 2013 12:27:22 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -363,7 +365,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:11 GMT + - Fri, 23 Aug 2013 12:27:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -392,7 +394,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:20 GMT + recorded_at: Fri, 23 Aug 2013 12:27:22 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -408,7 +410,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:24 GMT + - Fri, 23 Aug 2013 12:27:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -437,10 +439,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:21 GMT + recorded_at: Fri, 23 Aug 2013 12:27:22 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6857/UserStories?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6882/UserStories?format=json body: encoding: US-ASCII string: '' @@ -453,11 +455,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:12 GMT + - Fri, 23 Aug 2013 12:27:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '1156' + - '2344' Connection: - keep-alive Keep-Alive: @@ -473,30 +475,46 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '60' + - '61' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 6858,\r\n \"Name\": + string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 6894,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255857000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377255857000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 232.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377260839000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377260839000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \ \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n \ },\r\n \"LastCommentedUser\": null,\r\n \"Project\": {\r\n - \ \"Id\": 6857,\r\n \"Name\": \"Pro305079333\"\r\n },\r\n - \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + \ \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": + 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": + {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": + null,\r\n \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6883,\r\n + \ \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": + null,\r\n \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258092000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258092000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 232.5,\r\n \"Effort\": + 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n + \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": + 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": + \"UserStory\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n + \ \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n + \ },\r\n \"LastCommentedUser\": null,\r\n \"Project\": {\r\n + \ \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:21 GMT + recorded_at: Fri, 23 Aug 2013 12:27:23 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -512,7 +530,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:25 GMT + - Fri, 23 Aug 2013 12:27:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -540,7 +558,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:22 GMT + recorded_at: Fri, 23 Aug 2013 12:27:23 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -556,7 +574,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:13 GMT + - Fri, 23 Aug 2013 12:27:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -584,7 +602,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:22 GMT + recorded_at: Fri, 23 Aug 2013 12:27:23 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -600,7 +618,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:26 GMT + - Fri, 23 Aug 2013 12:27:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -631,7 +649,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:22 GMT + recorded_at: Fri, 23 Aug 2013 12:27:24 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -647,7 +665,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:14 GMT + - Fri, 23 Aug 2013 12:27:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -667,7 +685,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -678,10 +696,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:23 GMT + recorded_at: Fri, 23 Aug 2013 12:27:24 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6857?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6882?format=json body: encoding: US-ASCII string: '' @@ -694,11 +712,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:26 GMT + - Fri, 23 Aug 2013 12:27:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -714,27 +732,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '47' + - '53' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6857,\r\n \"Name\": \"Pro305079333\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255856000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255856000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258091000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258091000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:23 GMT + recorded_at: Fri, 23 Aug 2013 12:27:24 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6857?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6882?format=json body: encoding: US-ASCII string: '' @@ -747,11 +766,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:14 GMT + - Fri, 23 Aug 2013 12:27:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -772,19 +791,20 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6857,\r\n \"Name\": \"Pro305079333\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255856000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255856000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6882,\r\n \"Name\": \"Pro35e52745-9a69-4780-8212-7e1ceb055188\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258091000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258091000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:23 GMT + recorded_at: Fri, 23 Aug 2013 12:27:25 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -800,7 +820,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:27 GMT + - Fri, 23 Aug 2013 12:27:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -828,7 +848,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:24 GMT + recorded_at: Fri, 23 Aug 2013 12:27:25 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -844,7 +864,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:15 GMT + - Fri, 23 Aug 2013 12:27:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -872,7 +892,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:24 GMT + recorded_at: Fri, 23 Aug 2013 12:27:26 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -888,7 +908,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:28 GMT + - Fri, 23 Aug 2013 12:27:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -919,7 +939,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:24 GMT + recorded_at: Fri, 23 Aug 2013 12:27:26 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -935,7 +955,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:16 GMT + - Fri, 23 Aug 2013 12:27:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -966,7 +986,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:25 GMT + recorded_at: Fri, 23 Aug 2013 12:27:26 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -982,7 +1002,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:28 GMT + - Fri, 23 Aug 2013 12:27:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1011,7 +1031,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:25 GMT + recorded_at: Fri, 23 Aug 2013 12:27:27 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -1027,7 +1047,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:16 GMT + - Fri, 23 Aug 2013 12:27:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1056,7 +1076,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:25 GMT + recorded_at: Fri, 23 Aug 2013 12:27:27 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -1072,7 +1092,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:29 GMT + - Fri, 23 Aug 2013 12:27:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1092,7 +1112,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '6' X-Ua-Compatible: - IE=edge body: @@ -1101,7 +1121,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:26 GMT + recorded_at: Fri, 23 Aug 2013 12:27:27 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -1117,7 +1137,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:17 GMT + - Fri, 23 Aug 2013 12:27:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1146,7 +1166,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:26 GMT + recorded_at: Fri, 23 Aug 2013 12:27:28 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -1162,7 +1182,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:30 GMT + - Fri, 23 Aug 2013 12:27:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1190,7 +1210,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:26 GMT + recorded_at: Fri, 23 Aug 2013 12:27:28 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -1206,7 +1226,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:18 GMT + - Fri, 23 Aug 2013 12:27:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1234,7 +1254,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:27 GMT + recorded_at: Fri, 23 Aug 2013 12:27:28 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -1250,7 +1270,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:30 GMT + - Fri, 23 Aug 2013 12:27:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1281,7 +1301,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:27 GMT + recorded_at: Fri, 23 Aug 2013 12:27:29 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -1297,7 +1317,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:18 GMT + - Fri, 23 Aug 2013 12:27:20 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1328,7 +1348,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:27 GMT + recorded_at: Fri, 23 Aug 2013 12:27:29 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -1344,7 +1364,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:31 GMT + - Fri, 23 Aug 2013 12:27:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1372,7 +1392,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:28 GMT + recorded_at: Fri, 23 Aug 2013 12:27:29 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -1388,7 +1408,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:19 GMT + - Fri, 23 Aug 2013 12:27:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1408,7 +1428,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -1416,7 +1436,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:28 GMT + recorded_at: Fri, 23 Aug 2013 12:27:30 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -1432,7 +1452,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:32 GMT + - Fri, 23 Aug 2013 12:27:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1461,7 +1481,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:28 GMT + recorded_at: Fri, 23 Aug 2013 12:27:30 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -1477,7 +1497,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:20 GMT + - Fri, 23 Aug 2013 12:27:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1506,5 +1526,5 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:29 GMT + recorded_at: Fri, 23 Aug 2013 12:27:30 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_delete/if_project_exist_on_remote_host/delete_project_on_remote_host_and_return_true.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_delete/if_project_exist_on_remote_host/delete_project_on_remote_host_and_return_true.yml index fedbcd9..8a0d8e2 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_delete/if_project_exist_on_remote_host/delete_project_on_remote_host_and_return_true.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_delete/if_project_exist_on_remote_host/delete_project_on_remote_host_and_return_true.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project1130397814"}' + string: '{"Name":"Project4bc9d2eb-effc-40cb-8fde-21ba3c276413"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:37 GMT + - Fri, 23 Aug 2013 11:40:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '737' + - '763' Connection: - keep-alive Keep-Alive: @@ -37,27 +37,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '496' + - '489' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6850,\r\n \"Name\": \"Project1130397814\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255825000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255825000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6875,\r\n \"Name\": \"Project4bc9d2eb-effc-40cb-8fde-21ba3c276413\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258059000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258059000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:46 GMT + recorded_at: Fri, 23 Aug 2013 11:41:01 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6850/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6875/ body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:50 GMT + - Fri, 23 Aug 2013 11:41:05 GMT Content-Length: - '0' Connection: @@ -88,17 +89,17 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '110' + - '140' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:03:47 GMT + recorded_at: Fri, 23 Aug 2013 11:41:01 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6850?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6875?format=json body: encoding: US-ASCII string: '' @@ -111,7 +112,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:38 GMT + - Fri, 23 Aug 2013 11:40:53 GMT Content-Type: - text/xml; charset=utf-8 Content-Length: @@ -135,9 +136,9 @@ http_interactions: body: encoding: UTF-8 string: "\r\n NotFound\r\n Project with Id - 6850 not found\r\n Tp.Web.Mvc.Exceptions.NotFoundException\r\n + 6875 not found\r\n Tp.Web.Mvc.Exceptions.NotFoundException\r\n \ \r\n \r\n Project with Id - 6850 not found\r\n Tp.Integration.Common.EntityNotFoundException\r\n + 6875 not found\r\n Tp.Integration.Common.EntityNotFoundException\r\n \ at Tp.Rest.Services.RestService.ThrowIfInvalidResult(IResource[] resources, Object resourceId) in c:\\.jenkins\\workspace\\BuildPackage\\Code\\Main\\Tp.Rest\\Services\\RestService.cs:line 133\r\n at Tp.Rest.Services.RestService.Tp.Rest.Services.IRestService.Read(Object @@ -157,5 +158,5 @@ http_interactions: parameters)\r\n at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)\r\n \r\n" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:47 GMT + recorded_at: Fri, 23 Aug 2013 11:41:02 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_eq/comapres_projects_with_different_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_eq/comapres_projects_with_different_attributes.yml index 0509b40..8163554 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_eq/comapres_projects_with_different_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_eq/comapres_projects_with_different_attributes.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project4465000891"}' + string: '{"Name":"Projecta78b6ef2-a6c3-463e-8e17-69fe761702dd"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:53 GMT + - Fri, 23 Aug 2013 11:41:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '737' + - '763' Connection: - keep-alive Keep-Alive: @@ -37,27 +37,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '490' + - '517' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6854,\r\n \"Name\": \"Project4465000891\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255841000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255841000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6879,\r\n \"Name\": \"Projecta78b6ef2-a6c3-463e-8e17-69fe761702dd\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258074000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258074000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:02 GMT + recorded_at: Fri, 23 Aug 2013 11:41:16 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6854/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6879/ body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:06 GMT + - Fri, 23 Aug 2013 11:41:20 GMT Content-Length: - '0' Connection: @@ -88,12 +89,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '116' + - '128' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:04:03 GMT + recorded_at: Fri, 23 Aug 2013 11:41:16 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id/returns_project.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id/returns_project.yml index e4341bb..7d9fb15 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id/returns_project.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id/returns_project.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project4429169200","StartDate":"/Date(1377255813000+0300)/"}' + string: '{"Name":"Project825fe1ea-77c3-45ff-bd29-e8e5c2b33014","StartDate":"/Date(1377258046000+0300)/"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:25 GMT + - Fri, 23 Aug 2013 11:40:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '763' + - '789' Connection: - keep-alive Keep-Alive: @@ -37,28 +37,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '524' + - '500' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6845,\r\n \"Name\": \"Project4429169200\",\r\n \"Description\": - null,\r\n \"StartDate\": \"\\/Date(1377255813000-0500)\\/\",\r\n \"EndDate\": - null,\r\n \"CreateDate\": \"\\/Date(1377255812000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1377255812000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": - \"\",\r\n \"NumericPriority\": 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": - false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n - \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + string: "{\r\n \"Id\": 6870,\r\n \"Name\": \"Project825fe1ea-77c3-45ff-bd29-e8e5c2b33014\",\r\n + \ \"Description\": null,\r\n \"StartDate\": \"\\/Date(1377258046000-0500)\\/\",\r\n + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258047000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258047000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": + true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": + null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:34 GMT + recorded_at: Fri, 23 Aug 2013 11:40:48 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6845?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6870?format=json body: encoding: US-ASCII string: '' @@ -71,11 +71,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:38 GMT + - Fri, 23 Aug 2013 11:40:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '763' + - '789' Connection: - keep-alive Keep-Alive: @@ -96,23 +96,23 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6845,\r\n \"Name\": \"Project4429169200\",\r\n \"Description\": - null,\r\n \"StartDate\": \"\\/Date(1377255813000-0500)\\/\",\r\n \"EndDate\": - null,\r\n \"CreateDate\": \"\\/Date(1377255812000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1377255812000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": - \"\",\r\n \"NumericPriority\": 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": - false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n - \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + string: "{\r\n \"Id\": 6870,\r\n \"Name\": \"Project825fe1ea-77c3-45ff-bd29-e8e5c2b33014\",\r\n + \ \"Description\": null,\r\n \"StartDate\": \"\\/Date(1377258046000-0500)\\/\",\r\n + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258047000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258047000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": + true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": + null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:34 GMT + recorded_at: Fri, 23 Aug 2013 11:40:49 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6845/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6870/ body: encoding: US-ASCII string: '' @@ -125,7 +125,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:26 GMT + - Fri, 23 Aug 2013 11:40:40 GMT Content-Length: - '0' Connection: @@ -143,12 +143,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '127' + - '145' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:03:35 GMT + recorded_at: Fri, 23 Aug 2013 11:40:49 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id_and_options/returns_formatted_requested_entity.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id_and_options/returns_formatted_requested_entity.yml index 2e89836..3bbcbbe 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id_and_options/returns_formatted_requested_entity.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_correct_id_and_options/returns_formatted_requested_entity.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project5420802976","StartDate":"/Date(1377255815000+0300)/"}' + string: '{"Name":"Projectd7d6b242-2716-4b09-af06-6e7ddaeaaab3","StartDate":"/Date(1377258049000+0300)/"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:39 GMT + - Fri, 23 Aug 2013 11:40:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '763' + - '789' Connection: - keep-alive Keep-Alive: @@ -37,28 +37,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '535' + - '576' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6846,\r\n \"Name\": \"Project5420802976\",\r\n \"Description\": - null,\r\n \"StartDate\": \"\\/Date(1377255815000-0500)\\/\",\r\n \"EndDate\": - null,\r\n \"CreateDate\": \"\\/Date(1377255814000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1377255814000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": - \"\",\r\n \"NumericPriority\": 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": - false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n - \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + string: "{\r\n \"Id\": 6871,\r\n \"Name\": \"Projectd7d6b242-2716-4b09-af06-6e7ddaeaaab3\",\r\n + \ \"Description\": null,\r\n \"StartDate\": \"\\/Date(1377258049000-0500)\\/\",\r\n + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258049000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258049000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": + true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": + null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:36 GMT + recorded_at: Fri, 23 Aug 2013 11:40:50 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6846?append=%5BTasks-Count%5D&format=json&include=%5BTasks%5D + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6871?append=%5BTasks-Count%5D&format=json&include=%5BTasks%5D body: encoding: US-ASCII string: '' @@ -71,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:27 GMT + - Fri, 23 Aug 2013 11:40:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -91,18 +91,18 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '80' + - '84' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6846,\r\n \"Tasks-Count\": 0,\r\n \"Tasks\": {\r\n + string: "{\r\n \"Id\": 6871,\r\n \"Tasks-Count\": 0,\r\n \"Tasks\": {\r\n \ \"Items\": []\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:36 GMT + recorded_at: Fri, 23 Aug 2013 11:40:51 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6846/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6871/ body: encoding: US-ASCII string: '' @@ -115,7 +115,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:40 GMT + - Fri, 23 Aug 2013 11:40:55 GMT Content-Length: - '0' Connection: @@ -133,12 +133,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '127' + - '140' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:03:37 GMT + recorded_at: Fri, 23 Aug 2013 11:40:51 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_string/raise_TargetProcess_BadRequest_error.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_string/raise_TargetProcess_BadRequest_error.yml index fce5d99..9065456 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_string/raise_TargetProcess_BadRequest_error.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_string/raise_TargetProcess_BadRequest_error.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:28 GMT + - Fri, 23 Aug 2013 11:40:43 GMT Content-Type: - text/xml; charset=utf-8 Content-Length: @@ -58,5 +58,5 @@ http_interactions: controllerContext, String actionName)\r\n
{ ServerErrorCodes = System.String[] }
\r\n" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:37 GMT + recorded_at: Fri, 23 Aug 2013 11:40:52 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_unexisted_id/raise_an_TargetProcess_NotFound_error.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_unexisted_id/raise_an_TargetProcess_NotFound_error.yml index 1bc8e49..824f943 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_unexisted_id/raise_an_TargetProcess_NotFound_error.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_find/with_passed_unexisted_id/raise_an_TargetProcess_NotFound_error.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:41 GMT + - Fri, 23 Aug 2013 11:40:55 GMT Content-Type: - text/xml; charset=utf-8 Content-Length: @@ -61,5 +61,5 @@ http_interactions: parameters)\r\n at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)\r\n \r\n" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:37 GMT + recorded_at: Fri, 23 Aug 2013 11:40:52 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_meta/returns_project_metadata.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_meta/returns_project_metadata.yml index a3a2682..8964fd9 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_meta/returns_project_metadata.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_meta/returns_project_metadata.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:44 GMT + - Fri, 23 Aug 2013 11:40:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -35,7 +35,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '17' + - '18' X-Ua-Compatible: - IE=edge body: @@ -326,5 +326,5 @@ http_interactions: {\r\n \"Body\": \"Result of GET request is ordered by Name field with ascending direction.\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:41 GMT + recorded_at: Fri, 23 Aug 2013 11:40:55 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_edit_attribute_with_the_same_old_value_in_attributes/delete_attribute_from_changed_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_edit_attribute_with_the_same_old_value_in_attributes/delete_attribute_from_changed_attributes.yml index af00dbd..a505f2e 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_edit_attribute_with_the_same_old_value_in_attributes/delete_attribute_from_changed_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_edit_attribute_with_the_same_old_value_in_attributes/delete_attribute_from_changed_attributes.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project9042277860"}' + string: '{"Name":"Project7e134c1f-b0ec-4d6b-8531-235d8fb7fdca"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:36 GMT + - Fri, 23 Aug 2013 11:40:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '737' + - '763' Connection: - keep-alive Keep-Alive: @@ -37,27 +37,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '505' + - '504' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6849,\r\n \"Name\": \"Project9042277860\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255823000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255823000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6874,\r\n \"Name\": \"Project7e134c1f-b0ec-4d6b-8531-235d8fb7fdca\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258058000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258058000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:45 GMT + recorded_at: Fri, 23 Aug 2013 11:40:59 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6849/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6874/ body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:48 GMT + - Fri, 23 Aug 2013 11:41:03 GMT Content-Length: - '0' Connection: @@ -88,12 +89,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '124' + - '115' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:03:45 GMT + recorded_at: Fri, 23 Aug 2013 11:41:00 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_set_any_attribute/add_it_to_changed_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_set_any_attribute/add_it_to_changed_attributes.yml index 1b996c1..27763a0 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_set_any_attribute/add_it_to_changed_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/if_set_any_attribute/add_it_to_changed_attributes.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project830605716"}' + string: '{"Name":"Project63ffd146-9230-4c0b-99fd-5b46114eabc8"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:34 GMT + - Fri, 23 Aug 2013 11:40:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '736' + - '763' Connection: - keep-alive Keep-Alive: @@ -37,27 +37,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '472' + - '498' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6848,\r\n \"Name\": \"Project830605716\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255822000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255822000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6873,\r\n \"Name\": \"Project63ffd146-9230-4c0b-99fd-5b46114eabc8\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258056000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258056000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:43 GMT + recorded_at: Fri, 23 Aug 2013 11:40:58 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6848/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6873/ body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:47 GMT + - Fri, 23 Aug 2013 11:41:02 GMT Content-Length: - '0' Connection: @@ -88,12 +89,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '119' + - '145' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:03:44 GMT + recorded_at: Fri, 23 Aug 2013 11:40:58 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/provide_getters_for_attributes_values.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/provide_getters_for_attributes_values.yml index 5f6b439..1a92c48 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/provide_getters_for_attributes_values.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_method_missing/provide_getters_for_attributes_values.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project4092589350"}' + string: '{"Name":"Projecte8bbf283-ee85-414e-9745-5cac6852185e"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:33 GMT + - Fri, 23 Aug 2013 11:40:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '737' + - '763' Connection: - keep-alive Keep-Alive: @@ -37,27 +37,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '548' + - '519' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6847,\r\n \"Name\": \"Project4092589350\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255820000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255820000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6872,\r\n \"Name\": \"Projecte8bbf283-ee85-414e-9745-5cac6852185e\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258055000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258055000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:42 GMT + recorded_at: Fri, 23 Aug 2013 11:40:56 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6847/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6872/ body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:46 GMT + - Fri, 23 Aug 2013 11:41:00 GMT Content-Length: - '0' Connection: @@ -88,12 +89,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '125' + - '113' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:03:42 GMT + recorded_at: Fri, 23 Aug 2013 11:40:57 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_required_fields/save_it_on_remote_host_and_update_local_instance_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_required_fields/save_it_on_remote_host_and_update_local_instance_attributes.yml index a19e06d..f5df13b 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_required_fields/save_it_on_remote_host_and_update_local_instance_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_required_fields/save_it_on_remote_host_and_update_local_instance_attributes.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project8569975128"}' + string: '{"Name":"Projectc7749be8-bb93-4a20-9d8f-da143adca1e5"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:51 GMT + - Fri, 23 Aug 2013 11:41:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '737' + - '763' Connection: - keep-alive Keep-Alive: @@ -42,22 +42,23 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6851,\r\n \"Name\": \"Project8569975128\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255827000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255827000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6876,\r\n \"Name\": \"Projectc7749be8-bb93-4a20-9d8f-da143adca1e5\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258061000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258061000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:48 GMT + recorded_at: Fri, 23 Aug 2013 11:41:03 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6851?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6876?format=json body: encoding: US-ASCII string: '' @@ -70,11 +71,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:39 GMT + - Fri, 23 Aug 2013 11:40:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '737' + - '763' Connection: - keep-alive Keep-Alive: @@ -90,24 +91,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '68' + - '51' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6851,\r\n \"Name\": \"Project8569975128\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255827000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255827000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6876,\r\n \"Name\": \"Projectc7749be8-bb93-4a20-9d8f-da143adca1e5\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258061000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258061000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:48 GMT + recorded_at: Fri, 23 Aug 2013 11:41:03 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -123,7 +125,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:52 GMT + - Fri, 23 Aug 2013 11:41:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -151,7 +153,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:49 GMT + recorded_at: Fri, 23 Aug 2013 11:41:03 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -167,7 +169,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:40 GMT + - Fri, 23 Aug 2013 11:40:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -187,7 +189,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -195,7 +197,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:49 GMT + recorded_at: Fri, 23 Aug 2013 11:41:04 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -211,7 +213,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:53 GMT + - Fri, 23 Aug 2013 11:41:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -231,7 +233,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '7' X-Ua-Compatible: - IE=edge body: @@ -242,7 +244,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:49 GMT + recorded_at: Fri, 23 Aug 2013 11:41:04 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -258,7 +260,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:41 GMT + - Fri, 23 Aug 2013 11:40:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -289,7 +291,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:50 GMT + recorded_at: Fri, 23 Aug 2013 11:41:04 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -305,7 +307,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:53 GMT + - Fri, 23 Aug 2013 11:41:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -325,7 +327,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -334,7 +336,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:50 GMT + recorded_at: Fri, 23 Aug 2013 11:41:05 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -350,7 +352,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:41 GMT + - Fri, 23 Aug 2013 11:40:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -379,10 +381,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:50 GMT + recorded_at: Fri, 23 Aug 2013 11:41:05 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6851/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6876/ body: encoding: US-ASCII string: '' @@ -395,7 +397,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:54 GMT + - Fri, 23 Aug 2013 11:41:09 GMT Content-Length: - '0' Connection: @@ -413,12 +415,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '113' + - '111' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:03:51 GMT + recorded_at: Fri, 23 Aug 2013 11:41:06 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_updated_attributes/updates_task_on_remote_host_and_clean_changed_attributes.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_updated_attributes/updates_task_on_remote_host_and_clean_changed_attributes.yml index 680498e..40cd228 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_updated_attributes/updates_task_on_remote_host_and_clean_changed_attributes.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_project_with_updated_attributes/updates_task_on_remote_host_and_clean_changed_attributes.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project1470738225"}' + string: '{"Name":"Project1c1effa4-13ea-4c3b-9f7c-769e908deef2"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:43 GMT + - Fri, 23 Aug 2013 11:40:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '737' + - '763' Connection: - keep-alive Keep-Alive: @@ -37,30 +37,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '518' + - '511' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6852,\r\n \"Name\": \"Project1470738225\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255831000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255831000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6877,\r\n \"Name\": \"Project1c1effa4-13ea-4c3b-9f7c-769e908deef2\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258065000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258065000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:52 GMT + recorded_at: Fri, 23 Aug 2013 11:41:07 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project_new_name539483213","Id":6852}' + string: '{"Name":"Project_new_named9feecaf-1654-4ee9-8ff9-5e10d68cb6d5","Id":6877}' headers: Content-Type: - application/json @@ -72,11 +73,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:56 GMT + - Fri, 23 Aug 2013 11:41:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '745' + - '772' Connection: - keep-alive Keep-Alive: @@ -92,16 +93,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '112' + - '120' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6852,\r\n \"Name\": \"Project_new_name539483213\",\r\n + string: "{\r\n \"Id\": 6877,\r\n \"Name\": \"Project_new_named9feecaf-1654-4ee9-8ff9-5e10d68cb6d5\",\r\n \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n - \ \"CreateDate\": \"\\/Date(1377255831000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1377255832000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": - \"\",\r\n \"NumericPriority\": 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + \ \"CreateDate\": \"\\/Date(1377258065000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258066000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -110,10 +111,10 @@ http_interactions: \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:53 GMT + recorded_at: Fri, 23 Aug 2013 11:41:07 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6852?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6877?format=json body: encoding: US-ASCII string: '' @@ -126,11 +127,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:44 GMT + - Fri, 23 Aug 2013 11:40:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '745' + - '772' Connection: - keep-alive Keep-Alive: @@ -146,16 +147,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '60' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6852,\r\n \"Name\": \"Project_new_name539483213\",\r\n + string: "{\r\n \"Id\": 6877,\r\n \"Name\": \"Project_new_named9feecaf-1654-4ee9-8ff9-5e10d68cb6d5\",\r\n \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n - \ \"CreateDate\": \"\\/Date(1377255831000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1377255832000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": - \"\",\r\n \"NumericPriority\": 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + \ \"CreateDate\": \"\\/Date(1377258065000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258066000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -164,7 +165,7 @@ http_interactions: \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:53 GMT + recorded_at: Fri, 23 Aug 2013 11:41:08 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -180,7 +181,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:57 GMT + - Fri, 23 Aug 2013 11:41:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -200,7 +201,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -208,7 +209,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:53 GMT + recorded_at: Fri, 23 Aug 2013 11:41:08 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -224,7 +225,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:45 GMT + - Fri, 23 Aug 2013 11:40:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -252,7 +253,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:54 GMT + recorded_at: Fri, 23 Aug 2013 11:41:08 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -268,7 +269,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:57 GMT + - Fri, 23 Aug 2013 11:41:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -299,7 +300,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:54 GMT + recorded_at: Fri, 23 Aug 2013 11:41:09 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -315,7 +316,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:45 GMT + - Fri, 23 Aug 2013 11:41:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -346,7 +347,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:54 GMT + recorded_at: Fri, 23 Aug 2013 11:41:09 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -362,7 +363,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:58 GMT + - Fri, 23 Aug 2013 11:41:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -391,7 +392,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:55 GMT + recorded_at: Fri, 23 Aug 2013 11:41:09 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -407,7 +408,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:46 GMT + - Fri, 23 Aug 2013 11:41:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -427,7 +428,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -436,10 +437,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:55 GMT + recorded_at: Fri, 23 Aug 2013 11:41:10 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6852/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6877/ body: encoding: US-ASCII string: '' @@ -452,7 +453,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:59 GMT + - Fri, 23 Aug 2013 11:41:14 GMT Content-Length: - '0' Connection: @@ -470,12 +471,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '113' + - '135' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:03:55 GMT + recorded_at: Fri, 23 Aug 2013 11:41:10 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_up-to-date_local_project/do_nothing_with_local_instance.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_up-to-date_local_project/do_nothing_with_local_instance.yml index 46cf5d7..44f0867 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_up-to-date_local_project/do_nothing_with_local_instance.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_save/called_on_up-to-date_local_project/do_nothing_with_local_instance.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Project114128301"}' + string: '{"Name":"Project0d074ec6-a265-40b6-baf4-56bdff76ba2f"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:47 GMT + - Fri, 23 Aug 2013 11:41:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '736' + - '763' Connection: - keep-alive Keep-Alive: @@ -37,30 +37,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '491' + - '531' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6853,\r\n \"Name\": \"Project114128301\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255835000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255835000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6878,\r\n \"Name\": \"Project0d074ec6-a265-40b6-baf4-56bdff76ba2f\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258070000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258070000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:56 GMT + recorded_at: Fri, 23 Aug 2013 11:41:11 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Id":6853}' + string: '{"Id":6878}' headers: Content-Type: - application/json @@ -72,11 +73,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:00 GMT + - Fri, 23 Aug 2013 11:41:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '736' + - '763' Connection: - keep-alive Keep-Alive: @@ -92,27 +93,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '64' + - '74' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6853,\r\n \"Name\": \"Project114128301\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255835000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255835000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6878,\r\n \"Name\": \"Project0d074ec6-a265-40b6-baf4-56bdff76ba2f\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258070000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258070000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:57 GMT + recorded_at: Fri, 23 Aug 2013 11:41:12 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6853?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6878?format=json body: encoding: US-ASCII string: '' @@ -125,11 +127,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:48 GMT + - Fri, 23 Aug 2013 11:41:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '736' + - '763' Connection: - keep-alive Keep-Alive: @@ -145,24 +147,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '53' + - '48' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6853,\r\n \"Name\": \"Project114128301\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255835000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255835000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6878,\r\n \"Name\": \"Project0d074ec6-a265-40b6-baf4-56bdff76ba2f\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258070000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258070000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:57 GMT + recorded_at: Fri, 23 Aug 2013 11:41:12 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -178,7 +181,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:01 GMT + - Fri, 23 Aug 2013 11:41:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -206,7 +209,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:58 GMT + recorded_at: Fri, 23 Aug 2013 11:41:13 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -222,7 +225,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:49 GMT + - Fri, 23 Aug 2013 11:41:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -250,7 +253,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:58 GMT + recorded_at: Fri, 23 Aug 2013 11:41:13 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -266,7 +269,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:02 GMT + - Fri, 23 Aug 2013 11:41:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -286,7 +289,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -297,7 +300,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:58 GMT + recorded_at: Fri, 23 Aug 2013 11:41:13 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -313,7 +316,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:50 GMT + - Fri, 23 Aug 2013 11:41:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -333,7 +336,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -344,7 +347,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:59 GMT + recorded_at: Fri, 23 Aug 2013 11:41:14 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -360,7 +363,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:03 GMT + - Fri, 23 Aug 2013 11:41:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -389,7 +392,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:59 GMT + recorded_at: Fri, 23 Aug 2013 11:41:14 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -405,7 +408,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:51 GMT + - Fri, 23 Aug 2013 11:41:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -434,10 +437,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:00 GMT + recorded_at: Fri, 23 Aug 2013 11:41:14 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6853/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6878/ body: encoding: US-ASCII string: '' @@ -450,7 +453,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:03 GMT + - Fri, 23 Aug 2013 11:41:18 GMT Content-Length: - '0' Connection: @@ -468,12 +471,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '112' + - '121' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:04:00 GMT + recorded_at: Fri, 23 Aug 2013 11:41:15 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_correct_condition/return_array_of_subjects.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_correct_condition/return_array_of_subjects.yml index cb7f121..6f11d49 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_correct_condition/return_array_of_subjects.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_correct_condition/return_array_of_subjects.yml @@ -15,11 +15,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:30 GMT + - Fri, 23 Aug 2013 11:40:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '21972' + - '21973' Connection: - keep-alive Keep-Alive: @@ -35,7 +35,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '175' + - '186' X-Ua-Compatible: - IE=edge body: @@ -318,11 +318,11 @@ http_interactions: \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n - \ {\r\n \"Id\": 6204,\r\n \"Name\": \"Pro334133141\",\r\n \"Description\": + \ {\r\n \"Id\": 6857,\r\n \"Name\": \"Pro305079333\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377157592000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377157592000-0500)\\/\",\r\n + \"\\/Date(1377255856000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255856000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 76.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -330,11 +330,11 @@ http_interactions: \ \"LastCommentedUser\": null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n },\r\n - \ {\r\n \"Id\": 5549,\r\n \"Name\": \"Pro345369757\",\r\n \"Description\": + \ {\r\n \"Id\": 6204,\r\n \"Name\": \"Pro334133141\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377101058000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377101058000-0500)\\/\",\r\n + \"\\/Date(1377157592000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377157592000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 45.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": + 76.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \ \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": @@ -344,5 +344,5 @@ http_interactions: \ },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n }\r\n \ ]\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:39 GMT + recorded_at: Fri, 23 Aug 2013 11:40:54 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_random_string_without_search_condition/raise_an_TargetProcess_BadRequest.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_random_string_without_search_condition/raise_an_TargetProcess_BadRequest.yml index 1f7cb79..6c835d0 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_random_string_without_search_condition/raise_an_TargetProcess_BadRequest.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_random_string_without_search_condition/raise_an_TargetProcess_BadRequest.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:31 GMT + - Fri, 23 Aug 2013 11:40:46 GMT Content-Type: - text/xml; charset=utf-8 Content-Length: @@ -78,5 +78,5 @@ http_interactions: ResourceContext resourceContext) in c:\\.jenkins\\workspace\\BuildPackage\\Code\\Main\\Tp.Rest.Web\\Controllers\\RequestParameters.cs:line 233\r\n \r\n \r\n" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:40 GMT + recorded_at: Fri, 23 Aug 2013 11:40:55 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_search_condition_and_options/return_array_of_subject_with_conditions.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_search_condition_and_options/return_array_of_subject_with_conditions.yml index 555038f..2b8d097 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_search_condition_and_options/return_array_of_subject_with_conditions.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/_where/with_search_condition_and_options/return_array_of_subject_with_conditions.yml @@ -15,7 +15,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:03:43 GMT + - Fri, 23 Aug 2013 11:40:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -35,18 +35,18 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '162' + - '169' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: "{\r\n \"Next\": \"http://tpruby.tpondemand.com/api/v1/Projects/?where=CreateDate lt \\\"2014-10-10\\\"&orderByDesc=id&format=json&take=1&skip=1\",\r\n \"Items\": - [\r\n {\r\n \"Id\": 6826,\r\n \"Name\": \"Pro471072885\",\r\n + [\r\n {\r\n \"Id\": 6857,\r\n \"Name\": \"Pro305079333\",\r\n \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": - null,\r\n \"CreateDate\": \"\\/Date(1377246357000-0500)\\/\",\r\n \"ModifyDate\": - \"\\/Date(1377246357000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n - \ \"Tags\": \"\",\r\n \"NumericPriority\": 112.0,\r\n \"IsActive\": + null,\r\n \"CreateDate\": \"\\/Date(1377255856000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377255856000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n + \ \"Tags\": \"\",\r\n \"NumericPriority\": 113.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": \"PRO\",\r\n \ \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": @@ -56,5 +56,5 @@ http_interactions: 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \ \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:03:40 GMT + recorded_at: Fri, 23 Aug 2013 11:40:54 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_different_class.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_different_class.yml index ef26de0..045e322 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_different_class.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_different_class.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Pro574423864"}' + string: '{"Name":"Pro585180c6-a285-40f7-a3d5-0986c8d81a11"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:55 GMT + - Fri, 23 Aug 2013 11:43:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -37,30 +37,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '499' + - '601' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6866,\r\n \"Name\": \"Pro574423864\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377256011000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377256011000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6891,\r\n \"Name\": \"Pro585180c6-a285-40f7-a3d5-0986c8d81a11\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258245000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258245000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:52 GMT + recorded_at: Fri, 23 Aug 2013 11:44:07 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/ body: encoding: UTF-8 - string: '{"Name":"story2","Project":{"id":6866},"Owner":{"id":1}}' + string: '{"Name":"story2","Project":{"id":6891},"Owner":{"id":1}}' headers: Content-Type: - application/json @@ -72,11 +73,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:44 GMT + - Fri, 23 Aug 2013 11:44:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -92,33 +93,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '200' + - '203' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6867,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6892,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377256012000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377256012000-0500)\\/\",\r\n + \"\\/Date(1377258246000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258246000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6866,\r\n \"Name\": \"Pro574423864\"\r\n + \ \"Project\": {\r\n \"Id\": 6891,\r\n \"Name\": \"Pro585180c6-a285-40f7-a3d5-0986c8d81a11\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:53 GMT + recorded_at: Fri, 23 Aug 2013 11:44:07 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Assignments/ body: encoding: UTF-8 - string: '{"Assignable":{"id":6867},"GeneralUser":{"id":1},"Role":{"id":1}}' + string: '{"Assignable":{"id":6892},"GeneralUser":{"id":1},"Role":{"id":1}}' headers: Content-Type: - application/json @@ -130,7 +131,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:57 GMT + - Fri, 23 Aug 2013 11:43:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -150,21 +151,21 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '95' + - '86' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 239,\r\n \"Assignable\": {\r\n \"Id\": 6867,\r\n + string: "{\r\n \"Id\": 240,\r\n \"Assignable\": {\r\n \"Id\": 6892,\r\n \ \"Name\": \"story2\"\r\n },\r\n \"GeneralUser\": {\r\n \"Kind\": \"User\",\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"Role\": {\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:53 GMT + recorded_at: Fri, 23 Aug 2013 11:44:08 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6867/AssignedUser?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6892/AssignedUser?format=json body: encoding: US-ASCII string: '' @@ -177,7 +178,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:45 GMT + - Fri, 23 Aug 2013 11:44:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -197,7 +198,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '19' + - '18' X-Ua-Compatible: - IE=edge body: @@ -209,10 +210,10 @@ http_interactions: \ \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n }\r\n ]\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:54 GMT + recorded_at: Fri, 23 Aug 2013 11:44:08 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6867/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6892/ body: encoding: US-ASCII string: '' @@ -225,7 +226,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:58 GMT + - Fri, 23 Aug 2013 11:44:00 GMT Content-Length: - '0' Connection: @@ -243,17 +244,17 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '235' + - '215' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:06:54 GMT + recorded_at: Fri, 23 Aug 2013 11:44:09 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6866/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6891/ body: encoding: US-ASCII string: '' @@ -266,7 +267,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:46 GMT + - Fri, 23 Aug 2013 11:44:13 GMT Content-Length: - '0' Connection: @@ -284,12 +285,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '127' + - '114' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:06:55 GMT + recorded_at: Fri, 23 Aug 2013 11:44:09 GMT recorded_with: VCR 2.5.0 diff --git a/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_symbol-named_class.yml b/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_symbol-named_class.yml index 8bcdd24..070d024 100644 --- a/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_symbol-named_class.yml +++ b/spec/fixtures/vcr_cassettes/TargetProcess_Base/has_many/provides_getters_for_collections_with_symbol-named_class.yml @@ -5,7 +5,7 @@ http_interactions: uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/ body: encoding: UTF-8 - string: '{"Name":"Pro170019915"}' + string: '{"Name":"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:33 GMT + - Fri, 23 Aug 2013 11:41:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -37,30 +37,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '479' + - '566' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:30 GMT + recorded_at: Fri, 23 Aug 2013 11:41:46 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/ body: encoding: UTF-8 - string: '{"Name":"story2","Project":{"id":6859}}' + string: '{"Name":"story2","Project":{"id":6884}}' headers: Content-Type: - application/json @@ -72,11 +73,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:22 GMT + - Fri, 23 Aug 2013 11:41:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -92,33 +93,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '201' + - '217' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:31 GMT + recorded_at: Fri, 23 Aug 2013 11:41:47 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Tasks/ body: encoding: UTF-8 - string: '{"Name":"task","UserStory":{"id":6860}}' + string: '{"Name":"task","UserStory":{"id":6885}}' headers: Content-Type: - application/json @@ -130,11 +131,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:35 GMT + - Fri, 23 Aug 2013 11:41:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '943' + - '970' Connection: - keep-alive Keep-Alive: @@ -150,34 +151,34 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '279' + - '211' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6861,\r\n \"Name\": \"task\",\r\n \"Description\": + string: "{\r\n \"Id\": 6886,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255870000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255870000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \"Release\": - null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": - null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n - \ \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n - \ \"UserStory\": {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n}" + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": + \"-\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": + \"Open\"\r\n },\r\n \"UserStory\": {\r\n \"Id\": 6885,\r\n \"Name\": + \"story2\"\r\n },\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:31 GMT + recorded_at: Fri, 23 Aug 2013 11:41:47 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Tasks/ body: encoding: UTF-8 - string: '{"Name":"task","UserStory":{"id":6860}}' + string: '{"Name":"task","UserStory":{"id":6885}}' headers: Content-Type: - application/json @@ -189,11 +190,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:23 GMT + - Fri, 23 Aug 2013 11:41:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '943' + - '970' Connection: - keep-alive Keep-Alive: @@ -209,34 +210,34 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '474' + - '277' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6862,\r\n \"Name\": \"task\",\r\n \"Description\": + string: "{\r\n \"Id\": 6887,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255871000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255871000-0500)\\/\",\r\n + \"\\/Date(1377258107000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258107000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 233.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 234.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \"Release\": - null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": - null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n - \ \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n - \ \"UserStory\": {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n}" + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": + \"-\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": + \"Open\"\r\n },\r\n \"UserStory\": {\r\n \"Id\": 6885,\r\n \"Name\": + \"story2\"\r\n },\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:32 GMT + recorded_at: Fri, 23 Aug 2013 11:41:48 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Tasks/ body: encoding: UTF-8 - string: '{"Name":"task","UserStory":{"id":6860}}' + string: '{"Name":"task","UserStory":{"id":6885}}' headers: Content-Type: - application/json @@ -248,11 +249,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:36 GMT + - Fri, 23 Aug 2013 11:41:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '943' + - '970' Connection: - keep-alive Keep-Alive: @@ -268,34 +269,34 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '218' + - '231' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6863,\r\n \"Name\": \"task\",\r\n \"Description\": + string: "{\r\n \"Id\": 6888,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255872000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255872000-0500)\\/\",\r\n + \"\\/Date(1377258108000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258108000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 234.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 234.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \"Release\": - null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": - null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n - \ \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n - \ \"UserStory\": {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n}" + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": + \"-\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": + \"Open\"\r\n },\r\n \"UserStory\": {\r\n \"Id\": 6885,\r\n \"Name\": + \"story2\"\r\n },\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:33 GMT + recorded_at: Fri, 23 Aug 2013 11:41:49 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Tasks/ body: encoding: UTF-8 - string: '{"Name":"task","UserStory":{"id":6860}}' + string: '{"Name":"task","UserStory":{"id":6885}}' headers: Content-Type: - application/json @@ -307,11 +308,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:25 GMT + - Fri, 23 Aug 2013 11:41:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '943' + - '970' Connection: - keep-alive Keep-Alive: @@ -332,29 +333,29 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6864,\r\n \"Name\": \"task\",\r\n \"Description\": + string: "{\r\n \"Id\": 6889,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255873000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n + \"\\/Date(1377258109000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258109000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 234.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 235.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \"Release\": - null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": - null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n - \ \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n - \ \"UserStory\": {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n}" + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": + \"-\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": + \"Open\"\r\n },\r\n \"UserStory\": {\r\n \"Id\": 6885,\r\n \"Name\": + \"story2\"\r\n },\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:34 GMT + recorded_at: Fri, 23 Aug 2013 11:41:50 GMT - request: method: post uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Tasks/ body: encoding: UTF-8 - string: '{"Name":"task","UserStory":{"id":6860}}' + string: '{"Name":"task","UserStory":{"id":6885}}' headers: Content-Type: - application/json @@ -366,11 +367,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:38 GMT + - Fri, 23 Aug 2013 11:41:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '943' + - '970' Connection: - keep-alive Keep-Alive: @@ -386,31 +387,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '213' + - '233' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6865,\r\n \"Name\": \"task\",\r\n \"Description\": + string: "{\r\n \"Id\": 6890,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255873000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n + \"\\/Date(1377258109000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258109000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 235.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 235.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n \"Release\": - null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": - null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n - \ \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n - \ \"UserStory\": {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n}" + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": + \"-\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 50,\r\n \"Name\": + \"Open\"\r\n },\r\n \"UserStory\": {\r\n \"Id\": 6885,\r\n \"Name\": + \"story2\"\r\n },\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:34 GMT + recorded_at: Fri, 23 Aug 2013 11:41:50 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860/Tasks?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885/Tasks?format=json body: encoding: US-ASCII string: '' @@ -423,11 +424,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:26 GMT + - Fri, 23 Aug 2013 11:41:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '5712' + - '5847' Connection: - keep-alive Keep-Alive: @@ -443,94 +444,94 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '141' + - '62' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 6861,\r\n \"Name\": + string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 6886,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255870000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377255870000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 233.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 233.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n - \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6862,\r\n \"Name\": + {\r\n \"Id\": 6885,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6887,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255871000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377255871000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 233.5,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258107000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258107000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 234.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n - \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6863,\r\n \"Name\": + {\r\n \"Id\": 6885,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6888,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255872000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377255872000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 234.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258108000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258108000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 234.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n - \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6864,\r\n \"Name\": + {\r\n \"Id\": 6885,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6889,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 234.5,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258109000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258109000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 235.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n - \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6865,\r\n \"Name\": + {\r\n \"Id\": 6885,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6890,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 235.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258109000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258109000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 235.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n - \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n + {\r\n \"Id\": 6885,\r\n \"Name\": \"story2\"\r\n },\r\n \ \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:35 GMT + recorded_at: Fri, 23 Aug 2013 11:41:51 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -546,7 +547,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:39 GMT + - Fri, 23 Aug 2013 11:41:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -574,7 +575,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:35 GMT + recorded_at: Fri, 23 Aug 2013 11:41:51 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -590,7 +591,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:27 GMT + - Fri, 23 Aug 2013 11:41:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -610,7 +611,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -618,7 +619,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:36 GMT + recorded_at: Fri, 23 Aug 2013 11:41:51 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -634,7 +635,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:39 GMT + - Fri, 23 Aug 2013 11:41:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -665,7 +666,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:36 GMT + recorded_at: Fri, 23 Aug 2013 11:41:52 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -681,7 +682,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:27 GMT + - Fri, 23 Aug 2013 11:41:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -712,10 +713,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:36 GMT + recorded_at: Fri, 23 Aug 2013 11:41:52 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -728,11 +729,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:40 GMT + - Fri, 23 Aug 2013 11:41:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -748,27 +749,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '48' + - '51' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:37 GMT + recorded_at: Fri, 23 Aug 2013 11:41:53 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -781,11 +783,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:28 GMT + - Fri, 23 Aug 2013 11:41:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -801,24 +803,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '58' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:37 GMT + recorded_at: Fri, 23 Aug 2013 11:41:53 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -834,7 +837,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:41 GMT + - Fri, 23 Aug 2013 11:41:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -862,7 +865,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:38 GMT + recorded_at: Fri, 23 Aug 2013 11:41:53 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -878,7 +881,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:29 GMT + - Fri, 23 Aug 2013 11:41:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -906,7 +909,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:38 GMT + recorded_at: Fri, 23 Aug 2013 11:41:54 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -922,7 +925,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:42 GMT + - Fri, 23 Aug 2013 11:41:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -942,7 +945,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -953,7 +956,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:39 GMT + recorded_at: Fri, 23 Aug 2013 11:41:54 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -969,7 +972,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:30 GMT + - Fri, 23 Aug 2013 11:41:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -989,7 +992,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -1000,7 +1003,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:39 GMT + recorded_at: Fri, 23 Aug 2013 11:41:54 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -1016,7 +1019,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:43 GMT + - Fri, 23 Aug 2013 11:41:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1045,7 +1048,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:39 GMT + recorded_at: Fri, 23 Aug 2013 11:41:55 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -1061,7 +1064,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:31 GMT + - Fri, 23 Aug 2013 11:41:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1090,7 +1093,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:40 GMT + recorded_at: Fri, 23 Aug 2013 11:41:55 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json @@ -1106,7 +1109,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:43 GMT + - Fri, 23 Aug 2013 11:41:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1126,7 +1129,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '8' X-Ua-Compatible: - IE=edge body: @@ -1135,7 +1138,7 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:40 GMT + recorded_at: Fri, 23 Aug 2013 11:41:55 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json @@ -1151,7 +1154,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:31 GMT + - Fri, 23 Aug 2013 11:41:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1180,7 +1183,7 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:40 GMT + recorded_at: Fri, 23 Aug 2013 11:41:56 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -1196,7 +1199,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:44 GMT + - Fri, 23 Aug 2013 11:41:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1216,7 +1219,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1224,7 +1227,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:41 GMT + recorded_at: Fri, 23 Aug 2013 11:41:56 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -1240,7 +1243,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:32 GMT + - Fri, 23 Aug 2013 11:41:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1260,7 +1263,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '7' X-Ua-Compatible: - IE=edge body: @@ -1268,7 +1271,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:41 GMT + recorded_at: Fri, 23 Aug 2013 11:41:57 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json @@ -1284,7 +1287,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:45 GMT + - Fri, 23 Aug 2013 11:42:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1304,7 +1307,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -1316,7 +1319,7 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:41 GMT + recorded_at: Fri, 23 Aug 2013 11:41:57 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json @@ -1332,7 +1335,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:33 GMT + - Fri, 23 Aug 2013 11:41:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1352,7 +1355,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -1364,7 +1367,7 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:42 GMT + recorded_at: Fri, 23 Aug 2013 11:41:57 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json @@ -1380,7 +1383,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:46 GMT + - Fri, 23 Aug 2013 11:42:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1400,7 +1403,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1408,7 +1411,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:42 GMT + recorded_at: Fri, 23 Aug 2013 11:41:58 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json @@ -1424,7 +1427,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:34 GMT + - Fri, 23 Aug 2013 11:41:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1444,7 +1447,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1452,7 +1455,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:43 GMT + recorded_at: Fri, 23 Aug 2013 11:41:58 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -1468,7 +1471,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:46 GMT + - Fri, 23 Aug 2013 11:42:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1496,7 +1499,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:43 GMT + recorded_at: Fri, 23 Aug 2013 11:41:58 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -1512,7 +1515,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:34 GMT + - Fri, 23 Aug 2013 11:41:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1532,7 +1535,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '29' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1540,7 +1543,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:43 GMT + recorded_at: Fri, 23 Aug 2013 11:41:59 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -1556,7 +1559,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:47 GMT + - Fri, 23 Aug 2013 11:42:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1585,7 +1588,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:44 GMT + recorded_at: Fri, 23 Aug 2013 11:41:59 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -1601,7 +1604,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:35 GMT + - Fri, 23 Aug 2013 11:41:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1621,7 +1624,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1630,10 +1633,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:44 GMT + recorded_at: Fri, 23 Aug 2013 11:42:00 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -1646,11 +1649,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:48 GMT + - Fri, 23 Aug 2013 11:42:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -1666,30 +1669,30 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '65' + - '66' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:44 GMT + recorded_at: Fri, 23 Aug 2013 11:42:00 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -1702,11 +1705,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:37 GMT + - Fri, 23 Aug 2013 11:41:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -1722,27 +1725,27 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '72' + - '62' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:46 GMT + recorded_at: Fri, 23 Aug 2013 11:42:00 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -1758,7 +1761,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:49 GMT + - Fri, 23 Aug 2013 11:42:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1786,7 +1789,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:46 GMT + recorded_at: Fri, 23 Aug 2013 11:42:01 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -1802,7 +1805,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:37 GMT + - Fri, 23 Aug 2013 11:41:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1830,7 +1833,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:46 GMT + recorded_at: Fri, 23 Aug 2013 11:42:01 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -1846,7 +1849,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:50 GMT + - Fri, 23 Aug 2013 11:42:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1866,7 +1869,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -1877,7 +1880,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:47 GMT + recorded_at: Fri, 23 Aug 2013 11:42:01 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -1893,7 +1896,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:38 GMT + - Fri, 23 Aug 2013 11:41:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1924,10 +1927,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:47 GMT + recorded_at: Fri, 23 Aug 2013 11:42:02 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -1940,11 +1943,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:51 GMT + - Fri, 23 Aug 2013 11:42:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -1960,27 +1963,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '48' + - '52' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:48 GMT + recorded_at: Fri, 23 Aug 2013 11:42:02 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -1993,11 +1997,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:39 GMT + - Fri, 23 Aug 2013 11:41:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -2013,24 +2017,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '48' + - '49' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:48 GMT + recorded_at: Fri, 23 Aug 2013 11:42:03 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -2046,7 +2051,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:52 GMT + - Fri, 23 Aug 2013 11:42:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2066,7 +2071,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '4' X-Ua-Compatible: - IE=edge body: @@ -2074,7 +2079,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:48 GMT + recorded_at: Fri, 23 Aug 2013 11:42:03 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -2090,7 +2095,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:40 GMT + - Fri, 23 Aug 2013 11:41:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2110,7 +2115,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -2118,7 +2123,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:49 GMT + recorded_at: Fri, 23 Aug 2013 11:42:03 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -2134,7 +2139,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:52 GMT + - Fri, 23 Aug 2013 11:42:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2165,7 +2170,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:49 GMT + recorded_at: Fri, 23 Aug 2013 11:42:04 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -2181,7 +2186,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:40 GMT + - Fri, 23 Aug 2013 11:41:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2201,7 +2206,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -2212,7 +2217,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:49 GMT + recorded_at: Fri, 23 Aug 2013 11:42:04 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -2228,7 +2233,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:53 GMT + - Fri, 23 Aug 2013 11:42:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2248,7 +2253,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '4' X-Ua-Compatible: - IE=edge body: @@ -2257,7 +2262,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:50 GMT + recorded_at: Fri, 23 Aug 2013 11:42:04 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -2273,7 +2278,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:41 GMT + - Fri, 23 Aug 2013 11:41:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2293,7 +2298,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -2302,7 +2307,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:50 GMT + recorded_at: Fri, 23 Aug 2013 11:42:05 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -2318,7 +2323,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:54 GMT + - Fri, 23 Aug 2013 11:42:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2338,7 +2343,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '7' X-Ua-Compatible: - IE=edge body: @@ -2347,7 +2352,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:50 GMT + recorded_at: Fri, 23 Aug 2013 11:42:05 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -2363,7 +2368,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:42 GMT + - Fri, 23 Aug 2013 11:41:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2383,7 +2388,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '6' X-Ua-Compatible: - IE=edge body: @@ -2392,7 +2397,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:51 GMT + recorded_at: Fri, 23 Aug 2013 11:42:05 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -2408,7 +2413,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:54 GMT + - Fri, 23 Aug 2013 11:42:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2436,7 +2441,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:51 GMT + recorded_at: Fri, 23 Aug 2013 11:42:06 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -2452,7 +2457,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:42 GMT + - Fri, 23 Aug 2013 11:41:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2472,7 +2477,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -2480,7 +2485,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:51 GMT + recorded_at: Fri, 23 Aug 2013 11:42:06 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -2496,7 +2501,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:55 GMT + - Fri, 23 Aug 2013 11:42:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2516,7 +2521,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -2527,7 +2532,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:52 GMT + recorded_at: Fri, 23 Aug 2013 11:42:06 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -2543,7 +2548,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:43 GMT + - Fri, 23 Aug 2013 11:41:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2574,7 +2579,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:52 GMT + recorded_at: Fri, 23 Aug 2013 11:42:07 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -2590,7 +2595,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:56 GMT + - Fri, 23 Aug 2013 11:42:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2610,7 +2615,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '4' X-Ua-Compatible: - IE=edge body: @@ -2618,7 +2623,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:52 GMT + recorded_at: Fri, 23 Aug 2013 11:42:07 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -2634,7 +2639,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:44 GMT + - Fri, 23 Aug 2013 11:41:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2654,7 +2659,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -2662,7 +2667,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:53 GMT + recorded_at: Fri, 23 Aug 2013 11:42:07 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -2678,7 +2683,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:56 GMT + - Fri, 23 Aug 2013 11:42:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2707,7 +2712,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:53 GMT + recorded_at: Fri, 23 Aug 2013 11:42:08 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -2723,7 +2728,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:44 GMT + - Fri, 23 Aug 2013 11:41:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2752,7 +2757,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:53 GMT + recorded_at: Fri, 23 Aug 2013 11:42:08 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -2768,7 +2773,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:57 GMT + - Fri, 23 Aug 2013 11:42:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2788,7 +2793,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -2796,7 +2801,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:54 GMT + recorded_at: Fri, 23 Aug 2013 11:42:08 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -2812,7 +2817,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:45 GMT + - Fri, 23 Aug 2013 11:42:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2840,7 +2845,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:54 GMT + recorded_at: Fri, 23 Aug 2013 11:42:09 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -2856,7 +2861,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:58 GMT + - Fri, 23 Aug 2013 11:42:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2876,7 +2881,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '13' + - '6' X-Ua-Compatible: - IE=edge body: @@ -2887,7 +2892,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:55 GMT + recorded_at: Fri, 23 Aug 2013 11:42:09 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -2903,7 +2908,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:46 GMT + - Fri, 23 Aug 2013 11:42:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2923,7 +2928,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '6' X-Ua-Compatible: - IE=edge body: @@ -2934,10 +2939,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:55 GMT + recorded_at: Fri, 23 Aug 2013 11:42:09 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -2950,11 +2955,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:59 GMT + - Fri, 23 Aug 2013 11:42:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -2970,27 +2975,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '61' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:56 GMT + recorded_at: Fri, 23 Aug 2013 11:42:10 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -3003,11 +3009,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:47 GMT + - Fri, 23 Aug 2013 11:42:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -3023,24 +3029,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '54' + - '48' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:56 GMT + recorded_at: Fri, 23 Aug 2013 11:42:10 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -3056,7 +3063,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:00 GMT + - Fri, 23 Aug 2013 11:42:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3084,7 +3091,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:56 GMT + recorded_at: Fri, 23 Aug 2013 11:42:11 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -3100,7 +3107,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:48 GMT + - Fri, 23 Aug 2013 11:42:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3128,7 +3135,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:57 GMT + recorded_at: Fri, 23 Aug 2013 11:42:11 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -3144,7 +3151,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:00 GMT + - Fri, 23 Aug 2013 11:42:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3164,7 +3171,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '6' X-Ua-Compatible: - IE=edge body: @@ -3175,7 +3182,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:57 GMT + recorded_at: Fri, 23 Aug 2013 11:42:11 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -3191,7 +3198,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:48 GMT + - Fri, 23 Aug 2013 11:42:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3211,7 +3218,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -3222,7 +3229,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:57 GMT + recorded_at: Fri, 23 Aug 2013 11:42:12 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -3238,7 +3245,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:01 GMT + - Fri, 23 Aug 2013 11:42:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3267,7 +3274,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:58 GMT + recorded_at: Fri, 23 Aug 2013 11:42:12 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -3283,7 +3290,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:49 GMT + - Fri, 23 Aug 2013 11:42:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3303,7 +3310,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '6' X-Ua-Compatible: - IE=edge body: @@ -3312,7 +3319,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:58 GMT + recorded_at: Fri, 23 Aug 2013 11:42:12 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json @@ -3328,7 +3335,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:02 GMT + - Fri, 23 Aug 2013 11:42:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3357,7 +3364,7 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:58 GMT + recorded_at: Fri, 23 Aug 2013 11:42:13 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json @@ -3373,7 +3380,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:50 GMT + - Fri, 23 Aug 2013 11:42:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3402,7 +3409,7 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:59 GMT + recorded_at: Fri, 23 Aug 2013 11:42:13 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -3418,7 +3425,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:02 GMT + - Fri, 23 Aug 2013 11:42:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3446,7 +3453,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:59 GMT + recorded_at: Fri, 23 Aug 2013 11:42:13 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -3462,7 +3469,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:50 GMT + - Fri, 23 Aug 2013 11:42:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3490,7 +3497,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:04:59 GMT + recorded_at: Fri, 23 Aug 2013 11:42:14 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json @@ -3506,7 +3513,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:03 GMT + - Fri, 23 Aug 2013 11:42:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3526,7 +3533,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '10' + - '17' X-Ua-Compatible: - IE=edge body: @@ -3538,7 +3545,7 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:00 GMT + recorded_at: Fri, 23 Aug 2013 11:42:14 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json @@ -3554,7 +3561,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:51 GMT + - Fri, 23 Aug 2013 11:42:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3574,7 +3581,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '10' + - '11' X-Ua-Compatible: - IE=edge body: @@ -3586,7 +3593,7 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:00 GMT + recorded_at: Fri, 23 Aug 2013 11:42:14 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json @@ -3602,7 +3609,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:04 GMT + - Fri, 23 Aug 2013 11:42:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3630,7 +3637,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:00 GMT + recorded_at: Fri, 23 Aug 2013 11:42:15 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json @@ -3646,7 +3653,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:52 GMT + - Fri, 23 Aug 2013 11:42:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3674,7 +3681,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:01 GMT + recorded_at: Fri, 23 Aug 2013 11:42:15 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -3690,7 +3697,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:04 GMT + - Fri, 23 Aug 2013 11:42:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3718,7 +3725,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:01 GMT + recorded_at: Fri, 23 Aug 2013 11:42:15 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -3734,7 +3741,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:52 GMT + - Fri, 23 Aug 2013 11:42:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3762,7 +3769,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:01 GMT + recorded_at: Fri, 23 Aug 2013 11:42:16 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -3778,7 +3785,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:05 GMT + - Fri, 23 Aug 2013 11:42:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3798,7 +3805,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -3807,7 +3814,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:02 GMT + recorded_at: Fri, 23 Aug 2013 11:42:16 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -3823,7 +3830,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:53 GMT + - Fri, 23 Aug 2013 11:42:20 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3843,7 +3850,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -3852,10 +3859,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:02 GMT + recorded_at: Fri, 23 Aug 2013 11:42:16 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -3868,11 +3875,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:06 GMT + - Fri, 23 Aug 2013 11:42:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -3893,25 +3900,25 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:03 GMT + recorded_at: Fri, 23 Aug 2013 11:42:17 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -3924,11 +3931,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:54 GMT + - Fri, 23 Aug 2013 11:42:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -3944,27 +3951,27 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '57' + - '63' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:03 GMT + recorded_at: Fri, 23 Aug 2013 11:42:17 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -3980,7 +3987,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:07 GMT + - Fri, 23 Aug 2013 11:42:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4008,7 +4015,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:03 GMT + recorded_at: Fri, 23 Aug 2013 11:42:18 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -4024,7 +4031,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:55 GMT + - Fri, 23 Aug 2013 11:42:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4052,7 +4059,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:04 GMT + recorded_at: Fri, 23 Aug 2013 11:42:18 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -4068,7 +4075,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:07 GMT + - Fri, 23 Aug 2013 11:42:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4099,7 +4106,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:04 GMT + recorded_at: Fri, 23 Aug 2013 11:42:18 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -4115,7 +4122,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:55 GMT + - Fri, 23 Aug 2013 11:42:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4146,10 +4153,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:04 GMT + recorded_at: Fri, 23 Aug 2013 11:42:19 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -4162,11 +4169,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:08 GMT + - Fri, 23 Aug 2013 11:42:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -4182,27 +4189,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:05 GMT + recorded_at: Fri, 23 Aug 2013 11:42:19 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -4215,11 +4223,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:56 GMT + - Fri, 23 Aug 2013 11:42:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -4235,24 +4243,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '101' + - '48' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:05 GMT + recorded_at: Fri, 23 Aug 2013 11:42:19 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -4268,7 +4277,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:09 GMT + - Fri, 23 Aug 2013 11:42:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4296,7 +4305,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:05 GMT + recorded_at: Fri, 23 Aug 2013 11:42:20 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -4312,7 +4321,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:57 GMT + - Fri, 23 Aug 2013 11:42:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4340,7 +4349,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:06 GMT + recorded_at: Fri, 23 Aug 2013 11:42:20 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -4356,7 +4365,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:10 GMT + - Fri, 23 Aug 2013 11:42:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4376,7 +4385,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '6' X-Ua-Compatible: - IE=edge body: @@ -4387,7 +4396,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:06 GMT + recorded_at: Fri, 23 Aug 2013 11:42:20 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -4403,7 +4412,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:58 GMT + - Fri, 23 Aug 2013 11:42:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4423,7 +4432,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -4434,7 +4443,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:07 GMT + recorded_at: Fri, 23 Aug 2013 11:42:21 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -4450,7 +4459,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:10 GMT + - Fri, 23 Aug 2013 11:42:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4479,7 +4488,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:07 GMT + recorded_at: Fri, 23 Aug 2013 11:42:21 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -4495,7 +4504,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:58 GMT + - Fri, 23 Aug 2013 11:42:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4524,7 +4533,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:07 GMT + recorded_at: Fri, 23 Aug 2013 11:42:21 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -4540,7 +4549,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:11 GMT + - Fri, 23 Aug 2013 11:42:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4560,7 +4569,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '6' X-Ua-Compatible: - IE=edge body: @@ -4569,7 +4578,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:08 GMT + recorded_at: Fri, 23 Aug 2013 11:42:22 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -4585,7 +4594,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:04:59 GMT + - Fri, 23 Aug 2013 11:42:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4614,7 +4623,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:08 GMT + recorded_at: Fri, 23 Aug 2013 11:42:22 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -4630,7 +4639,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:12 GMT + - Fri, 23 Aug 2013 11:42:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4658,7 +4667,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:08 GMT + recorded_at: Fri, 23 Aug 2013 11:42:22 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -4674,7 +4683,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:00 GMT + - Fri, 23 Aug 2013 11:42:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4702,7 +4711,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:09 GMT + recorded_at: Fri, 23 Aug 2013 11:42:23 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -4718,7 +4727,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:12 GMT + - Fri, 23 Aug 2013 11:42:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4738,7 +4747,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '10' + - '11' X-Ua-Compatible: - IE=edge body: @@ -4749,7 +4758,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:09 GMT + recorded_at: Fri, 23 Aug 2013 11:42:23 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -4765,7 +4774,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:00 GMT + - Fri, 23 Aug 2013 11:42:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4796,7 +4805,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:09 GMT + recorded_at: Fri, 23 Aug 2013 11:42:24 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -4812,7 +4821,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:13 GMT + - Fri, 23 Aug 2013 11:42:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4832,7 +4841,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '4' X-Ua-Compatible: - IE=edge body: @@ -4840,7 +4849,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:10 GMT + recorded_at: Fri, 23 Aug 2013 11:42:24 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -4856,7 +4865,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:01 GMT + - Fri, 23 Aug 2013 11:42:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4884,7 +4893,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:10 GMT + recorded_at: Fri, 23 Aug 2013 11:42:24 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -4900,7 +4909,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:14 GMT + - Fri, 23 Aug 2013 11:42:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4929,7 +4938,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:10 GMT + recorded_at: Fri, 23 Aug 2013 11:42:25 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -4945,7 +4954,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:02 GMT + - Fri, 23 Aug 2013 11:42:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4974,7 +4983,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:11 GMT + recorded_at: Fri, 23 Aug 2013 11:42:26 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -4990,7 +4999,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:14 GMT + - Fri, 23 Aug 2013 11:42:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5018,7 +5027,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:11 GMT + recorded_at: Fri, 23 Aug 2013 11:42:26 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -5034,7 +5043,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:02 GMT + - Fri, 23 Aug 2013 11:42:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5062,7 +5071,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:11 GMT + recorded_at: Fri, 23 Aug 2013 11:42:27 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -5078,7 +5087,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:15 GMT + - Fri, 23 Aug 2013 11:42:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5109,7 +5118,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:12 GMT + recorded_at: Fri, 23 Aug 2013 11:42:27 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -5125,7 +5134,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:03 GMT + - Fri, 23 Aug 2013 11:42:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5156,10 +5165,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:12 GMT + recorded_at: Fri, 23 Aug 2013 11:42:27 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -5172,11 +5181,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:17 GMT + - Fri, 23 Aug 2013 11:42:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -5192,27 +5201,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '51' + - '49' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:13 GMT + recorded_at: Fri, 23 Aug 2013 11:42:28 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -5225,11 +5235,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:05 GMT + - Fri, 23 Aug 2013 11:42:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -5245,24 +5255,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '49' + - '67' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:14 GMT + recorded_at: Fri, 23 Aug 2013 11:42:29 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -5278,7 +5289,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:17 GMT + - Fri, 23 Aug 2013 11:42:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5298,7 +5309,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -5306,7 +5317,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:15 GMT + recorded_at: Fri, 23 Aug 2013 11:42:30 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -5322,7 +5333,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:06 GMT + - Fri, 23 Aug 2013 11:42:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5350,7 +5361,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:15 GMT + recorded_at: Fri, 23 Aug 2013 11:42:30 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -5366,7 +5377,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:19 GMT + - Fri, 23 Aug 2013 11:42:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5386,7 +5397,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -5397,7 +5408,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:15 GMT + recorded_at: Fri, 23 Aug 2013 11:42:30 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -5413,7 +5424,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:07 GMT + - Fri, 23 Aug 2013 11:42:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5433,7 +5444,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -5444,7 +5455,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:16 GMT + recorded_at: Fri, 23 Aug 2013 11:42:31 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -5460,7 +5471,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:19 GMT + - Fri, 23 Aug 2013 11:42:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5489,7 +5500,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:16 GMT + recorded_at: Fri, 23 Aug 2013 11:42:31 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -5505,7 +5516,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:07 GMT + - Fri, 23 Aug 2013 11:42:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5534,7 +5545,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:16 GMT + recorded_at: Fri, 23 Aug 2013 11:42:31 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json @@ -5550,7 +5561,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:20 GMT + - Fri, 23 Aug 2013 11:42:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5579,7 +5590,7 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:17 GMT + recorded_at: Fri, 23 Aug 2013 11:42:32 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json @@ -5595,7 +5606,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:08 GMT + - Fri, 23 Aug 2013 11:42:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5615,7 +5626,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -5624,7 +5635,7 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:17 GMT + recorded_at: Fri, 23 Aug 2013 11:42:32 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -5640,7 +5651,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:21 GMT + - Fri, 23 Aug 2013 11:42:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5668,7 +5679,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:17 GMT + recorded_at: Fri, 23 Aug 2013 11:42:32 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -5684,7 +5695,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:09 GMT + - Fri, 23 Aug 2013 11:42:36 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5712,7 +5723,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:18 GMT + recorded_at: Fri, 23 Aug 2013 11:42:33 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json @@ -5728,7 +5739,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:21 GMT + - Fri, 23 Aug 2013 11:42:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5748,7 +5759,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '10' + - '79' X-Ua-Compatible: - IE=edge body: @@ -5760,7 +5771,7 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:18 GMT + recorded_at: Fri, 23 Aug 2013 11:42:33 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json @@ -5776,7 +5787,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:09 GMT + - Fri, 23 Aug 2013 11:42:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5796,7 +5807,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -5808,7 +5819,7 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:18 GMT + recorded_at: Fri, 23 Aug 2013 11:42:33 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json @@ -5824,7 +5835,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:22 GMT + - Fri, 23 Aug 2013 11:42:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5852,7 +5863,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:19 GMT + recorded_at: Fri, 23 Aug 2013 11:42:34 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json @@ -5868,7 +5879,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:10 GMT + - Fri, 23 Aug 2013 11:42:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5896,7 +5907,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:19 GMT + recorded_at: Fri, 23 Aug 2013 11:42:34 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -5912,7 +5923,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:23 GMT + - Fri, 23 Aug 2013 11:42:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5932,7 +5943,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -5940,7 +5951,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:19 GMT + recorded_at: Fri, 23 Aug 2013 11:42:34 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -5956,7 +5967,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:11 GMT + - Fri, 23 Aug 2013 11:42:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5984,7 +5995,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:20 GMT + recorded_at: Fri, 23 Aug 2013 11:42:35 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -6000,7 +6011,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:23 GMT + - Fri, 23 Aug 2013 11:42:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6020,7 +6031,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -6029,7 +6040,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:20 GMT + recorded_at: Fri, 23 Aug 2013 11:42:35 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -6045,7 +6056,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:11 GMT + - Fri, 23 Aug 2013 11:42:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6074,10 +6085,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:20 GMT + recorded_at: Fri, 23 Aug 2013 11:42:35 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -6090,11 +6101,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:24 GMT + - Fri, 23 Aug 2013 11:42:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -6110,30 +6121,30 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '66' + - '67' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:21 GMT + recorded_at: Fri, 23 Aug 2013 11:42:36 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -6146,11 +6157,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:12 GMT + - Fri, 23 Aug 2013 11:42:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -6166,27 +6177,27 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '63' + - '59' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:21 GMT + recorded_at: Fri, 23 Aug 2013 11:42:36 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -6202,7 +6213,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:25 GMT + - Fri, 23 Aug 2013 11:42:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6230,7 +6241,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:22 GMT + recorded_at: Fri, 23 Aug 2013 11:42:37 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -6246,7 +6257,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:13 GMT + - Fri, 23 Aug 2013 11:42:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6274,7 +6285,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:22 GMT + recorded_at: Fri, 23 Aug 2013 11:42:37 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -6290,7 +6301,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:26 GMT + - Fri, 23 Aug 2013 11:42:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6310,7 +6321,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '38' + - '6' X-Ua-Compatible: - IE=edge body: @@ -6321,7 +6332,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:22 GMT + recorded_at: Fri, 23 Aug 2013 11:42:38 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -6337,7 +6348,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:14 GMT + - Fri, 23 Aug 2013 11:42:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6357,7 +6368,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '8' X-Ua-Compatible: - IE=edge body: @@ -6368,10 +6379,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:23 GMT + recorded_at: Fri, 23 Aug 2013 11:42:38 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -6384,11 +6395,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:26 GMT + - Fri, 23 Aug 2013 11:42:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -6404,27 +6415,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '48' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:23 GMT + recorded_at: Fri, 23 Aug 2013 11:42:38 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -6437,11 +6449,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:14 GMT + - Fri, 23 Aug 2013 11:42:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -6457,24 +6469,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '53' + - '57' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:23 GMT + recorded_at: Fri, 23 Aug 2013 11:42:39 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -6490,7 +6503,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:27 GMT + - Fri, 23 Aug 2013 11:42:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6518,7 +6531,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:24 GMT + recorded_at: Fri, 23 Aug 2013 11:42:39 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -6534,7 +6547,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:15 GMT + - Fri, 23 Aug 2013 11:42:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6562,7 +6575,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:24 GMT + recorded_at: Fri, 23 Aug 2013 11:42:40 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -6578,7 +6591,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:28 GMT + - Fri, 23 Aug 2013 11:42:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6609,7 +6622,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:24 GMT + recorded_at: Fri, 23 Aug 2013 11:42:40 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -6625,7 +6638,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:16 GMT + - Fri, 23 Aug 2013 11:42:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6645,7 +6658,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -6656,7 +6669,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:25 GMT + recorded_at: Fri, 23 Aug 2013 11:42:40 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -6672,7 +6685,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:28 GMT + - Fri, 23 Aug 2013 11:42:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6692,7 +6705,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -6701,7 +6714,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:25 GMT + recorded_at: Fri, 23 Aug 2013 11:42:41 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -6717,7 +6730,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:16 GMT + - Fri, 23 Aug 2013 11:42:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6746,7 +6759,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:25 GMT + recorded_at: Fri, 23 Aug 2013 11:42:41 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -6762,7 +6775,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:29 GMT + - Fri, 23 Aug 2013 11:42:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6782,7 +6795,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -6791,7 +6804,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:26 GMT + recorded_at: Fri, 23 Aug 2013 11:42:41 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -6807,7 +6820,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:17 GMT + - Fri, 23 Aug 2013 11:42:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6827,7 +6840,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '14' + - '6' X-Ua-Compatible: - IE=edge body: @@ -6836,7 +6849,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:26 GMT + recorded_at: Fri, 23 Aug 2013 11:42:42 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -6852,7 +6865,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:30 GMT + - Fri, 23 Aug 2013 11:42:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6872,7 +6885,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '3' X-Ua-Compatible: - IE=edge body: @@ -6880,7 +6893,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:26 GMT + recorded_at: Fri, 23 Aug 2013 11:42:42 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -6896,7 +6909,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:18 GMT + - Fri, 23 Aug 2013 11:42:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6924,7 +6937,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:27 GMT + recorded_at: Fri, 23 Aug 2013 11:42:42 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -6940,7 +6953,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:31 GMT + - Fri, 23 Aug 2013 11:42:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6971,7 +6984,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:27 GMT + recorded_at: Fri, 23 Aug 2013 11:42:43 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -6987,7 +7000,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:19 GMT + - Fri, 23 Aug 2013 11:42:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7007,7 +7020,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '10' + - '9' X-Ua-Compatible: - IE=edge body: @@ -7018,7 +7031,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:28 GMT + recorded_at: Fri, 23 Aug 2013 11:42:43 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -7034,7 +7047,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:31 GMT + - Fri, 23 Aug 2013 11:42:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7054,7 +7067,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '46' X-Ua-Compatible: - IE=edge body: @@ -7062,7 +7075,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:28 GMT + recorded_at: Fri, 23 Aug 2013 11:42:44 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -7078,7 +7091,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:19 GMT + - Fri, 23 Aug 2013 11:42:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7106,7 +7119,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:28 GMT + recorded_at: Fri, 23 Aug 2013 11:42:44 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -7122,7 +7135,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:32 GMT + - Fri, 23 Aug 2013 11:42:36 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7142,7 +7155,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '7' X-Ua-Compatible: - IE=edge body: @@ -7151,7 +7164,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:29 GMT + recorded_at: Fri, 23 Aug 2013 11:42:45 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -7167,7 +7180,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:20 GMT + - Fri, 23 Aug 2013 11:42:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7187,7 +7200,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '13' + - '4' X-Ua-Compatible: - IE=edge body: @@ -7196,7 +7209,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:29 GMT + recorded_at: Fri, 23 Aug 2013 11:42:45 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -7212,7 +7225,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:33 GMT + - Fri, 23 Aug 2013 11:42:36 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7232,7 +7245,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -7240,7 +7253,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:29 GMT + recorded_at: Fri, 23 Aug 2013 11:42:45 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -7256,7 +7269,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:21 GMT + - Fri, 23 Aug 2013 11:42:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7284,7 +7297,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:30 GMT + recorded_at: Fri, 23 Aug 2013 11:42:46 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -7300,7 +7313,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:33 GMT + - Fri, 23 Aug 2013 11:42:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7331,7 +7344,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:30 GMT + recorded_at: Fri, 23 Aug 2013 11:42:46 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -7347,7 +7360,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:21 GMT + - Fri, 23 Aug 2013 11:42:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7378,10 +7391,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:30 GMT + recorded_at: Fri, 23 Aug 2013 11:42:46 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -7394,11 +7407,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:34 GMT + - Fri, 23 Aug 2013 11:42:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -7414,27 +7427,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:31 GMT + recorded_at: Fri, 23 Aug 2013 11:42:47 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -7447,11 +7461,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:22 GMT + - Fri, 23 Aug 2013 11:42:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -7467,24 +7481,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '47' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:31 GMT + recorded_at: Fri, 23 Aug 2013 11:42:47 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -7500,7 +7515,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:35 GMT + - Fri, 23 Aug 2013 11:42:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7528,7 +7543,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:31 GMT + recorded_at: Fri, 23 Aug 2013 11:42:47 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -7544,7 +7559,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:23 GMT + - Fri, 23 Aug 2013 11:42:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7564,7 +7579,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '13' X-Ua-Compatible: - IE=edge body: @@ -7572,7 +7587,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:32 GMT + recorded_at: Fri, 23 Aug 2013 11:42:48 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -7588,7 +7603,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:35 GMT + - Fri, 23 Aug 2013 11:42:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7619,7 +7634,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:32 GMT + recorded_at: Fri, 23 Aug 2013 11:42:48 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -7635,7 +7650,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:23 GMT + - Fri, 23 Aug 2013 11:42:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7666,7 +7681,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:32 GMT + recorded_at: Fri, 23 Aug 2013 11:42:49 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -7682,7 +7697,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:36 GMT + - Fri, 23 Aug 2013 11:42:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7711,7 +7726,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:33 GMT + recorded_at: Fri, 23 Aug 2013 11:42:49 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -7727,7 +7742,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:25 GMT + - Fri, 23 Aug 2013 11:42:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7756,7 +7771,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:34 GMT + recorded_at: Fri, 23 Aug 2013 11:42:49 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json @@ -7772,7 +7787,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:37 GMT + - Fri, 23 Aug 2013 11:42:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7792,7 +7807,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '14' + - '5' X-Ua-Compatible: - IE=edge body: @@ -7801,7 +7816,7 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:34 GMT + recorded_at: Fri, 23 Aug 2013 11:42:50 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json @@ -7817,7 +7832,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:25 GMT + - Fri, 23 Aug 2013 11:42:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7846,7 +7861,7 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:34 GMT + recorded_at: Fri, 23 Aug 2013 11:42:50 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -7862,7 +7877,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:38 GMT + - Fri, 23 Aug 2013 11:42:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7890,7 +7905,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:35 GMT + recorded_at: Fri, 23 Aug 2013 11:42:50 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -7906,7 +7921,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:26 GMT + - Fri, 23 Aug 2013 11:42:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7934,7 +7949,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:35 GMT + recorded_at: Fri, 23 Aug 2013 11:42:51 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json @@ -7950,7 +7965,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:39 GMT + - Fri, 23 Aug 2013 11:42:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7982,7 +7997,7 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:36 GMT + recorded_at: Fri, 23 Aug 2013 11:42:51 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json @@ -7998,7 +8013,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:27 GMT + - Fri, 23 Aug 2013 11:42:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8030,7 +8045,7 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:36 GMT + recorded_at: Fri, 23 Aug 2013 11:42:51 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json @@ -8046,7 +8061,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:40 GMT + - Fri, 23 Aug 2013 11:42:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8074,7 +8089,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:37 GMT + recorded_at: Fri, 23 Aug 2013 11:42:52 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json @@ -8090,7 +8105,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:28 GMT + - Fri, 23 Aug 2013 11:42:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8118,7 +8133,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:37 GMT + recorded_at: Fri, 23 Aug 2013 11:42:52 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -8134,7 +8149,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:41 GMT + - Fri, 23 Aug 2013 11:42:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8162,7 +8177,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:37 GMT + recorded_at: Fri, 23 Aug 2013 11:42:52 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -8178,7 +8193,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:29 GMT + - Fri, 23 Aug 2013 11:42:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8206,7 +8221,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:38 GMT + recorded_at: Fri, 23 Aug 2013 11:42:53 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -8222,7 +8237,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:41 GMT + - Fri, 23 Aug 2013 11:42:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8251,7 +8266,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:38 GMT + recorded_at: Fri, 23 Aug 2013 11:42:54 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -8267,7 +8282,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:29 GMT + - Fri, 23 Aug 2013 11:42:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8296,10 +8311,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:38 GMT + recorded_at: Fri, 23 Aug 2013 11:42:54 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -8312,11 +8327,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:42 GMT + - Fri, 23 Aug 2013 11:42:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -8332,30 +8347,30 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '66' + - '68' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:39 GMT + recorded_at: Fri, 23 Aug 2013 11:42:55 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -8368,11 +8383,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:30 GMT + - Fri, 23 Aug 2013 11:42:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -8388,27 +8403,27 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '61' + - '57' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:39 GMT + recorded_at: Fri, 23 Aug 2013 11:42:55 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -8424,7 +8439,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:43 GMT + - Fri, 23 Aug 2013 11:42:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8452,7 +8467,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:40 GMT + recorded_at: Fri, 23 Aug 2013 11:42:56 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -8468,7 +8483,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:31 GMT + - Fri, 23 Aug 2013 11:42:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8496,7 +8511,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:40 GMT + recorded_at: Fri, 23 Aug 2013 11:42:56 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -8512,7 +8527,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:44 GMT + - Fri, 23 Aug 2013 11:42:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8543,7 +8558,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:41 GMT + recorded_at: Fri, 23 Aug 2013 11:42:57 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -8559,7 +8574,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:32 GMT + - Fri, 23 Aug 2013 11:43:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8590,10 +8605,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:41 GMT + recorded_at: Fri, 23 Aug 2013 11:42:57 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -8606,11 +8621,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:45 GMT + - Fri, 23 Aug 2013 11:42:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -8626,27 +8641,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:41 GMT + recorded_at: Fri, 23 Aug 2013 11:42:57 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -8659,11 +8675,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:33 GMT + - Fri, 23 Aug 2013 11:43:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -8679,24 +8695,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '49' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:42 GMT + recorded_at: Fri, 23 Aug 2013 11:42:58 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -8712,7 +8729,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:45 GMT + - Fri, 23 Aug 2013 11:42:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8740,7 +8757,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:42 GMT + recorded_at: Fri, 23 Aug 2013 11:42:58 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -8756,7 +8773,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:33 GMT + - Fri, 23 Aug 2013 11:43:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8776,7 +8793,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -8784,7 +8801,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:42 GMT + recorded_at: Fri, 23 Aug 2013 11:42:59 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -8800,7 +8817,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:46 GMT + - Fri, 23 Aug 2013 11:42:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8831,7 +8848,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:43 GMT + recorded_at: Fri, 23 Aug 2013 11:42:59 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -8847,7 +8864,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:34 GMT + - Fri, 23 Aug 2013 11:43:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8867,7 +8884,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '108' X-Ua-Compatible: - IE=edge body: @@ -8878,7 +8895,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:43 GMT + recorded_at: Fri, 23 Aug 2013 11:43:00 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -8894,7 +8911,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:47 GMT + - Fri, 23 Aug 2013 11:42:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8914,7 +8931,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -8923,7 +8940,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:43 GMT + recorded_at: Fri, 23 Aug 2013 11:43:00 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -8939,7 +8956,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:35 GMT + - Fri, 23 Aug 2013 11:43:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8959,7 +8976,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '3' X-Ua-Compatible: - IE=edge body: @@ -8968,7 +8985,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:44 GMT + recorded_at: Fri, 23 Aug 2013 11:43:00 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -8984,7 +9001,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:47 GMT + - Fri, 23 Aug 2013 11:42:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9013,7 +9030,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:44 GMT + recorded_at: Fri, 23 Aug 2013 11:43:01 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -9029,7 +9046,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:35 GMT + - Fri, 23 Aug 2013 11:43:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9058,7 +9075,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:44 GMT + recorded_at: Fri, 23 Aug 2013 11:43:01 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -9074,7 +9091,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:48 GMT + - Fri, 23 Aug 2013 11:42:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9102,7 +9119,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:45 GMT + recorded_at: Fri, 23 Aug 2013 11:43:01 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -9118,7 +9135,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:36 GMT + - Fri, 23 Aug 2013 11:43:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9138,7 +9155,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -9146,7 +9163,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:45 GMT + recorded_at: Fri, 23 Aug 2013 11:43:02 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -9162,7 +9179,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:49 GMT + - Fri, 23 Aug 2013 11:42:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9182,7 +9199,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '10' + - '11' X-Ua-Compatible: - IE=edge body: @@ -9193,7 +9210,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:45 GMT + recorded_at: Fri, 23 Aug 2013 11:43:02 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -9209,7 +9226,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:37 GMT + - Fri, 23 Aug 2013 11:43:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9240,7 +9257,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:46 GMT + recorded_at: Fri, 23 Aug 2013 11:43:03 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -9256,7 +9273,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:49 GMT + - Fri, 23 Aug 2013 11:42:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9284,7 +9301,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:46 GMT + recorded_at: Fri, 23 Aug 2013 11:43:03 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -9300,7 +9317,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:37 GMT + - Fri, 23 Aug 2013 11:43:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9328,7 +9345,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:46 GMT + recorded_at: Fri, 23 Aug 2013 11:43:03 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -9344,7 +9361,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:50 GMT + - Fri, 23 Aug 2013 11:42:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9373,7 +9390,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:47 GMT + recorded_at: Fri, 23 Aug 2013 11:43:04 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -9389,7 +9406,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:38 GMT + - Fri, 23 Aug 2013 11:43:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9409,7 +9426,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '9' + - '17' X-Ua-Compatible: - IE=edge body: @@ -9418,7 +9435,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:48 GMT + recorded_at: Fri, 23 Aug 2013 11:43:04 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -9434,7 +9451,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:51 GMT + - Fri, 23 Aug 2013 11:42:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9462,7 +9479,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:48 GMT + recorded_at: Fri, 23 Aug 2013 11:43:04 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -9478,7 +9495,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:39 GMT + - Fri, 23 Aug 2013 11:43:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9498,7 +9515,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -9506,7 +9523,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:48 GMT + recorded_at: Fri, 23 Aug 2013 11:43:05 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -9522,7 +9539,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:52 GMT + - Fri, 23 Aug 2013 11:42:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9542,7 +9559,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '26' + - '7' X-Ua-Compatible: - IE=edge body: @@ -9553,7 +9570,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:49 GMT + recorded_at: Fri, 23 Aug 2013 11:43:05 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -9569,7 +9586,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:40 GMT + - Fri, 23 Aug 2013 11:43:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9589,7 +9606,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '205' X-Ua-Compatible: - IE=edge body: @@ -9600,10 +9617,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:49 GMT + recorded_at: Fri, 23 Aug 2013 11:43:06 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -9616,11 +9633,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:53 GMT + - Fri, 23 Aug 2013 11:42:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -9641,22 +9658,23 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:49 GMT + recorded_at: Fri, 23 Aug 2013 11:43:06 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -9669,11 +9687,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:41 GMT + - Fri, 23 Aug 2013 11:43:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -9694,19 +9712,20 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:50 GMT + recorded_at: Fri, 23 Aug 2013 11:43:07 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -9722,7 +9741,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:53 GMT + - Fri, 23 Aug 2013 11:42:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9750,7 +9769,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:51 GMT + recorded_at: Fri, 23 Aug 2013 11:43:07 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -9766,7 +9785,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:42 GMT + - Fri, 23 Aug 2013 11:43:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9794,7 +9813,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:51 GMT + recorded_at: Fri, 23 Aug 2013 11:43:07 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -9810,7 +9829,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:55 GMT + - Fri, 23 Aug 2013 11:42:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9830,7 +9849,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -9841,7 +9860,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:51 GMT + recorded_at: Fri, 23 Aug 2013 11:43:08 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -9857,7 +9876,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:43 GMT + - Fri, 23 Aug 2013 11:43:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9877,7 +9896,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -9888,7 +9907,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:52 GMT + recorded_at: Fri, 23 Aug 2013 11:43:08 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -9904,7 +9923,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:55 GMT + - Fri, 23 Aug 2013 11:42:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9933,7 +9952,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:52 GMT + recorded_at: Fri, 23 Aug 2013 11:43:08 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -9949,7 +9968,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:43 GMT + - Fri, 23 Aug 2013 11:43:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9978,7 +9997,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:52 GMT + recorded_at: Fri, 23 Aug 2013 11:43:09 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json @@ -9994,7 +10013,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:56 GMT + - Fri, 23 Aug 2013 11:43:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10023,7 +10042,7 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:53 GMT + recorded_at: Fri, 23 Aug 2013 11:43:09 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/11?format=json @@ -10039,7 +10058,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:44 GMT + - Fri, 23 Aug 2013 11:43:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10068,7 +10087,7 @@ http_interactions: \ \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:53 GMT + recorded_at: Fri, 23 Aug 2013 11:43:09 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -10084,7 +10103,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:57 GMT + - Fri, 23 Aug 2013 11:43:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10112,7 +10131,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:53 GMT + recorded_at: Fri, 23 Aug 2013 11:43:10 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -10128,7 +10147,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:45 GMT + - Fri, 23 Aug 2013 11:43:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10156,7 +10175,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:54 GMT + recorded_at: Fri, 23 Aug 2013 11:43:10 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json @@ -10172,7 +10191,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:57 GMT + - Fri, 23 Aug 2013 11:43:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10204,7 +10223,7 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:54 GMT + recorded_at: Fri, 23 Aug 2013 11:43:10 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/50?format=json @@ -10220,7 +10239,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:45 GMT + - Fri, 23 Aug 2013 11:43:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10240,7 +10259,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '10' + - '11' X-Ua-Compatible: - IE=edge body: @@ -10252,7 +10271,7 @@ http_interactions: 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \ \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:54 GMT + recorded_at: Fri, 23 Aug 2013 11:43:11 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json @@ -10268,7 +10287,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:58 GMT + - Fri, 23 Aug 2013 11:43:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10296,7 +10315,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:55 GMT + recorded_at: Fri, 23 Aug 2013 11:43:11 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Roles/1?format=json @@ -10312,7 +10331,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:46 GMT + - Fri, 23 Aug 2013 11:43:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10340,7 +10359,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Programmer\",\r\n \"IsPair\": true,\r\n \ \"HasEffort\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:55 GMT + recorded_at: Fri, 23 Aug 2013 11:43:11 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -10356,7 +10375,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:59 GMT + - Fri, 23 Aug 2013 11:43:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10384,7 +10403,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:55 GMT + recorded_at: Fri, 23 Aug 2013 11:43:12 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/5?format=json @@ -10400,7 +10419,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:47 GMT + - Fri, 23 Aug 2013 11:43:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10420,7 +10439,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -10428,7 +10447,7 @@ http_interactions: string: "{\r\n \"Id\": 5,\r\n \"Name\": \"Task\",\r\n \"IsExtendable\": true,\r\n \ \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:56 GMT + recorded_at: Fri, 23 Aug 2013 11:43:12 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -10444,7 +10463,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:59 GMT + - Fri, 23 Aug 2013 11:43:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10464,7 +10483,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -10473,7 +10492,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:56 GMT + recorded_at: Fri, 23 Aug 2013 11:43:12 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -10489,7 +10508,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:47 GMT + - Fri, 23 Aug 2013 11:43:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10509,7 +10528,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '25' X-Ua-Compatible: - IE=edge body: @@ -10518,10 +10537,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:56 GMT + recorded_at: Fri, 23 Aug 2013 11:43:13 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -10534,11 +10553,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:00 GMT + - Fri, 23 Aug 2013 11:43:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -10559,25 +10578,25 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:57 GMT + recorded_at: Fri, 23 Aug 2013 11:43:13 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -10590,11 +10609,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:49 GMT + - Fri, 23 Aug 2013 11:43:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -10610,27 +10629,27 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '63' + - '64' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:58 GMT + recorded_at: Fri, 23 Aug 2013 11:43:14 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -10646,7 +10665,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:02 GMT + - Fri, 23 Aug 2013 11:43:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10666,7 +10685,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '7' X-Ua-Compatible: - IE=edge body: @@ -10674,7 +10693,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:59 GMT + recorded_at: Fri, 23 Aug 2013 11:43:14 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -10690,7 +10709,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:50 GMT + - Fri, 23 Aug 2013 11:43:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10718,7 +10737,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:59 GMT + recorded_at: Fri, 23 Aug 2013 11:43:15 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -10734,7 +10753,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:03 GMT + - Fri, 23 Aug 2013 11:43:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10754,7 +10773,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '232' X-Ua-Compatible: - IE=edge body: @@ -10765,7 +10784,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:05:59 GMT + recorded_at: Fri, 23 Aug 2013 11:43:15 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -10781,7 +10800,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:51 GMT + - Fri, 23 Aug 2013 11:43:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10801,7 +10820,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -10812,10 +10831,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:00 GMT + recorded_at: Fri, 23 Aug 2013 11:43:16 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -10828,11 +10847,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:03 GMT + - Fri, 23 Aug 2013 11:43:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -10848,27 +10867,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '56' + - '49' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:00 GMT + recorded_at: Fri, 23 Aug 2013 11:43:16 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -10881,11 +10901,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:51 GMT + - Fri, 23 Aug 2013 11:43:20 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -10901,24 +10921,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '55' + - '53' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:00 GMT + recorded_at: Fri, 23 Aug 2013 11:43:17 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -10934,7 +10955,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:04 GMT + - Fri, 23 Aug 2013 11:43:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10962,7 +10983,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:01 GMT + recorded_at: Fri, 23 Aug 2013 11:43:17 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -10978,7 +10999,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:52 GMT + - Fri, 23 Aug 2013 11:43:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11006,7 +11027,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:01 GMT + recorded_at: Fri, 23 Aug 2013 11:43:17 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -11022,7 +11043,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:05 GMT + - Fri, 23 Aug 2013 11:43:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11053,7 +11074,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:01 GMT + recorded_at: Fri, 23 Aug 2013 11:43:18 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -11069,7 +11090,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:53 GMT + - Fri, 23 Aug 2013 11:43:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11089,7 +11110,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '6' X-Ua-Compatible: - IE=edge body: @@ -11100,7 +11121,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:02 GMT + recorded_at: Fri, 23 Aug 2013 11:43:18 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -11116,7 +11137,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:05 GMT + - Fri, 23 Aug 2013 11:43:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11136,7 +11157,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -11145,7 +11166,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:02 GMT + recorded_at: Fri, 23 Aug 2013 11:43:18 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -11161,7 +11182,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:53 GMT + - Fri, 23 Aug 2013 11:43:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11181,7 +11202,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -11190,7 +11211,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:02 GMT + recorded_at: Fri, 23 Aug 2013 11:43:19 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -11206,7 +11227,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:06 GMT + - Fri, 23 Aug 2013 11:43:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11226,7 +11247,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '5' X-Ua-Compatible: - IE=edge body: @@ -11235,7 +11256,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:03 GMT + recorded_at: Fri, 23 Aug 2013 11:43:19 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -11251,7 +11272,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:54 GMT + - Fri, 23 Aug 2013 11:43:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11271,7 +11292,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '8' X-Ua-Compatible: - IE=edge body: @@ -11280,7 +11301,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:03 GMT + recorded_at: Fri, 23 Aug 2013 11:43:19 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -11296,7 +11317,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:07 GMT + - Fri, 23 Aug 2013 11:43:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11316,7 +11337,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -11324,7 +11345,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:03 GMT + recorded_at: Fri, 23 Aug 2013 11:43:20 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -11340,7 +11361,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:55 GMT + - Fri, 23 Aug 2013 11:43:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11360,7 +11381,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -11368,7 +11389,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:04 GMT + recorded_at: Fri, 23 Aug 2013 11:43:20 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -11384,7 +11405,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:07 GMT + - Fri, 23 Aug 2013 11:43:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11415,7 +11436,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:04 GMT + recorded_at: Fri, 23 Aug 2013 11:43:20 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -11431,7 +11452,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:55 GMT + - Fri, 23 Aug 2013 11:43:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11462,7 +11483,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:04 GMT + recorded_at: Fri, 23 Aug 2013 11:43:21 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -11478,7 +11499,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:08 GMT + - Fri, 23 Aug 2013 11:43:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11506,7 +11527,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:05 GMT + recorded_at: Fri, 23 Aug 2013 11:43:21 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -11522,7 +11543,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:56 GMT + - Fri, 23 Aug 2013 11:43:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11550,7 +11571,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:05 GMT + recorded_at: Fri, 23 Aug 2013 11:43:21 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -11566,7 +11587,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:09 GMT + - Fri, 23 Aug 2013 11:43:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11595,7 +11616,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:05 GMT + recorded_at: Fri, 23 Aug 2013 11:43:22 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -11611,7 +11632,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:57 GMT + - Fri, 23 Aug 2013 11:43:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11640,10 +11661,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:06 GMT + recorded_at: Fri, 23 Aug 2013 11:43:22 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860/Tasks?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885/Tasks?format=json body: encoding: US-ASCII string: '' @@ -11656,11 +11677,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:10 GMT + - Fri, 23 Aug 2013 11:43:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '5712' + - '5847' Connection: - keep-alive Keep-Alive: @@ -11676,97 +11697,97 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '63' + - '99' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 6861,\r\n \"Name\": + string: "{\r\n \"Items\": [\r\n {\r\n \"Id\": 6886,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255870000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377255870000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 233.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 233.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n - \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6862,\r\n \"Name\": + {\r\n \"Id\": 6885,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6887,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255871000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377255871000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 233.5,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258107000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258107000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 234.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n - \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6863,\r\n \"Name\": + {\r\n \"Id\": 6885,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6888,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255872000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377255872000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 234.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258108000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258108000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 234.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n - \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6864,\r\n \"Name\": + {\r\n \"Id\": 6885,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6889,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 234.5,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258109000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258109000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 235.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n - \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6865,\r\n \"Name\": + {\r\n \"Id\": 6885,\r\n \"Name\": \"story2\"\r\n },\r\n + \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 6890,\r\n \"Name\": \"task\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n - \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n - \ \"ModifyDate\": \"\\/Date(1377255873000-0500)\\/\",\r\n \"LastCommentDate\": - null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 235.0,\r\n \"Effort\": + \ \"EndDate\": null,\r\n \"CreateDate\": \"\\/Date(1377258109000-0500)\\/\",\r\n + \ \"ModifyDate\": \"\\/Date(1377258109000-0500)\\/\",\r\n \"LastCommentDate\": + null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": 235.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \ \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 5,\r\n \"Name\": \"Task\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n },\r\n - \ \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": + {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n + \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 11,\r\n \"Name\": \"-\"\r\n },\r\n \"EntityState\": {\r\n \ \"Id\": 50,\r\n \"Name\": \"Open\"\r\n },\r\n \"UserStory\": - {\r\n \"Id\": 6860,\r\n \"Name\": \"story2\"\r\n },\r\n + {\r\n \"Id\": 6885,\r\n \"Name\": \"story2\"\r\n },\r\n \ \"CustomFields\": []\r\n }\r\n ]\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:06 GMT + recorded_at: Fri, 23 Aug 2013 11:43:23 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -11779,11 +11800,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:58 GMT + - Fri, 23 Aug 2013 11:43:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -11799,27 +11820,27 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '59' + - '65' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:07 GMT + recorded_at: Fri, 23 Aug 2013 11:43:23 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -11835,7 +11856,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:10 GMT + - Fri, 23 Aug 2013 11:43:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11863,7 +11884,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:07 GMT + recorded_at: Fri, 23 Aug 2013 11:43:23 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -11879,7 +11900,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:58 GMT + - Fri, 23 Aug 2013 11:43:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11907,7 +11928,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:07 GMT + recorded_at: Fri, 23 Aug 2013 11:43:24 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -11923,7 +11944,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:11 GMT + - Fri, 23 Aug 2013 11:43:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11954,7 +11975,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:08 GMT + recorded_at: Fri, 23 Aug 2013 11:43:24 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -11970,7 +11991,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:05:59 GMT + - Fri, 23 Aug 2013 11:43:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11990,7 +12011,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '8' X-Ua-Compatible: - IE=edge body: @@ -12001,10 +12022,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:08 GMT + recorded_at: Fri, 23 Aug 2013 11:43:24 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -12017,11 +12038,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:12 GMT + - Fri, 23 Aug 2013 11:43:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -12037,27 +12058,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '48' + - '74' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:08 GMT + recorded_at: Fri, 23 Aug 2013 11:43:25 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -12070,11 +12092,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:00 GMT + - Fri, 23 Aug 2013 11:43:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -12090,24 +12112,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '48' + - '52' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:09 GMT + recorded_at: Fri, 23 Aug 2013 11:43:25 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -12123,7 +12146,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:12 GMT + - Fri, 23 Aug 2013 11:43:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12151,7 +12174,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:09 GMT + recorded_at: Fri, 23 Aug 2013 11:43:26 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -12167,7 +12190,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:00 GMT + - Fri, 23 Aug 2013 11:43:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12195,7 +12218,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:09 GMT + recorded_at: Fri, 23 Aug 2013 11:43:26 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -12211,7 +12234,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:13 GMT + - Fri, 23 Aug 2013 11:43:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12242,7 +12265,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:10 GMT + recorded_at: Fri, 23 Aug 2013 11:43:26 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -12258,7 +12281,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:01 GMT + - Fri, 23 Aug 2013 11:43:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12278,7 +12301,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -12289,7 +12312,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:10 GMT + recorded_at: Fri, 23 Aug 2013 11:43:27 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -12305,7 +12328,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:14 GMT + - Fri, 23 Aug 2013 11:43:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12334,7 +12357,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:10 GMT + recorded_at: Fri, 23 Aug 2013 11:43:27 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -12350,7 +12373,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:02 GMT + - Fri, 23 Aug 2013 11:43:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12379,7 +12402,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:11 GMT + recorded_at: Fri, 23 Aug 2013 11:43:27 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -12395,7 +12418,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:15 GMT + - Fri, 23 Aug 2013 11:43:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12424,7 +12447,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:11 GMT + recorded_at: Fri, 23 Aug 2013 11:43:28 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -12440,7 +12463,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:03 GMT + - Fri, 23 Aug 2013 11:43:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12460,7 +12483,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -12469,7 +12492,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:11 GMT + recorded_at: Fri, 23 Aug 2013 11:43:28 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -12485,7 +12508,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:15 GMT + - Fri, 23 Aug 2013 11:43:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12513,7 +12536,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:12 GMT + recorded_at: Fri, 23 Aug 2013 11:43:28 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -12529,7 +12552,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:03 GMT + - Fri, 23 Aug 2013 11:43:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12549,7 +12572,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -12557,7 +12580,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:12 GMT + recorded_at: Fri, 23 Aug 2013 11:43:29 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -12573,7 +12596,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:16 GMT + - Fri, 23 Aug 2013 11:43:20 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12593,7 +12616,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '14' + - '10' X-Ua-Compatible: - IE=edge body: @@ -12604,7 +12627,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:13 GMT + recorded_at: Fri, 23 Aug 2013 11:43:29 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -12620,7 +12643,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:04 GMT + - Fri, 23 Aug 2013 11:43:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12640,7 +12663,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '18' + - '10' X-Ua-Compatible: - IE=edge body: @@ -12651,7 +12674,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:13 GMT + recorded_at: Fri, 23 Aug 2013 11:43:29 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -12667,7 +12690,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:17 GMT + - Fri, 23 Aug 2013 11:43:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12695,7 +12718,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:13 GMT + recorded_at: Fri, 23 Aug 2013 11:43:30 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -12711,7 +12734,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:05 GMT + - Fri, 23 Aug 2013 11:43:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12739,7 +12762,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:14 GMT + recorded_at: Fri, 23 Aug 2013 11:43:30 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -12755,7 +12778,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:17 GMT + - Fri, 23 Aug 2013 11:43:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12784,7 +12807,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:14 GMT + recorded_at: Fri, 23 Aug 2013 11:43:30 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -12800,7 +12823,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:05 GMT + - Fri, 23 Aug 2013 11:43:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12829,10 +12852,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:14 GMT + recorded_at: Fri, 23 Aug 2013 11:43:31 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -12845,11 +12868,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:18 GMT + - Fri, 23 Aug 2013 11:43:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -12865,27 +12888,27 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '59' + - '72' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:15 GMT + recorded_at: Fri, 23 Aug 2013 11:43:31 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -12901,7 +12924,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:06 GMT + - Fri, 23 Aug 2013 11:43:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12929,7 +12952,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:15 GMT + recorded_at: Fri, 23 Aug 2013 11:43:31 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -12945,7 +12968,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:19 GMT + - Fri, 23 Aug 2013 11:43:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12973,7 +12996,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:15 GMT + recorded_at: Fri, 23 Aug 2013 11:43:32 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -12989,7 +13012,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:07 GMT + - Fri, 23 Aug 2013 11:43:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13020,7 +13043,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:16 GMT + recorded_at: Fri, 23 Aug 2013 11:43:32 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -13036,7 +13059,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:19 GMT + - Fri, 23 Aug 2013 11:43:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13067,10 +13090,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:16 GMT + recorded_at: Fri, 23 Aug 2013 11:43:32 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -13083,11 +13106,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:07 GMT + - Fri, 23 Aug 2013 11:43:36 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -13103,27 +13126,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '48' + - '49' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:16 GMT + recorded_at: Fri, 23 Aug 2013 11:43:33 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -13136,11 +13160,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:20 GMT + - Fri, 23 Aug 2013 11:43:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -13156,24 +13180,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '52' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:17 GMT + recorded_at: Fri, 23 Aug 2013 11:43:33 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -13189,7 +13214,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:08 GMT + - Fri, 23 Aug 2013 11:43:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13209,7 +13234,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -13217,7 +13242,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:17 GMT + recorded_at: Fri, 23 Aug 2013 11:43:34 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -13233,7 +13258,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:21 GMT + - Fri, 23 Aug 2013 11:43:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13261,7 +13286,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:17 GMT + recorded_at: Fri, 23 Aug 2013 11:43:34 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -13277,7 +13302,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:09 GMT + - Fri, 23 Aug 2013 11:43:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13308,7 +13333,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:18 GMT + recorded_at: Fri, 23 Aug 2013 11:43:34 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -13324,7 +13349,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:22 GMT + - Fri, 23 Aug 2013 11:43:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13355,7 +13380,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:18 GMT + recorded_at: Fri, 23 Aug 2013 11:43:35 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -13371,7 +13396,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:10 GMT + - Fri, 23 Aug 2013 11:43:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13400,7 +13425,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:19 GMT + recorded_at: Fri, 23 Aug 2013 11:43:35 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -13416,7 +13441,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:22 GMT + - Fri, 23 Aug 2013 11:43:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13445,7 +13470,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:19 GMT + recorded_at: Fri, 23 Aug 2013 11:43:35 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -13461,7 +13486,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:10 GMT + - Fri, 23 Aug 2013 11:43:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13481,7 +13506,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -13490,7 +13515,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:19 GMT + recorded_at: Fri, 23 Aug 2013 11:43:36 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -13506,7 +13531,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:23 GMT + - Fri, 23 Aug 2013 11:43:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13526,7 +13551,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '21' + - '6' X-Ua-Compatible: - IE=edge body: @@ -13535,7 +13560,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:20 GMT + recorded_at: Fri, 23 Aug 2013 11:43:36 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -13551,7 +13576,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:11 GMT + - Fri, 23 Aug 2013 11:43:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13579,7 +13604,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:20 GMT + recorded_at: Fri, 23 Aug 2013 11:43:36 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -13595,7 +13620,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:24 GMT + - Fri, 23 Aug 2013 11:43:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13623,7 +13648,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:20 GMT + recorded_at: Fri, 23 Aug 2013 11:43:37 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -13639,7 +13664,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:12 GMT + - Fri, 23 Aug 2013 11:43:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13659,7 +13684,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -13670,7 +13695,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:21 GMT + recorded_at: Fri, 23 Aug 2013 11:43:37 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -13686,7 +13711,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:24 GMT + - Fri, 23 Aug 2013 11:43:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13706,7 +13731,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '12' + - '10' X-Ua-Compatible: - IE=edge body: @@ -13717,7 +13742,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:21 GMT + recorded_at: Fri, 23 Aug 2013 11:43:37 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -13733,7 +13758,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:12 GMT + - Fri, 23 Aug 2013 11:43:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13761,7 +13786,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:21 GMT + recorded_at: Fri, 23 Aug 2013 11:43:38 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -13777,7 +13802,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:25 GMT + - Fri, 23 Aug 2013 11:43:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13805,7 +13830,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:22 GMT + recorded_at: Fri, 23 Aug 2013 11:43:38 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -13821,7 +13846,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:13 GMT + - Fri, 23 Aug 2013 11:43:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13850,7 +13875,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:22 GMT + recorded_at: Fri, 23 Aug 2013 11:43:38 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -13866,7 +13891,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:26 GMT + - Fri, 23 Aug 2013 11:43:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13895,10 +13920,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:22 GMT + recorded_at: Fri, 23 Aug 2013 11:43:39 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -13911,11 +13936,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:14 GMT + - Fri, 23 Aug 2013 11:43:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -13931,27 +13956,27 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '64' + - '59' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:23 GMT + recorded_at: Fri, 23 Aug 2013 11:43:39 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -13967,7 +13992,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:26 GMT + - Fri, 23 Aug 2013 11:43:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13995,7 +14020,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:23 GMT + recorded_at: Fri, 23 Aug 2013 11:43:39 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -14011,7 +14036,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:14 GMT + - Fri, 23 Aug 2013 11:43:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14039,7 +14064,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:23 GMT + recorded_at: Fri, 23 Aug 2013 11:43:40 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -14055,7 +14080,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:27 GMT + - Fri, 23 Aug 2013 11:43:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14075,7 +14100,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '11' X-Ua-Compatible: - IE=edge body: @@ -14086,7 +14111,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:24 GMT + recorded_at: Fri, 23 Aug 2013 11:43:40 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -14102,7 +14127,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:15 GMT + - Fri, 23 Aug 2013 11:43:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14133,10 +14158,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:24 GMT + recorded_at: Fri, 23 Aug 2013 11:43:40 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -14149,11 +14174,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:28 GMT + - Fri, 23 Aug 2013 11:43:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -14169,27 +14194,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '51' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:25 GMT + recorded_at: Fri, 23 Aug 2013 11:43:41 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -14202,11 +14228,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:16 GMT + - Fri, 23 Aug 2013 11:43:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -14222,24 +14248,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '100' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:25 GMT + recorded_at: Fri, 23 Aug 2013 11:43:42 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -14255,7 +14282,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:29 GMT + - Fri, 23 Aug 2013 11:43:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14283,7 +14310,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:25 GMT + recorded_at: Fri, 23 Aug 2013 11:43:42 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -14299,7 +14326,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:17 GMT + - Fri, 23 Aug 2013 11:43:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14327,7 +14354,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:26 GMT + recorded_at: Fri, 23 Aug 2013 11:43:42 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -14343,7 +14370,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:29 GMT + - Fri, 23 Aug 2013 11:43:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14374,7 +14401,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:26 GMT + recorded_at: Fri, 23 Aug 2013 11:43:43 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -14390,7 +14417,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:17 GMT + - Fri, 23 Aug 2013 11:43:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14421,7 +14448,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:26 GMT + recorded_at: Fri, 23 Aug 2013 11:43:43 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -14437,7 +14464,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:31 GMT + - Fri, 23 Aug 2013 11:43:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14466,7 +14493,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:28 GMT + recorded_at: Fri, 23 Aug 2013 11:43:44 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -14482,7 +14509,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:19 GMT + - Fri, 23 Aug 2013 11:43:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14511,7 +14538,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:28 GMT + recorded_at: Fri, 23 Aug 2013 11:43:44 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -14527,7 +14554,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:32 GMT + - Fri, 23 Aug 2013 11:43:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14547,7 +14574,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -14556,7 +14583,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:29 GMT + recorded_at: Fri, 23 Aug 2013 11:43:44 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -14572,7 +14599,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:21 GMT + - Fri, 23 Aug 2013 11:43:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14592,7 +14619,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '6' X-Ua-Compatible: - IE=edge body: @@ -14601,7 +14628,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:30 GMT + recorded_at: Fri, 23 Aug 2013 11:43:45 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -14617,7 +14644,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:34 GMT + - Fri, 23 Aug 2013 11:43:36 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14637,7 +14664,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -14645,7 +14672,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:30 GMT + recorded_at: Fri, 23 Aug 2013 11:43:45 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -14661,7 +14688,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:22 GMT + - Fri, 23 Aug 2013 11:43:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14681,7 +14708,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -14689,7 +14716,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:31 GMT + recorded_at: Fri, 23 Aug 2013 11:43:45 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -14705,7 +14732,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:35 GMT + - Fri, 23 Aug 2013 11:43:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14736,7 +14763,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:31 GMT + recorded_at: Fri, 23 Aug 2013 11:43:46 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -14752,7 +14779,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:23 GMT + - Fri, 23 Aug 2013 11:43:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14783,7 +14810,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:31 GMT + recorded_at: Fri, 23 Aug 2013 11:43:46 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -14799,7 +14826,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:35 GMT + - Fri, 23 Aug 2013 11:43:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14827,7 +14854,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:32 GMT + recorded_at: Fri, 23 Aug 2013 11:43:46 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -14843,7 +14870,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:23 GMT + - Fri, 23 Aug 2013 11:43:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14871,7 +14898,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:32 GMT + recorded_at: Fri, 23 Aug 2013 11:43:47 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -14887,7 +14914,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:36 GMT + - Fri, 23 Aug 2013 11:43:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14916,7 +14943,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:33 GMT + recorded_at: Fri, 23 Aug 2013 11:43:47 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -14932,7 +14959,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:24 GMT + - Fri, 23 Aug 2013 11:43:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14952,7 +14979,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -14961,10 +14988,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:33 GMT + recorded_at: Fri, 23 Aug 2013 11:43:47 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -14977,11 +15004,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:37 GMT + - Fri, 23 Aug 2013 11:43:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -14997,27 +15024,27 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '70' + - '62' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:33 GMT + recorded_at: Fri, 23 Aug 2013 11:43:48 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -15033,7 +15060,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:25 GMT + - Fri, 23 Aug 2013 11:43:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15053,7 +15080,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '4' X-Ua-Compatible: - IE=edge body: @@ -15061,7 +15088,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:34 GMT + recorded_at: Fri, 23 Aug 2013 11:43:48 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -15077,7 +15104,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:37 GMT + - Fri, 23 Aug 2013 11:43:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15105,7 +15132,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:34 GMT + recorded_at: Fri, 23 Aug 2013 11:43:48 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -15121,7 +15148,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:25 GMT + - Fri, 23 Aug 2013 11:43:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15141,7 +15168,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '16' X-Ua-Compatible: - IE=edge body: @@ -15152,7 +15179,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:34 GMT + recorded_at: Fri, 23 Aug 2013 11:43:49 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -15168,7 +15195,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:38 GMT + - Fri, 23 Aug 2013 11:43:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15199,10 +15226,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:35 GMT + recorded_at: Fri, 23 Aug 2013 11:43:49 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -15215,11 +15242,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:26 GMT + - Fri, 23 Aug 2013 11:43:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -15235,27 +15262,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:35 GMT + recorded_at: Fri, 23 Aug 2013 11:43:49 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -15268,11 +15296,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:39 GMT + - Fri, 23 Aug 2013 11:43:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -15288,24 +15316,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '49' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:35 GMT + recorded_at: Fri, 23 Aug 2013 11:43:50 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -15321,7 +15350,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:27 GMT + - Fri, 23 Aug 2013 11:43:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15349,7 +15378,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:36 GMT + recorded_at: Fri, 23 Aug 2013 11:43:50 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -15365,7 +15394,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:39 GMT + - Fri, 23 Aug 2013 11:43:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15385,7 +15414,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -15393,7 +15422,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:36 GMT + recorded_at: Fri, 23 Aug 2013 11:43:51 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -15409,7 +15438,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:27 GMT + - Fri, 23 Aug 2013 11:43:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15440,7 +15469,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:36 GMT + recorded_at: Fri, 23 Aug 2013 11:43:51 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -15456,7 +15485,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:40 GMT + - Fri, 23 Aug 2013 11:43:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15476,7 +15505,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -15487,7 +15516,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:37 GMT + recorded_at: Fri, 23 Aug 2013 11:43:51 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -15503,7 +15532,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:28 GMT + - Fri, 23 Aug 2013 11:43:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15532,7 +15561,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:37 GMT + recorded_at: Fri, 23 Aug 2013 11:43:52 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -15548,7 +15577,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:41 GMT + - Fri, 23 Aug 2013 11:43:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15577,7 +15606,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:37 GMT + recorded_at: Fri, 23 Aug 2013 11:43:52 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -15593,7 +15622,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:29 GMT + - Fri, 23 Aug 2013 11:43:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15613,7 +15642,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '5' X-Ua-Compatible: - IE=edge body: @@ -15622,7 +15651,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:38 GMT + recorded_at: Fri, 23 Aug 2013 11:43:52 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -15638,7 +15667,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:42 GMT + - Fri, 23 Aug 2013 11:43:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15667,7 +15696,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:38 GMT + recorded_at: Fri, 23 Aug 2013 11:43:53 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -15683,7 +15712,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:30 GMT + - Fri, 23 Aug 2013 11:43:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15711,7 +15740,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:39 GMT + recorded_at: Fri, 23 Aug 2013 11:43:53 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -15727,7 +15756,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:42 GMT + - Fri, 23 Aug 2013 11:43:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15755,7 +15784,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:39 GMT + recorded_at: Fri, 23 Aug 2013 11:43:53 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -15771,7 +15800,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:30 GMT + - Fri, 23 Aug 2013 11:43:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15802,7 +15831,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:39 GMT + recorded_at: Fri, 23 Aug 2013 11:43:54 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -15818,7 +15847,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:43 GMT + - Fri, 23 Aug 2013 11:43:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15838,7 +15867,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '9' + - '11' X-Ua-Compatible: - IE=edge body: @@ -15849,7 +15878,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:40 GMT + recorded_at: Fri, 23 Aug 2013 11:43:54 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -15865,7 +15894,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:31 GMT + - Fri, 23 Aug 2013 11:43:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15893,7 +15922,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:40 GMT + recorded_at: Fri, 23 Aug 2013 11:43:54 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -15909,7 +15938,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:44 GMT + - Fri, 23 Aug 2013 11:43:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15937,7 +15966,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:40 GMT + recorded_at: Fri, 23 Aug 2013 11:43:55 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -15953,7 +15982,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:32 GMT + - Fri, 23 Aug 2013 11:43:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15982,7 +16011,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:41 GMT + recorded_at: Fri, 23 Aug 2013 11:43:55 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -15998,7 +16027,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:44 GMT + - Fri, 23 Aug 2013 11:43:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16027,10 +16056,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:41 GMT + recorded_at: Fri, 23 Aug 2013 11:43:55 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885?format=json body: encoding: US-ASCII string: '' @@ -16043,11 +16072,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:32 GMT + - Fri, 23 Aug 2013 11:43:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '947' + - '974' Connection: - keep-alive Keep-Alive: @@ -16068,22 +16097,22 @@ http_interactions: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6860,\r\n \"Name\": \"story2\",\r\n \"Description\": + string: "{\r\n \"Id\": 6885,\r\n \"Name\": \"story2\",\r\n \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255869000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255869000-0500)\\/\",\r\n + \"\\/Date(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-0500)\\/\",\r\n \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 232.5,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": + 233.0,\r\n \"Effort\": 0.0000,\r\n \"EffortCompleted\": 0.0000,\r\n \"EffortToDo\": 0.0000,\r\n \"TimeSpent\": 0.0000,\r\n \"TimeRemain\": 0.0000,\r\n \"InitialEstimate\": 0.0000,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n \ },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \ \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n - \ \"Project\": {\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\"\r\n + \ \"Project\": {\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\"\r\n \ },\r\n \"Release\": null,\r\n \"Iteration\": null,\r\n \"TeamIteration\": null,\r\n \"Team\": null,\r\n \"Priority\": {\r\n \"Id\": 5,\r\n \"Name\": \"Nice To Have\"\r\n },\r\n \"EntityState\": {\r\n \"Id\": 46,\r\n \"Name\": \"Open\"\r\n },\r\n \"Feature\": null,\r\n \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:41 GMT + recorded_at: Fri, 23 Aug 2013 11:43:56 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -16099,7 +16128,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:45 GMT + - Fri, 23 Aug 2013 11:43:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16119,7 +16148,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -16127,7 +16156,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:42 GMT + recorded_at: Fri, 23 Aug 2013 11:43:56 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -16143,7 +16172,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:33 GMT + - Fri, 23 Aug 2013 11:44:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16171,7 +16200,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:42 GMT + recorded_at: Fri, 23 Aug 2013 11:43:56 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -16187,7 +16216,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:46 GMT + - Fri, 23 Aug 2013 11:43:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16218,7 +16247,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:42 GMT + recorded_at: Fri, 23 Aug 2013 11:43:57 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -16234,7 +16263,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:34 GMT + - Fri, 23 Aug 2013 11:44:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16265,10 +16294,10 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:43 GMT + recorded_at: Fri, 23 Aug 2013 11:43:57 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -16281,11 +16310,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:46 GMT + - Fri, 23 Aug 2013 11:43:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -16301,27 +16330,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '51' + - '48' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:43 GMT + recorded_at: Fri, 23 Aug 2013 11:43:57 GMT - request: method: get - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859?format=json + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884?format=json body: encoding: US-ASCII string: '' @@ -16334,11 +16364,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:35 GMT + - Fri, 23 Aug 2013 11:44:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '759' Connection: - keep-alive Keep-Alive: @@ -16354,24 +16384,25 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '49' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 6859,\r\n \"Name\": \"Pro170019915\",\r\n \"Description\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377255868000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377255868000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 114.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": false,\r\n \"Abbreviation\": - \"PRO\",\r\n \"MailReplyAddress\": null,\r\n \"Color\": null,\r\n \"EntityType\": - {\r\n \"Id\": 1,\r\n \"Name\": \"Project\"\r\n },\r\n \"Owner\": {\r\n - \ \"Id\": 1,\r\n \"FirstName\": \"Administrator\",\r\n \"LastName\": - \"Administrator\"\r\n },\r\n \"LastCommentedUser\": null,\r\n \"Project\": - null,\r\n \"Program\": null,\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": - \"Scrum\"\r\n },\r\n \"Company\": null,\r\n \"CustomFields\": []\r\n}" + string: "{\r\n \"Id\": 6884,\r\n \"Name\": \"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51\",\r\n + \ \"Description\": null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n + \ \"CreateDate\": \"\\/Date(1377258105000-0500)\\/\",\r\n \"ModifyDate\": + \"\\/Date(1377258105000-0500)\\/\",\r\n \"LastCommentDate\": null,\r\n \"Tags\": + \"\",\r\n \"NumericPriority\": 115.0,\r\n \"IsActive\": true,\r\n \"IsProduct\": + false,\r\n \"Abbreviation\": \"PRO\",\r\n \"MailReplyAddress\": null,\r\n + \ \"Color\": null,\r\n \"EntityType\": {\r\n \"Id\": 1,\r\n \"Name\": + \"Project\"\r\n },\r\n \"Owner\": {\r\n \"Id\": 1,\r\n \"FirstName\": + \"Administrator\",\r\n \"LastName\": \"Administrator\"\r\n },\r\n \"LastCommentedUser\": + null,\r\n \"Project\": null,\r\n \"Program\": null,\r\n \"Process\": {\r\n + \ \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n },\r\n \"Company\": null,\r\n + \ \"CustomFields\": []\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:44 GMT + recorded_at: Fri, 23 Aug 2013 11:43:58 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -16387,7 +16418,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:47 GMT + - Fri, 23 Aug 2013 11:43:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16415,7 +16446,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:44 GMT + recorded_at: Fri, 23 Aug 2013 11:43:58 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/1?format=json @@ -16431,7 +16462,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:35 GMT + - Fri, 23 Aug 2013 11:44:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16459,7 +16490,7 @@ http_interactions: string: "{\r\n \"Id\": 1,\r\n \"Name\": \"Project\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": false\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:44 GMT + recorded_at: Fri, 23 Aug 2013 11:43:59 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -16475,7 +16506,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:48 GMT + - Fri, 23 Aug 2013 11:43:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16495,7 +16526,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '8' X-Ua-Compatible: - IE=edge body: @@ -16506,7 +16537,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:45 GMT + recorded_at: Fri, 23 Aug 2013 11:43:59 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/GeneralUsers/1?format=json @@ -16522,7 +16553,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:36 GMT + - Fri, 23 Aug 2013 11:44:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16553,7 +16584,7 @@ http_interactions: \"\\/Date(1376218457000-0500)\\/\",\r\n \"DeleteDate\": null,\r\n \"IsActive\": true,\r\n \"IsAdministrator\": true,\r\n \"Kind\": \"User\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:45 GMT + recorded_at: Fri, 23 Aug 2013 11:43:59 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -16569,7 +16600,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:49 GMT + - Fri, 23 Aug 2013 11:43:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16598,7 +16629,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:45 GMT + recorded_at: Fri, 23 Aug 2013 11:44:00 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -16614,7 +16645,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:37 GMT + - Fri, 23 Aug 2013 11:44:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16643,7 +16674,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:46 GMT + recorded_at: Fri, 23 Aug 2013 11:44:00 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -16659,7 +16690,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:49 GMT + - Fri, 23 Aug 2013 11:43:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16688,7 +16719,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:46 GMT + recorded_at: Fri, 23 Aug 2013 11:44:00 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Priorities/5?format=json @@ -16704,7 +16735,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:37 GMT + - Fri, 23 Aug 2013 11:44:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16733,7 +16764,7 @@ http_interactions: 5,\r\n \"IsDefault\": false,\r\n \"EntityType\": {\r\n \"Id\": 4,\r\n \ \"Name\": \"UserStory\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:46 GMT + recorded_at: Fri, 23 Aug 2013 11:44:01 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -16749,7 +16780,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:50 GMT + - Fri, 23 Aug 2013 11:43:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16777,7 +16808,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:47 GMT + recorded_at: Fri, 23 Aug 2013 11:44:01 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -16793,7 +16824,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:38 GMT + - Fri, 23 Aug 2013 11:44:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16821,7 +16852,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:47 GMT + recorded_at: Fri, 23 Aug 2013 11:44:01 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -16837,7 +16868,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:51 GMT + - Fri, 23 Aug 2013 11:43:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16868,7 +16899,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:47 GMT + recorded_at: Fri, 23 Aug 2013 11:44:02 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityStates/46?format=json @@ -16884,7 +16915,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:39 GMT + - Fri, 23 Aug 2013 11:44:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16904,7 +16935,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '9' + - '11' X-Ua-Compatible: - IE=edge body: @@ -16915,7 +16946,7 @@ http_interactions: {\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\"\r\n },\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": \"Scrum\"\r\n }\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:48 GMT + recorded_at: Fri, 23 Aug 2013 11:44:02 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -16931,7 +16962,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:51 GMT + - Fri, 23 Aug 2013 11:43:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16951,7 +16982,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '5' X-Ua-Compatible: - IE=edge body: @@ -16959,7 +16990,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:48 GMT + recorded_at: Fri, 23 Aug 2013 11:44:02 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/EntityTypes/4?format=json @@ -16975,7 +17006,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:39 GMT + - Fri, 23 Aug 2013 11:44:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -17003,7 +17034,7 @@ http_interactions: string: "{\r\n \"Id\": 4,\r\n \"Name\": \"UserStory\",\r\n \"IsExtendable\": true,\r\n \"IsSearchable\": true\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:48 GMT + recorded_at: Fri, 23 Aug 2013 11:44:03 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -17019,7 +17050,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:52 GMT + - Fri, 23 Aug 2013 11:43:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -17048,7 +17079,7 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:49 GMT + recorded_at: Fri, 23 Aug 2013 11:44:03 GMT - request: method: get uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Processes/3?format=json @@ -17064,7 +17095,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:40 GMT + - Fri, 23 Aug 2013 11:44:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -17093,10 +17124,10 @@ http_interactions: \ \"Description\": \"Scrum is an iterative, incremental methodology for project management.\"\r\n}" http_version: - recorded_at: Fri, 23 Aug 2013 11:06:49 GMT + recorded_at: Fri, 23 Aug 2013 11:44:04 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6859/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/6884/ body: encoding: US-ASCII string: '' @@ -17109,7 +17140,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:53 GMT + - Fri, 23 Aug 2013 11:43:55 GMT Content-Length: - '0' Connection: @@ -17127,17 +17158,17 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '119' + - '116' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:06:50 GMT + recorded_at: Fri, 23 Aug 2013 11:44:04 GMT - request: method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6860/ + uri: http://admin:admin@tpruby.tpondemand.com/api/v1/UserStories/6885/ body: encoding: US-ASCII string: '' @@ -17150,7 +17181,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Fri, 23 Aug 2013 11:06:42 GMT + - Fri, 23 Aug 2013 11:44:09 GMT Content-Length: - '0' Connection: @@ -17168,12 +17199,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '843' + - '819' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 23 Aug 2013 11:06:51 GMT + recorded_at: Fri, 23 Aug 2013 11:44:05 GMT recorded_with: VCR 2.5.0 diff --git a/spec/lib/target_process/api_client_spec.rb b/spec/lib/target_process/api_client_spec.rb index 96c7521..a6db892 100644 --- a/spec/lib/target_process/api_client_spec.rb +++ b/spec/lib/target_process/api_client_spec.rb @@ -51,7 +51,7 @@ describe '#post' do context 'with correct path and options' do it 'returns hash of entities attributes' do - resp = subject.post('projects', { name: "foobar#{rand(9_999_999)}" }) + resp = subject.post('projects', { name: "foobar#{SecureRandom.uuid}" }) expect(resp[:name]).to match(/foobar/) [:id, :name, :description, :start_date, :end_date, :create_date, @@ -77,8 +77,8 @@ describe '#delete' do context 'with url to existed entity' do it 'respond with 200 code' do - project = TargetProcess::Project.new(name: "Foo-#{rand(999_999)}").save - expect(subject.delete("projects/#{project.id}").code).to eq('200') + pro = TargetProcess::Project.new(name: "Foo#{SecureRandom.uuid}").save + expect(subject.delete("projects/#{pro.id}").code).to eq('200') end end diff --git a/spec/lib/target_process/base_spec.rb b/spec/lib/target_process/base_spec.rb index 459c703..e14acbe 100644 --- a/spec/lib/target_process/base_spec.rb +++ b/spec/lib/target_process/base_spec.rb @@ -30,7 +30,7 @@ context 'with passed correct id' do it 'returns project' do project = TargetProcess::Project.new( - name: "Project#{rand(99999) * rand(99999)}", + name: "Project#{SecureRandom.uuid}", start_date: Time.now).save item = subject.find(project.id) @@ -43,7 +43,7 @@ context 'with passed correct id and options' do it 'returns formatted requested entity' do project = TargetProcess::Project.new( - name: "Project#{rand(99999) * rand(99999)}", + name: "Project#{SecureRandom.uuid}", start_date: Time.now).save options = { include: '[Tasks]', append: '[Tasks-Count]' } item = subject.find(project.id, options) @@ -133,7 +133,7 @@ describe '#method_missing' do it 'provide getters for attributes values' do - unique_name = "Project#{rand(99999) * rand(99999)}" + unique_name = "Project#{SecureRandom.uuid}" project = TargetProcess::Project.new(name: unique_name).save project.attributes.keys.each do |key| @@ -163,7 +163,7 @@ context 'if set any attribute' do it 'add it to changed_attributes' do - unique_name = "Project#{rand(99999) * rand(99999)}" + unique_name = "Project#{SecureRandom.uuid}" project = TargetProcess::Project.new(name: unique_name).save new_name = 'new name' project.name = new_name @@ -175,7 +175,7 @@ context 'if edit attribute with the same old value in attributes' do it 'delete attribute from changed_attributes' do - unique_name = "Project#{rand(99999) * rand(99999)}" + unique_name = "Project#{SecureRandom.uuid}" project = TargetProcess::Project.new(name: unique_name).save prev_name = project.name project.name = 'foobar' @@ -191,7 +191,7 @@ describe '#delete' do context 'if project exist on remote host' do it 'delete project on remote host and return true' do - unique_name = "Project#{rand(99999) * rand(99999)}" + unique_name = "Project#{SecureRandom.uuid}" project = TargetProcess::Project.new(name: unique_name).save expect(project.delete).to eq(true) @@ -205,7 +205,7 @@ describe '#save' do context 'called on project with required fields' do it 'save it on remote host and update local instance attributes' do - project = subject.new(name: "Project#{rand(99999) * rand(99999)}").save + project = subject.new(name: "Project#{SecureRandom.uuid}").save remote_project = subject.find(project.id) project.numeric_priority = nil remote_project.numeric_priority = nil @@ -217,8 +217,8 @@ context 'called on project with updated attributes' do it 'updates task on remote host and clean changed attributes' do - project = subject.new(name: "Project#{rand(99999) * rand(99999)}").save - project.name = "Project_new_name#{rand(99999) * rand(99999)}" + project = subject.new(name: "Project#{SecureRandom.uuid}").save + project.name = "Project_new_name#{SecureRandom.uuid}" project.save remote = subject.find(project.id) remote.numeric_priority = nil @@ -231,7 +231,7 @@ context 'called on up-to-date local project' do it 'do nothing with local instance' do - project = subject.new(name: "Project#{rand(99999) * rand(99999)}").save + project = subject.new(name: "Project#{SecureRandom.uuid}").save project.save remote = subject.find(project.id) project.numeric_priority = nil @@ -270,7 +270,7 @@ it 'comapres projects with different attributes' do project1 = subject.new(name: 'New project') - project2 = subject.new(name: "Project#{rand(99999) * rand(99999)}").save + project2 = subject.new(name: "Project#{SecureRandom.uuid}").save expect(project1).to_not eq(project2) expect(project2).to_not eq(project1) @@ -314,26 +314,25 @@ describe '#belongs_to' do it 'provide getter for referenced items' do - p = TargetProcess::Project.new(name: "Pro#{rand(999_999_999)}").save - us = TargetProcess::UserStory.new(name: "story2", + p = TargetProcess::Project.all(orderByDesc: 'id', take: 1 ).first + us = TargetProcess::UserStory.new(name: 'story2', project: { id: p.id } ).save expect(us.project).to be_an_instance_of(TargetProcess::Project) expect(us.project).to eq(p) expect(p.user_stories.first).to eq(us) - p.delete us.delete end it 'provide setters for referenced items' do - project_name = "Pro#{rand(999_999_999)}" - p = TargetProcess::Project.new(name: project_name).save - us = TargetProcess::UserStory.new(name: "story2", project: nil) + project_name = "Pro#{SecureRandom.uuid}" + p = TargetProcess::Project.all(orderByDesc: 'id', take: 1 ).first + us = TargetProcess::UserStory.new(name: 'story2', project: nil) us.project = p - expect(us.changed_attributes[:project]).to eq({id: p.id}) + expect(us.changed_attributes[:project]).to eq({ id: p.id }) us.save expect(us.project).to eq(p) expect(p.user_stories).to include(us) @@ -342,13 +341,13 @@ describe 'has_many' do it 'provides getters for collections with symbol-named class' do - p = TargetProcess::Project.new(name: "Pro#{rand(999_999_999)}").save - us = TargetProcess::UserStory.new(name: "story2", + p = TargetProcess::Project.new(name: "Pro#{SecureRandom.uuid}").save + us = TargetProcess::UserStory.new(name: 'story2', project: { id: p.id } ).save tasks = [] 5.times do - tasks << TargetProcess::Task.new(name: "task", + tasks << TargetProcess::Task.new(name: 'task', user_story: { id: us.id } ).save end @@ -363,14 +362,14 @@ end it 'provides getters for collections with different class' do - p = TargetProcess::Project.new(name: "Pro#{rand(999_999_999)}").save - us = TargetProcess::UserStory.new(name: "story2", + p = TargetProcess::Project.new(name: "Pro#{SecureRandom.uuid}").save + us = TargetProcess::UserStory.new(name: 'story2', project: { id: p.id }, owner: { id: 1 } ).save TargetProcess::Assignment.new(assignable: { id: us.id }, general_user: { id: 1 }, - role: { id: 1} + role: { id: 1 } ).save au = us.assigned_user diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 738debd..511a070 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,4 +1,7 @@ require 'rspec/autorun' +require 'target_process' +require 'vcr' +require 'securerandom' if ENV['COVERAGE'] require 'simplecov' @@ -6,9 +9,6 @@ SimpleCov.start 'gem' end -require 'target_process' -require 'vcr' - unless ENV['TRAVIS'] VCR.configure do |c| c.cassette_library_dir = 'spec/fixtures/vcr_cassettes'