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.
- checksums.yaml +7 -0
- data/.ruby-version +1 -1
- data/lib/reviewed/article.rb +0 -1
- data/lib/reviewed/attachable.rb +14 -7
- data/lib/reviewed/product.rb +0 -1
- data/lib/reviewed/version.rb +1 -1
- data/spec/attachable_spec.rb +22 -0
- data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/assigns_attachments_to_the_correct_class.yml +338 -289
- data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_has_many_attachments.yml +237 -245
- data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_have_any_matching_attachments.yml +280 -289
- data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/finds_attachments_by_tag.yml +281 -301
- data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/gets_gallery_attachments.yml +340 -324
- data/spec/fixtures/vcr/Reviewed_Article/associations/deals/has_many_deals.yml +237 -245
- data/spec/fixtures/vcr/Reviewed_Article/associations/pages/has_many_pages.yml +237 -245
- data/spec/fixtures/vcr/Reviewed_Article/associations/products/has_many_products.yml +237 -245
- data/spec/fixtures/vcr/Reviewed_Article/associations/products/returns_products_of_the_correct_class.yml +237 -245
- data/spec/fixtures/vcr/Reviewed_Article/associations/related_articles/has_many_related_articles.yml +237 -245
- data/spec/fixtures/vcr/Reviewed_Article/does_not_request_for_an_attachment_if_it_can_be_found_in_attributes.yml +387 -0
- data/spec/fixtures/vcr/Reviewed_Article/fetches_all_attachments_when_no_tag_is_asked_for.yml +195 -0
- data/spec/fixtures/vcr/Reviewed_Article/fetches_attachments_when_non-existent.yml +137 -0
- data/spec/fixtures/vcr/Reviewed_Article/fetches_when_a_tag_is_not_in_pre-loaded_set.yml +75 -0
- data/spec/fixtures/vcr/Reviewed_Article/fetches_when_an_tag_is_not_in_pre-loaded_set.yml +75 -0
- data/spec/fixtures/vcr/Reviewed_Article/find_page/finds_a_page_with_a_matching_slug.yml +377 -394
- data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_a_product_of_the_correct_class.yml +471 -487
- data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_nil_if_does_not_respond_to_products.yml +471 -487
- data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_the_primary_product.yml +471 -487
- data/spec/fixtures/vcr/Reviewed_Article/returns_local_attachments_when_available.yml +137 -0
- data/spec/fixtures/vcr/Reviewed_Article/sets_DEFAULT_ATTACHMENTS.yml +75 -0
- data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/not_set/has_nil_query_params.yml +138 -195
- data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/set/merges_quest_params.yml +48 -71
- data/spec/fixtures/vcr/Reviewed_Collection/collection_data/fetches_the_first_page_by_default.yml +73 -113
- data/spec/fixtures/vcr/Reviewed_Collection/collection_data/is_enumerable.yml +73 -113
- data/spec/fixtures/vcr/Reviewed_Collection/next_page/fetches_the_next_page_of_results.yml +140 -197
- data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_if_the_page_number_is_out_of_bounds.yml +73 -113
- data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_whether_this_is_the_first_or_last_page.yml +73 -113
- data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_limit_value_max_per_page_.yml +73 -113
- data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_number_of_entries_on_the_current_page.yml +73 -113
- data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_offset.yml +73 -113
- data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_item_count.yml +73 -113
- data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_number_of_pages.yml +73 -113
- data/spec/fixtures/vcr/Reviewed_Collection/previous_page/fetches_the_previous_page_of_results.yml +210 -307
- data/spec/fixtures/vcr/Reviewed_Collection/previous_page/returns_nil_if_there_is_no_previous_page.yml +73 -113
- data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/does_not_have_any_matching_attachments.yml +98 -125
- data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/matches_attachments_by_tag_properly.yml +98 -136
- data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/no_longer_has_many_attachments.yml +55 -81
- data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_by_tag.yml +98 -136
- data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_of_the_correct_class.yml +98 -125
- data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/has_many_manufacturer_specs.yml +55 -81
- data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/returns_attachments_of_the_correct_class.yml +55 -81
- data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_other_supported_options.yml +49 -67
- data/spec/fixtures/vcr/Reviewed_Request/_where/returns_a_collection.yml +138 -195
- data/spec/fixtures/vcr/Reviewed_Request/_where/returns_an_empty_set_if_no_matching_data_was_found.yml +47 -51
- data/spec/fixtures/vcr/Reviewed_Request/_where/returns_the_appropriate_page_of_results.yml +105 -207
- data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_a_collection_object.yml +138 -195
- data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_objects_of_the_correct_class.yml +138 -195
- data/spec/fixtures/vcr/Reviewed_Request/object_from_response/returns_an_object_of_the_correct_class.yml +237 -245
- data/spec/spec_helper.rb +1 -1
- 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
|
-
|
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
|
-
|
17
|
-
|
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
|
-
-
|
25
|
-
Access-Control-Allow-Headers:
|
26
|
-
- x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization,
|
27
|
-
|
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
|
-
-
|
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-
|
36
|
-
- gzip
|
37
|
-
Content-Type:
|
36
|
+
Content-Type:
|
38
37
|
- application/json; charset=utf-8
|
39
|
-
Date:
|
40
|
-
-
|
41
|
-
|
38
|
+
Date:
|
39
|
+
- Thu, 27 Jun 2013 15:42:57 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
|
-
-
|
49
|
-
X-Runtime:
|
50
|
-
-
|
51
|
-
X-Ua-Compatible:
|
48
|
+
X-Request-Id:
|
49
|
+
- 6be0a99cd0ceb42a956f1f81d30d7eac
|
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:
|
59
|
-
string:
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
+
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
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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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
-
uphaF1PrYmpdTK1/a1PLfTVTy72YWjsGkWaqeQFTazTnQSyT7btBHJuM+VFk
|
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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
-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
-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
-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
-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
-
0vk6cTzngU6kAkYUC5IkgMk/9B1J8ta4TrQM6t7K3V5z09HrxEDGlYZzp283
|
173
|
-
f2BPUGry4euPvhe4n39xUrw7Hj/S5vBZtYlx70LRMRJeZO3nniN2L0Nn5Lkh
|
174
|
-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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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
-
tB03Yk6UsBh98Z49tqV1o0bcuWvv3S0TYJwcGIcDVXPDVlWTL8j333nml55r
|
182
|
-
mkfY4q/gXZywI6RqSwxyXK2QursLEhvVVVI/9BLgQlmTZYOIPfj7IB0eOcni
|
183
|
-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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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
-
VhwnFP3dRxF+uH7ytgI1TEcXvJTGpCceLqqDWjG64GUOmZ/3mX9Pj2pNgP19
|
195
|
-
/ErGgHk9uhLmep0p4O7YAuZkU0DjBz5zIYzuzHH/2Qti7HT/28GMLzbA6TYA
|
196
|
-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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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
|
208
|
-
nwAAAAD//wMAKGvrGYauAAA=
|
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/51cc5d7ef82dc772ea00006a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d7ef82dc772ea00006a"}}}],"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/51cc5d7ff82dc772ea00006b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d7ff82dc772ea00006b"}}}],"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/51cc5d7ff82dc772ea00006c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d7ff82dc772ea00006c"}}}],"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/51cc5d7ff82dc772ea00006d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d7ff82dc772ea00006d"}}}],"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/51cc5d80f82dc772ea00006e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d80f82dc772ea00006e"}}}],"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/51cc5d80f82dc772ea00006f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d80f82dc772ea00006f"}}}],"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/51cc5d80f82dc772ea000070","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d80f82dc772ea000070"}}}],"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/51cc5d80f82dc772ea000071","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d80f82dc772ea000071"}}}],"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/51cc5d81f82dc772ea000072","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d81f82dc772ea000072"}}}],"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/51cc5d81f82dc772ea000073","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d81f82dc772ea000073"}}}],"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/51cc5d81f82dc772ea000074","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d81f82dc772ea000074"}}}],"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:
|
212
|
-
recorded_with: VCR 2.
|
154
|
+
recorded_at: Thu, 27 Jun 2013 15:42:59 GMT
|
155
|
+
recorded_with: VCR 2.5.0
|