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 9e27b93..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 = { body: options } - response = perform(:get, path, options) + response = request(:get, path, query: options) normalize_response(response.parsed_response) end @@ -16,29 +15,25 @@ 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 = {}) + options.merge!(basic_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) @@ -73,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/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/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 c301b45..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 @@ -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:44:16 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: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 9bea934..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 @@ -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:44:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -35,13 +35,13 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '30' + - '26' 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: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 2e6d8b1..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 @@ -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:44:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '8606' + - '23669' Connection: - keep-alive Keep-Alive: @@ -35,13 +35,13 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '72' + - '88' 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\": \"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 \ \"TimePattern\": \"g:i A\",\r\n \"ShortDateFormat\": \"M/d/yyyy\",\r\n @@ -92,19 +92,240 @@ 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\": 2496,\r\n \"Name\": - \"Foobar1\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + 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\": 2014,\r\n \"Name\": \"foobar3318392\",\r\n \"Process\": + \ \"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\": 2030,\r\n - \ \"Name\": \"Project_new_name2499868962\",\r\n \"Process\": + \ \"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\": 4536,\r\n - \ \"Name\": \"Project_new_name3031244325\",\r\n \"Process\": + \ \"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\": 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\": 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\": 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\": 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\": 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\": 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\": 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\": 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\": 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\": @@ -112,60 +333,62 @@ http_interactions: \ \"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\": 2023,\r\n \"Name\": - \"Project1694405550\",\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\": 4535,\r\n \"Name\": \"Project1736096232\",\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\": - 2015,\r\n \"Name\": \"Project2135869770\",\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\": 2032,\r\n - \ \"Name\": \"Project2168633823\",\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\": 4531,\r\n \"Name\": - \"Project2498866686\",\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\": 2031,\r\n \"Name\": \"Project321906060\",\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\": - 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\": 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\": 2017,\r\n \"Name\": - \"Project391746579\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + 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 - \ },\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: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 6657bd1..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 @@ -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:44:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -35,13 +35,13 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '82' 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: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 0391a8f..2005566 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:44:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '8606' + - '23669' Connection: - keep-alive Keep-Alive: @@ -35,13 +35,13 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '54' + - '89' 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\": \"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 \ \"TimePattern\": \"g:i A\",\r\n \"ShortDateFormat\": \"M/d/yyyy\",\r\n @@ -92,19 +92,240 @@ 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\": 2496,\r\n \"Name\": - \"Foobar1\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n \"Name\": + 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\": 2014,\r\n \"Name\": \"foobar3318392\",\r\n \"Process\": + \ \"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\": 2030,\r\n - \ \"Name\": \"Project_new_name2499868962\",\r\n \"Process\": + \ \"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\": 4536,\r\n - \ \"Name\": \"Project_new_name3031244325\",\r\n \"Process\": + \ \"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\": 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\": 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\": 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\": 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\": 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\": 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\": 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\": 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\": 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\": @@ -112,60 +333,62 @@ http_interactions: \ \"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\": 2023,\r\n \"Name\": - \"Project1694405550\",\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\": 4535,\r\n \"Name\": \"Project1736096232\",\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\": - 2015,\r\n \"Name\": \"Project2135869770\",\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\": 2032,\r\n - \ \"Name\": \"Project2168633823\",\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\": 4531,\r\n \"Name\": - \"Project2498866686\",\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\": 2031,\r\n \"Name\": \"Project321906060\",\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\": - 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\": 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\": 2017,\r\n \"Name\": - \"Project391746579\",\r\n \"Process\": {\r\n \"Id\": 3,\r\n + 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 - \ },\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: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 eba8066..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: - - Thu, 15 Aug 2013 13:56:03 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: Thu, 15 Aug 2013 13:56:02 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 18ca193..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-899875"}' + string: '{"Name":"Foo51f597ef-cb75-448c-9faa-1fd62d5b1c68"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:02 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: - - '226' + - '489' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4540,\r\n \"Name\": \"Foo-899875\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 31.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: Thu, 15 Aug 2013 13:56:02 GMT + recorded_at: Fri, 23 Aug 2013 11:40:46 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/6869 body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:02 GMT + - Fri, 23 Aug 2013 11:40:37 GMT Content-Length: - '0' Connection: @@ -88,12 +89,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: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 8bc7f95..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 @@ -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: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: Thu, 15 Aug 2013 13:55:57 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 088ed03..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 @@ -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: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: Thu, 15 Aug 2013 13:55:58 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 f15d0bf..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 @@ -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: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: Thu, 15 Aug 2013 13:55:59 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 944e523..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 @@ -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: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: Thu, 15 Aug 2013 13:55:58 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 4be2d60..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":"foobar3193970"}' + string: '{"Name":"foobarb6dcdc32-fa5b-45ff-979c-188f77fe4a30"}' 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:40:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '732' + - '762' Connection: - keep-alive Keep-Alive: @@ -37,27 +37,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '455' + - '594' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4539,\r\n \"Name\": \"foobar3193970\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 31.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: Thu, 15 Aug 2013 13:56:00 GMT + recorded_at: Fri, 23 Aug 2013 11:40:44 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/6868 body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Thu, 15 Aug 2013 13:56:00 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: - - '93' + - '173' 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: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 6619504..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: - - Thu, 15 Aug 2013 13:56:01 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: Thu, 15 Aug 2013 13:56:01 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 d2f5c64..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 @@ -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: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: - - '63' + - '87' 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: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 c4185c1..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 @@ -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:40:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '22092' + - '21938' Connection: - keep-alive Keep-Alive: @@ -35,7 +35,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '76' + - '97' 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\": 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\": @@ -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\": 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\": @@ -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: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 c4bc618..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":"Pro381650585"}' - 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: - - Wed, 21 Aug 2013 12:19:01 GMT + - Fri, 23 Aug 2013 12:27:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '1025' Connection: - keep-alive Keep-Alive: @@ -37,30 +35,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '406' + - '84' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5488,\r\n \"Name\": \"Pro381650585\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.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: Wed, 21 Aug 2013 12:19:06 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":5488}}' + string: '{"Name":"story2","Project":{"id":6882}}' headers: Content-Type: - application/json @@ -72,11 +73,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:09 GMT + - Fri, 23 Aug 2013 12:26:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -92,33 +93,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '269' + - '224' 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\": 6893,\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(1377260826000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377260826000-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\": + 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\": 5488,\r\n \"Name\": \"Pro381650585\"\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: Wed, 21 Aug 2013 12:19:07 GMT + recorded_at: Fri, 23 Aug 2013 12:27:07 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/6882?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -128,11 +129,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:02 GMT + - Fri, 23 Aug 2013 12:27:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -148,30 +149,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '28' + - '49' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5488,\r\n \"Name\": \"Pro381650585\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.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: Wed, 21 Aug 2013 12:19:07 GMT + recorded_at: Fri, 23 Aug 2013 12:27:08 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/6882?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -181,11 +183,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:10 GMT + - Fri, 23 Aug 2013 12:26:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -201,30 +203,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '29' + - '63' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5488,\r\n \"Name\": \"Pro381650585\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.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: Wed, 21 Aug 2013 12:19:08 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 + 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 +237,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:03 GMT + - Fri, 23 Aug 2013 12:27:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -254,7 +257,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -262,13 +265,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 12:27:08 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 +281,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:11 GMT + - Fri, 23 Aug 2013 12:27:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -298,7 +301,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -306,13 +309,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 12:27: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: @@ -322,7 +325,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:04 GMT + - Fri, 23 Aug 2013 12:27:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -342,7 +345,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -353,13 +356,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 12:27: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: @@ -369,7 +372,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:12 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: - - '3' + - '7' X-Ua-Compatible: - IE=edge body: @@ -400,13 +403,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 12:27:09 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 +419,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:05 GMT + - Fri, 23 Aug 2013 12:27:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -436,7 +439,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -445,13 +448,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 12:27: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: @@ -461,7 +464,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:13 GMT + - Fri, 23 Aug 2013 12:27:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -481,7 +484,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -490,13 +493,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 12:27:10 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/6882/UserStories?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -506,11 +509,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:06 GMT + - Fri, 23 Aug 2013 12:27:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '1155' + - '2344' Connection: - keep-alive Keep-Alive: @@ -526,36 +529,52 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '92' + - '61' 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\": 6893,\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(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\": 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\": 5488,\r\n \"Name\": \"Pro381650585\"\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}" http_version: - recorded_at: Wed, 21 Aug 2013 12:19:12 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 + 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 +584,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:14 GMT + - Fri, 23 Aug 2013 12:27:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -585,7 +604,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -593,13 +612,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 12:27: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: @@ -609,7 +628,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:07 GMT + - Fri, 23 Aug 2013 12:27:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -629,7 +648,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -637,13 +656,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 12:27: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: @@ -653,7 +672,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:15 GMT + - Fri, 23 Aug 2013 12:27:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -673,7 +692,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -684,13 +703,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 12:27: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: @@ -700,7 +719,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:08 GMT + - Fri, 23 Aug 2013 12:27:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -731,13 +750,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 12:27:12 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/6882?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -747,11 +766,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:16 GMT + - Fri, 23 Aug 2013 12:27:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -767,30 +786,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '28' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5488,\r\n \"Name\": \"Pro381650585\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.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: Wed, 21 Aug 2013 12:19:14 GMT + recorded_at: Fri, 23 Aug 2013 12:27:12 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/6882?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -800,11 +820,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:09 GMT + - Fri, 23 Aug 2013 12:27:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -820,30 +840,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '28' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5488,\r\n \"Name\": \"Pro381650585\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.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: Wed, 21 Aug 2013 12:19:15 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 + 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 +874,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:17 GMT + - Fri, 23 Aug 2013 12:27:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -873,7 +894,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -881,13 +902,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 12:27:13 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 +918,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:10 GMT + - Fri, 23 Aug 2013 12:27:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -917,7 +938,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -925,13 +946,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 12:27:13 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 +962,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:18 GMT + - Fri, 23 Aug 2013 12:27:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -961,7 +982,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -972,13 +993,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 12:27:14 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 +1009,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:11 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: - - '3' + - '7' X-Ua-Compatible: - IE=edge body: @@ -1019,13 +1040,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 12:27: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: @@ -1035,7 +1056,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:19 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: - - '2' + - '5' X-Ua-Compatible: - IE=edge body: @@ -1064,13 +1085,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 12:27: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: @@ -1080,7 +1101,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:12 GMT + - Fri, 23 Aug 2013 12:27:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1100,7 +1121,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1109,13 +1130,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 12:27:15 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 +1146,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:20 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,13 +1175,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 12:27:15 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 +1191,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:13 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: - - '3' + - '7' X-Ua-Compatible: - IE=edge body: @@ -1199,13 +1220,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 12:27: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: @@ -1215,7 +1236,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:21 GMT + - Fri, 23 Aug 2013 12:27:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1235,7 +1256,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '18' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1243,13 +1264,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 12:27:16 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 +1280,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:14 GMT + - Fri, 23 Aug 2013 12:27:20 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1279,7 +1300,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1287,13 +1308,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 12:27:16 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 +1324,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:22 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: - - '8' + - '10' X-Ua-Compatible: - IE=edge body: @@ -1334,13 +1355,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 12:27:17 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 +1371,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:15 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: - - '5' + - '11' X-Ua-Compatible: - IE=edge body: @@ -1381,13 +1402,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 12:27:17 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 +1418,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:23 GMT + - Fri, 23 Aug 2013 12:27:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1417,7 +1438,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1425,13 +1446,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 12:27:17 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 +1462,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:16 GMT + - Fri, 23 Aug 2013 12:27:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1461,7 +1482,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1469,13 +1490,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 12:27: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: @@ -1485,7 +1506,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:24 GMT + - Fri, 23 Aug 2013 12:27:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1505,7 +1526,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1514,13 +1535,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 12:27: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: @@ -1530,7 +1551,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:17 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: - - '2' + - '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: Wed, 21 Aug 2013 12:19:22 GMT -- request: - method: delete - uri: http://admin:admin@tpruby.tpondemand.com/api/v1/Projects/5488/ - body: - encoding: US-ASCII - string: '' - headers: {} - response: - status: - code: 200 - message: OK - headers: - Server: - - nginx/1.4.1 - Date: - - Wed, 21 Aug 2013 12:19:25 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: - - '86' - 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 12:27:18 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/6893/ body: encoding: US-ASCII string: '' @@ -1616,7 +1596,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:18 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: - - '187' + - '193' 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 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 104dd99..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":"Pro988274817"}' - 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: - - Wed, 21 Aug 2013 12:19:26 GMT + - Fri, 23 Aug 2013 12:27:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '1025' Connection: - keep-alive Keep-Alive: @@ -37,30 +35,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '215' + - '55' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5490,\r\n \"Name\": \"Pro988274817\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.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: Wed, 21 Aug 2013 12:19:24 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":5490}}' + string: '{"Name":"story2","Project":{"id":6882}}' headers: Content-Type: - application/json @@ -72,11 +73,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:22 GMT + - Fri, 23 Aug 2013 12:27:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -92,33 +93,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '140' + - '192' 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\": 6894,\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(1377260839000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377260839000-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\": + 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\": 5490,\r\n \"Name\": \"Pro988274817\"\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: Wed, 21 Aug 2013 12:19:27 GMT + recorded_at: Fri, 23 Aug 2013 12:27:20 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/6882?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -128,11 +129,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:30 GMT + - Fri, 23 Aug 2013 12:27:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -148,30 +149,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '30' + - '56' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5490,\r\n \"Name\": \"Pro988274817\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.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: Wed, 21 Aug 2013 12:19:28 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 + 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 +183,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:23 GMT + - Fri, 23 Aug 2013 12:27:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -201,7 +203,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -209,13 +211,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 12:27:21 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 +227,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:31 GMT + - Fri, 23 Aug 2013 12:27:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -245,7 +247,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -253,13 +255,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 12:27:21 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 +271,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:24 GMT + - Fri, 23 Aug 2013 12:27:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -289,7 +291,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -300,13 +302,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 12:27:21 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 +318,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:32 GMT + - Fri, 23 Aug 2013 12:27:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -336,7 +338,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -347,13 +349,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 12:27: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: @@ -363,7 +365,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:25 GMT + - Fri, 23 Aug 2013 12:27:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -383,7 +385,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -392,13 +394,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 12:27: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: @@ -408,7 +410,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:33 GMT + - Fri, 23 Aug 2013 12:27:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -428,7 +430,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -437,13 +439,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 12:27:22 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/6882/UserStories?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -453,11 +455,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:26 GMT + - Fri, 23 Aug 2013 12:27:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '1155' + - '2344' Connection: - keep-alive Keep-Alive: @@ -473,36 +475,52 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '36' + - '61' 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\": 6894,\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(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\": 5490,\r\n \"Name\": \"Pro988274817\"\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: Wed, 21 Aug 2013 12:19:31 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 + 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 +530,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:34 GMT + - Fri, 23 Aug 2013 12:27:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -532,7 +550,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -540,13 +558,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 12:27: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: @@ -556,7 +574,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:27 GMT + - Fri, 23 Aug 2013 12:27:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -576,7 +594,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -584,13 +602,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 12:27: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: @@ -600,7 +618,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:35 GMT + - Fri, 23 Aug 2013 12:27:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -620,7 +638,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -631,13 +649,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 12:27: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: @@ -647,7 +665,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:28 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: - - '3' + - '7' X-Ua-Compatible: - IE=edge body: @@ -678,13 +696,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 12:27:24 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/6882?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -694,11 +712,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:36 GMT + - Fri, 23 Aug 2013 12:27:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -714,30 +732,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '29' + - '53' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5490,\r\n \"Name\": \"Pro988274817\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.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: Wed, 21 Aug 2013 12:19:34 GMT + recorded_at: Fri, 23 Aug 2013 12:27:24 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/6882?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -747,11 +766,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:29 GMT + - Fri, 23 Aug 2013 12:27:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -767,30 +786,31 @@ 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\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377087562000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377087562000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 41.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: Wed, 21 Aug 2013 12:19:34 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 + 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 +820,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:37 GMT + - Fri, 23 Aug 2013 12:27:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -820,7 +840,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -828,13 +848,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 12:27: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: @@ -844,7 +864,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:30 GMT + - Fri, 23 Aug 2013 12:27:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -864,7 +884,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -872,13 +892,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 12:27: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: @@ -888,7 +908,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:38 GMT + - Fri, 23 Aug 2013 12:27:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -908,7 +928,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -919,13 +939,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 12:27: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: @@ -935,7 +955,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:31 GMT + - Fri, 23 Aug 2013 12:27:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -955,7 +975,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -966,13 +986,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 12:27: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: @@ -982,7 +1002,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:39 GMT + - Fri, 23 Aug 2013 12:27:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1002,7 +1022,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1011,13 +1031,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 12:27:27 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 +1047,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:32 GMT + - Fri, 23 Aug 2013 12:27:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1047,7 +1067,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1056,13 +1076,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 12:27:27 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 +1092,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:40 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: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -1101,13 +1121,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 12:27:27 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 +1137,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:33 GMT + - Fri, 23 Aug 2013 12:27:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1137,7 +1157,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '6' X-Ua-Compatible: - IE=edge body: @@ -1146,13 +1166,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 12:27: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: @@ -1162,7 +1182,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:41 GMT + - Fri, 23 Aug 2013 12:27:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1182,7 +1202,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1190,13 +1210,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 12:27: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: @@ -1206,7 +1226,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:34 GMT + - Fri, 23 Aug 2013 12:27:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1226,7 +1246,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1234,13 +1254,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 12:27:28 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 +1270,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:42 GMT + - Fri, 23 Aug 2013 12:27:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1270,7 +1290,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '10' X-Ua-Compatible: - IE=edge body: @@ -1281,13 +1301,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 12:27:29 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 +1317,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:35 GMT + - Fri, 23 Aug 2013 12:27:20 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1317,7 +1337,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '10' X-Ua-Compatible: - IE=edge body: @@ -1328,13 +1348,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 12:27:29 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 +1364,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:43 GMT + - Fri, 23 Aug 2013 12:27:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1364,7 +1384,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1372,13 +1392,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 12:27:29 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 +1408,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:36 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: - - '2' + - '5' X-Ua-Compatible: - IE=edge body: @@ -1416,13 +1436,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 12:27:30 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 +1452,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:44 GMT + - Fri, 23 Aug 2013 12:27:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1452,7 +1472,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1461,13 +1481,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 12:27:30 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 +1497,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Wed, 21 Aug 2013 12:19:37 GMT + - Fri, 23 Aug 2013 12:27:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1497,7 +1517,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1506,5 +1526,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 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 1f7320e..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":"Project1843846326"}' + string: '{"Name":"Project4bc9d2eb-effc-40cb-8fde-21ba3c276413"}' 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:40:52 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: - - '259' + - '489' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4674,\r\n \"Name\": \"Project1843846326\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.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: Mon, 19 Aug 2013 15:59:43 GMT + recorded_at: Fri, 23 Aug 2013 11:41:01 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/6875/ body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:44 GMT + - Fri, 23 Aug 2013 11:41:05 GMT Content-Length: - '0' Connection: @@ -88,20 +89,20 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '72' + - '140' 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:41:01 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/6875?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -111,7 +112,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:41 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 - 4674 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 - 4674 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: Mon, 19 Aug 2013 15:59:43 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 84e7d1c..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":"Project2746805022"}' + string: '{"Name":"Projecta78b6ef2-a6c3-463e-8e17-69fe761702dd"}' 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:41:07 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: - - '256' + - '517' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4678,\r\n \"Name\": \"Project2746805022\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.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: Mon, 19 Aug 2013 16:00:00 GMT + recorded_at: Fri, 23 Aug 2013 11:41:16 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/6879/ body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:00:02 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: - - '74' + - '128' 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: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 a2dff2a..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":"Project8353122016","StartDate":"/Date(1376927970000+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: - - Mon, 19 Aug 2013 15:59:28 GMT + - Fri, 23 Aug 2013 11:40:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '762' + - '789' Connection: - keep-alive Keep-Alive: @@ -37,31 +37,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '328' + - '500' 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\": - 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: Mon, 19 Aug 2013 15:59:30 GMT + recorded_at: Fri, 23 Aug 2013 11:40:48 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/6870?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:40:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '762' + - '789' Connection: - keep-alive Keep-Alive: @@ -91,28 +91,28 @@ 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\": - 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: Mon, 19 Aug 2013 15:59:31 GMT + recorded_at: Fri, 23 Aug 2013 11:40:49 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/6870/ 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:40:40 GMT Content-Length: - '0' Connection: @@ -143,12 +143,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '126' + - '145' 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: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 c7bb893..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":"Project4166808984","StartDate":"/Date(1376927971000+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: - - Mon, 19 Aug 2013 15:59:33 GMT + - Fri, 23 Aug 2013 11:40:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '762' + - '789' Connection: - keep-alive Keep-Alive: @@ -37,31 +37,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '231' + - '576' 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\": - 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: Mon, 19 Aug 2013 15:59:32 GMT + recorded_at: Fri, 23 Aug 2013 11:40:50 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/6871?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: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: - - '74' + - '84' 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\": 6871,\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:40:51 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/6871/ 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:40:55 GMT Content-Length: - '0' Connection: @@ -133,12 +133,12 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '80' + - '140' 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: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 30d4a42..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 @@ -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: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: Mon, 19 Aug 2013 15:59:34 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 d11faca..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 @@ -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: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: Mon, 19 Aug 2013 15:59:34 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 8cc3d2e..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 @@ -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:40:59 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' + - '18' 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: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 89e0d5c..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":"Project2968735626"}' + string: '{"Name":"Project7e134c1f-b0ec-4d6b-8531-235d8fb7fdca"}' 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:40:50 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: - - '206' + - '504' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4681,\r\n \"Name\": \"Project2968735626\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.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: Mon, 19 Aug 2013 16:02:27 GMT + recorded_at: Fri, 23 Aug 2013 11:40:59 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/6874/ body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:02:28 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: - - '66' + - '115' 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: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 80aa2f8..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":"Project5504872872"}' + string: '{"Name":"Project63ffd146-9230-4c0b-99fd-5b46114eabc8"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:02:23 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: - - '200' + - '498' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4680,\r\n \"Name\": \"Project5504872872\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.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: Mon, 19 Aug 2013 16:02:25 GMT + recorded_at: Fri, 23 Aug 2013 11:40:58 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/6873/ body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:02:27 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: - - '74' + - '145' 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: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 76f578f..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":"Project880347936"}' + string: '{"Name":"Projecte8bbf283-ee85-414e-9745-5cac6852185e"}' 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:40:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '735' + - '763' Connection: - keep-alive Keep-Alive: @@ -37,27 +37,28 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '215' + - '519' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4679,\r\n \"Name\": \"Project880347936\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.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: Mon, 19 Aug 2013 16:02:24 GMT + recorded_at: Fri, 23 Aug 2013 11:40:56 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/6872/ body: encoding: US-ASCII string: '' @@ -70,7 +71,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:02:26 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: - - '72' + - '113' 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: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 682ba48..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":"Project101304504"}' + string: '{"Name":"Projectc7749be8-bb93-4a20-9d8f-da143adca1e5"}' 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:41:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '735' + - '763' Connection: - keep-alive Keep-Alive: @@ -37,30 +37,31 @@ 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\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1376927981000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1376927981000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.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: Mon, 19 Aug 2013 15:59:44 GMT + recorded_at: Fri, 23 Aug 2013 11:41:03 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/6876?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -70,11 +71,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:43 GMT + - Fri, 23 Aug 2013 11:40:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '735' + - '763' Connection: - keep-alive Keep-Alive: @@ -90,30 +91,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '577' + - '51' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4675,\r\n \"Name\": \"Project101304504\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.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: Mon, 19 Aug 2013 15:59:45 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 + 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 +125,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:47 GMT + - Fri, 23 Aug 2013 11:41:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -143,7 +145,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -151,13 +153,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:41:03 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 +169,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:44 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: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -195,13 +197,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:41: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: @@ -211,7 +213,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:48 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: - - '5' + - '7' X-Ua-Compatible: - IE=edge body: @@ -242,13 +244,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:41: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: @@ -258,7 +260,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:45 GMT + - Fri, 23 Aug 2013 11:40:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -278,7 +280,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -289,13 +291,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:41:04 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 +307,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:49 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: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -334,13 +336,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:41: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: @@ -350,7 +352,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:46 GMT + - Fri, 23 Aug 2013 11:40:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -370,7 +372,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '2' + - '4' X-Ua-Compatible: - IE=edge body: @@ -379,10 +381,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:41:05 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/6876/ body: encoding: US-ASCII string: '' @@ -395,7 +397,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:50 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: - - '115' + - '111' 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: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 ab1d8ca..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":"Project1996513354"}' + string: '{"Name":"Project1c1effa4-13ea-4c3b-9f7c-769e908deef2"}' 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:40:58 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: - - '221' + - '511' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4676,\r\n \"Name\": \"Project1996513354\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.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: Mon, 19 Aug 2013 15:59:50 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_name722724607","Id":4676}' + 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: - - Mon, 19 Aug 2013 15:59:51 GMT + - Fri, 23 Aug 2013 11:41:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '744' + - '772' Connection: - keep-alive Keep-Alive: @@ -92,16 +93,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '93' + - '120' 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\": 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(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(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,13 +111,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:41:07 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/6877?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -126,11 +127,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:49 GMT + - Fri, 23 Aug 2013 11:40:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '744' + - '772' Connection: - keep-alive Keep-Alive: @@ -146,16 +147,16 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '35' + - '60' 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\": 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(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(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,13 +165,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:41:08 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 +181,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:52 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: - - '2' + - '5' X-Ua-Compatible: - IE=edge body: @@ -208,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: Mon, 19 Aug 2013 15:59:51 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 + 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 +225,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:50 GMT + - Fri, 23 Aug 2013 11:40:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -244,7 +245,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -252,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: Mon, 19 Aug 2013 15:59:52 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 + 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 +269,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:53 GMT + - Fri, 23 Aug 2013 11:41:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -288,7 +289,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -299,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: Mon, 19 Aug 2013 15:59:52 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 + 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 +316,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:51 GMT + - Fri, 23 Aug 2013 11:41:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -335,7 +336,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -346,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: Mon, 19 Aug 2013 15:59:53 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 + 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 +363,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:54 GMT + - Fri, 23 Aug 2013 11:41:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -382,7 +383,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -391,13 +392,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:41:09 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 +408,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:51 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: - - '3' + - '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: Mon, 19 Aug 2013 15:59:54 GMT + recorded_at: Fri, 23 Aug 2013 11:41:10 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/6877/ body: encoding: US-ASCII string: '' @@ -452,7 +453,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:55 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: - - '71' + - '135' 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: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 783f4e9..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":"Project1905034809"}' + string: '{"Name":"Project0d074ec6-a265-40b6-baf4-56bdff76ba2f"}' headers: Content-Type: - application/json @@ -17,11 +17,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:53 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: - - '220' + - '531' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4677,\r\n \"Name\": \"Project1905034809\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.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: Mon, 19 Aug 2013 15:59:55 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":4677}' + string: '{"Id":6878}' headers: Content-Type: - application/json @@ -72,11 +73,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:56 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,30 +93,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '56' + - '74' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4677,\r\n \"Name\": \"Project1905034809\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.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: Mon, 19 Aug 2013 15:59:55 GMT + recorded_at: Fri, 23 Aug 2013 11:41:12 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/6878?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -125,11 +127,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:54 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,30 +147,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '48' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 4677,\r\n \"Name\": \"Project1905034809\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 32.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: Mon, 19 Aug 2013 15:59:56 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 + 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 +181,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:57 GMT + - Fri, 23 Aug 2013 11:41:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -198,7 +201,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -206,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: Mon, 19 Aug 2013 15:59:56 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 + 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 +225,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:55 GMT + - Fri, 23 Aug 2013 11:41:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -242,7 +245,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -250,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: Mon, 19 Aug 2013 15:59:57 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 + 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 +269,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:58 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: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -297,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: Mon, 19 Aug 2013 15:59:57 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 + 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 +316,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:56 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: - - '4' + - '7' X-Ua-Compatible: - IE=edge body: @@ -344,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: Mon, 19 Aug 2013 15:59:58 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 + 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 +363,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:59 GMT + - Fri, 23 Aug 2013 11:41:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -380,7 +383,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -389,13 +392,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:41: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: @@ -405,7 +408,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 15:59:57 GMT + - Fri, 23 Aug 2013 11:41:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -425,7 +428,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '3' + - '4' X-Ua-Compatible: - IE=edge body: @@ -434,10 +437,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:41:14 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/6878/ body: encoding: US-ASCII string: '' @@ -450,7 +453,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Mon, 19 Aug 2013 16:00:00 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: - - '72' + - '121' 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: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 867b218..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 @@ -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:40:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '22127' + - '21973' Connection: - keep-alive Keep-Alive: @@ -35,7 +35,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '157' + - '186' 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\": 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 },\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}" http_version: - recorded_at: Mon, 19 Aug 2013 15:59:36 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 ab79d3f..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 @@ -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: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: Mon, 19 Aug 2013 15:59:38 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 739700c..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 @@ -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:40:58 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' + - '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\": 4537,\r\n \"Name\": \"Project5007063875\",\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(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(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: Mon, 19 Aug 2013 15:59:37 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 da8f321..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":"Pro394154672"}' + string: '{"Name":"Pro585180c6-a285-40f7-a3d5-0986c8d81a11"}' 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:43:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -37,30 +37,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '276' + - '601' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5276,\r\n \"Name\": \"Pro394154672\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:43:14 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":5276},"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: - - Tue, 20 Aug 2013 14:43:17 GMT + - Fri, 23 Aug 2013 11:44:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -92,33 +93,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '189' + - '203' 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\": 6892,\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(1377258246000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258246000-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\": + 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\": 5276,\r\n \"Name\": \"Pro394154672\"\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: Tue, 20 Aug 2013 14:43:15 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":5277},"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: - - Tue, 20 Aug 2013 14:43:12 GMT + - Fri, 23 Aug 2013 11:43:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -150,24 +151,24 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '69' + - '86' 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\": 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: Tue, 20 Aug 2013 14:43:16 GMT + recorded_at: Fri, 23 Aug 2013 11:44:08 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/6892/AssignedUser?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -177,7 +178,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:18 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: - - '9' + - '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: Tue, 20 Aug 2013 14:43:17 GMT + recorded_at: Fri, 23 Aug 2013 11:44:08 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/6892/ body: encoding: US-ASCII string: '' @@ -225,7 +226,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:13 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: - - '246' + - '215' 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:44:09 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/6891/ body: encoding: US-ASCII string: '' @@ -266,7 +267,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:19 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: - - '76' + - '114' 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: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 d16d330..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":"Pro194521092"}' + string: '{"Name":"Prof4bdf257-6ed1-4e18-bf36-0dd5d8af2b51"}' 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:41:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -37,30 +37,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '248' + - '566' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:39:40 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":5269}}' + string: '{"Name":"story2","Project":{"id":6884}}' headers: Content-Type: - application/json @@ -72,11 +73,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:42 GMT + - Fri, 23 Aug 2013 11:41:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -92,33 +93,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '248' + - '217' 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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:39:41 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":5270}}' + string: '{"Name":"task","UserStory":{"id":6885}}' headers: Content-Type: - application/json @@ -130,11 +131,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:38 GMT + - Fri, 23 Aug 2013 11:41:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '942' + - '970' Connection: - keep-alive Keep-Alive: @@ -150,34 +151,34 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '255' + - '211' 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\": 6886,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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.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\": - 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 \"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: Tue, 20 Aug 2013 14:39:41 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":5270}}' + string: '{"Name":"task","UserStory":{"id":6885}}' headers: Content-Type: - application/json @@ -189,11 +190,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:44 GMT + - Fri, 23 Aug 2013 11:41:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '942' + - '970' Connection: - keep-alive Keep-Alive: @@ -209,34 +210,34 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '281' + - '277' 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\": 6887,\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(1377258107000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258107000-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\": + 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\": - 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 \"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: Tue, 20 Aug 2013 14:39:42 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":5270}}' + string: '{"Name":"task","UserStory":{"id":6885}}' headers: Content-Type: - application/json @@ -248,11 +249,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:39 GMT + - Fri, 23 Aug 2013 11:41:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '942' + - '970' Connection: - keep-alive Keep-Alive: @@ -268,34 +269,34 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '222' + - '231' 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\": 6888,\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(1377258108000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258108000-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.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\": - 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 \"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: Tue, 20 Aug 2013 14:39:43 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":5270}}' + string: '{"Name":"task","UserStory":{"id":6885}}' headers: Content-Type: - application/json @@ -307,11 +308,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:45 GMT + - Fri, 23 Aug 2013 11:41:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '942' + - '970' Connection: - keep-alive Keep-Alive: @@ -327,34 +328,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\": 6889,\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(1377258109000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258109000-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\": + 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\": - 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 \"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: Tue, 20 Aug 2013 14:39:44 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":5270}}' + string: '{"Name":"task","UserStory":{"id":6885}}' headers: Content-Type: - application/json @@ -366,11 +367,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:41 GMT + - Fri, 23 Aug 2013 11:41:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '942' + - '970' Connection: - keep-alive Keep-Alive: @@ -386,34 +387,34 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '227' + - '233' 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\": 6890,\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(1377258109000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258109000-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.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\": - 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 \"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: Tue, 20 Aug 2013 14:39:44 GMT + recorded_at: Fri, 23 Aug 2013 11:41:50 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/6885/Tasks?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -423,11 +424,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:47 GMT + - Fri, 23 Aug 2013 11:41:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '5707' + - '5847' Connection: - keep-alive Keep-Alive: @@ -448,95 +449,95 @@ http_interactions: - 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\": 6886,\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(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\": 5269,\r\n \"Name\": \"Pro194521092\"\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\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5272,\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(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(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\": 5269,\r\n \"Name\": \"Pro194521092\"\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\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5273,\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(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(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\": 5269,\r\n \"Name\": \"Pro194521092\"\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\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5274,\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(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(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\": 5269,\r\n \"Name\": \"Pro194521092\"\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\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5275,\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(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(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\": 5269,\r\n \"Name\": \"Pro194521092\"\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\": 5270,\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: Tue, 20 Aug 2013 14:39:45 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 + 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 +547,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:42 GMT + - Fri, 23 Aug 2013 11:41:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -574,13 +575,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:41:51 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 +591,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:48 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,13 +619,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:41: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: @@ -634,7 +635,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:43 GMT + - Fri, 23 Aug 2013 11:41:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -665,13 +666,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:41:52 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 +682,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:49 GMT + - Fri, 23 Aug 2013 11:41:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -712,13 +713,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:41:52 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -728,11 +729,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:44 GMT + - Fri, 23 Aug 2013 11:41:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -748,30 +749,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '47' + - '51' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:39:48 GMT + recorded_at: Fri, 23 Aug 2013 11:41:53 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -781,11 +783,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:50 GMT + - Fri, 23 Aug 2013 11:41:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -801,30 +803,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '62' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:39:48 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 + 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 +837,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:46 GMT + - Fri, 23 Aug 2013 11:41:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -862,13 +865,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:41: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: @@ -878,7 +881,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:52 GMT + - Fri, 23 Aug 2013 11:41:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -906,13 +909,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:41: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: @@ -922,7 +925,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:47 GMT + - Fri, 23 Aug 2013 11:41:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -953,13 +956,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:41: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: @@ -969,7 +972,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:53 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: - - '8' + - '7' X-Ua-Compatible: - IE=edge body: @@ -1000,13 +1003,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:41: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: @@ -1016,7 +1019,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:48 GMT + - Fri, 23 Aug 2013 11:41:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1045,13 +1048,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:41: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: @@ -1061,7 +1064,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:54 GMT + - Fri, 23 Aug 2013 11:41:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1081,7 +1084,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '38' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1090,13 +1093,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:41:55 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 +1109,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:49 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: - - '6' + - '8' X-Ua-Compatible: - IE=edge body: @@ -1135,13 +1138,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:41:55 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 +1154,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:55 GMT + - Fri, 23 Aug 2013 11:41:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1171,7 +1174,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -1180,13 +1183,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:41:56 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 +1199,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:50 GMT + - Fri, 23 Aug 2013 11:41:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1224,13 +1227,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:41:56 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 +1243,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:56 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,13 +1271,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:41:57 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 +1287,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:51 GMT + - Fri, 23 Aug 2013 11:42:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1316,13 +1319,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:41:57 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 +1335,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:57 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,13 +1367,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:41:57 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 +1383,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:52 GMT + - Fri, 23 Aug 2013 11:42:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1408,13 +1411,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:41:58 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 +1427,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:58 GMT + - Fri, 23 Aug 2013 11:41:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1452,13 +1455,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:41:58 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 +1471,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:53 GMT + - Fri, 23 Aug 2013 11:42:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1496,13 +1499,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:41:58 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 +1515,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:59 GMT + - Fri, 23 Aug 2013 11:41:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1540,13 +1543,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:41: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: @@ -1556,7 +1559,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:54 GMT + - Fri, 23 Aug 2013 11:42:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1585,13 +1588,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:41: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: @@ -1601,7 +1604,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:00 GMT + - Fri, 23 Aug 2013 11:41:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1630,13 +1633,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:42:00 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1646,11 +1649,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:56 GMT + - Fri, 23 Aug 2013 11:42:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -1666,33 +1669,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '60' + - '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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:39:59 GMT + recorded_at: Fri, 23 Aug 2013 11:42:00 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1702,11 +1705,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:02 GMT + - Fri, 23 Aug 2013 11:41:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -1722,33 +1725,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '60' + - '62' 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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:40:00 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 + 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 +1761,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:57 GMT + - Fri, 23 Aug 2013 11:42:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1786,13 +1789,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:42:01 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 +1805,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:03 GMT + - Fri, 23 Aug 2013 11:41:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1822,7 +1825,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -1830,13 +1833,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:42: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: @@ -1846,7 +1849,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:39:58 GMT + - Fri, 23 Aug 2013 11:42:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1877,13 +1880,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:42: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: @@ -1893,7 +1896,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:04 GMT + - Fri, 23 Aug 2013 11:41:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -1913,7 +1916,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -1924,13 +1927,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:42:02 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1940,11 +1943,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:00 GMT + - Fri, 23 Aug 2013 11:42:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -1960,30 +1963,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '49' + - '52' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:40:03 GMT + recorded_at: Fri, 23 Aug 2013 11:42:02 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -1993,11 +1997,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:06 GMT + - Fri, 23 Aug 2013 11:41:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -2013,30 +2017,31 @@ 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\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:40:04 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 + 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 +2051,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:01 GMT + - Fri, 23 Aug 2013 11:42:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2074,13 +2079,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:42:03 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 +2095,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:07 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: - - '8' + - '5' X-Ua-Compatible: - IE=edge body: @@ -2118,13 +2123,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:42:03 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 +2139,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:02 GMT + - Fri, 23 Aug 2013 11:42:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2154,7 +2159,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -2165,13 +2170,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:42: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: @@ -2181,7 +2186,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:08 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,13 +2217,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:42:04 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 +2233,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:03 GMT + - Fri, 23 Aug 2013 11:42:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2257,13 +2262,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:42:04 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 +2278,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:09 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,13 +2307,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:42:05 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 +2323,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:04 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: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -2347,13 +2352,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:42:05 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 +2368,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:10 GMT + - Fri, 23 Aug 2013 11:41:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2392,13 +2397,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:42: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: @@ -2408,7 +2413,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:05 GMT + - Fri, 23 Aug 2013 11:42:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2436,13 +2441,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:42:06 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 +2457,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:11 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: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -2480,13 +2485,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:42:06 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 +2501,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:06 GMT + - Fri, 23 Aug 2013 11:42:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2527,13 +2532,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:42:06 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 +2548,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:12 GMT + - Fri, 23 Aug 2013 11:41:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2574,13 +2579,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:42: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: @@ -2590,7 +2595,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:07 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: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -2618,13 +2623,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:42: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: @@ -2634,7 +2639,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:13 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,13 +2667,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:42: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: @@ -2678,7 +2683,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:08 GMT + - Fri, 23 Aug 2013 11:42:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2707,13 +2712,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:42:08 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 +2728,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:14 GMT + - Fri, 23 Aug 2013 11:41:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2743,7 +2748,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -2752,13 +2757,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:42:08 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 +2773,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:09 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,13 +2801,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:42:08 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 +2817,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:15 GMT + - Fri, 23 Aug 2013 11:42:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -2840,13 +2845,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:42: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: @@ -2856,7 +2861,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:10 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: - - '8' + - '6' X-Ua-Compatible: - IE=edge body: @@ -2887,13 +2892,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:42: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: @@ -2903,7 +2908,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:16 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: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -2934,13 +2939,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:42:09 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -2950,11 +2955,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:11 GMT + - Fri, 23 Aug 2013 11:42:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -2970,30 +2975,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '51' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:40:14 GMT + recorded_at: Fri, 23 Aug 2013 11:42:10 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3003,11 +3009,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:17 GMT + - Fri, 23 Aug 2013 11:42:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -3023,30 +3029,31 @@ 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\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:40:15 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 + 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 +3063,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:12 GMT + - Fri, 23 Aug 2013 11:42:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3084,13 +3091,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:42:11 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 +3107,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:18 GMT + - Fri, 23 Aug 2013 11:42:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3128,13 +3135,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:42: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: @@ -3144,7 +3151,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:13 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: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -3175,13 +3182,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:42: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: @@ -3191,7 +3198,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:19 GMT + - Fri, 23 Aug 2013 11:42:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3222,13 +3229,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:42: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: @@ -3238,7 +3245,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:14 GMT + - Fri, 23 Aug 2013 11:42:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3267,13 +3274,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:42: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: @@ -3283,7 +3290,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:20 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: - - '4' + - '6' X-Ua-Compatible: - IE=edge body: @@ -3312,13 +3319,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:42:12 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 +3335,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:15 GMT + - Fri, 23 Aug 2013 11:42:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3348,7 +3355,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -3357,13 +3364,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:42:13 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 +3380,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:21 GMT + - Fri, 23 Aug 2013 11:42:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3402,13 +3409,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:42:13 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 +3425,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:16 GMT + - Fri, 23 Aug 2013 11:42:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3446,13 +3453,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:42:13 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 +3469,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:22 GMT + - Fri, 23 Aug 2013 11:42:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3490,13 +3497,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:42:14 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 +3513,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:17 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,13 +3545,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:42:14 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 +3561,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:23 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,13 +3593,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:42:14 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 +3609,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:18 GMT + - Fri, 23 Aug 2013 11:42:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3630,13 +3637,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:42:15 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 +3653,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:24 GMT + - Fri, 23 Aug 2013 11:42:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3674,13 +3681,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:42:15 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 +3697,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:19 GMT + - Fri, 23 Aug 2013 11:42:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3718,13 +3725,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:42:15 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 +3741,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:25 GMT + - Fri, 23 Aug 2013 11:42:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -3762,13 +3769,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:42: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: @@ -3778,7 +3785,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:22 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,13 +3814,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:42: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: @@ -3823,7 +3830,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:28 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,13 +3859,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:42:16 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3868,11 +3875,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:23 GMT + - Fri, 23 Aug 2013 11:42:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -3888,33 +3895,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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:40:27 GMT + recorded_at: Fri, 23 Aug 2013 11:42:17 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -3924,11 +3931,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:29 GMT + - Fri, 23 Aug 2013 11:42:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -3944,33 +3951,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '61' + - '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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:40:28 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 + 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 +3987,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:24 GMT + - Fri, 23 Aug 2013 11:42:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4008,13 +4015,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:42:18 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 +4031,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:30 GMT + - Fri, 23 Aug 2013 11:42:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4052,13 +4059,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:42: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: @@ -4068,7 +4075,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:25 GMT + - Fri, 23 Aug 2013 11:42:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4088,7 +4095,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -4099,13 +4106,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:42: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: @@ -4115,7 +4122,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:31 GMT + - Fri, 23 Aug 2013 11:42:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4135,7 +4142,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -4146,13 +4153,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:42:19 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4162,11 +4169,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:27 GMT + - Fri, 23 Aug 2013 11:42:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -4182,30 +4189,31 @@ 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\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:40:30 GMT + recorded_at: Fri, 23 Aug 2013 11:42:19 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -4215,11 +4223,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:33 GMT + - Fri, 23 Aug 2013 11:42:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -4235,30 +4243,31 @@ 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\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:40:31 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 + 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 +4277,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:28 GMT + - Fri, 23 Aug 2013 11:42:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4296,13 +4305,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:42:20 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 +4321,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:34 GMT + - Fri, 23 Aug 2013 11:42:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4340,13 +4349,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:42: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: @@ -4356,7 +4365,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:29 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: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -4387,13 +4396,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:42: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: @@ -4403,7 +4412,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:36 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,13 +4443,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:42:21 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 +4459,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:31 GMT + - Fri, 23 Aug 2013 11:42:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4479,13 +4488,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:42:21 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 +4504,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:37 GMT + - Fri, 23 Aug 2013 11:42:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4515,7 +4524,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '61' + - '4' X-Ua-Compatible: - IE=edge body: @@ -4524,13 +4533,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:42:21 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 +4549,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:32 GMT + - Fri, 23 Aug 2013 11:42:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4569,13 +4578,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:42:22 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 +4594,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:38 GMT + - Fri, 23 Aug 2013 11:42:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4605,7 +4614,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -4614,13 +4623,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:42: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: @@ -4630,7 +4639,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:33 GMT + - Fri, 23 Aug 2013 11:42:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4658,13 +4667,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:42: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: @@ -4674,7 +4683,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:39 GMT + - Fri, 23 Aug 2013 11:42:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4702,13 +4711,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:42:23 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 +4727,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:34 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,13 +4758,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:42:23 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 +4774,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:40 GMT + - Fri, 23 Aug 2013 11:42:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4785,7 +4794,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -4796,13 +4805,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:42:24 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 +4821,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:35 GMT + - Fri, 23 Aug 2013 11:42:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4840,13 +4849,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:42:24 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 +4865,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:41 GMT + - Fri, 23 Aug 2013 11:42:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4884,13 +4893,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:42:24 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 +4909,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:37 GMT + - Fri, 23 Aug 2013 11:42:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4929,13 +4938,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:42: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: @@ -4945,7 +4954,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:43 GMT + - Fri, 23 Aug 2013 11:42:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -4974,13 +4983,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:42:26 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 +4999,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:38 GMT + - Fri, 23 Aug 2013 11:42:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5018,13 +5027,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:42:26 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 +5043,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:44 GMT + - Fri, 23 Aug 2013 11:42:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5062,13 +5071,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:42:27 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 +5087,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:39 GMT + - Fri, 23 Aug 2013 11:42:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5098,7 +5107,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -5109,13 +5118,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:42:27 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 +5134,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:45 GMT + - Fri, 23 Aug 2013 11:42:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5156,13 +5165,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:42:27 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5172,11 +5181,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:42 GMT + - Fri, 23 Aug 2013 11:42:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -5192,30 +5201,31 @@ 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\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:40:45 GMT + recorded_at: Fri, 23 Aug 2013 11:42:28 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -5225,11 +5235,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:48 GMT + - Fri, 23 Aug 2013 11:42:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -5245,30 +5255,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '48' + - '67' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:40:46 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 + 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 +5289,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:43 GMT + - Fri, 23 Aug 2013 11:42:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5306,13 +5317,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:42:30 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 +5333,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:49 GMT + - Fri, 23 Aug 2013 11:42:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5350,13 +5361,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:42: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: @@ -5366,7 +5377,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:44 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,13 +5408,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:42: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: @@ -5413,7 +5424,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:50 GMT + - Fri, 23 Aug 2013 11:42:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5444,13 +5455,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:42:31 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 +5471,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:45 GMT + - Fri, 23 Aug 2013 11:42:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5489,13 +5500,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:42:31 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 +5516,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:51 GMT + - Fri, 23 Aug 2013 11:42:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5534,13 +5545,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:42:31 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 +5561,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:46 GMT + - Fri, 23 Aug 2013 11:42:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5570,7 +5581,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -5579,13 +5590,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:42:32 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 +5606,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:52 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: - - '7' + - '5' X-Ua-Compatible: - IE=edge body: @@ -5624,13 +5635,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:42:32 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 +5651,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:47 GMT + - Fri, 23 Aug 2013 11:42:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5668,13 +5679,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:42:32 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 +5695,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:53 GMT + - Fri, 23 Aug 2013 11:42:36 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5712,13 +5723,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:42:33 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 +5739,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:48 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,13 +5771,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:42:33 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 +5787,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:54 GMT + - Fri, 23 Aug 2013 11:42:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5808,13 +5819,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:42:33 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 +5835,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:49 GMT + - Fri, 23 Aug 2013 11:42:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5852,13 +5863,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:42:34 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 +5879,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:55 GMT + - Fri, 23 Aug 2013 11:42:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5896,13 +5907,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:42: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: @@ -5912,7 +5923,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:50 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,13 +5951,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:42: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: @@ -5956,7 +5967,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:56 GMT + - Fri, 23 Aug 2013 11:42:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -5984,13 +5995,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:42:35 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 +6011,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:51 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,13 +6040,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:42:35 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 +6056,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:57 GMT + - Fri, 23 Aug 2013 11:42:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6074,13 +6085,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:42:35 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6090,11 +6101,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:52 GMT + - Fri, 23 Aug 2013 11:42:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -6110,33 +6121,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '62' + - '67' 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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:40:56 GMT + recorded_at: Fri, 23 Aug 2013 11:42:36 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6146,11 +6157,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:59 GMT + - Fri, 23 Aug 2013 11:42:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -6166,33 +6177,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '66' + - '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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:40:57 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 + 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 +6213,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:54 GMT + - Fri, 23 Aug 2013 11:42:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6222,7 +6233,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '4' X-Ua-Compatible: - IE=edge body: @@ -6230,13 +6241,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:42:37 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 +6257,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:00 GMT + - Fri, 23 Aug 2013 11:42:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6274,13 +6285,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:42:37 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 +6301,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:55 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: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -6321,13 +6332,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:42: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: @@ -6337,7 +6348,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:01 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: - - '7' + - '8' X-Ua-Compatible: - IE=edge body: @@ -6368,13 +6379,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:42:38 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6384,11 +6395,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:56 GMT + - Fri, 23 Aug 2013 11:42:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -6404,30 +6415,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:41:00 GMT + recorded_at: Fri, 23 Aug 2013 11:42:38 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -6437,11 +6449,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:02 GMT + - Fri, 23 Aug 2013 11:42:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -6457,30 +6469,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '54' + - '57' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:41:00 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 + 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 +6503,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:57 GMT + - Fri, 23 Aug 2013 11:42:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6518,13 +6531,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:42:39 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 +6547,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:03 GMT + - Fri, 23 Aug 2013 11:42:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6562,13 +6575,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:42: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: @@ -6578,7 +6591,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:58 GMT + - Fri, 23 Aug 2013 11:42:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6609,13 +6622,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:42: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: @@ -6625,7 +6638,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:04 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,13 +6669,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:42: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: @@ -6672,7 +6685,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:40:59 GMT + - Fri, 23 Aug 2013 11:42:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6701,13 +6714,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:42: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: @@ -6717,7 +6730,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:05 GMT + - Fri, 23 Aug 2013 11:42:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6746,13 +6759,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:42:41 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 +6775,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:00 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: - - '5' + - '6' X-Ua-Compatible: - IE=edge body: @@ -6791,13 +6804,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:42:41 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 +6820,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:06 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: - - '5' + - '6' X-Ua-Compatible: - IE=edge body: @@ -6836,13 +6849,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:42: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: @@ -6852,7 +6865,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:01 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,13 +6893,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:42: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: @@ -6896,7 +6909,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:07 GMT + - Fri, 23 Aug 2013 11:42:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6924,13 +6937,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:42:42 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 +6953,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:02 GMT + - Fri, 23 Aug 2013 11:42:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -6960,7 +6973,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '15' + - '10' X-Ua-Compatible: - IE=edge body: @@ -6971,13 +6984,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:42:43 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 +7000,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:09 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: - - '11' + - '9' X-Ua-Compatible: - IE=edge body: @@ -7018,13 +7031,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:42:43 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 +7047,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:04 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,13 +7075,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:42: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: @@ -7078,7 +7091,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:10 GMT + - Fri, 23 Aug 2013 11:42:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7106,13 +7119,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:42: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: @@ -7122,7 +7135,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:05 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,13 +7164,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:42: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: @@ -7167,7 +7180,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:11 GMT + - Fri, 23 Aug 2013 11:42:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7196,13 +7209,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:42:45 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 +7225,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:06 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: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -7240,13 +7253,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:42:45 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 +7269,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:12 GMT + - Fri, 23 Aug 2013 11:42:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7284,13 +7297,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:42: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: @@ -7300,7 +7313,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:07 GMT + - Fri, 23 Aug 2013 11:42:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7331,13 +7344,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:42: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: @@ -7347,7 +7360,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:13 GMT + - Fri, 23 Aug 2013 11:42:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7378,13 +7391,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:42:46 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7394,11 +7407,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:08 GMT + - Fri, 23 Aug 2013 11:42:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -7414,30 +7427,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '51' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:41:12 GMT + recorded_at: Fri, 23 Aug 2013 11:42: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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -7447,11 +7461,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:14 GMT + - Fri, 23 Aug 2013 11:42:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -7467,30 +7481,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '49' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:41:12 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 + 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 +7515,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:09 GMT + - Fri, 23 Aug 2013 11:42:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7528,13 +7543,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:42:47 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 +7559,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:15 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,13 +7587,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:42: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: @@ -7588,7 +7603,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:11 GMT + - Fri, 23 Aug 2013 11:42:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7608,7 +7623,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -7619,13 +7634,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:42: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: @@ -7635,7 +7650,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:17 GMT + - Fri, 23 Aug 2013 11:42:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7655,7 +7670,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -7666,13 +7681,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:42: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: @@ -7682,7 +7697,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:12 GMT + - Fri, 23 Aug 2013 11:42:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7711,13 +7726,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:42: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: @@ -7727,7 +7742,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:18 GMT + - Fri, 23 Aug 2013 11:42:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7756,13 +7771,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:42:49 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 +7787,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:13 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: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -7801,13 +7816,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:42:50 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 +7832,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:19 GMT + - Fri, 23 Aug 2013 11:42:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7837,7 +7852,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -7846,13 +7861,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:42:50 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 +7877,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:14 GMT + - Fri, 23 Aug 2013 11:42:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7890,13 +7905,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:42:50 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 +7921,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:20 GMT + - Fri, 23 Aug 2013 11:42:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7926,7 +7941,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '4' X-Ua-Compatible: - IE=edge body: @@ -7934,13 +7949,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:42:51 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 +7965,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:15 GMT + - Fri, 23 Aug 2013 11:42:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -7970,7 +7985,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -7982,13 +7997,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:42:51 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 +8013,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:21 GMT + - Fri, 23 Aug 2013 11:42:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8018,7 +8033,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -8030,13 +8045,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:42:51 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 +8061,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:16 GMT + - Fri, 23 Aug 2013 11:42:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8074,13 +8089,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:42:52 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 +8105,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:22 GMT + - Fri, 23 Aug 2013 11:42:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8118,13 +8133,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:42:52 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 +8149,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:17 GMT + - Fri, 23 Aug 2013 11:42:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8162,13 +8177,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:42:52 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 +8193,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:23 GMT + - Fri, 23 Aug 2013 11:42:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8206,13 +8221,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:42: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: @@ -8222,7 +8237,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:18 GMT + - Fri, 23 Aug 2013 11:42:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8251,13 +8266,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:42: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: @@ -8267,7 +8282,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:24 GMT + - Fri, 23 Aug 2013 11:42:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8296,13 +8311,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:42:54 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8312,11 +8327,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:19 GMT + - Fri, 23 Aug 2013 11:42:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -8332,33 +8347,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '65' + - '68' 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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:41:22 GMT + recorded_at: Fri, 23 Aug 2013 11:42:55 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8368,11 +8383,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:25 GMT + - Fri, 23 Aug 2013 11:42:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -8388,33 +8403,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '62' + - '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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:41:23 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 + 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 +8439,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:20 GMT + - Fri, 23 Aug 2013 11:42:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8452,13 +8467,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:42:56 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 +8483,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:26 GMT + - Fri, 23 Aug 2013 11:42:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8496,13 +8511,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:42:56 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 +8527,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:21 GMT + - Fri, 23 Aug 2013 11:42:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8532,7 +8547,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -8543,13 +8558,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:42: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: @@ -8559,7 +8574,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:27 GMT + - Fri, 23 Aug 2013 11:43:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8579,7 +8594,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -8590,13 +8605,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:42:57 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8606,11 +8621,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:22 GMT + - Fri, 23 Aug 2013 11:42:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -8626,30 +8641,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '50' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:41:26 GMT + recorded_at: Fri, 23 Aug 2013 11:42:57 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -8659,11 +8675,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:28 GMT + - Fri, 23 Aug 2013 11:43:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -8679,30 +8695,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:41:26 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 + 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 +8729,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:23 GMT + - Fri, 23 Aug 2013 11:42:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8740,13 +8757,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:42: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: @@ -8756,7 +8773,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:29 GMT + - Fri, 23 Aug 2013 11:43:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8784,13 +8801,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:42: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: @@ -8800,7 +8817,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:24 GMT + - Fri, 23 Aug 2013 11:42:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -8820,7 +8837,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -8831,13 +8848,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:42: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: @@ -8847,7 +8864,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:30 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: - - '7' + - '108' X-Ua-Compatible: - IE=edge body: @@ -8878,13 +8895,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:43:00 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 +8911,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:25 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,13 +8940,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:43:00 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 +8956,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:31 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,13 +8985,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:43:00 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 +9001,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:26 GMT + - Fri, 23 Aug 2013 11:42:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9013,13 +9030,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:43:01 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 +9046,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:32 GMT + - Fri, 23 Aug 2013 11:43:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9049,7 +9066,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -9058,13 +9075,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:43:01 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 +9091,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:27 GMT + - Fri, 23 Aug 2013 11:42:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9102,13 +9119,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:43:01 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 +9135,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:33 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,13 +9163,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:43:02 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 +9179,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:28 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,13 +9210,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:43:02 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 +9226,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:34 GMT + - Fri, 23 Aug 2013 11:43:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9240,13 +9257,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:43: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: @@ -9256,7 +9273,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:29 GMT + - Fri, 23 Aug 2013 11:42:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9284,13 +9301,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:43: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: @@ -9300,7 +9317,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:35 GMT + - Fri, 23 Aug 2013 11:43:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9328,13 +9345,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:43:03 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 +9361,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:30 GMT + - Fri, 23 Aug 2013 11:42:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9373,13 +9390,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:43:04 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 +9406,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:36 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: - - '4' + - '17' X-Ua-Compatible: - IE=edge body: @@ -9418,13 +9435,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:43:04 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 +9451,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:31 GMT + - Fri, 23 Aug 2013 11:42:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9462,13 +9479,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:43:04 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 +9495,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:37 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,13 +9523,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:43:05 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 +9539,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:32 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: - - '6' + - '7' X-Ua-Compatible: - IE=edge body: @@ -9553,13 +9570,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:43:05 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 +9586,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:38 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: - - '7' + - '205' X-Ua-Compatible: - IE=edge body: @@ -9600,13 +9617,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:43:06 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9616,11 +9633,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:33 GMT + - Fri, 23 Aug 2013 11:42:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -9636,30 +9653,31 @@ 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\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:41:37 GMT + recorded_at: Fri, 23 Aug 2013 11:43:06 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -9669,11 +9687,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:39 GMT + - Fri, 23 Aug 2013 11:43:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -9689,30 +9707,31 @@ 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\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:41:38 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 + 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 +9741,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:34 GMT + - Fri, 23 Aug 2013 11:42:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9750,13 +9769,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:43:07 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 +9785,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:40 GMT + - Fri, 23 Aug 2013 11:43:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9786,7 +9805,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -9794,13 +9813,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:43: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: @@ -9810,7 +9829,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:35 GMT + - Fri, 23 Aug 2013 11:42:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9841,13 +9860,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:43: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: @@ -9857,7 +9876,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:41 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,13 +9907,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:43:08 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 +9923,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:36 GMT + - Fri, 23 Aug 2013 11:42:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9933,13 +9952,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:43:08 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 +9968,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:42 GMT + - Fri, 23 Aug 2013 11:43:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -9978,13 +9997,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:43:09 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 +10013,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:37 GMT + - Fri, 23 Aug 2013 11:43:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10014,7 +10033,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -10023,13 +10042,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:43:09 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 +10058,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:44 GMT + - Fri, 23 Aug 2013 11:43:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10059,7 +10078,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -10068,13 +10087,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:43:09 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 +10103,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:39 GMT + - Fri, 23 Aug 2013 11:43:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10112,13 +10131,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:43:10 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 +10147,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:45 GMT + - Fri, 23 Aug 2013 11:43:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10156,13 +10175,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:43:10 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 +10191,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:40 GMT + - Fri, 23 Aug 2013 11:43:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10204,13 +10223,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:43:10 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 +10239,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:46 GMT + - Fri, 23 Aug 2013 11:43:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10252,13 +10271,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:43:11 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 +10287,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:41 GMT + - Fri, 23 Aug 2013 11:43:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10296,13 +10315,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:43:11 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 +10331,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:47 GMT + - Fri, 23 Aug 2013 11:43:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10340,13 +10359,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:43: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: @@ -10356,7 +10375,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:42 GMT + - Fri, 23 Aug 2013 11:43:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10376,7 +10395,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -10384,13 +10403,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:43:12 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 +10419,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:48 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,13 +10447,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:43: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: @@ -10444,7 +10463,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:44 GMT + - Fri, 23 Aug 2013 11:43:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10473,13 +10492,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:43: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: @@ -10489,7 +10508,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:50 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: - - '4' + - '25' X-Ua-Compatible: - IE=edge body: @@ -10518,13 +10537,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:43:13 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10534,11 +10553,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:45 GMT + - Fri, 23 Aug 2013 11:43:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -10554,33 +10573,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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:41:49 GMT + recorded_at: Fri, 23 Aug 2013 11:43:13 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10590,11 +10609,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:51 GMT + - Fri, 23 Aug 2013 11:43:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -10610,33 +10629,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '94' + - '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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:41:49 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 + 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 +10665,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:46 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,13 +10693,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:43: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: @@ -10690,7 +10709,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:52 GMT + - Fri, 23 Aug 2013 11:43:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10710,7 +10729,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '4' X-Ua-Compatible: - IE=edge body: @@ -10718,13 +10737,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:43: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: @@ -10734,7 +10753,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:47 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,13 +10784,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:43: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: @@ -10781,7 +10800,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:53 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,13 +10831,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:43: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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10828,11 +10847,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:48 GMT + - Fri, 23 Aug 2013 11:43:07 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -10848,30 +10867,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '49' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:41:52 GMT + recorded_at: Fri, 23 Aug 2013 11:43: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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -10881,11 +10901,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:54 GMT + - Fri, 23 Aug 2013 11:43:20 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -10901,30 +10921,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '53' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:41:52 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 + 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 +10955,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:49 GMT + - Fri, 23 Aug 2013 11:43:08 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -10962,13 +10983,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:43: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: @@ -10978,7 +10999,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:55 GMT + - Fri, 23 Aug 2013 11:43:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11006,13 +11027,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:43: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: @@ -11022,7 +11043,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:50 GMT + - Fri, 23 Aug 2013 11:43:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11042,7 +11063,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -11053,13 +11074,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:43: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: @@ -11069,7 +11090,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:56 GMT + - Fri, 23 Aug 2013 11:43:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11100,13 +11121,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:43: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: @@ -11116,7 +11137,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:51 GMT + - Fri, 23 Aug 2013 11:43:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11145,13 +11166,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:43: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: @@ -11161,7 +11182,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:57 GMT + - Fri, 23 Aug 2013 11:43:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11190,13 +11211,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:43: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: @@ -11206,7 +11227,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:52 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: - - '7' + - '5' X-Ua-Compatible: - IE=edge body: @@ -11235,13 +11256,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:43: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: @@ -11251,7 +11272,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:58 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,13 +11301,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:43:19 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 +11317,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:53 GMT + - Fri, 23 Aug 2013 11:43:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11324,13 +11345,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:43: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: @@ -11340,7 +11361,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:59 GMT + - Fri, 23 Aug 2013 11:43:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11368,13 +11389,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:43: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: @@ -11384,7 +11405,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:55 GMT + - Fri, 23 Aug 2013 11:43:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11404,7 +11425,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '15' + - '11' X-Ua-Compatible: - IE=edge body: @@ -11415,13 +11436,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:43: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: @@ -11431,7 +11452,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:01 GMT + - Fri, 23 Aug 2013 11:43:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11451,7 +11472,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '12' + - '10' X-Ua-Compatible: - IE=edge body: @@ -11462,13 +11483,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:43: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: @@ -11478,7 +11499,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:56 GMT + - Fri, 23 Aug 2013 11:43:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11506,13 +11527,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:43: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: @@ -11522,7 +11543,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:02 GMT + - Fri, 23 Aug 2013 11:43:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11550,13 +11571,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:43:21 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 +11587,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:57 GMT + - Fri, 23 Aug 2013 11:43:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11595,13 +11616,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:43: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: @@ -11611,7 +11632,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:03 GMT + - Fri, 23 Aug 2013 11:43:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11640,13 +11661,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:43:22 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/6885/Tasks?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11656,11 +11677,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:58 GMT + - Fri, 23 Aug 2013 11:43:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '5707' + - '5847' Connection: - keep-alive Keep-Alive: @@ -11676,100 +11697,100 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '67' + - '99' 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\": 6886,\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(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\": 5269,\r\n \"Name\": \"Pro194521092\"\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\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5272,\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(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(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\": 5269,\r\n \"Name\": \"Pro194521092\"\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\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5273,\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(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(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\": 5269,\r\n \"Name\": \"Pro194521092\"\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\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5274,\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(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(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\": 5269,\r\n \"Name\": \"Pro194521092\"\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\": 5270,\r\n \"Name\": \"story2\"\r\n },\r\n - \ \"CustomFields\": []\r\n },\r\n {\r\n \"Id\": 5275,\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(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(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\": 5269,\r\n \"Name\": \"Pro194521092\"\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\": 5270,\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: Tue, 20 Aug 2013 14:42:02 GMT + recorded_at: Fri, 23 Aug 2013 11:43:23 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -11779,11 +11800,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:04 GMT + - Fri, 23 Aug 2013 11:43:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -11799,33 +11820,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '67' + - '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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:42:02 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 + 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 +11856,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:41:59 GMT + - Fri, 23 Aug 2013 11:43:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11855,7 +11876,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -11863,13 +11884,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:43: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: @@ -11879,7 +11900,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:05 GMT + - Fri, 23 Aug 2013 11:43:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11899,7 +11920,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -11907,13 +11928,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:43: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: @@ -11923,7 +11944,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:00 GMT + - Fri, 23 Aug 2013 11:43:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -11943,7 +11964,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -11954,13 +11975,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:43: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: @@ -11970,7 +11991,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:06 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: - - '9' + - '8' X-Ua-Compatible: - IE=edge body: @@ -12001,13 +12022,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:43: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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12017,11 +12038,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:01 GMT + - Fri, 23 Aug 2013 11:43:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -12037,30 +12058,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '74' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:42:05 GMT + recorded_at: Fri, 23 Aug 2013 11:43: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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12070,11 +12092,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:07 GMT + - Fri, 23 Aug 2013 11:43:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -12090,30 +12112,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '48' + - '52' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:42:05 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 + 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 +12146,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:02 GMT + - Fri, 23 Aug 2013 11:43:16 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12151,13 +12174,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:43:26 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 +12190,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:08 GMT + - Fri, 23 Aug 2013 11:43:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12195,13 +12218,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:43: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: @@ -12211,7 +12234,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:03 GMT + - Fri, 23 Aug 2013 11:43:17 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12242,13 +12265,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:43: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: @@ -12258,7 +12281,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:10 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,13 +12312,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:43:27 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 +12328,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:05 GMT + - Fri, 23 Aug 2013 11:43:18 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12334,13 +12357,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:43:27 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 +12373,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:11 GMT + - Fri, 23 Aug 2013 11:43:31 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12379,13 +12402,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:43:27 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 +12418,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:06 GMT + - Fri, 23 Aug 2013 11:43:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12424,13 +12447,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:43: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: @@ -12440,7 +12463,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:12 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,13 +12492,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:43: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: @@ -12485,7 +12508,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:08 GMT + - Fri, 23 Aug 2013 11:43:19 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12513,13 +12536,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:43: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: @@ -12529,7 +12552,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:14 GMT + - Fri, 23 Aug 2013 11:43:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12557,13 +12580,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:43:29 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 +12596,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:09 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: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -12604,13 +12627,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:43:29 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 +12643,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:16 GMT + - Fri, 23 Aug 2013 11:43:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12651,13 +12674,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:43:29 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 +12690,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:12 GMT + - Fri, 23 Aug 2013 11:43:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12695,13 +12718,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:43: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: @@ -12711,7 +12734,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:18 GMT + - Fri, 23 Aug 2013 11:43:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12731,7 +12754,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -12739,13 +12762,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:43:30 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 +12778,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:13 GMT + - Fri, 23 Aug 2013 11:43:21 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12784,13 +12807,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:43:30 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 +12823,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:19 GMT + - Fri, 23 Aug 2013 11:43:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12829,13 +12852,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:43:31 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -12845,11 +12868,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:14 GMT + - Fri, 23 Aug 2013 11:43:22 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -12865,33 +12888,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '112' + - '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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:42:18 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 + 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 +12924,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:20 GMT + - Fri, 23 Aug 2013 11:43:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12929,13 +12952,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:43: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: @@ -12945,7 +12968,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:15 GMT + - Fri, 23 Aug 2013 11:43:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -12973,13 +12996,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:43: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: @@ -12989,7 +13012,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:21 GMT + - Fri, 23 Aug 2013 11:43:35 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13009,7 +13032,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -13020,13 +13043,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:43: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: @@ -13036,7 +13059,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:16 GMT + - Fri, 23 Aug 2013 11:43:23 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13056,7 +13079,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -13067,13 +13090,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:43:32 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13083,11 +13106,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:22 GMT + - Fri, 23 Aug 2013 11:43:36 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -13103,30 +13126,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '52' + - '49' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:42:21 GMT + recorded_at: Fri, 23 Aug 2013 11:43:33 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13136,11 +13160,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:17 GMT + - Fri, 23 Aug 2013 11:43:24 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -13156,30 +13180,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '48' + - '52' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:42:21 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 + 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 +13214,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:23 GMT + - Fri, 23 Aug 2013 11:43:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13217,13 +13242,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:43:34 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 +13258,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:19 GMT + - Fri, 23 Aug 2013 11:43:25 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13261,13 +13286,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:43: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: @@ -13277,7 +13302,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:25 GMT + - Fri, 23 Aug 2013 11:43:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13297,7 +13322,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -13308,13 +13333,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:43: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: @@ -13324,7 +13349,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:20 GMT + - Fri, 23 Aug 2013 11:43:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13344,7 +13369,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '6' X-Ua-Compatible: - IE=edge body: @@ -13355,13 +13380,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:43:35 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 +13396,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:26 GMT + - Fri, 23 Aug 2013 11:43:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13391,7 +13416,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -13400,13 +13425,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:43:35 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 +13441,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:21 GMT + - Fri, 23 Aug 2013 11:43:26 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13436,7 +13461,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '9' + - '4' X-Ua-Compatible: - IE=edge body: @@ -13445,13 +13470,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:43:35 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 +13486,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:28 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,13 +13515,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:43:36 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 +13531,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:23 GMT + - Fri, 23 Aug 2013 11:43:27 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13535,13 +13560,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:43:36 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 +13576,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:29 GMT + - Fri, 23 Aug 2013 11:43:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13579,13 +13604,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:43:36 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 +13620,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:24 GMT + - Fri, 23 Aug 2013 11:43:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13615,7 +13640,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '99' + - '4' X-Ua-Compatible: - IE=edge body: @@ -13623,13 +13648,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:43:37 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 +13664,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:30 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,13 +13695,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:43:37 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 +13711,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:25 GMT + - Fri, 23 Aug 2013 11:43:28 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13717,13 +13742,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:43:37 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 +13758,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:31 GMT + - Fri, 23 Aug 2013 11:43:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13761,13 +13786,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:43: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: @@ -13777,7 +13802,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:26 GMT + - Fri, 23 Aug 2013 11:43:29 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13805,13 +13830,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:43: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: @@ -13821,7 +13846,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:32 GMT + - Fri, 23 Aug 2013 11:43:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13841,7 +13866,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '25' + - '4' X-Ua-Compatible: - IE=edge body: @@ -13850,13 +13875,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:43: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: @@ -13866,7 +13891,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:27 GMT + - Fri, 23 Aug 2013 11:43:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13895,13 +13920,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:43: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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -13911,11 +13936,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:33 GMT + - Fri, 23 Aug 2013 11:43:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -13931,33 +13956,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '60' + - '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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:42:32 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 + 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 +13992,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:28 GMT + - Fri, 23 Aug 2013 11:43:30 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -13995,13 +14020,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:43: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: @@ -14011,7 +14036,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:34 GMT + - Fri, 23 Aug 2013 11:43:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14031,7 +14056,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '4' X-Ua-Compatible: - IE=edge body: @@ -14039,13 +14064,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:43: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: @@ -14055,7 +14080,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:29 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: - - '8' + - '11' X-Ua-Compatible: - IE=edge body: @@ -14086,13 +14111,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:43: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: @@ -14102,7 +14127,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:35 GMT + - Fri, 23 Aug 2013 11:43:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14122,7 +14147,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -14133,13 +14158,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:43:40 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14149,11 +14174,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:30 GMT + - Fri, 23 Aug 2013 11:43:32 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -14169,30 +14194,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '59' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:42:34 GMT + recorded_at: Fri, 23 Aug 2013 11:43: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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14202,11 +14228,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:36 GMT + - Fri, 23 Aug 2013 11:43:45 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -14222,30 +14248,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '51' + - '100' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:42:35 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 + 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 +14282,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:32 GMT + - Fri, 23 Aug 2013 11:43:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14283,13 +14310,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:43: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: @@ -14299,7 +14326,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:38 GMT + - Fri, 23 Aug 2013 11:43:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14327,13 +14354,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:43: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: @@ -14343,7 +14370,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:33 GMT + - Fri, 23 Aug 2013 11:43:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14363,7 +14390,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -14374,13 +14401,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:43: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: @@ -14390,7 +14417,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:38 GMT + - Fri, 23 Aug 2013 11:43:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14410,7 +14437,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -14421,13 +14448,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:43: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: @@ -14437,7 +14464,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:34 GMT + - Fri, 23 Aug 2013 11:43:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14466,13 +14493,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:43: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: @@ -14482,7 +14509,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:40 GMT + - Fri, 23 Aug 2013 11:43:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14511,13 +14538,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:43: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: @@ -14527,7 +14554,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:35 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,13 +14583,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:43: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: @@ -14572,7 +14599,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:40 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,13 +14628,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:43: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: @@ -14617,7 +14644,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:35 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,13 +14672,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:43: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: @@ -14661,7 +14688,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:42 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,13 +14716,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:43: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: @@ -14705,7 +14732,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:37 GMT + - Fri, 23 Aug 2013 11:43:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14736,13 +14763,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:43:46 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 +14779,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:43 GMT + - Fri, 23 Aug 2013 11:43:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14772,7 +14799,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '11' + - '10' X-Ua-Compatible: - IE=edge body: @@ -14783,13 +14810,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:43: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: @@ -14799,7 +14826,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:38 GMT + - Fri, 23 Aug 2013 11:43:37 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14827,13 +14854,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:43: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: @@ -14843,7 +14870,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:44 GMT + - Fri, 23 Aug 2013 11:43:50 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14871,13 +14898,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:43: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: @@ -14887,7 +14914,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:39 GMT + - Fri, 23 Aug 2013 11:43:38 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14916,13 +14943,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:43: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: @@ -14932,7 +14959,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:45 GMT + - Fri, 23 Aug 2013 11:43:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -14961,13 +14988,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:43:47 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -14977,11 +15004,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:40 GMT + - Fri, 23 Aug 2013 11:43:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -14997,33 +15024,33 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '92' + - '62' 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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:42:44 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 + 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 +15060,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:48 GMT + - Fri, 23 Aug 2013 11:43:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15061,13 +15088,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:43: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: @@ -15077,7 +15104,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:43 GMT + - Fri, 23 Aug 2013 11:43:39 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15105,13 +15132,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:43: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: @@ -15121,7 +15148,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:50 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,13 +15179,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:43: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: @@ -15168,7 +15195,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:45 GMT + - Fri, 23 Aug 2013 11:43:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15188,7 +15215,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '8' + - '6' X-Ua-Compatible: - IE=edge body: @@ -15199,13 +15226,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:43: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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15215,11 +15242,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:51 GMT + - Fri, 23 Aug 2013 11:43:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -15235,30 +15262,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '47' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:42:50 GMT + recorded_at: Fri, 23 Aug 2013 11:43: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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -15268,11 +15296,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:47 GMT + - Fri, 23 Aug 2013 11:43:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -15288,30 +15316,31 @@ 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\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:42:50 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 + 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 +15350,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:53 GMT + - Fri, 23 Aug 2013 11:43:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15349,13 +15378,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:43: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: @@ -15365,7 +15394,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:48 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,13 +15422,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:43: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: @@ -15409,7 +15438,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:54 GMT + - Fri, 23 Aug 2013 11:43:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15440,13 +15469,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:43: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: @@ -15456,7 +15485,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:49 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,13 +15516,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:43:51 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 +15532,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:55 GMT + - Fri, 23 Aug 2013 11:43:55 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15532,13 +15561,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:43: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: @@ -15548,7 +15577,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:50 GMT + - Fri, 23 Aug 2013 11:43:43 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15577,13 +15606,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:43:52 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 +15622,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:56 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: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -15622,13 +15651,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:43:52 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 +15667,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:51 GMT + - Fri, 23 Aug 2013 11:43:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15658,7 +15687,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '5' X-Ua-Compatible: - IE=edge body: @@ -15667,13 +15696,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:43:53 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 +15712,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:57 GMT + - Fri, 23 Aug 2013 11:43:56 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15711,13 +15740,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:43:53 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 +15756,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:52 GMT + - Fri, 23 Aug 2013 11:43:44 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15755,13 +15784,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:43:53 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 +15800,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:58 GMT + - Fri, 23 Aug 2013 11:43:57 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15802,13 +15831,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:43:54 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 +15847,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:53 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: - - '10' + - '11' X-Ua-Compatible: - IE=edge body: @@ -15849,13 +15878,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:43:54 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 +15894,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:59 GMT + - Fri, 23 Aug 2013 11:43:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15893,13 +15922,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:43:54 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 +15938,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:54 GMT + - Fri, 23 Aug 2013 11:43:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15937,13 +15966,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:43: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: @@ -15953,7 +15982,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:00 GMT + - Fri, 23 Aug 2013 11:43:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -15973,7 +16002,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -15982,13 +16011,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:43: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: @@ -15998,7 +16027,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:55 GMT + - Fri, 23 Aug 2013 11:43:46 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16027,13 +16056,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:43:55 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/6885?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16043,11 +16072,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:01 GMT + - Fri, 23 Aug 2013 11:43:59 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '946' + - '974' Connection: - keep-alive Keep-Alive: @@ -16063,33 +16092,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\": 6885,\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(1377258106000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377258106000-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\": + 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\": 5269,\r\n \"Name\": \"Pro194521092\"\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: Tue, 20 Aug 2013 14:42:59 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 + 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 +16128,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:56 GMT + - Fri, 23 Aug 2013 11:43:47 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16127,13 +16156,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:43:56 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 +16172,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:02 GMT + - Fri, 23 Aug 2013 11:44:00 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16171,13 +16200,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:43:56 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 +16216,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:57 GMT + - Fri, 23 Aug 2013 11:43:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16207,7 +16236,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '7' + - '6' X-Ua-Compatible: - IE=edge body: @@ -16218,13 +16247,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:43: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: @@ -16234,7 +16263,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:03 GMT + - Fri, 23 Aug 2013 11:44:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16254,7 +16283,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '6' + - '8' X-Ua-Compatible: - IE=edge body: @@ -16265,13 +16294,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:43:57 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16281,11 +16310,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:58 GMT + - Fri, 23 Aug 2013 11:43:48 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -16301,30 +16330,31 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '51' + - '48' X-Ua-Compatible: - IE=edge body: encoding: UTF-8 - string: "{\r\n \"Id\": 5269,\r\n \"Name\": \"Pro194521092\",\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 - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:43:02 GMT + recorded_at: Fri, 23 Aug 2013 11:43:57 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/6884?format=json body: - encoding: UTF-8 - string: format=json + encoding: US-ASCII + string: '' headers: {} response: status: @@ -16334,11 +16364,11 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:04 GMT + - Fri, 23 Aug 2013 11:44:01 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '731' + - '759' Connection: - keep-alive Keep-Alive: @@ -16354,30 +16384,31 @@ 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\": - null,\r\n \"StartDate\": null,\r\n \"EndDate\": null,\r\n \"CreateDate\": - \"\\/Date(1377009577000-0500)\\/\",\r\n \"ModifyDate\": \"\\/Date(1377009577000-0500)\\/\",\r\n - \ \"LastCommentDate\": null,\r\n \"Tags\": \"\",\r\n \"NumericPriority\": - 40.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: Tue, 20 Aug 2013 14:43:02 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 + 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 +16418,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:42:59 GMT + - Fri, 23 Aug 2013 11:43:49 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16415,13 +16446,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:43: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: @@ -16431,7 +16462,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:05 GMT + - Fri, 23 Aug 2013 11:44:02 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16459,13 +16490,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:43: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: @@ -16475,7 +16506,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:00 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,13 +16537,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:43: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: @@ -16522,7 +16553,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:06 GMT + - Fri, 23 Aug 2013 11:44:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16553,13 +16584,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:43: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: @@ -16569,7 +16600,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:01 GMT + - Fri, 23 Aug 2013 11:43:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16589,7 +16620,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -16598,13 +16629,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:44:00 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 +16645,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:07 GMT + - Fri, 23 Aug 2013 11:44:03 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16643,13 +16674,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:44:00 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 +16690,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:02 GMT + - Fri, 23 Aug 2013 11:43:51 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16688,13 +16719,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:44:00 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 +16735,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:08 GMT + - Fri, 23 Aug 2013 11:44:04 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16733,13 +16764,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:44:01 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 +16780,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:03 GMT + - Fri, 23 Aug 2013 11:43:52 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16769,7 +16800,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '5' + - '4' X-Ua-Compatible: - IE=edge body: @@ -16777,13 +16808,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:44:01 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 +16824,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:10 GMT + - Fri, 23 Aug 2013 11:44:05 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16821,13 +16852,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:44:01 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 +16868,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:05 GMT + - Fri, 23 Aug 2013 11:43:53 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -16857,7 +16888,7 @@ http_interactions: X-Aspnetmvc-Version: - '3.0' X-Stopwatch: - - '50' + - '10' X-Ua-Compatible: - IE=edge body: @@ -16868,13 +16899,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:44:02 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 +16915,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:11 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: - - '47' + - '11' X-Ua-Compatible: - IE=edge body: @@ -16915,13 +16946,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:44:02 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 +16962,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:06 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,13 +16990,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:44:02 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 +17006,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:12 GMT + - Fri, 23 Aug 2013 11:44:06 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -17003,13 +17034,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:44:03 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 +17050,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:07 GMT + - Fri, 23 Aug 2013 11:43:54 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -17048,13 +17079,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:44:03 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 +17095,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:13 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: Tue, 20 Aug 2013 14:43:11 GMT + recorded_at: Fri, 23 Aug 2013 11:44:04 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/6884/ body: encoding: US-ASCII string: '' @@ -17109,7 +17140,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:08 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: - - '85' + - '116' 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:44:04 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/6885/ body: encoding: US-ASCII string: '' @@ -17150,7 +17181,7 @@ http_interactions: Server: - nginx/1.4.1 Date: - - Tue, 20 Aug 2013 14:43:15 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: - - '989' + - '819' 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: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'