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:01 GMT
41
- Status:
38
+ Date:
39
+ - Thu, 27 Jun 2013 15:43:11 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
- - aaa68f62cd28e1288ef372f9e4b43316
49
- X-Runtime:
50
- - "2.416737"
51
- X-Ua-Compatible:
48
+ X-Request-Id:
49
+ - 51db4a123a42549fbc55ff36369d247c
50
+ X-Runtime:
51
+ - '0.020183'
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
- H4sIABUue1EAA+yde3PjNpLAvwpKtVXZrTU9BN/Uf8lMXlsz2WTsS+5uK+UC
61
- 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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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
- BYOmHxkvnYy82dsXrIyX6YO4q2opcbPo6Q4lQUliFRclKMO7iFUiS/OtRLZP
81
- 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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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
- MhB0zcqFqAlreCryWFyTmxqbB9AW2Zq6V2HoSlrOBUMON69AQFVWhSTb6kqS
89
- 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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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
- hH19djEULobCxVAY4nz4aoZCeDEUnuH8qBY/i6EwknPfUKC+GySJRz2Pe1Zs
111
- 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
- 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
- pf9qLeJKZS+p+u0SSL+GTJHrywYGMR+HYaWxh1PlLvRORFsU+SeopepWbM8c
114
- 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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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
- 2UbdchhC481td25N2FtlHRiqcnTRaw8G7dY311ZWvrCtsawuNTyo+0vX46kT
124
- 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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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
- fiVuda8df4xbbbOjVisYMqs/ANZDLTTqKKHhLXSIE84tnYw+u6e/coDiRD6q
143
- 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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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
- 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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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
- +GXqjyIp04UANVmUx3x3U5CseGj3T0AOfCE+q3aybg24K/K4TMGqqtk9WMir
189
- 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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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
- DXA+G4C+mg1ALzbAkNR1FH66DTCe8044LW4WVeFlSeDIYHLhaG0At9szqPsM
197
- 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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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
208
- fwIAAAD//wMAIHnwr4auAAA=
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/51cc5d8df82dc7b9e000007f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8df82dc7b9e000007f"}}}],"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/51cc5d8df82dc7b9e0000080","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8df82dc7b9e0000080"}}}],"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/51cc5d8df82dc7b9e0000081","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8df82dc7b9e0000081"}}}],"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/51cc5d8ef82dc7b9e0000082","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ef82dc7b9e0000082"}}}],"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/51cc5d8ef82dc7b9e0000083","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ef82dc7b9e0000083"}}}],"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/51cc5d8ef82dc7b9e0000084","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ef82dc7b9e0000084"}}}],"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/51cc5d8ef82dc7b9e0000085","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ef82dc7b9e0000085"}}}],"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/51cc5d8ef82dc7b9e0000086","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ef82dc7b9e0000086"}}}],"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/51cc5d8ff82dc7b9e0000087","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ff82dc7b9e0000087"}}}],"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/51cc5d8ff82dc7b9e0000088","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ff82dc7b9e0000088"}}}],"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/51cc5d8ff82dc7b9e0000089","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ff82dc7b9e0000089"}}}],"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:01 GMT
212
- recorded_with: VCR 2.3.0
154
+ recorded_at: Thu, 27 Jun 2013 15:43:12 GMT
155
+ recorded_with: VCR 2.5.0