reviewed 0.4.6 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,224 +1,122 @@
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?page=2
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:46:55 GMT
41
- Status:
38
+ Date:
39
+ - Thu, 27 Jun 2013 15:43:02 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
- - 208942d449e5e97dd8bcb0ee925f13bb
49
- X-Runtime:
50
- - "2.019532"
51
- X-Ua-Compatible:
48
+ X-Request-Id:
49
+ - fe3a708c6ad8f9bb6ba693788e942e05
50
+ X-Runtime:
51
+ - '0.019178'
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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
- QVBiLIlakprxJJX/fg2Q4kgakqJexru31taWMyLABtBsNJ5uNBq/jZZqki5U
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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
- kLwCgnNTqtvYFDpPl9UXPRflexMVaWluU/vB/jbiyAgh4yCKEQkFCw1y/0tG
69
- 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
- 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
- UAiVqyJDMRGYKclxbOUjdh2D4dsPc7vMs3ilLbVKoGSihUGSawUMCCW8wJ1A
72
- 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
- 5mPv1mNt79/PtoOzSprzMtWz9WeEgmK2mkC7Q5pLi9vSzJeWUDNn4Vkl2xtz
74
- 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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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
- q/YEdQ3SCI12ndoSaUO4kBRjGofadgrpgU7thoXP5MAmV7LNf83R2nvNwm3f
101
- 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
- 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
- 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
- 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
- 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
- tnlq11/ALHfOOj4OrKJ9YLU2nWHFd06OICSVFKHu4A2UKGIiIoWKeCgQFkgH
107
- BJkeGFvbqiqN/Y9xXoBsfCoKP4av61tG+DBq37GiBpRX03LeiXKPJLYLgrtG
108
- MQAEH9mDozFyN8N35zDxEfGJtBYhQ7X7qHUOY2b3KzEe871zeNQ/7qHI+S+V
109
- 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
- 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
- 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
- iKAUYKAJjbCbEyzWnRAcux0PPqZdCrByDLslnoWbO0TZZPLgfZ1n94sUcDGs
113
- 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
- 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
- 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
- G8jQbGbZWP9t/zx6bwyJIQAf5I9gFiRMcEOw5RdAh9GLuogiGcShFAHWTjQT
117
- 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
- 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
- pojKqhsCk6rznTbNvu1AO6/8qJ5XPoizH9l55S/tvPKn2b1vrUsoqPD/Wlb8
120
- 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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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
- 1mdDT/UTYXSFWjdoxdpPhLf9RFIO9ROpNi/n6X4i7G1K2pfuL3JMfg5/ERC+
130
- +IvO5y9iz+YvYhd/0Y5XpwMon8Ff1Ep5B6arKIw1TYyk3K7m1uTthekO4/Vs
131
- 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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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
- 1qrND3WiFQ9684Pre+H9oRqEXyyNLgB2ZqvlH79cY148lzEvLsb8GY15/mzG
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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
- 9wyou5Xyk70vhQgAdEBvRNp9Yc7jvXtflPQeM8FjWMMJ21CA3y/qZILe6yz7
157
- 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
- 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
- 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
- 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
- MSIoDQOOw8QKLDOPRSIkhjAjkdHu/AaNmyLJqnAOQWMn5kHTjRDr6i2N3WcL
162
- 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
- 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
- 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
- 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
- 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
- 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
- QSFhg1wkA7Nw8A0XyRZvO30kHdx+tiQcCPcn4cA7pyvE8PR3lywclywcX5p7
169
- JNlxYgRnc488pXxxj2yD2A6AegZ43Ep5Bx5jIuOqTkw0cXU6AtMqeMztwWbC
170
- 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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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
- SgiVSDlDKDw2C7XbkHj8rtU1sI4DekNwurJMD3v78CzSw+he9ksOyxLdoY3O
188
- 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
- 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
- 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
- /7giw0PMNVb2nLrdTqdSrbWdjkRSXXXMibVdKTtWpd1PbaRx4St/R41067G+
192
- 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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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
- 6VrNQU3H8FeUuySf1SlvmxoZgKmTNoculeeidi0kje1qYeQv7j/Iu1tdeaeZ
203
- 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
- aCiKkBLMHa2mTRGXVT76RErszjTjpiiIJCMqxPY6IeeZjZoiFYhYh5rEhLDG
205
- JVUVxXVbPK5CAXjSFCUMGS5iGlVX/pHm8igtRLDTjYagCFQYJ1RgpZR0B7Kb
206
- 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
- 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
- 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
- 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
- Gq2LJCV2gkVYVxmlEe10/NThrGz7aGSMeY/Roq128KeJPyHreFqfdhosXbVb
211
- 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
- 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
- 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
- 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
- O58RFj2bERZdjLBtU6nLDDrdCGunvHPSDDMqBTUkAJzswCQ13Re9M2dghfXN
216
- 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
- 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
- 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
- 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
- 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
221
-
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"pagination":{"total":13067,"total_pages":654,"first_page":false,"last_page":false,"previous_page":1,"next_page":3,"out_of_bounds":false,"offset":20,"current_page":2,"per_page":20,"entries_on_page":20},"data":[{"id":"51361bbd8f4eb6f84b0005e4","created_at":"2013-03-05T16:22:21Z","updated_at":"2013-05-24T19:57:03Z","name":"The
61
+ History of Smart Appliances","branch_name":"master","summary":"test","meta_description":"","website_ids":[],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-11T16:00:00+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/the-history-of-smart-appliances","disqus_uri":"/features/the-history-of-smart-appliances","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"the-history-of-smart-appliances","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/51361bbd8f4eb6f84b0005e4","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51361bbd8f4eb6f84b0005e4"}}},{"id":"513a66360880789d47000127","created_at":"2013-03-08T22:29:10Z","updated_at":"2013-05-24T19:56:36Z","name":"Cooking
62
+ On Salt, Not With It (video)","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4e9bbd0286d5550b4c1a"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-08T22:20:34+00:00","attachment_ids":["513a68c9ae7a771888000098"],"primary_product_id":null,"resource_uri":"/features/cooking-on-salt-not-with-it-video","disqus_uri":"/features/cooking-on-salt-not-with-it-video","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"cooking-on-salt-not-with-it-video","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/513a66360880789d47000127","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513a66360880789d47000127"}}},{"id":"513a4a1fd8ddd3f8460008ed","created_at":"2013-03-08T20:29:19Z","updated_at":"2013-03-08T20:56:09Z","name":"A
63
+ Brighter Future With Cleaner Windows (video)","branch_name":"master","summary":"Move
64
+ over Rosie Jetson and put away your Windex. Winbot has got this under control.
65
+ ","meta_description":"","website_ids":["50e669d7bd028648e000001b"],"author_ids":[],"tags":[],"classifications":["feature"],"publish_on":"2013-03-08T20:23:05+00:00","attachment_ids":["513a4d4cbd2898adbf000912"],"primary_product_id":null,"resource_uri":"/features/a-brighter-future-with-cleaner-windows-video","disqus_uri":"/features/a-brighter-future-with-cleaner-windows-video","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"a-brighter-future-with-cleaner-windows-video","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/513a4a1fd8ddd3f8460008ed","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513a4a1fd8ddd3f8460008ed"}}},{"id":"5138f167a8e30b0a64000653","created_at":"2013-03-07T19:58:31Z","updated_at":"2013-05-24T19:56:37Z","name":"Samurai
66
+ Swords for Your Kitchen (video)","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eafbd0286d5550b4c9a"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-07T19:51:37+00:00","attachment_ids":["5138f15d6dc8c2cad00000f6"],"primary_product_id":null,"resource_uri":"/features/samurai-swords-for-your-kitchen","disqus_uri":"/features/samurai-swords-for-your-kitchen","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"samurai-swords-for-your-kitchen","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/5138f167a8e30b0a64000653","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5138f167a8e30b0a64000653"}}},{"id":"51389dc50ac94eacc70003f3","created_at":"2013-03-07T14:01:41Z","updated_at":"2013-03-08T16:42:06Z","name":"Panasonic
67
+ Viera TC-L47E5 Review","branch_name":"master","summary":"The L47E5 fails to
68
+ perform alongside Panasonic''s same-price plasmas.","meta_description":"The
69
+ L47E5 fails to perform alongside Panasonic''s same-price plasmas.","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eaebd0286d5550b4c95"],"tags":[],"classifications":["review"],"publish_on":"2013-03-07T13:58:14+00:00","attachment_ids":["5138a6cb2c402876f6000408","5138a6e312614a951d0003d5"],"primary_product_id":"5139fc6e095ca50e890005f3","resource_uri":"/content/panasonic-viera-tc-l47e5-review-2","disqus_uri":"/content/panasonic-viera-tc-l47e5-review-2","product_ids":["5139fc6e095ca50e890005f3"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-03-08T14:04:53+00:00","slug":"panasonic-viera-tc-l47e5-review-2","is_template":false,"is_branch":false,"products":[{"id":"5139fc6e095ca50e890005f3","created_at":"2013-03-08T14:57:50Z","updated_at":"2013-04-23T17:24:07Z","name":"Panasonic
70
+ Viera TC-L47E5","slug":"panasonic-viera-tc-l47e5-2","_type":"Electronics::Television","types":[],"msrp":799.0,"article_ids":["51389dc50ac94eacc70003f3"],"website_ids":[],"publish_on":"2013-03-08T14:04:53+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"513a0a39095ca5e0ee000560","model":"","resource_uri":"/products/panasonic-viera-tc-l47e5-2","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":"5139febd07989eb5fc0004cc","created_at":"2013-03-08T15:07:41Z","updated_at":"2013-03-08T15:07:41Z","name":"Front-Vanity.jpg","type":"file","tags":["design","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s50x50_Front-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s150x150_Front-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s250x250_Front-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s300x150_Front-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s300x112_Front-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s500x500_Front-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s600x400_Front-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s600x600_Front-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s940x400_Front-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s940x350_Front-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s940x110_Front-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/Front-Vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/uploads/tmp/20130308-1507-41-8884/Front-Vanity.jpg","file_size":113973},"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/5139febd07989eb5fc0004cc","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5139febd07989eb5fc0004cc"}}}],"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/51cc5d82f82dc772ea000075","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d82f82dc772ea000075"}}}],"attachments":[{"id":"5138a6cb2c402876f6000408","created_at":"2013-03-07T14:40:11Z","updated_at":"2013-03-07T20:03:50Z","name":"Hero.jpg","type":"file","tags":["hero","Small
71
+ Hero","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s50x50_Hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s150x150_Hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s250x250_Hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s300x150_Hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s300x112_Hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s500x500_Hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s600x400_Hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s600x600_Hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s940x400_Hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s940x350_Hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s940x110_Hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/Hero.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/Hero.jpg","file_size":93386},"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/5138a6cb2c402876f6000408","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5138a6cb2c402876f6000408"}}}],"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/51389dc50ac94eacc70003f3","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51389dc50ac94eacc70003f3"}}},{"id":"5137b28c5048fd40590006d3","created_at":"2013-03-06T21:18:04Z","updated_at":"2013-03-07T22:29:59Z","name":"Ariston
72
+ TVF63X Review","branch_name":"master","summary":"And you thought the Fiat
73
+ 500 was a hot Italian subcompact!","meta_description":"And you thought the
74
+ Fiat 500 was a hot Italian subcompact!","website_ids":["50e669d7bd028648e000001b"],"author_ids":["50fc4eafbd0286d5550b4c96"],"tags":[],"classifications":["review"],"publish_on":"2013-03-07T13:00:00+00:00","attachment_ids":[],"primary_product_id":"5138d3ec90a1bfbef20005ab","resource_uri":"/content/ariston-tvf63x-review","disqus_uri":"/content/ariston-tvf63x-review","product_ids":["5138d3ec90a1bfbef20005ab"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-03-07T17:36:10+00:00","slug":"ariston-tvf63x-review","is_template":false,"is_branch":false,"products":[{"id":"5138d3ec90a1bfbef20005ab","created_at":"2013-03-07T17:52:44Z","updated_at":"2013-03-08T01:46:10Z","name":"Ariston
75
+ TVF63X","slug":"tvf63x","_type":"Appliances::MajorAppliances::Dryer","types":[],"msrp":799.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2013-03-07T17:36:10+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b0","brand_id":"51390ce25693113d8c00010c","model":"","resource_uri":"/products/tvf63x","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":2.9,"ranking":{"total":50,"rank":48,"percentile":4},"rubric":{"id":"50f9ed93bd0286638e0003b0","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"Dryers","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/50f9ed93bd0286638e0003b0","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b0"}}},"is_primary_product":true,"attachments":[{"id":"5139011c9da86c5336000023","created_at":"2013-03-07T21:05:32Z","updated_at":"2013-03-07T21:17:18Z","name":"Ariston-TVF63X-vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s50x50_Ariston-TVF63X-vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s150x150_Ariston-TVF63X-vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s250x250_Ariston-TVF63X-vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s300x150_Ariston-TVF63X-vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s300x112_Ariston-TVF63X-vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s500x500_Ariston-TVF63X-vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s600x400_Ariston-TVF63X-vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s600x600_Ariston-TVF63X-vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s940x400_Ariston-TVF63X-vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s940x350_Ariston-TVF63X-vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s940x110_Ariston-TVF63X-vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/Ariston-TVF63X-vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/Ariston-TVF63X-vanity.jpg","file_size":74734},"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/5139011c9da86c5336000023","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5139011c9da86c5336000023"}}}],"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/51cc5d83f82dc772ea000076","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d83f82dc772ea000076"}}}],"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/5137b28c5048fd40590006d3","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5137b28c5048fd40590006d3"}}},{"id":"5138f7fe491965ad1f000002","created_at":"2013-03-07T20:26:38Z","updated_at":"2013-03-28T15:18:06Z","name":"KitchenAid
76
+ KDRS505XSS Dual Oven Gas Range Review","branch_name":"master","summary":"Dual
77
+ oven ranges often value features over performance, but this KitchenAid doesn''t
78
+ compromise much.","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":["oven","range","review","gas","electric","stove"],"classifications":["review"],"publish_on":"2013-03-07T10:00:00+00:00","attachment_ids":["5138f18c0ac94e78290006d0"],"primary_product_id":"50fa2eb296ab5860160c720e","resource_uri":"/content/kitchenaid-kdrs505xss-dual-oven-gas-range-review.htm","disqus_uri":"/content/kitchenaid-kdrs505xss-dual-oven-gas-range-review.htm","product_ids":["50fa2eb296ab5860160c720e"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-02-29T20:32:00+00:00","slug":"kitchenaid-kdrs505xss-dual-oven-gas-range-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa2eb296ab5860160c720e","created_at":"2012-02-29T22:40:29Z","updated_at":"2013-03-14T14:11:56Z","name":"KitchenAid
79
+ KDRS505XSS","slug":"kitchenaid-kdrs505xss","_type":"Appliances::MajorAppliances::Oven","types":["Gas","Electric","Dual-Fuel"],"msrp":2499.0,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2012-02-29T20:32:00+00:00","upc":"","price_grabber_id":"802949523","rubric_id":"50f9ed93bd0286638e0003b9","brand_id":"50f9ed77bd0286638e0001c7","model":"KDRS505XSS","resource_uri":"/products/kitchenaid-kdrs505xss","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":8.54,"ranking":{"total":30,"rank":6,"percentile":80},"rubric":{"id":"50f9ed93bd0286638e0003b9","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:19Z","name":"2012
80
+ 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":"5138c579a8e30b0a640004e6","created_at":"2013-03-07T16:51:05Z","updated_at":"2013-03-07T22:56:55Z","name":"Front","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s50x50_front-KitchenAid-KDRS505XSS.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s150x150_front-KitchenAid-KDRS505XSS.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s250x250_front-KitchenAid-KDRS505XSS.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s300x150_front-KitchenAid-KDRS505XSS.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s300x112_front-KitchenAid-KDRS505XSS.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s500x500_front-KitchenAid-KDRS505XSS.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s600x400_front-KitchenAid-KDRS505XSS.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s600x600_front-KitchenAid-KDRS505XSS.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s940x400_front-KitchenAid-KDRS505XSS.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s940x350_front-KitchenAid-KDRS505XSS.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s940x110_front-KitchenAid-KDRS505XSS.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/front-KitchenAid-KDRS505XSS.jpg"},"caption":"This
81
+ feature-laden dual oven range adheres to KitchenAid''s standard design language.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/front-KitchenAid-KDRS505XSS.jpg","file_size":70397},"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/5138c579a8e30b0a640004e6","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5138c579a8e30b0a640004e6"}}}],"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/51cc5d83f82dc772ea000077","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d83f82dc772ea000077"}}}],"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/5138f7fe491965ad1f000002","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5138f7fe491965ad1f000002"}}},{"id":"513107b5ad0b4e8e6d0004dc","created_at":"2013-03-01T19:55:33Z","updated_at":"2013-05-24T19:56:58Z","name":"Soggy
82
+ Brownies and Burnt Pizza: How Does an Oven Regulate Temperature?","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eaebd0286d5550b4c91","50fc4eb0bd0286d5550b4c9c"],"tags":["temperature","regulate","oven","thermostat","thermometer","thermistor","thermocouple","capillary","capilary"],"classifications":["feature"],"publish_on":"2013-03-07T06:00:00+00:00","attachment_ids":["5131072147f465e210000505","5131073097d89671cd0004f6","51310745edde7e616f00050f","5131078f19cd81dee30004be","513107a7c3d3ce011c000169","513107ca9fe203ca3100049e","513107ec849b610e6a00057a","51310802a1c48afb98000453","513108149fe2035ef90004d1","51310839c3d3ce612f000500"],"primary_product_id":null,"resource_uri":"/features/soggy-brownies-and-burnt-pizza-how-does-an-oven-regulate-temperature","disqus_uri":"/features/soggy-brownies-and-burnt-pizza-how-does-an-oven-regulate-temperature","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"soggy-brownies-and-burnt-pizza-how-does-an-oven-regulate-temperature","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/513107b5ad0b4e8e6d0004dc","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513107b5ad0b4e8e6d0004dc"}}},{"id":"5138caa7cb4ae870aa0005d9","created_at":"2013-03-07T17:13:11Z","updated_at":"2013-03-08T16:43:05Z","name":"GE
83
+ Profile PFE29PSDSS Review","branch_name":"master","summary":"This fridge is
84
+ innovative and effective","meta_description":"One of the best French door
85
+ fridges on the market can also do some cool tricks while keeping your food
86
+ cold.","website_ids":["50e669d7bd028648e0000019"],"author_ids":["50fc4eafbd0286d5550b4c96"],"tags":["home-hero2"],"classifications":["review"],"publish_on":"2013-03-07T05:00:00+00:00","attachment_ids":["5138d34d43919dbb68000560","5138e6c3c2b02eef06000736","5138e7b65c810a9b380005a5"],"primary_product_id":"50fa33e696ab5860160c8b36","resource_uri":"/content/ge-profile-pfe29psdss-refrigerator-review.htm","disqus_uri":"/content/ge-profile-pfe29psdss-refrigerator-review.htm","product_ids":["50fa33e696ab5860160c8b36"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-02-28T09:00:00+00:00","slug":"ge-profile-pfe29psdss-refrigerator-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa33e696ab5860160c8b36","created_at":"2012-10-29T13:34:40Z","updated_at":"2013-03-07T18:09:00Z","name":"GE Profile
87
+ PFE29PSDSS","slug":"ge-profile-pfe29psdss","_type":"Appliances::MajorAppliances::Refrigerator","types":["French
88
+ Door"],"msrp":3099.0,"article_ids":[],"website_ids":["50e669d7bd028648e0000019"],"publish_on":"2013-02-28T09:00:00+00:00","upc":"","price_grabber_id":"1003876473","rubric_id":"50f9ed93bd0286638e0003ae","brand_id":"50f9ed76bd0286638e0001a9","model":"PFE29PSDSS","resource_uri":"/products/ge-profile-pfe29psdss","archive_state":"manually_current","is_scoring_baseline":false,"archived":false,"product_rating":10.0,"ranking":{"total":56,"rank":1,"percentile":99},"rubric":{"id":"50f9ed93bd0286638e0003ae","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
89
+ 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":"50fd0dc1bd0286ffdf01b7d7","created_at":"2013-01-21T09:43:29Z","updated_at":"2013-03-08T15:57:55Z","name":"GE-PFE29PSDSS-front.jpg","type":"file","tags":["vanity","Front"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s50x50_GE-PFE29PSDSS-front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s150x150_GE-PFE29PSDSS-front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s250x250_GE-PFE29PSDSS-front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s300x150_GE-PFE29PSDSS-front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s300x112_GE-PFE29PSDSS-front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s500x500_GE-PFE29PSDSS-front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s600x400_GE-PFE29PSDSS-front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s600x600_GE-PFE29PSDSS-front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s940x400_GE-PFE29PSDSS-front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s940x350_GE-PFE29PSDSS-front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s940x110_GE-PFE29PSDSS-front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/GE-PFE29PSDSS-front.jpg"},"caption":"","alt_text":"","data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/GE-PFE29PSDSS-front.jpg","file_size":22994,"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/50fd0dc1bd0286ffdf01b7d7","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0dc1bd0286ffdf01b7d7"}}}],"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/51cc5d83f82dc772ea000078","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d83f82dc772ea000078"}}}],"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/5138caa7cb4ae870aa0005d9","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5138caa7cb4ae870aa0005d9"}}},{"id":"5138ab8dc3fe935586000459","created_at":"2013-03-07T15:00:29Z","updated_at":"2013-05-24T19:57:05Z","name":"Reviewed.com
90
+ March Headphones Deals Roundup","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000000d"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-07T05:00:00+00:00","attachment_ids":["5138f4fbc2b02eef0600078c","5138f51c0a66a400e300069b","5138f539cb4ae8dfb300063b","5138f556de88c37957000694","5138f56b12614a951d0006ba","5138f58af0804716180006de","5138f5b9c3fe935586000769"],"primary_product_id":null,"resource_uri":"/features/reviewed-com-march-headphones-deals-roundup","disqus_uri":"/features/reviewed-com-march-headphones-deals-roundup","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"reviewed-com-march-headphones-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/5138ab8dc3fe935586000459","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5138ab8dc3fe935586000459"}}},{"id":"5136348d5e71b4b40e000583","created_at":"2013-03-05T18:08:13Z","updated_at":"2013-03-07T19:55:01Z","name":"Magnavox
91
+ 32MD301B Review","branch_name":"master","summary":"An old-school TV that manages
92
+ to impress with solid picture quality.","meta_description":"","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eafbd0286d5550b4c98"],"tags":[],"classifications":["review"],"publish_on":"2013-03-07T03:00:00+00:00","attachment_ids":["51376c5d561e649638000441"],"primary_product_id":"51362cdf9e4e47720b0004d2","resource_uri":"/content/magnavox-32md301b-review","disqus_uri":"/content/magnavox-32md301b-review","product_ids":["51362cdf9e4e47720b0004d2"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-03-05T04:00:00+00:00","slug":"magnavox-32md301b-review","is_template":false,"is_branch":false,"products":[{"id":"51362cdf9e4e47720b0004d2","created_at":"2013-03-05T17:35:27Z","updated_at":"2013-03-31T14:38:11Z","name":"Magnavox
93
+ 32MD301B","slug":"magnavox-32md301b","_type":"Electronics::Television","types":[],"msrp":499.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-03-05T04:00:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"51377ceffcc113c3fc000490","model":"","resource_uri":"/products/magnavox-32md301b","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":4.24,"ranking":{"total":262,"rank":254,"percentile":4},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
94
+ 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":[{"id":"51362fe2f15f513c230006d6","created_at":"2013-03-05T17:48:18Z","updated_at":"2013-03-10T02:30:07Z","name":"front.jpg","type":"file","tags":["vanity","design"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s50x50_front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s150x150_front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s250x250_front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s300x150_front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s300x112_front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s500x500_front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s600x400_front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s600x600_front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s940x400_front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s940x350_front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s940x110_front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/front.jpg"},"caption":"Maybe
95
+ it''s just us, but that red stripe below the logo is kind of ugly.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/front.jpg","file_size":64804},"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/51362fe2f15f513c230006d6","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51362fe2f15f513c230006d6"}}}],"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/51cc5d84f82dc772ea000079","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d84f82dc772ea000079"}}}],"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/5136348d5e71b4b40e000583","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5136348d5e71b4b40e000583"}}},{"id":"5137b70c3f0c86b2fe000265","created_at":"2013-03-06T21:37:16Z","updated_at":"2013-05-24T19:57:04Z","name":"Mighty
96
+ Mug is The Best Thing for Coffee Since Milk (video)","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000001b","50e669d7bd028648e000002b"],"author_ids":["50fc4eafbd0286d5550b4c9a"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-06T21:33:26+00:00","attachment_ids":["5137b6fd602f9136e80006aa"],"primary_product_id":null,"resource_uri":"/features/mighty-mug-is-the-best-thing-for-coffee-since-milk","disqus_uri":"/features/mighty-mug-is-the-best-thing-for-coffee-since-milk","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"mighty-mug-is-the-best-thing-for-coffee-since-milk","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/5137b70c3f0c86b2fe000265","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5137b70c3f0c86b2fe000265"}}},{"id":"51375a213f0c861fc9000331","created_at":"2013-03-06T15:00:50Z","updated_at":"2013-03-08T15:05:12Z","name":"Ariston
97
+ ARWL129NA Review","branch_name":"master","summary":"If your home''s proportions
98
+ are more suited to Milan than Minnesota, this might be the washer for you.","meta_description":"If
99
+ your home''s proportions are more suited to Milan than Minnesota, this might
100
+ be the washer for you.","website_ids":["50e669d7bd028648e000001b"],"author_ids":["50fc4eafbd0286d5550b4c97"],"tags":["washer","review","compact"],"classifications":["review"],"publish_on":"2013-03-06T07:00:00+00:00","attachment_ids":["5138faf660714fc7c1000011"],"primary_product_id":"50fa317696ab5860160c7f43","resource_uri":"/content/ariston-arwl129na-review.htm","disqus_uri":"/content/ariston-arwl129na-review.htm","product_ids":["50fa317696ab5860160c7f43"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-09-05T18:00:00+00:00","slug":"ariston-arwl129na-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa317696ab5860160c7f43","created_at":"2012-06-13T22:03:23Z","updated_at":"2013-03-14T14:13:03Z","name":"Ariston
101
+ ARWL129NA","slug":"ariston-arwl129na","_type":"Appliances::MajorAppliances::WashingMachine","types":["Front-Loading","Compact"],"msrp":899.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2012-09-05T18:00:00+00:00","upc":"","price_grabber_id":"815974602","rubric_id":"50f9ed93bd0286638e0003af","brand_id":"50f9ed7cbd0286638e000280","model":"ARWL129NA","resource_uri":"/products/ariston-arwl129na","archive_state":"manually_current","is_scoring_baseline":false,"archived":false,"product_rating":7.77,"ranking":{"total":50,"rank":8,"percentile":84},"rubric":{"id":"50f9ed93bd0286638e0003af","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:55:46Z","name":"Washing
102
+ Machines","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/50f9ed93bd0286638e0003af","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003af"}}},"is_primary_product":true,"attachments":[{"id":"5137f33bc9934790eb00058e","created_at":"2013-03-07T01:54:03Z","updated_at":"2013-03-07T20:31:11Z","name":"Ariston_Front
103
+ copy.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s50x50_Ariston_Front_copy.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s150x150_Ariston_Front_copy.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s250x250_Ariston_Front_copy.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s300x150_Ariston_Front_copy.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s300x112_Ariston_Front_copy.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s500x500_Ariston_Front_copy.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s600x400_Ariston_Front_copy.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s600x600_Ariston_Front_copy.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s940x400_Ariston_Front_copy.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s940x350_Ariston_Front_copy.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s940x110_Ariston_Front_copy.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/Ariston_Front_copy.jpg"},"caption":"It''s
104
+ hard to tell from this picture, but this washer only stands 33 inches tall.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/Ariston_Front_copy.jpg","file_size":153190},"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/5137f33bc9934790eb00058e","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5137f33bc9934790eb00058e"}}}],"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/51cc5d84f82dc772ea00007a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d84f82dc772ea00007a"}}}],"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/51375a213f0c861fc9000331","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51375a213f0c861fc9000331"}}},{"id":"513634a0237bfc429700055d","created_at":"2013-03-05T18:08:32Z","updated_at":"2013-05-24T19:56:17Z","name":"Induction
105
+ Cookers Heat Up IHHS","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-06T06:30:00+00:00","attachment_ids":["513635c084e29ff614000583","513635ff13afee75d80005ca","5136362b84e29ff614000585","513636b2542c9272da0005c7","513636da13afee1406000522","513636f64505ea90160004f6","5136370f13afee75d80005d8","5136374263387518f70004e8","513637682e24e90ecf00053d","51363794182c5f63d7000572","5136381c2e24e9c1e000078f","51363b2d182c5f63d7000596","51363c969e4e4764e800053d","5137b0150d385e262e00051c"],"primary_product_id":null,"resource_uri":"/features/induction-cookers-heat-up-at-ihhs","disqus_uri":"/features/induction-cookers-heat-up-at-ihhs","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"induction-cookers-heat-up-at-ihhs","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/513634a0237bfc429700055d","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513634a0237bfc429700055d"}}},{"id":"5136288c13afee1406000477","created_at":"2013-03-05T17:17:00Z","updated_at":"2013-03-07T15:24:18Z","name":"Whirlpool
106
+ WFE720H0AS Electric Range Review","branch_name":"master","summary":"Whirlpool
107
+ gets it right with the WFE720H0AS.","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":["oven","range","review","gas","electric","stove"],"classifications":["review"],"publish_on":"2013-03-06T04:30:00+00:00","attachment_ids":["51363146b8e9b4cd4d000072"],"primary_product_id":"50fa342096ab5860160c8c5f","resource_uri":"/content/whirlpool-wfe720h0as-electric-range-review.htm","disqus_uri":"/content/whirlpool-wfe720h0as-electric-range-review.htm","product_ids":["50fa342096ab5860160c8c5f"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-11-21T16:02:00+00:00","slug":"whirlpool-wfe720h0as-electric-range-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa342096ab5860160c8c5f","created_at":"2012-11-21T16:36:26Z","updated_at":"2013-03-14T14:11:57Z","name":"Whirlpool
108
+ WFE720H0AS","slug":"whirlpool-wfe720h0as","_type":"Appliances::MajorAppliances::Oven","types":["Electric"],"msrp":1249.0,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2012-11-21T16:02:00+00:00","upc":"","price_grabber_id":"956620824","rubric_id":"50f9ed93bd0286638e0003b9","brand_id":"50f9ed77bd0286638e0001c5","model":"WFE720H0AS","resource_uri":"/products/whirlpool-wfe720h0as","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":8.01,"ranking":{"total":30,"rank":11,"percentile":64},"rubric":{"id":"50f9ed93bd0286638e0003b9","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:19Z","name":"2012
109
+ 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":"51351346c14ff6346900000e","created_at":"2013-03-04T21:33:58Z","updated_at":"2013-03-10T02:29:37Z","name":"Front","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s50x50_frontWhirlpool_WFE720H0AS.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s150x150_frontWhirlpool_WFE720H0AS.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s250x250_frontWhirlpool_WFE720H0AS.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s300x150_frontWhirlpool_WFE720H0AS.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s300x112_frontWhirlpool_WFE720H0AS.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s500x500_frontWhirlpool_WFE720H0AS.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s600x400_frontWhirlpool_WFE720H0AS.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s600x600_frontWhirlpool_WFE720H0AS.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s940x400_frontWhirlpool_WFE720H0AS.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s940x350_frontWhirlpool_WFE720H0AS.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s940x110_frontWhirlpool_WFE720H0AS.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/frontWhirlpool_WFE720H0AS.jpg"},"caption":"This
110
+ Whirlpool has a very standard and unassuming stainless steel look.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/frontWhirlpool_WFE720H0AS.jpg","file_size":64536},"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/51351346c14ff6346900000e","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51351346c14ff6346900000e"}}}],"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/51cc5d85f82dc772ea00007b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d85f82dc772ea00007b"}}}],"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/5136288c13afee1406000477","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5136288c13afee1406000477"}}},{"id":"5136129d13afeed2c2000476","created_at":"2013-03-05T15:43:25Z","updated_at":"2013-03-05T15:43:25Z","name":"Hisense''s
111
+ 2012 Smart TV Platform: Explained","branch_name":"master","summary":"","meta_description":"","website_ids":[],"author_ids":[],"tags":[],"classifications":[],"publish_on":"2013-03-05T15:43:07+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/content/hisense-s-2012-smart-tv-platform-explained","disqus_uri":"/content/hisense-s-2012-smart-tv-platform-explained","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"hisense-s-2012-smart-tv-platform-explained","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/5136129d13afeed2c2000476","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5136129d13afeed2c2000476"}}},{"id":"5135fe3fb5a96df4930003bf","created_at":"2013-03-05T14:16:31Z","updated_at":"2013-03-07T16:13:57Z","name":"Panasonic
112
+ Viera TC-P60S60 Review","branch_name":"master","summary":"","meta_description":"","website_ids":[],"author_ids":["50fc4eaebd0286d5550b4c95"],"tags":[],"classifications":[],"publish_on":"2013-03-05T14:12:11+00:00","attachment_ids":[],"primary_product_id":"50fa346296ab5860160c8dcd","resource_uri":"/content/panasonic-viera-tc-p60s60-review","disqus_uri":"/content/panasonic-viera-tc-p60s60-review","product_ids":["50fa346296ab5860160c8dcd"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-01-08T17:54:00+00:00","slug":"panasonic-viera-tc-p60s60-review","is_template":false,"is_branch":false,"products":[{"id":"50fa346296ab5860160c8dcd","created_at":"2013-01-08T17:54:59Z","updated_at":"2013-03-11T21:05:07Z","name":"Panasonic Viera
113
+ TC-P60S60","slug":"panasonic-viera-tc-p60s60","_type":"Electronics::Television","types":["Plasma"],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-01-08T17:54:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b5","model":"TC-P60S60","resource_uri":"/products/panasonic-viera-tc-p60s60","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":[],"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/51cc5d85f82dc772ea00007c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d85f82dc772ea00007c"}}}],"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/5135fe3fb5a96df4930003bf","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5135fe3fb5a96df4930003bf"}}},{"id":"5134b8d0a31cd2555300020a","created_at":"2013-03-04T15:08:00Z","updated_at":"2013-03-08T15:28:02Z","name":"LG
114
+ WT1101CW Review","branch_name":"master","summary":"The LG WT1101CW with its
115
+ Smart Drum technology may be too smart for its own good","meta_description":"","website_ids":["50e669d7bd028648e000001b"],"author_ids":["50fc4eafbd0286d5550b4c97"],"tags":[],"classifications":["review"],"publish_on":"2013-03-05T07:00:00+00:00","attachment_ids":["51362df3459c3b307b0005a7"],"primary_product_id":"5134bf84f7fb8dc21b000223","resource_uri":"/content/lg-wt1101cw-review","disqus_uri":"/content/lg-wt1101cw-review","product_ids":["5134bf84f7fb8dc21b000223"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-03-04T15:14:13+00:00","slug":"lg-wt1101cw-review","is_template":false,"is_branch":false,"products":[{"id":"5134bf84f7fb8dc21b000223","created_at":"2013-03-04T15:36:36Z","updated_at":"2013-03-14T14:12:53Z","name":"LG
116
+ WT1101CW","slug":"lg-wt1101cw","_type":"Appliances::MajorAppliances::WashingMachine","types":["Top-Loading"],"msrp":699.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2013-03-04T15:14:13+00:00","upc":"","price_grabber_id":"1080763319","rubric_id":"50f9ed93bd0286638e0003af","brand_id":"513a04289da86c69df000691","model":"","resource_uri":"/products/lg-wt1101cw","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":4.23,"ranking":{"total":50,"rank":42,"percentile":16},"rubric":{"id":"50f9ed93bd0286638e0003af","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:55:46Z","name":"Washing
117
+ Machines","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/50f9ed93bd0286638e0003af","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003af"}}},"is_primary_product":true,"attachments":[{"id":"5134be6bf83e98e0f200029b","created_at":"2013-03-04T15:31:55Z","updated_at":"2013-03-10T02:28:50Z","name":"Vanity","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s50x50_vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s150x150_vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s250x250_vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s300x150_vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s300x112_vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s500x500_vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s600x400_vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s600x600_vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s940x400_vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s940x350_vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s940x110_vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/vanity.jpg","file_size":11636},"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/5134be6bf83e98e0f200029b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5134be6bf83e98e0f200029b"}}}],"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/51cc5d85f82dc772ea00007d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d85f82dc772ea00007d"}}}],"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/5134b8d0a31cd2555300020a","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5134b8d0a31cd2555300020a"}}},{"id":"51311a1697b7460ad7000489","created_at":"2013-03-01T21:13:58Z","updated_at":"2013-05-24T19:56:50Z","name":"Smart
118
+ Appliances: Your Home, Connected","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e0000021","50e669d7bd028648e000002b","50e669d7bd028648e0000019","50e669d7bd028648e000001b"],"author_ids":["50fc4e99bd0286d5550b4c17"],"tags":["home-hero1"],"classifications":["feature"],"publish_on":"2013-03-04T11:14:00+00:00","attachment_ids":["51311b94fbeae35ded00046c","5134d40f9dfd86f345000314","5134fb296d5bf2390a0003b8"],"primary_product_id":null,"resource_uri":"/features/smart-appliances-your-home-connected","disqus_uri":"/features/smart-appliances-your-home-connected","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"smart-appliances-your-home-connected","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/51311a1697b7460ad7000489","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51311a1697b7460ad7000489"}}},{"id":"512fd30d56fe2f59ff000993","created_at":"2013-02-28T21:58:37Z","updated_at":"2013-05-24T19:56:49Z","name":"What
119
+ is a Smart Appliance?","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eacbd0286d5550b4c8c"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-04T11:00:00+00:00","attachment_ids":["5130d9e4ee7b68dbb70003bf","5130de5815c1a6fd6600039a","5134dcb6f8f167a52b000348"],"primary_product_id":null,"resource_uri":"/features/what-is-a-smart-appliance","disqus_uri":"/features/what-is-a-smart-appliance","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"what-is-a-smart-appliance","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/512fd30d56fe2f59ff000993","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/512fd30d56fe2f59ff000993"}}}]}'
222
120
  http_version:
223
- recorded_at: Sat, 27 Apr 2013 01:46:56 GMT
224
- recorded_with: VCR 2.3.0
121
+ recorded_at: Thu, 27 Jun 2013 15:43:03 GMT
122
+ recorded_with: VCR 2.5.0