reviewed 0.4.6 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +7 -0
  2. data/.ruby-version +1 -1
  3. data/lib/reviewed/article.rb +0 -1
  4. data/lib/reviewed/attachable.rb +14 -7
  5. data/lib/reviewed/product.rb +0 -1
  6. data/lib/reviewed/version.rb +1 -1
  7. data/spec/attachable_spec.rb +22 -0
  8. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/assigns_attachments_to_the_correct_class.yml +338 -289
  9. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_has_many_attachments.yml +237 -245
  10. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_have_any_matching_attachments.yml +280 -289
  11. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/finds_attachments_by_tag.yml +281 -301
  12. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/gets_gallery_attachments.yml +340 -324
  13. data/spec/fixtures/vcr/Reviewed_Article/associations/deals/has_many_deals.yml +237 -245
  14. data/spec/fixtures/vcr/Reviewed_Article/associations/pages/has_many_pages.yml +237 -245
  15. data/spec/fixtures/vcr/Reviewed_Article/associations/products/has_many_products.yml +237 -245
  16. data/spec/fixtures/vcr/Reviewed_Article/associations/products/returns_products_of_the_correct_class.yml +237 -245
  17. data/spec/fixtures/vcr/Reviewed_Article/associations/related_articles/has_many_related_articles.yml +237 -245
  18. data/spec/fixtures/vcr/Reviewed_Article/does_not_request_for_an_attachment_if_it_can_be_found_in_attributes.yml +387 -0
  19. data/spec/fixtures/vcr/Reviewed_Article/fetches_all_attachments_when_no_tag_is_asked_for.yml +195 -0
  20. data/spec/fixtures/vcr/Reviewed_Article/fetches_attachments_when_non-existent.yml +137 -0
  21. data/spec/fixtures/vcr/Reviewed_Article/fetches_when_a_tag_is_not_in_pre-loaded_set.yml +75 -0
  22. data/spec/fixtures/vcr/Reviewed_Article/fetches_when_an_tag_is_not_in_pre-loaded_set.yml +75 -0
  23. data/spec/fixtures/vcr/Reviewed_Article/find_page/finds_a_page_with_a_matching_slug.yml +377 -394
  24. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_a_product_of_the_correct_class.yml +471 -487
  25. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_nil_if_does_not_respond_to_products.yml +471 -487
  26. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_the_primary_product.yml +471 -487
  27. data/spec/fixtures/vcr/Reviewed_Article/returns_local_attachments_when_available.yml +137 -0
  28. data/spec/fixtures/vcr/Reviewed_Article/sets_DEFAULT_ATTACHMENTS.yml +75 -0
  29. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/not_set/has_nil_query_params.yml +138 -195
  30. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/set/merges_quest_params.yml +48 -71
  31. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/fetches_the_first_page_by_default.yml +73 -113
  32. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/is_enumerable.yml +73 -113
  33. data/spec/fixtures/vcr/Reviewed_Collection/next_page/fetches_the_next_page_of_results.yml +140 -197
  34. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_if_the_page_number_is_out_of_bounds.yml +73 -113
  35. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_whether_this_is_the_first_or_last_page.yml +73 -113
  36. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_limit_value_max_per_page_.yml +73 -113
  37. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_number_of_entries_on_the_current_page.yml +73 -113
  38. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_offset.yml +73 -113
  39. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_item_count.yml +73 -113
  40. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_number_of_pages.yml +73 -113
  41. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/fetches_the_previous_page_of_results.yml +210 -307
  42. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/returns_nil_if_there_is_no_previous_page.yml +73 -113
  43. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/does_not_have_any_matching_attachments.yml +98 -125
  44. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/matches_attachments_by_tag_properly.yml +98 -136
  45. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/no_longer_has_many_attachments.yml +55 -81
  46. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_by_tag.yml +98 -136
  47. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_of_the_correct_class.yml +98 -125
  48. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/has_many_manufacturer_specs.yml +55 -81
  49. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/returns_attachments_of_the_correct_class.yml +55 -81
  50. data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_other_supported_options.yml +49 -67
  51. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_a_collection.yml +138 -195
  52. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_an_empty_set_if_no_matching_data_was_found.yml +47 -51
  53. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_the_appropriate_page_of_results.yml +105 -207
  54. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_a_collection_object.yml +138 -195
  55. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_objects_of_the_correct_class.yml +138 -195
  56. data/spec/fixtures/vcr/Reviewed_Request/object_from_response/returns_an_object_of_the_correct_class.yml +237 -245
  57. data/spec/spec_helper.rb +1 -1
  58. metadata +45 -55
@@ -1,212 +1,155 @@
1
- ---
2
- http_interactions:
3
- - request:
1
+ ---
2
+ http_interactions:
3
+ - request:
4
4
  method: get
5
5
  uri: https://the-guide-staging.herokuapp.com/api/v1/articles
6
- body:
6
+ body:
7
7
  encoding: US-ASCII
8
- string: ""
9
- headers:
10
- X-Reviewed-Authorization:
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.7
12
+ X-Reviewed-Authorization:
11
13
  - 38e397252ec670ec441733a95204f141
12
- Accept-Encoding:
14
+ Accept-Encoding:
13
15
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
- Accept:
15
- - "*/*"
16
- User-Agent:
17
- - Ruby
18
- response:
19
- status:
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
20
  code: 200
21
21
  message: OK
22
- headers:
23
- Access-Control-Allow-Credentials:
24
- - "true"
25
- Access-Control-Allow-Headers:
26
- - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization, x-skip-cache, Content-Type
27
- Access-Control-Allow-Methods:
22
+ headers:
23
+ Access-Control-Allow-Credentials:
24
+ - 'true'
25
+ Access-Control-Allow-Headers:
26
+ - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization,
27
+ x-skip-cache, Content-Type
28
+ Access-Control-Allow-Methods:
28
29
  - OPTIONS, GET, POST, PUT, DELETE
29
- Access-Control-Allow-Origin:
30
- - "*"
31
- Access-Control-Max-Age:
32
- - "1000"
33
- Cache-Control:
30
+ Access-Control-Allow-Origin:
31
+ - '*'
32
+ Access-Control-Max-Age:
33
+ - '1000'
34
+ Cache-Control:
34
35
  - no-cache, no-store
35
- Content-Encoding:
36
- - gzip
37
- Content-Type:
36
+ Content-Type:
38
37
  - application/json; charset=utf-8
39
- Date:
40
- - Sat, 27 Apr 2013 01:47:04 GMT
41
- Status:
38
+ Date:
39
+ - Thu, 27 Jun 2013 15:43:22 GMT
40
+ Etag:
41
+ - '"e0aa021e21dddbd6d8cecec71e9cf564"'
42
+ Status:
42
43
  - 200 OK
43
- Strict-Transport-Security:
44
+ Strict-Transport-Security:
44
45
  - max-age=31536000
45
- Vary:
46
+ Vary:
46
47
  - Accept-Encoding
47
- X-Request-Id:
48
- - b20e0435f9913310ef96e56226a0a9f2
49
- X-Runtime:
50
- - "2.239285"
51
- X-Ua-Compatible:
48
+ X-Request-Id:
49
+ - 0df4bfbc701c1da5c1a2453668d9025b
50
+ X-Runtime:
51
+ - '0.025699'
52
+ X-Ua-Compatible:
52
53
  - IE=Edge,chrome=1
53
- Transfer-Encoding:
54
+ Transfer-Encoding:
54
55
  - chunked
55
- Connection:
56
+ Connection:
56
57
  - keep-alive
57
- body:
58
- encoding: ASCII-8BIT
59
- string: !binary |
60
- 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
- UBJla1uWHD260xfku18VKdmSW7TlRx+SXQeZZCxKFB/F4q+KReqX2Zov0pzX
62
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 3Xdwx7sn+k4Vo4KXL0uRoFDX9bqav3sHM5KxaNJYGNBqwBeL26Uoi8cGZpLb
84
- qFjtPv/rtm/e8CW//iq7bEfLdm0UNtnjQ7POYGZstdOFGhSEkucwm25k5GGr
85
- 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
- 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
- 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
- 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
- dSPJOS9q8iTKF5I0OakLEpeg+LcPNjDqgcUJ2DwV9A8pEgnsq6KqSVQWzzFQ
90
- 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
- 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
- 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
- hGyVC+OvO8TfINrF3/Rv+5h3t/mvmHvF3CvmDmHUeTPMda6Y+xpGxzTzZTD3
94
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- dADwbXfAqFYS7gH8Wo4nY40dZkRdSMSyG097GF+NREN2tfG+i+DYjMQDmD9S
108
- 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
- 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
- Cfv67GooXA2Fq6EwxHn3zQwF92oovML5US1+EUNhJOe+oUA95ieJS103dq3I
111
- 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
- 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
- +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
- AoKZAm0KvxLogKYUegJWnWHOLaYnYA2WtnOQBkDRvW/w3BjrLONQZ+0y6cVy
115
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- Kzy2gXyrTgXA7pnAsyrjG/KYF8+52u2/XmfopyIKconIhJQykpTFCiNNwcSK
128
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- y0tSAU3WwLEEMXEQ4vmboNXNQrMGW48mVduwvHuTTiBVm5uRcEMope8KnsS4
139
- OOUm+5nTscwBZkWuqWXO5643jOdkAQKzNHllQDUNWfc9LtgTnh+j07GyTqDT
140
- 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
- 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
- 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
- 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
- 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
- KQWTs0JdqC1Uv4JLj0JRscr9/gdSF81iib7fUkiXcB7fknEIVo8sAe7xEIIM
146
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +4kjQtd3YhxONPG1OpHJ7Uo4PA8sQpt4236duLVZzlGKO2qw05HQ7vIbpSAI
169
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- DXA5G+D0bjqc89UGGJC6jsLPtwHGc94Jp8XNoiq8LPEdGUwuHK0NwLo9g7rP
197
- 0HVeatzU2z/9H6O+vkkr0IAvCNF30mG7ne2nMP/30sf7XHQgXYkyxRP6Q7kw
198
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
208
- r/8nAAAAAP//AwBwygjxhq4AAA==
209
-
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"pagination":{"total":13067,"total_pages":654,"first_page":true,"last_page":false,"previous_page":null,"next_page":2,"out_of_bounds":false,"offset":0,"current_page":1,"per_page":20,"entries_on_page":20},"data":[{"id":"51bb4116aba4288eda0000d7","created_at":"2013-06-14T16:13:10Z","updated_at":"2013-06-24T14:58:49Z","name":"OMG
61
+ a feature on a branch","branch_name":"master","summary":null,"meta_description":"weeee
62
+ feature","website_ids":["50e669d7bd028648e0000023"],"author_ids":["5113c597f981b8f03b00057d"],"tags":[],"classifications":["feature"],"publish_on":"2013-06-14T16:08:43+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/omg-a-feature","disqus_uri":"/features/omg-a-feature","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"omg-a-feature","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51bb4116aba4288eda0000d7","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51bb4116aba4288eda0000d7"}}},{"id":"51b24cc90a7e677be0000033","created_at":"2013-06-07T21:12:41Z","updated_at":"2013-06-07T21:12:41Z","name":"Untitled
63
+ Article About Reviewed.com 2.5 project","branch_name":"master","summary":null,"meta_description":null,"website_ids":[],"author_ids":["50fc4eadbd0286d5550b4c8e"],"tags":[],"classifications":[],"publish_on":"2013-06-07T21:12:09+00:00","attachment_ids":["51c47ea8bfc80eb31e00020b"],"primary_product_id":null,"resource_uri":"/content/untitled-article-about-reviewed.com
64
+ 2.5 project","disqus_uri":"/content/untitled-article-about-reviewed.com 2.5
65
+ project","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"untitled-article-about-reviewed.com
66
+ 2.5 project","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51b24cc90a7e677be0000033","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51b24cc90a7e677be0000033"}}},{"id":"519fb125c4fb49ab860000b3","created_at":"2013-05-24T18:27:49Z","updated_at":"2013-06-24T14:04:29Z","name":"It''s
67
+ not a bug, it''s a feature... article BRANCH","branch_name":"master","summary":"test","meta_description":"feature
68
+ article that will show up in consolidated. AND IT''S NOW A BRANCH OMG.","website_ids":["50e669d7bd028648e0000021","50e669d7bd028648e0000025"],"author_ids":["5113c597f981b8f03b00057d"],"tags":[],"classifications":["feature"],"publish_on":"2013-05-23T18:26:44+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/it-s-not-a-bug-it-s-a-feature...
69
+ article","disqus_uri":"/features/it-s-not-a-bug-it-s-a-feature... article","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"it-s-not-a-bug-it-s-a-feature...
70
+ article","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/519fb125c4fb49ab860000b3","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/519fb125c4fb49ab860000b3"}}},{"id":"519ba1767547f6983900003a","created_at":"2013-05-21T16:31:50Z","updated_at":"2013-05-21T16:38:43Z","name":"Mr.
71
+ Coffee 9001 on Sale","branch_name":"master","summary":null,"meta_description":"It''s
72
+ over 9000","website_ids":["50e669d7bd028648e0000025"],"author_ids":["5113c597f981b8f03b00057d"],"tags":[],"classifications":["deal"],"publish_on":"2013-05-21T16:30:00+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/deals/mr.
73
+ Coffee 9001 on Sale","disqus_uri":"/deals/mr. Coffee 9001 on Sale","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"mr.
74
+ Coffee 9001 on Sale","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/519ba1767547f6983900003a","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/519ba1767547f6983900003a"}}},{"id":"51911420260a173a55000051","created_at":"2013-05-13T16:26:08Z","updated_at":"2013-05-24T19:56:17Z","name":"Mon
75
+ 1123","branch_name":"master","summary":"test","meta_description":"test","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eacbd0286d5550b4c89"],"tags":[],"classifications":["feature"],"publish_on":"2013-05-13T19:23:28+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/mon-1123","disqus_uri":"/features/mon-1123","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"mon-1123","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51911420260a173a55000051","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51911420260a173a55000051"}}},{"id":"50fb3191bd0286d555016885","created_at":"2012-08-28T15:44:06Z","updated_at":"2013-06-14T14:38:18Z","name":"2013
76
+ Kia Optima Sedan Review","branch_name":"master","summary":"The 2013 Kia Optima
77
+ is a competent midsize sedan that knows how to dress well. The exterior design,
78
+ and perhaps the safety rating, are the most compelling reasons to put this
79
+ car on your short list.","meta_description":"","website_ids":["50e669d7bd028648e0000033","50e669d7bd028648e0000025"],"author_ids":["50fc4e92bd0286d5550b4bf5"],"tags":[],"classifications":["deal"],"publish_on":"2013-04-30T11:00:00+00:00","attachment_ids":["50fb3192bd0286d55501688e","50fb3192bd0286d55501689d","50fb3193bd0286d5550168b7","50fb3193bd0286d5550168b8"],"primary_product_id":"50fa332996ab5860160c87a1","resource_uri":"/deals/2013-kia-optima-sedan-review.htm","disqus_uri":"2013-Kia-Optima-Sedan-Review","product_ids":["50fa332996ab5860160c87a1"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-10-02T20:28:00+00:00","slug":"2013-kia-optima-sedan-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa332996ab5860160c87a1","created_at":"2012-08-21T21:01:33Z","updated_at":"2013-04-22T19:57:33Z","name":"2013
80
+ Kia Optima LX","slug":"kia-2013-optima-lx","_type":"Automobiles::Sedan","types":["Sedan"],"msrp":21200.0,"article_ids":["50fb3191bd0286d555016885","50fc43cabd0286d5550b114e"],"website_ids":["50e669d7bd028648e0000033"],"publish_on":"2012-10-02T20:28:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed75bd0286638e000179","model":"2013
81
+ Optima","resource_uri":"/products/kia-2013-optima-lx","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"is_primary_product":true,"attachments":[{"id":"50fcf2a1bd0286fb1f0130df","created_at":"2013-01-21T07:47:45Z","updated_at":"2013-01-21T07:47:45Z","name":"2013-Kia-Optima-vanity3.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s50x50_2013-Kia-Optima-vanity3.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s150x150_2013-Kia-Optima-vanity3.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s250x250_2013-Kia-Optima-vanity3.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s300x150_2013-Kia-Optima-vanity3.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s300x112_2013-Kia-Optima-vanity3.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s500x500_2013-Kia-Optima-vanity3.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s600x400_2013-Kia-Optima-vanity3.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s600x600_2013-Kia-Optima-vanity3.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s940x400_2013-Kia-Optima-vanity3.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s940x350_2013-Kia-Optima-vanity3.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s940x110_2013-Kia-Optima-vanity3.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/2013-Kia-Optima-vanity3.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/2013-Kia-Optima-vanity3.jpg","file_size":65660,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fcf2a1bd0286fb1f0130df","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fcf2a1bd0286fb1f0130df"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d90f82dc798de00005d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d90f82dc798de00005d"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb3191bd0286d555016885","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb3191bd0286d555016885"}}},{"id":"50fb318abd0286d5550167ba","created_at":"2012-08-04T15:29:01Z","updated_at":"2013-06-14T14:44:07Z","name":"2012
82
+ Hyundai Sonata Hybrid Sedan Review","branch_name":"master","summary":"Well-equipped
83
+ for $25k -- and even better at $35k -- the Sonata Hybrid impressed us with
84
+ its style and road feel, but its mid-30s gas mileage may disappoint those
85
+ looking for a high-MPG sedan.","meta_description":"","website_ids":["50e669d7bd028648e0000033","50e669d7bd028648e0000025"],"author_ids":["50fc4eacbd0286d5550b4c8c"],"tags":[],"classifications":["deal"],"publish_on":"2013-04-24T16:00:00+00:00","attachment_ids":["50fb318bbd0286d5550167c3","50fb318bbd0286d5550167d2","50fb318bbd0286d5550167df","50fb318cbd0286d5550167ed"],"primary_product_id":"50fa324a96ab5860160c8359","resource_uri":"/deals/2012-hyundai-sonata-hybrid-sedan-review.htm","disqus_uri":"2012-Hyundai-Sonata-Hybrid-Sedan-Review","product_ids":["50fa324a96ab5860160c8359"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-08-13T20:33:00+00:00","slug":"2012-hyundai-sonata-hybrid-sedan-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa324a96ab5860160c8359","created_at":"2012-07-16T13:52:40Z","updated_at":"2013-04-22T19:58:32Z","name":"2012
86
+ Hyundai Sonata Hybrid ","slug":"hyundai-2012-sonata-hybrid","_type":"Automobiles::Sedan","types":["Sedan","Hybrid"],"msrp":25850.0,"article_ids":["50fb318abd0286d5550167ba","50fc43cabd0286d5550b114e"],"website_ids":["50e669d7bd028648e0000033"],"publish_on":"2012-08-13T20:33:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed75bd0286638e000176","model":"2012
87
+ Sonata Hybrid","resource_uri":"/products/hyundai-2012-sonata-hybrid","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"is_primary_product":true,"attachments":[{"id":"50fc5a31bd0286ac750022bc","created_at":"2013-01-20T20:57:21Z","updated_at":"2013-01-20T20:57:21Z","name":"Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s50x50_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s150x150_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s250x250_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s300x150_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s300x112_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s500x500_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s600x400_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s600x600_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s940x400_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s940x350_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s940x110_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","file_size":76144,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5a31bd0286ac750022bc","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5a31bd0286ac750022bc"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d91f82dc798de00005e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d91f82dc798de00005e"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb318abd0286d5550167ba","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb318abd0286d5550167ba"}}},{"id":"50fb318ebd0286d555016820","created_at":"2012-08-10T19:55:28Z","updated_at":"2013-06-18T16:14:57Z","name":"2012
88
+ Scion iQ Minicompact Review","branch_name":"master","summary":"The Scion iQ
89
+ is a small car with an even smaller target audience. Starting at $15,995 and
90
+ near $20,000 with options, its not very fun to drive and near useless outside
91
+ of the most crowded cities.","meta_description":"","website_ids":["50e669d7bd028648e0000033","50e669d7bd028648e0000025"],"author_ids":["50fc4eacbd0286d5550b4c8c"],"tags":[],"classifications":["deal"],"publish_on":"2013-04-24T15:00:00+00:00","attachment_ids":["50fb318fbd0286d555016829","50fb318fbd0286d555016838","50fb3190bd0286d555016852"],"primary_product_id":"50fa325196ab5860160c837d","resource_uri":"/deals/2012-scion-iq-minicompact-review.htm","disqus_uri":"2012-Scion-iQ-Minicompact-Review","product_ids":["50fa325196ab5860160c837d"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-07-16T19:58:00+00:00","slug":"2012-scion-iq-minicompact-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa325196ab5860160c837d","created_at":"2012-07-16T20:00:58Z","updated_at":"2013-04-22T19:58:34Z","name":"2012
92
+ Scion iQ ","slug":"scion-2012-iq","_type":"Automobiles::Hatchback","types":["Hatchback","Hatchback"],"msrp":15995.0,"article_ids":["50fb318ebd0286d555016820","50fc43c2bd0286d5550b1134"],"website_ids":["50e669d7bd028648e0000033"],"publish_on":"2012-07-16T19:58:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed76bd0286638e00019c","model":"2012
93
+ iQ","resource_uri":"/products/scion-2012-iq","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"is_primary_product":true,"attachments":[{"id":"50fcf2a0bd028663f10130d4","created_at":"2013-01-21T07:47:44Z","updated_at":"2013-01-21T07:47:44Z","name":"Scion-IQ-Vanity2.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s50x50_Scion-IQ-Vanity2.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s150x150_Scion-IQ-Vanity2.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s250x250_Scion-IQ-Vanity2.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s300x150_Scion-IQ-Vanity2.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s300x112_Scion-IQ-Vanity2.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s500x500_Scion-IQ-Vanity2.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s600x400_Scion-IQ-Vanity2.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s600x600_Scion-IQ-Vanity2.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s940x400_Scion-IQ-Vanity2.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s940x350_Scion-IQ-Vanity2.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s940x110_Scion-IQ-Vanity2.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/Scion-IQ-Vanity2.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/Scion-IQ-Vanity2.jpg","file_size":82466,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fcf2a0bd028663f10130d4","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fcf2a0bd028663f10130d4"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d91f82dc798de00005f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d91f82dc798de00005f"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb318ebd0286d555016820","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb318ebd0286d555016820"}}},{"id":"50fb318cbd0286d5550167ee","created_at":"2012-08-09T19:01:15Z","updated_at":"2013-06-14T14:45:39Z","name":"2012
94
+ Chrysler 300 SRT8 Sedan Review","branch_name":"master","summary":"The Chrysler
95
+ 300 SRT8 is the best sedan the company offers, and one of the finest American
96
+ muscle cars. Luckily, lesser models of 300 are just as good where it counts
97
+ for most drivers.","meta_description":"","website_ids":["50e669d7bd028648e0000033","50e669d7bd028648e0000025"],"author_ids":["50fc4eacbd0286d5550b4c8c"],"tags":[],"classifications":["deal"],"publish_on":"2013-04-24T14:00:00+00:00","attachment_ids":["50fb318dbd0286d5550167f7","50fb318dbd0286d555016806"],"primary_product_id":"50fa32e596ab5860160c864e","resource_uri":"/deals/2012-chrysler-300-srt8-sedan-review.htm","disqus_uri":"2012-Chrysler-300-SRT8-Sedan-Review","product_ids":["50fa32e596ab5860160c864e"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-08-13T19:52:00+00:00","slug":"2012-chrysler-300-srt8-sedan-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa32e596ab5860160c864e","created_at":"2012-08-08T03:29:42Z","updated_at":"2013-04-22T19:59:03Z","name":"2012
98
+ Chrysler 300 SRT8 ","slug":"chrysler-2012-300-srt8","_type":"Automobiles::Sedan","types":["Sedan"],"msrp":48670.0,"article_ids":["50fb318cbd0286d5550167ee","50fc43cebd0286d5550b115b"],"website_ids":["50e669d7bd028648e0000033"],"publish_on":"2012-08-13T19:52:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c0","model":"2012
99
+ 300 SRT8","resource_uri":"/products/chrysler-2012-300-srt8","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"is_primary_product":true,"attachments":[{"id":"50fc5a31bd028600af0022bb","created_at":"2013-01-20T20:57:21Z","updated_at":"2013-01-20T20:57:21Z","name":"Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s50x50_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s150x150_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s250x250_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s300x150_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s300x112_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s500x500_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s600x400_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s600x600_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s940x400_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s940x350_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s940x110_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","file_size":116369,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5a31bd028600af0022bb","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5a31bd028600af0022bb"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d91f82dc798de000060","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d91f82dc798de000060"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb318cbd0286d5550167ee","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb318cbd0286d5550167ee"}}},{"id":"50fb3193bd0286d5550168b9","created_at":"2012-10-04T13:08:27Z","updated_at":"2013-06-14T14:46:26Z","name":"2012
100
+ Toyota Prius C Hybrid Hatchback Review","branch_name":"master","summary":"With
101
+ a starting price that''s about $3000 less than a base Prius, the Prius C isn''t
102
+ a cheaper version of the mainstream Prius. It''s a hybridized Yaris, and the
103
+ cost-cutting is apparent with a subpar interior and sluggish performance.
104
+ It''s not a bad choice if you need 49+ MPG fuel economy and must have a brand
105
+ new car, but a gently used mainstream Prius would be an even better choice.","meta_description":"","website_ids":["50e669d7bd028648e0000033","50e669d7bd028648e0000025"],"author_ids":["50fc4eacbd0286d5550b4c8c"],"tags":[],"classifications":["deal"],"publish_on":"2013-04-24T12:00:00+00:00","attachment_ids":["50fb3194bd0286d5550168c2","50fb3195bd0286d5550168d1","50fb3195bd0286d5550168de","50fb3196bd0286d5550168ec"],"primary_product_id":"50fa323696ab5860160c82fb","resource_uri":"/deals/toyota-prius-c-hybrid-hatchback-review.htm","disqus_uri":"Toyota-Prius-C-Hybrid-Hatchback-Review","product_ids":["50fa323696ab5860160c82fb"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-10-17T16:08:00+00:00","slug":"toyota-prius-c-hybrid-hatchback-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa323696ab5860160c82fb","created_at":"2012-07-12T16:39:07Z","updated_at":"2013-04-22T19:58:28Z","name":"2012
106
+ Toyota Prius c Three","slug":"toyota-2012-prius-c-three","_type":"Automobiles::Hatchback","types":["Hatchback","Hybrid","Hatchback"],"msrp":21635.0,"article_ids":["50fb3193bd0286d5550168b9","50fc43c2bd0286d5550b1134","50fc43cabd0286d5550b114e"],"website_ids":["50e669d7bd028648e0000033"],"publish_on":"2012-10-17T16:08:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed74bd0286638e000173","model":"2012
107
+ Prius c","resource_uri":"/products/toyota-2012-prius-c-three","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"is_primary_product":true,"attachments":[{"id":"50fcf2a2bd0286ffdf0130fd","created_at":"2013-01-21T07:47:46Z","updated_at":"2013-01-21T07:47:46Z","name":"Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s50x50_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s150x150_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s250x250_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s300x150_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s300x112_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s500x500_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s600x400_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s600x600_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s940x400_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s940x350_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s940x110_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/Toyota-Prius-C-Front-DS-Angled-Exterior.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","file_size":97645,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fcf2a2bd0286ffdf0130fd","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fcf2a2bd0286ffdf0130fd"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d91f82dc798de000061","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d91f82dc798de000061"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb3193bd0286d5550168b9","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb3193bd0286d5550168b9"}}},{"id":"51755819b8c63701fa0000ca","created_at":"2013-04-22T15:32:41Z","updated_at":"2013-04-22T15:41:34Z","name":"Toy
108
+ Camera","branch_name":"master","summary":"asdfasdf","meta_description":null,"website_ids":["50e669d7bd028648e000000d"],"author_ids":["5113c597f981b8f03b00057d"],"tags":["toy","fischer
109
+ price"],"classifications":["deal"],"publish_on":"2013-04-22T15:08:22+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/deals/toy-camera","disqus_uri":"/deals/toy-camera","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"toy-camera","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51755819b8c63701fa0000ca","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51755819b8c63701fa0000ca"}}},{"id":"50fb3190bd0286d555016853","created_at":"2012-08-21T17:08:55Z","updated_at":"2013-06-14T14:54:32Z","name":"2012
110
+ Nissan Versa SV Sedan Review","branch_name":"master","summary":"The redesigned
111
+ 2012 Versa sedan is almost charmingly simple, meeting and even exceeding basic
112
+ transportation needs. Just don''t expect to pay $10,990 and be done with it.","meta_description":"","website_ids":["50e669d7bd028648e0000033","50e669d7bd028648e0000025"],"author_ids":["50fc4eacbd0286d5550b4c8c"],"tags":["super-hero3"],"classifications":["deal"],"publish_on":"2013-04-10T16:00:00+00:00","attachment_ids":["50fb3190bd0286d55501685c","50fb3191bd0286d55501686b","51b78eaf3967a5a53c000017"],"primary_product_id":"50fa320796ab5860160c821f","resource_uri":"/deals/2012-nissan-versa-sv-sedan-review.htm","disqus_uri":"2012-Nissan-Versa-SV-Sedan-Review","product_ids":["50fa320796ab5860160c821f"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-08-22T20:30:00+00:00","slug":"2012-nissan-versa-sv-sedan-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa320796ab5860160c821f","created_at":"2012-07-09T16:35:20Z","updated_at":"2013-04-22T19:58:20Z","name":"2012
113
+ Nissan Versa Sedan 1.6 SV","slug":"nissan-2012-versa-sedan-1-6-sv","_type":"Automobiles::Sedan","types":["Sedan"],"msrp":14980.0,"article_ids":["50fb3190bd0286d555016853"],"website_ids":["50e669d7bd028648e0000033"],"publish_on":"2012-08-22T20:30:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed71bd0286638e0000f6","model":"2012
114
+ Versa","resource_uri":"/products/nissan-2012-versa-sedan-1-6-sv","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"is_primary_product":true,"attachments":[{"id":"50fcf2a0bd0286027b0130d9","created_at":"2013-01-21T07:47:44Z","updated_at":"2013-01-21T07:47:44Z","name":"Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s50x50_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s150x150_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s250x250_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s300x150_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s300x112_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s500x500_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s600x400_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s600x600_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s940x400_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s940x350_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s940x110_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","file_size":104227,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fcf2a0bd0286027b0130d9","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fcf2a0bd0286027b0130d9"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d92f82dc798de000062","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d92f82dc798de000062"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb3190bd0286d555016853","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb3190bd0286d555016853"}}},{"id":"510841ac51eb9385ae0003cb","created_at":"2013-01-29T21:39:56Z","updated_at":"2013-06-14T14:54:55Z","name":"Viking
115
+ D3 RDSCD2305B Dual Fuel Range First Impression","branch_name":"master","summary":"Viking,
116
+ known for applying design elements from commercial ranges to domestic ones,
117
+ ventures away from the industrial design with the more affordable D3.","meta_description":"","website_ids":["50e669d7bd028648e000002b","50e669d7bd028648e0000025"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":["oven","range","gas","electric","stove","home-hero1"],"classifications":["deal"],"publish_on":"2013-04-05T00:00:00+00:00","attachment_ids":["510841522d85b5d7da000298","5108417f2d85b5d7da0002a4","510841a1c1c06298540002c0"],"primary_product_id":"50fa33af96ab5860160c8a31","resource_uri":"/deals/viking-d3-rdscd2305b","disqus_uri":"/deals/viking-d3-rdscd2305b","product_ids":["50fa33af96ab5860160c8a31"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-02-07T14:00:00+00:00","slug":"viking-d3-rdscd2305b","is_template":false,"is_branch":false,"products":[{"id":"50fa33af96ab5860160c8a31","created_at":"2012-10-09T19:16:50Z","updated_at":"2013-03-11T21:05:27Z","name":"Viking
118
+ D3-RDSCD2305B","slug":"viking-d3-rdscd2305b","_type":"Appliances::MajorAppliances::Oven","types":["Gas","Electric","Dual-Fuel"],"msrp":4099.0,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2013-02-07T14:00:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed7bbd0286638e00024a","model":"D3-RDSCD2305B","resource_uri":"/products/viking-d3-rdscd2305b","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"is_primary_product":true,"attachments":[{"id":"5107ead3cc4b9b2ef4000b27","created_at":"2013-01-29T15:29:23Z","updated_at":"2013-02-19T17:45:02Z","name":"Front
119
+ Photo ","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s50x50_Viking_D3-front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s150x150_Viking_D3-front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s250x250_Viking_D3-front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s300x150_Viking_D3-front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s300x112_Viking_D3-front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s500x500_Viking_D3-front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s600x400_Viking_D3-front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s600x600_Viking_D3-front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s940x400_Viking_D3-front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s940x350_Viking_D3-front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s940x110_Viking_D3-front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/Viking_D3-front.jpg"},"caption":"The
120
+ D3 has an appealing compromise between the classic Viking industrial look
121
+ and something a little more modern.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/Viking_D3-front.jpg","file_size":63354},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5107ead3cc4b9b2ef4000b27","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5107ead3cc4b9b2ef4000b27"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d94f82dc798de000063","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d94f82dc798de000063"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/510841ac51eb9385ae0003cb","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/510841ac51eb9385ae0003cb"}}},{"id":"51264af0c53c59a2a10002ab","created_at":"2013-02-21T16:27:28Z","updated_at":"2013-06-14T14:55:38Z","name":"Whirlpool
122
+ WFG720H0AS Gas Range Review","branch_name":"master","summary":"Loaded with
123
+ an impressive rangetop, an Aqualift cleaning system, and a stylish look, this
124
+ Whirlpool falls far short in oven performance.","meta_description":"","website_ids":["50e669d7bd028648e000002b","50e669d7bd028648e0000025"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":["oven","range","review","gas","electric","stove"],"classifications":["deal"],"publish_on":"2013-03-27T01:00:00+00:00","attachment_ids":["513a0ce6b55586eafd00056f"],"primary_product_id":"50fa342096ab5860160c8c60","resource_uri":"/deals/whirlpool-wfg720h0as-gas-range-review.htm","disqus_uri":"/deals/whirlpool-wfg720h0as-gas-range-review.htm","product_ids":["50fa342096ab5860160c8c60"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-11-21T16:02:00+00:00","slug":"whirlpool-wfg720h0as-gas-range-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa342096ab5860160c8c60","created_at":"2012-11-21T16:39:13Z","updated_at":"2013-03-14T14:11:59Z","name":"Whirlpool
125
+ WFG720H0AS","slug":"whirlpool-wfg720h0as","_type":"Appliances::MajorAppliances::Oven","types":["Gas"],"msrp":1349.0,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2012-11-21T16:02:00+00:00","upc":"","price_grabber_id":"956620871","rubric_id":"50f9ed93bd0286638e0003b9","brand_id":"50f9ed77bd0286638e0001c5","model":"WFG720H0AS","resource_uri":"/products/whirlpool-wfg720h0as","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.47,"ranking":{"total":30,"rank":28,"percentile":7},"rubric":{"id":"50f9ed93bd0286638e0003b9","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:19Z","name":"2012
126
+ Oven Rubric","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003b9","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b9"}}},"is_primary_product":true,"attachments":[{"id":"51253c3ba97ff8be2200003d","created_at":"2013-02-20T21:12:27Z","updated_at":"2013-02-20T21:56:35Z","name":"Front","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s50x50_front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s150x150_front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s250x250_front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s300x150_front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s300x112_front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s500x500_front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s600x400_front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s600x600_front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s940x400_front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s940x350_front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s940x110_front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/front.jpg"},"caption":"This
127
+ stylish exterior is a less aggressive stainless steel alternative to the pro
128
+ ranges. ","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/front.jpg","file_size":181504},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51253c3ba97ff8be2200003d","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51253c3ba97ff8be2200003d"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d95f82dc798de000064","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d95f82dc798de000064"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51264af0c53c59a2a10002ab","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51264af0c53c59a2a10002ab"}}},{"id":"513758cc0aa7bb04a600052b","created_at":"2013-03-06T14:55:08Z","updated_at":"2013-06-14T14:57:11Z","name":"Reviewed.com
129
+ March Camcorder Deals Roundup","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e0000005","50e669d7bd028648e0000025"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":[],"classifications":["deal"],"publish_on":"2013-03-24T10:03:00+00:00","attachment_ids":["51379d265048fd875f00054f","51379d4864401acda7000160","51379d67c0f8497336000208","5137a01f3f0c86ae1b000525","5137a0dbfcc11319db00044e","5137a11b64401a5b940005db"],"primary_product_id":null,"resource_uri":"/deals/reviewed-com-march-camcorder-deals-roundup","disqus_uri":"/deals/reviewed-com-march-camcorder-deals-roundup","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"reviewed-com-march-camcorder-deals-roundup","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/513758cc0aa7bb04a600052b","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513758cc0aa7bb04a600052b"}}},{"id":"513663d88f4eb684df0001f8","created_at":"2013-03-05T21:30:00Z","updated_at":"2013-06-14T14:58:06Z","name":"Reviewed.com
130
+ March Television Deals Roundup","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000000f","50e669d7bd028648e0000025"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":[],"classifications":["deal"],"publish_on":"2013-03-22T13:00:00+00:00","attachment_ids":["5136672f5e2ce88bae0005aa","5136674a542c9272da000706","513667750844bcb143000671","513667adb5a96df4930006dd","513667db4505ea901600064e","51366803262dad9de50006dc"],"primary_product_id":null,"resource_uri":"/deals/reviewed-com-march-television-deals-roundup","disqus_uri":"/deals/reviewed-com-march-television-deals-roundup","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"reviewed-com-march-television-deals-roundup","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/513663d88f4eb684df0001f8","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513663d88f4eb684df0001f8"}}},{"id":"511e672a8ff8dbf974000452","created_at":"2013-02-15T16:50:04Z","updated_at":"2013-03-08T16:09:43Z","name":"Maytag
131
+ MGR7685AB Gas Range Review","branch_name":"master","summary":"The MGR7685''s
132
+ rangetop performed well, but bakers won''t like the oven.","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":["oven","range","review","gas","electric","stove"],"classifications":["review"],"publish_on":"2013-03-20T06:00:00+00:00","attachment_ids":["511e670aeb2b169d5c0003f8","511e6722c91563c71e000362","512d346533d5c429640000fb"],"primary_product_id":"50fa341596ab5860160c8c1c","resource_uri":"/content/maytag-mgr7685ab-gas-range-review.htm","disqus_uri":"/content/maytag-mgr7685ab-gas-range-review.htm","product_ids":["50fa341596ab5860160c8c1c"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-11-20T13:16:00+00:00","slug":"maytag-mgr7685ab-gas-range-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa341596ab5860160c8c1c","created_at":"2012-11-20T13:59:36Z","updated_at":"2013-03-14T14:11:59Z","name":"Maytag
133
+ MGR7685AB","slug":"maytag-mgr7685ab","_type":"Appliances::MajorAppliances::Oven","types":[],"msrp":749.0,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2012-11-20T13:16:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b9","brand_id":"50f9ed77bd0286638e0001ca","model":"MGR7685AB","resource_uri":"/products/maytag-mgr7685ab","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.71,"ranking":{"total":30,"rank":26,"percentile":14},"rubric":{"id":"50f9ed93bd0286638e0003b9","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:19Z","name":"2012
134
+ Oven Rubric","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003b9","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b9"}}},"is_primary_product":true,"attachments":[{"id":"511d472c444cb07fb50000c8","created_at":"2013-02-14T20:21:00Z","updated_at":"2013-02-25T16:24:30Z","name":"Front","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s150x150_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s600x600_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/Front.jpg"},"caption":"This
135
+ all-black range surprisingly draws attention to itself.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/Front.jpg","file_size":73385},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/511d472c444cb07fb50000c8","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/511d472c444cb07fb50000c8"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d97f82dc798de000065","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d97f82dc798de000065"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/511e672a8ff8dbf974000452","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/511e672a8ff8dbf974000452"}}},{"id":"513a1db09da86c533600077e","created_at":"2013-03-08T17:19:44Z","updated_at":"2013-05-24T19:57:06Z","name":"Reviewed.com
136
+ March Appliance Deals Roundup","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000000d"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-18T13:30:00+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/reviewed.com
137
+ March Appliance Deals Roundup","disqus_uri":"/features/reviewed.com March
138
+ Appliance Deals Roundup","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"reviewed.com
139
+ March Appliance Deals Roundup","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/513a1db09da86c533600077e","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513a1db09da86c533600077e"}}},{"id":"513a099345ba4bfacb000630","created_at":"2013-03-08T15:53:55Z","updated_at":"2013-03-08T22:06:33Z","name":"Samsung
140
+ PN60E6500 Review","branch_name":"master","summary":"","meta_description":"","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eafbd0286d5550b4c98"],"tags":["samsung
141
+ plasma","samsung 2012 plasma tv","samsung smart hub","smart hub","samsung
142
+ smart tv"],"classifications":["review"],"publish_on":"2013-03-13T11:28:00+00:00","attachment_ids":[],"primary_product_id":"50fa2f7f96ab5860160c7603","resource_uri":"/content/samsung-pn60e6500-review","disqus_uri":"/content/samsung-pn60e6500-review","product_ids":["50fa2f7f96ab5860160c7603"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-03-21T15:43:00+00:00","slug":"samsung-pn60e6500-review","is_template":false,"is_branch":false,"products":[{"id":"50fa2f7f96ab5860160c7603","created_at":"2012-03-21T15:43:59Z","updated_at":"2013-06-26T18:24:32Z","name":"Samsung
143
+ PN60E6500","slug":"samsung-pn60e6500","_type":"Electronics::Television","types":[],"msrp":2199.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2012-03-21T15:43:00+00:00","upc":"","price_grabber_id":"965608824","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"50f9ed6fbd0286638e0000b8","model":"PN60E6500","resource_uri":"/products/samsung-pn60e6500","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":7.66,"ranking":{"total":262,"rank":6,"percentile":98},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
144
+ Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a6","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a6"}}},"is_primary_product":true,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d98f82dc798de000066","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d98f82dc798de000066"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/513a099345ba4bfacb000630","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513a099345ba4bfacb000630"}}},{"id":"5138b9dd12494f322a000647","created_at":"2013-03-07T16:01:34Z","updated_at":"2013-03-07T21:54:23Z","name":"LG
145
+ LFX31935ST Blast Chiller Refrigerator Review","branch_name":"master","summary":"We
146
+ love this fridge''s Blast Chiller feature, which takes minutes to cool a bottle
147
+ of wine or a can of soda. But outside of the innovation, it proved to be a
148
+ darn good refrigerator in our regular tests.","meta_description":"","website_ids":["50e669d7bd028648e0000019"],"author_ids":["50fc4eafbd0286d5550b4c96"],"tags":[],"classifications":["review"],"publish_on":"2013-03-12T11:45:00+00:00","attachment_ids":[],"primary_product_id":"50fa2dab96ab5860160c6d8e","resource_uri":"/content/lg-lfx31935st-blast-chiller-refrigerator-review","disqus_uri":"/content/lg-lfx31935st-blast-chiller-refrigerator-review","product_ids":["50fa2dab96ab5860160c6d8e"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-11-07T21:10:00+00:00","slug":"lg-lfx31935st-blast-chiller-refrigerator-review","is_template":false,"is_branch":false,"products":[{"id":"50fa2dab96ab5860160c6d8e","created_at":"2012-01-09T17:42:54Z","updated_at":"2013-03-11T21:15:10Z","name":"LG
149
+ LFX31935ST Blast Chiller","slug":"lg-lfx31935st-blast-chiller","_type":"Appliances::MajorAppliances::Refrigerator","types":["French
150
+ Door","French Door"],"msrp":3849.99,"article_ids":["50fb3950bd0286d55501b999","50fb39fdbd0286d55501c3e8","50fc49e3bd0286d5550b3ceb"],"website_ids":["50e669d7bd028648e0000019"],"publish_on":"2012-11-07T21:10:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003ae","brand_id":"50f9ed70bd0286638e0000d8","model":"LFX31935ST
151
+ Blast Chiller","resource_uri":"/products/lg-lfx31935st-blast-chiller","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":0.1,"ranking":{"total":56,"rank":56,"percentile":0},"rubric":{"id":"50f9ed93bd0286638e0003ae","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
152
+ Refrigerator Rubric","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003ae","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003ae"}}},"is_primary_product":true,"attachments":[{"id":"50fc7385bd0286f12a005021","created_at":"2013-01-20T22:45:25Z","updated_at":"2013-01-20T22:45:25Z","name":"LG-LFX31935ST-front.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s50x50_LG-LFX31935ST-front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s150x150_LG-LFX31935ST-front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s250x250_LG-LFX31935ST-front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s300x150_LG-LFX31935ST-front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s300x112_LG-LFX31935ST-front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s500x500_LG-LFX31935ST-front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s600x400_LG-LFX31935ST-front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s600x600_LG-LFX31935ST-front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s940x400_LG-LFX31935ST-front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s940x350_LG-LFX31935ST-front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s940x110_LG-LFX31935ST-front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/LG-LFX31935ST-front.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/LG-LFX31935ST-front.jpg","file_size":19757,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc7385bd0286f12a005021","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc7385bd0286f12a005021"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d9af82dc798de000067","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d9af82dc798de000067"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/5138b9dd12494f322a000647","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5138b9dd12494f322a000647"}}}]}'
210
153
  http_version:
211
- recorded_at: Sat, 27 Apr 2013 01:47:04 GMT
212
- recorded_with: VCR 2.3.0
154
+ recorded_at: Thu, 27 Jun 2013 15:43:24 GMT
155
+ recorded_with: VCR 2.5.0