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,428 +1,411 @@
|
|
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/big-green-egg-medium-charcoal-grill-review?with_attachments=true
|
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:41:41 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
|
+
- a3307a8cafee13f9cdaab7c4a61bea5e
|
50
|
+
X-Runtime:
|
51
|
+
- '0.020183'
|
52
|
+
X-Ua-Compatible:
|
52
53
|
- IE=Edge,chrome=1
|
53
|
-
Transfer-Encoding:
|
54
|
+
Transfer-Encoding:
|
54
55
|
- chunked
|
55
|
-
Connection:
|
56
|
+
Connection:
|
56
57
|
- keep-alive
|
57
|
-
body:
|
58
|
-
encoding:
|
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
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
TOuOad0xrTumdce07pjW/WP7uto5fV2tg6+7783NY1p3TOuOad0xrTumdce0
|
251
|
-
7pjWHdO6Y1p3TOse7+oe/+MVnTo/7OraY1p3TOuOad0xrTumdce07pjWHdO6
|
252
|
-
Y1p3TOuex9e1z+nr2g2+rlltQ1t+1Ez2Y9teTLjTRvi6L/769ZS/8W76CDHQ
|
253
|
-
3rfJx8tgitM76fvkbcNyDV/zCCXGTPNMwwksM/Qozt43LN0wqW+EoV64tc2A
|
254
|
-
B/qt3UEUfmsLjGGOaXcYhWPaAmOY59kdRuF57oNxtGvZEwa4li0whvmOfQSU
|
255
|
-
+44tMIY5h91hFM7hHhjHe3/9YNjtMIa5d91hFO7dHhjH+2/9YBjtmjLMQesH
|
256
|
-
Ax20ZhgDPbDOMJpGv9A75wdhrHhKruaY5vja+cNuVJMXczI3ardz/hrX8Zdt
|
257
|
-
x1+23SdJ4y/bjr9su++Xbc/26v5eAp9kkb8csNrbDvYLt2glbKodVm0q0QeP
|
258
|
-
394zrPb/CwAAAP//AwDNgnsUyyYBAA==
|
259
|
-
|
58
|
+
body:
|
59
|
+
encoding: UTF-8
|
60
|
+
string: '{"id":"50fb2e6fbd0286d5550135a2","created_at":"2011-11-29T20:18:15Z","updated_at":"2013-03-07T22:08:45Z","name":"Big
|
61
|
+
Green Egg Medium Charcoal Grill Review","branch_name":"master","summary":"Super-simple
|
62
|
+
charcoal grill has good performance. ","meta_description":null,"website_ids":["50e669d7bd028648e0000023"],"author_ids":["50fc4e94bd0286d5550b4bf8"],"tags":[],"classifications":["review"],"publish_on":"2011-11-29T20:17:00+00:00","attachment_ids":["50fb2e71bd0286d5550135b3","50fb2e71bd0286d5550135cb","50fb2e71bd0286d5550135cc","50fb2e72bd0286d5550135d0","50fb2e72bd0286d5550135d1","50fb2e72bd0286d5550135d5","50fb2e72bd0286d5550135d6","50fb2e74bd0286d5550135e4"],"primary_product_id":"50fa2cfc96ab5860160c6ac2","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review.htm","disqus_uri":"Big-Green-Egg-Medium-Charcoal-Grill-Review","product_ids":["50fa2cfc96ab5860160c6ac2","50fa2ce096ab5860160c6a4b","50fa2cfd96ab5860160c6ac7","50fa2ced96ab5860160c6a7f"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2011-10-12T19:31:00+00:00","slug":"big-green-egg-medium-charcoal-grill-review.htm","is_template":false,"is_branch":false,"deals":[],"related_articles":[],"pages":[{"id":"50fb2e70bd0286d5550135a8","name":"Introduction","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/introduction","slug":"introduction","sections":[{"id":"50fb2e70bd0286d5550135a9","name":"Introduction","body":"The
|
63
|
+
{{product.name}} is a classic charcoal grill with a simple design: a ceramic
|
64
|
+
vessel that holds a load of charcoal. While the design is simple, don''t think
|
65
|
+
that it offers generic performance as well. The {{product.name}} will heat
|
66
|
+
your food up quick and maintain consistent high-temperature cooking.","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135ab","name":"Design","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/design","slug":"design","sections":[{"id":"50fb2e71bd0286d5550135ad","name":"Product
|
67
|
+
Tour","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Front
|
68
|
+
Photo'']}} \n \n \n{{product.attachments[''Side Photo'']}} \n \n \n{{product.attachments[''Lid
|
69
|
+
Open Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135ae","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Controls
|
70
|
+
1 Photo'']}} \n \n \n\n\n{{product.attachments[''Controls 2 Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135af","name":"Main
|
71
|
+
Grilling Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Main
|
72
|
+
Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b0","name":"Warming
|
73
|
+
Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Warming
|
74
|
+
Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b2","name":"Thermometer","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Thermometer
|
75
|
+
Photo 1'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135b4","name":"Performance","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/performance","slug":"performance","sections":[{"id":"50fb2e71bd0286d5550135b6","name":"Heatup
|
76
|
+
Time","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
|
77
|
+
{{product.model}} was a very quick grill to heat up; we found that it could
|
78
|
+
reach our low temperature target of 325°F in just 35 seconds and our
|
79
|
+
high temperature target of 625°F in just 36 seconds. We reached these
|
80
|
+
two settings by adjusting the air vents on the lid and on the bottom of the
|
81
|
+
grill body: the low fire setting by half opening the vent, and the high fire
|
82
|
+
setting by completely opening it.\n\n\n\n{{article.attachments[''table-b297567d41f58254691baba562ae65d34cb1c3f0.csv'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b7","name":"Low
|
83
|
+
Fire Cooking Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nRunning
|
84
|
+
at our low temperature target of about 325°F, we found that the grill
|
85
|
+
would take just over 11 minutes to cook our test patties, which is fairly
|
86
|
+
fast for a grill of this type. \n\n\n\n\n\n{{comparison_bars title=\"Low
|
87
|
+
Fire Performance\", attribute=\"Low Temp Performance Rating\", xLabel=\"Cooking
|
88
|
+
Performance Score\"}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b8","name":"Low
|
89
|
+
Temperature Uniformity","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
|
90
|
+
also look at the consistency of the temperature across the cooking surface,
|
91
|
+
and the {{product.model}} did well here, producing uniform temperatures across
|
92
|
+
the cooking area. We did find that it was a little hotter at one edge, but
|
93
|
+
again, that is not unusual for a charcoal grill.\n\n\n\n{{product.attachments[''Low
|
94
|
+
Temp Uniformity Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b9","name":"Low
|
95
|
+
Temperature Consistency","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
|
96
|
+
temperature also remained consistent over time, with only moderate variations
|
97
|
+
in the temperature. This should mean good, even cooking of food\n\n\n\n{{product.attachments[''Low
|
98
|
+
Temp Consistency Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135ba","name":"High
|
99
|
+
Fire Cooking Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nOpening
|
100
|
+
the air vents on the base and lid of the grill increased the temperature,
|
101
|
+
and we found equally good performance from this grill cooking food at these
|
102
|
+
higher temperatures. Here, the grill was able to cook our test patties in
|
103
|
+
just over 8 minutes. \n\n\n\n\n\n{{comparison_bars title=\"High Fire Cooking
|
104
|
+
Performance\", attribute=\"High Temp Performance Rating\", xLabel=\"Cooking
|
105
|
+
Performance Score\"}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135bb","name":"High
|
106
|
+
Temperature Uniformity","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
|
107
|
+
did find that the temperature across the cooking area was a lot less consistent
|
108
|
+
here, though; the extra flow of air from the open vents seems to create more
|
109
|
+
hot zones, especially in the center of the cooking grate, which was nearly
|
110
|
+
200°F hotter than close to the edges.\n\n\n\n{{product.attachments[''High
|
111
|
+
Temp Uniformity Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135bc","name":"High
|
112
|
+
Temperature Consistency","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
|
113
|
+
temperature also varied over time, with the temperature rising and falling
|
114
|
+
on the cooking grate somewhat more often as the fire rose and fell than we
|
115
|
+
like to see. \n\n\n\n{{product.attachments[''High Temp Consistency Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135be","name":"Case
|
116
|
+
& Handle Temperature","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nAlthough
|
117
|
+
the grill body got rather hot (rising to a toasty 300°F), the handle
|
118
|
+
that you use to lift the lid remained cool; even after running the grill for
|
119
|
+
a full hour, this wooden handle didn''t go much above 80°F, which means
|
120
|
+
that it is safe and comfortable to use. \n\n\n\n{{product.manufacturer_specs['''']}}Handle
|
121
|
+
Photo 1\" /> \n \nThe image below was taken with an infrared camera to
|
122
|
+
show the heat levels of the lid. The numbers at the bottom indicate the temperature
|
123
|
+
scale. \n{{product.attachments[''IR Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135bf","name":"Output
|
124
|
+
& Fuel Life","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
|
125
|
+
don’t measure the BTU/Hr output of charcoal grills, but we did find
|
126
|
+
that this grill can produce a lot of heat with a large load of charcoal onboard.
|
127
|
+
It also retains heat well: the body of the grill remains very warm for several
|
128
|
+
hours after the charcoal has run out.\n\n\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135c0","name":"Features
|
129
|
+
& Usability","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/features-and-usability","slug":"features-and-usability","sections":[{"id":"50fb2e71bd0286d5550135c2","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
|
130
|
+
controls on this grill are basic, to put it mildly: you control the temperature
|
131
|
+
by opening and closing vents on the base of the grill body and the lid. Open
|
132
|
+
the vents, and more air rushes through to the charcoal fuel, leading to a
|
133
|
+
higher temperature. \n\n\n\n{{product.attachments[''Controls 1 Photo'']}} \n \n \n\n\n{{product.attachments[''Controls
|
134
|
+
2 Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c3","name":"Fuel","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
|
135
|
+
{{product.model}} uses charcoal, which fits into the space below the grate.\n\n\n\n{{product.attachments[''Fuel
|
136
|
+
Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c4","name":"Lighter/Ignition","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThere
|
137
|
+
is no lighter on this grill, so you have to ignite the charcoal yourself.\n\n\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c5","name":"Cooking
|
138
|
+
Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
|
139
|
+
cooking area is rather small: just 177 square inches. In our tests, we were
|
140
|
+
only able to fit two of our test patties onto this space, so that might be
|
141
|
+
a big problem for large families or party use. If you want to cook a lot of
|
142
|
+
food at once, you should look at a gas grill with a larger cooking area, or
|
143
|
+
one of the larger Big Green Egg models that offers more space to cook.\n\n\n\n{{product.attachments[''Main
|
144
|
+
Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c6","name":"Warming
|
145
|
+
Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThere
|
146
|
+
is no warming area on this grill.\n\n\n\n{{product.attachments[''Warming Area
|
147
|
+
Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c7","name":"Other
|
148
|
+
Areas","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nNo
|
149
|
+
side areas or other places to put food before or after cooking are included.
|
150
|
+
Big Green Egg does offer a number of shelves that clip onto the side of the
|
151
|
+
grill, as well as a range of wooden tables designed to hold the Big Green
|
152
|
+
Egg medium grill. These do cost extra, though. \n\n\n\n{{product.attachments[''Side
|
153
|
+
Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c8","name":"Cleanup","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nCleaning
|
154
|
+
up the grill is easy; the cooking grate lifts out for easy cleaning, although
|
155
|
+
the cast iron is not suitable for dishwashing. You have to scoop out the ash
|
156
|
+
from the charcoal, as there is no way to remove it from underneath. \n\n\n\n{{product.attachments[''Grease
|
157
|
+
Trap Photo 1'']}} \n \n \n{{product.attachments[''Cleanup Photo 1'']}}{{product.attachments[''Cleanup
|
158
|
+
Photo 2'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c9","name":"Other
|
159
|
+
Features","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Other
|
160
|
+
Features Photo 1'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135cd","name":"Weber Performer
|
161
|
+
Charcoal Grill Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/weber-performer-charcoal-grill-comparison","slug":"weber-performer-charcoal-grill-comparison","sections":[{"id":"50fb2e71bd0286d5550135cf","name":"Comparison
|
162
|
+
Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nBoth
|
163
|
+
of these grills use charcoal fuel, but the Weber offers the relative luxury
|
164
|
+
of a gas-assisted starter, and has a much larger cooking area. The Big Green
|
165
|
+
Egg is more consistent, though, and has a simple, straightforward design that
|
166
|
+
will appeal to charcoal purists. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e72bd0286d5550135d2","name":"Primo
|
167
|
+
Kamado Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/primo-kamado-comparison","slug":"primo-kamado-comparison","sections":[{"id":"50fb2e72bd0286d5550135d4","name":"Comparison
|
168
|
+
Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nBoth
|
169
|
+
of these grills offer the same simple, straightforward design to grilling,
|
170
|
+
using charcoal fuel and not offering any bells or whistles. The Big Green
|
171
|
+
Egg feels better constructed, though, and more likely to stand up to heavy
|
172
|
+
use and weather. It is also better finished, with some nice touches like a
|
173
|
+
wooden handle that stays cooler and a better seal around the lid that keeps
|
174
|
+
the heat in. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e72bd0286d5550135d7","name":"Kenmore
|
175
|
+
S3218AR Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/kenmore-s3218ar-comparison","slug":"kenmore-s3218ar-comparison","sections":[{"id":"50fb2e72bd0286d5550135d9","name":"Comparison
|
176
|
+
Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nThe
|
177
|
+
eternal battle of the grill purists is here: charcoal vs gas. The charcoal
|
178
|
+
fuel of the Big Green Egg produces a more natural heat, but takes longer to
|
179
|
+
get running when you include the time to load and prep the grill with fuel).
|
180
|
+
The Kenmore also has more features, with a side burner and a more controllable
|
181
|
+
heat level. But in the end, the choice comes down to which you prefer to cook
|
182
|
+
with: charcoal or gas. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e72bd0286d5550135da","name":"Conclusion","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/conclusion","slug":"conclusion","sections":[{"id":"50fb2e72bd0286d5550135dc","name":"Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
|
183
|
+
found good performance from the Big Green Egg, with short cooking times and
|
184
|
+
uniform temperatures. We did find that the temperatures did vary somewhat
|
185
|
+
with the vents open and the grill running at maximum, but this didn''t seem
|
186
|
+
to be a problem when we cooked our test dishes. Our only major issue here
|
187
|
+
was the fact that the cooking area is very small; we were only able to get
|
188
|
+
two test patties onto it at a time. \n\n\n\n","notes":""},{"id":"50fb2e72bd0286d5550135dd","name":"Usability","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nAt
|
189
|
+
the risk of throwing out a cliche, the {{product.brand.name}} is so simple,
|
190
|
+
even a caveman could use it. Using the grill just involves loading it with
|
191
|
+
charcoal, firing it up and throwing the food onto the grill. As long as the
|
192
|
+
caveman hasn''t grown accustomed to things like lighters, side burners and
|
193
|
+
lights, though: this grill eschews these for a more straightforward design.
|
194
|
+
\n\n\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}}],"products":[{"id":"50fa2ce096ab5860160c6a4b","created_at":"2011-09-28T15:42:10Z","updated_at":"2013-03-14T14:36:39Z","name":"Weber Performer
|
195
|
+
Charcoal Grill","slug":"weber-performer-charcoal-grill","_type":"Home::Grills::Charcoal","types":["Natural
|
196
|
+
Gas"],"msrp":null,"article_ids":["50fb2e4cbd0286d55501338d","50fb2e5ebd0286d55501349a","50fb2e67bd0286d55501351e","50fb2e6bbd0286d555013560","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-09-28T15:49:00+00:00","upc":null,"price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b5","brand_id":"50f9ed78bd0286638e0001f2","model":"Charcoal
|
197
|
+
Grill","resource_uri":"/products/weber-performer-charcoal-grill","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":0.1,"ranking":{"total":3,"rank":3,"percentile":0},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
|
198
|
+
Charcoal Grill 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/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa36a0bd0286ee4a03a686","name":"brand_name","value":"Performer","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a687","name":"manufacturer_name","value":"Weber","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a688","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a689","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68a","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68b","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68c","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68d","name":"Fuel","value":["Natural
|
199
|
+
Gas"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
|
200
|
+
Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
|
201
|
+
(adaptor sold separately)"]},{"id":"50fa36a0bd0286ee4a03a68e","name":"Install
|
202
|
+
Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a68f","name":"Burners","value":1,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a690","name":"Total
|
203
|
+
cooking area","value":363,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a691","name":"Height","value":40.0,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a692","name":"Width","value":50.25,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a693","name":"Depth","value":28.5,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a694","name":"Finish
|
204
|
+
or Color","value":"Black","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa36a0bd0286ee4a03a695","name":"Control
|
205
|
+
Dials","value":0,"value_units":"","value_type":"Integer","order":0,"options":["Electricity"]},{"id":"50fa36a0bd0286ee4a03a696","name":"Ignition
|
206
|
+
type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
|
207
|
+
Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa36a0bd0286ee4a03a697","name":"Side
|
208
|
+
Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa36a0bd0286ee4a03a698","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]}],"attachments":[{"id":"50fce120bd0286f12a01075c","created_at":"2013-01-21T06:33:04Z","updated_at":"2013-01-21T06:33:04Z","name":"Weber-Performer-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s50x50_Weber-Performer-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s150x150_Weber-Performer-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s250x250_Weber-Performer-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s300x150_Weber-Performer-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s300x112_Weber-Performer-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s500x500_Weber-Performer-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s600x400_Weber-Performer-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s600x600_Weber-Performer-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x400_Weber-Performer-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x350_Weber-Performer-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x110_Weber-Performer-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/Weber-Performer-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/Weber-Performer-Vanity.jpg","file_size":33646,"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/50fce120bd0286f12a01075c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce120bd0286f12a01075c"}}}],"brand":{"id":"50f9ed78bd0286638e0001f2","created_at":"2011-09-21T14:57:52Z","updated_at":"2013-01-19T00:49:04Z","name":"Weber","slug":"weber","url":null,"resource_uri":"/products?brand=weber","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grillsinfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/01545cd3e6b182be8c6cdabccbdcb877bba2cf9a/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed78bd0286638e0001f2","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed78bd0286638e0001f2"}}},"awards":[],"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/51cc5d33f82dc7b9e0000026","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d33f82dc7b9e0000026"}}},{"id":"50fa2ced96ab5860160c6a7f","created_at":"2011-10-05T17:14:10Z","updated_at":"2013-03-14T14:36:44Z","name":"Kenmore
|
209
|
+
S3218AR","slug":"kenmore-s3218ar","_type":"Home::Grills::Gas","types":["Propane"],"msrp":null,"article_ids":["50fb2e47bd0286d55501334a","50fb2e4cbd0286d55501338d","50fb2e50bd0286d5550133d0","50fb2e63bd0286d5550134dd","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-10-05T17:10:00+00:00","upc":null,"price_grabber_id":"883339143","rubric_id":"50f9ed93bd0286638e0003b4","brand_id":"50f9ed77bd0286638e0001c9","model":"S3218AR","resource_uri":"/products/kenmore-s3218ar","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":3.27,"ranking":{"total":7,"rank":6,"percentile":15},"rubric":{"id":"50f9ed93bd0286638e0003b4","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
|
210
|
+
Gas Grill 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/50f9ed93bd0286638e0003b4","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b4"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa369bbd0286ee4a039bed","name":"brand_name","value":"(Kenmore)","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bee","name":"manufacturer_name","value":"Kenmore","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bef","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf0","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf1","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf2","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf3","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf4","name":"Fuel","value":["LP
|
211
|
+
Gas"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
|
212
|
+
Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
|
213
|
+
(adaptor sold separately)"]},{"id":"50fa369bbd0286ee4a039bf5","name":"Install
|
214
|
+
Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf6","name":"Burners","value":5,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf7","name":"BTU
|
215
|
+
Output (total)","value":85000,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf8","name":"Total
|
216
|
+
cooking area","value":784,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf9","name":"Primary
|
217
|
+
cooking area","value":400,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfa","name":"Warming
|
218
|
+
rack area","value":290,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfb","name":"Height","value":60.8,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfc","name":"Width","value":48.6,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfd","name":"Depth","value":24.6,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfe","name":"Finish
|
219
|
+
or Color","value":"Red / Stainless","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa369bbd0286ee4a039bff","name":"Control
|
220
|
+
Dials","value":7,"value_units":"","value_type":"Integer","order":0,"options":["Electricity"]},{"id":"50fa369bbd0286ee4a039c00","name":"Ignition
|
221
|
+
type","value":"Auto Electronic","value_units":"","value_type":"String","order":0,"options":["Push-button
|
222
|
+
Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa369bbd0286ee4a039c01","name":"Side
|
223
|
+
Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa369bbd0286ee4a039c02","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]}],"attachments":[{"id":"50fce11fbd02860b13010754","created_at":"2013-01-21T06:33:03Z","updated_at":"2013-01-21T06:33:03Z","name":"Kenmore-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s50x50_Kenmore-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s150x150_Kenmore-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s250x250_Kenmore-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s300x150_Kenmore-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s300x112_Kenmore-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s500x500_Kenmore-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s600x400_Kenmore-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s600x600_Kenmore-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x400_Kenmore-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x350_Kenmore-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x110_Kenmore-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/Kenmore-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/Kenmore-Vanity.jpg","file_size":32529,"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/50fce11fbd02860b13010754","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce11fbd02860b13010754"}}}],"brand":{"id":"50f9ed77bd0286638e0001c9","created_at":"2011-04-13T15:03:17Z","updated_at":"2013-01-19T00:49:05Z","name":"Kenmore","slug":"kenmore","url":null,"resource_uri":"/products?brand=kenmore","website_ids":["50e669d7bd028648e000002b","50e669d7bd028648e0000021","50e669d7bd028648e0000023","50e669d7bd028648e0000019","50e669d7bd028648e000001b","50e669d7bd028648e000001d"],"websites":[{"code":"RFI","name":"Refrigerators","url":"refrigeratorinfo.com"},{"code":"WDI","name":"Laundry","url":"washerdryerinfo.com"},{"code":"VCI","name":"Vacuums","url":"vacuumcleanerinfo.com"},{"code":"DWI","name":"Dishwashers","url":"dishwashersinfo.com"},{"code":"GRI","name":"Grills","url":"grillsinfo.com"},{"code":"OVI","name":"Ovens","url":"oveninfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/ee5037a5bec182596e7e41a91fa7f9667a9aa658/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed77bd0286638e0001c9","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed77bd0286638e0001c9"}}},"awards":[],"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/51cc5d33f82dc7b9e0000027","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d33f82dc7b9e0000027"}}},{"id":"50fa2cfc96ab5860160c6ac2","created_at":"2011-10-12T18:55:14Z","updated_at":"2013-03-14T14:36:39Z","name":"Big
|
224
|
+
Green Egg Medium","slug":"big-green-egg-medium","_type":"Home::Grills::Charcoal","types":["Charcoal"],"msrp":649.0,"article_ids":["50fb2e67bd0286d55501351e","50fb2e6bbd0286d555013560","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-10-12T18:55:00+00:00","upc":null,"price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b5","brand_id":"50f9ed79bd0286638e000215","model":"Medium","resource_uri":"/products/big-green-egg-medium","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.74,"ranking":{"total":3,"rank":2,"percentile":34},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
|
225
|
+
Charcoal Grill 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/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":true,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa3698bd0286ee4a0394dd","name":"brand_name","value":"(Big
|
226
|
+
Green Egg)","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394de","name":"manufacturer_name","value":"Big
|
227
|
+
Green Egg","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394df","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e0","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e1","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e2","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e3","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e4","name":"Fuel","value":["Charcoal"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
|
228
|
+
Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
|
229
|
+
(adaptor sold separately)"]},{"id":"50fa3698bd0286ee4a0394e5","name":"Install
|
230
|
+
Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a0394e6","name":"Total
|
231
|
+
cooking area","value":177,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a0394e7","name":"Finish
|
232
|
+
or Color","value":"Green","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa3698bd0286ee4a0394e8","name":"Ignition
|
233
|
+
type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
|
234
|
+
Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa3698bd0286ee4a0394e9","name":"Side
|
235
|
+
Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a0394ea","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a0394eb","name":"Original
|
236
|
+
Price","value":649.0,"value_units":"","value_type":"Decimal","order":0,"options":[]}],"attachments":[{"id":"50fce12cbd0286de7b010793","created_at":"2013-01-21T06:33:16Z","updated_at":"2013-01-21T06:33:16Z","name":"MEgg.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s50x50_MEgg.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s150x150_MEgg.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s250x250_MEgg.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s300x150_MEgg.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s300x112_MEgg.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s500x500_MEgg.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s600x400_MEgg.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s600x600_MEgg.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x400_MEgg.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x350_MEgg.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x110_MEgg.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/MEgg.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/MEgg.jpg","file_size":24813,"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/50fce12cbd0286de7b010793","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce12cbd0286de7b010793"}}}],"brand":{"id":"50f9ed79bd0286638e000215","created_at":"2011-10-12T17:05:13Z","updated_at":"2013-01-19T00:49:04Z","name":"Big
|
237
|
+
Green Egg","slug":"big-green-egg","url":null,"resource_uri":"/products?brand=big-green-egg","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grillsinfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/c32bb02dc90868b3732566a0274ca535cc59c464/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed79bd0286638e000215","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed79bd0286638e000215"}}},"awards":[],"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/51cc5d34f82dc7b9e0000028","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d34f82dc7b9e0000028"}}},{"id":"50fa2cfd96ab5860160c6ac7","created_at":"2011-10-12T19:32:52Z","updated_at":"2013-03-14T14:36:38Z","name":"Primo
|
238
|
+
Kamado","slug":"primo-kamado","_type":"Home::Grills::Charcoal","types":["Charcoal"],"msrp":829.99,"article_ids":["50fb2e4cbd0286d55501338d","50fb2e5ebd0286d55501349a","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-10-12T19:31:00+00:00","upc":null,"price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b5","brand_id":"50f9ed79bd0286638e000214","model":"Kamado","resource_uri":"/products/primo-kamado","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":10.0,"ranking":{"total":3,"rank":1,"percentile":67},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
|
239
|
+
Charcoal Grill 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/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa3698bd0286ee4a03952e","name":"brand_name","value":"(Primo)","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a03952f","name":"manufacturer_name","value":"Primo","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039530","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039531","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039532","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039533","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039534","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039535","name":"Fuel","value":["Charcoal"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
|
240
|
+
Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
|
241
|
+
(adaptor sold separately)"]},{"id":"50fa3698bd0286ee4a039536","name":"Install
|
242
|
+
Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a039537","name":"Total
|
243
|
+
cooking area","value":280,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a039538","name":"Height","value":429.75,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a039539","name":"Width","value":21.5,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a03953a","name":"Depth","value":21.5,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a03953b","name":"Finish
|
244
|
+
or Color","value":"Black Ceramic","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa3698bd0286ee4a03953c","name":"Ignition
|
245
|
+
type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
|
246
|
+
Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa3698bd0286ee4a03953d","name":"Side
|
247
|
+
Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a03953e","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a03953f","name":"Original
|
248
|
+
Price","value":829.99,"value_units":"","value_type":"Decimal","order":0,"options":[]}],"attachments":[{"id":"50fce12bbd02862d7701078b","created_at":"2013-01-21T06:33:15Z","updated_at":"2013-01-21T06:33:15Z","name":"Primo-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s50x50_Primo-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s150x150_Primo-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s250x250_Primo-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s300x150_Primo-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s300x112_Primo-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s500x500_Primo-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s600x400_Primo-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s600x600_Primo-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x400_Primo-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x350_Primo-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x110_Primo-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/Primo-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/Primo-Vanity.jpg","file_size":15587,"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/50fce12bbd02862d7701078b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce12bbd02862d7701078b"}}}],"brand":{"id":"50f9ed79bd0286638e000214","created_at":"2011-10-12T17:04:59Z","updated_at":"2013-01-19T00:49:04Z","name":"Primo","slug":"primo","url":null,"resource_uri":"/products?brand=primo","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grillsinfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/23f6bdb326780525380b08dcbc9cc0a26385d30c/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed79bd0286638e000214","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed79bd0286638e000214"}}},"awards":[],"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/51cc5d34f82dc7b9e0000029","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d34f82dc7b9e0000029"}}}],"authors":[{"id":"50fc4e94bd0286d5550b4bf8","created_at":"2013-01-20T20:07:48Z","updated_at":"2013-02-13T15:13:52Z","name":"Richard
|
249
|
+
Baguley","title":"Editor","short_bio":"Richard Baguley is a valued contributor
|
250
|
+
to the Reviewed.com family of sites.","long_bio":"Richard Baguley is a valued
|
251
|
+
contributor to the Reviewed.com family of sites.","slug":"richard-baguley","social":{"email":"","facebook":"","twitter":""},"resource_uri":"/authors/richard-baguley","avatars":{"small":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?s=48&d=mm","medium":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?s=128&d=mm","normal":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=mm"},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/authors","href":"https://the-guide-staging.herokuapp.com/api/v1/authors"},"resource":{"rel":"/api/v1/authors/50fc4e94bd0286d5550b4bf8","href":"https://the-guide-staging.herokuapp.com/api/v1/authors/50fc4e94bd0286d5550b4bf8"}}}],"attachments":[{"id":"50fb2e71bd0286d5550135b3","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s50x50_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s150x150_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s250x250_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s300x150_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s300x112_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s500x500_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s600x400_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s600x600_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x400_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x350_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x110_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/table-b297567d41f58254691baba562ae65d34cb1c3f0.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","file_size":152},"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/50fb2e71bd0286d5550135b3","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135b3"}}},{"id":"50fb2e71bd0286d5550135cb","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"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/50fb2e71bd0286d5550135cb","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135cb"}}},{"id":"50fb2e71bd0286d5550135cc","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"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/50fb2e71bd0286d5550135cc","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135cc"}}},{"id":"50fb2e72bd0286d5550135d0","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"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/50fb2e72bd0286d5550135d0","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d0"}}},{"id":"50fb2e72bd0286d5550135d1","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"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/50fb2e72bd0286d5550135d1","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d1"}}},{"id":"50fb2e72bd0286d5550135d5","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"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/50fb2e72bd0286d5550135d5","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d5"}}},{"id":"50fb2e72bd0286d5550135d6","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"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/50fb2e72bd0286d5550135d6","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d6"}}},{"id":"50fb2e74bd0286d5550135e4","created_at":"2013-01-19T23:38:28Z","updated_at":"2013-01-19T23:38:28Z","name":"BGE-medium-web2.jpg","type":"file","tags":["old-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s50x50_BGE-medium-web2.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s150x150_BGE-medium-web2.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s250x250_BGE-medium-web2.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s300x150_BGE-medium-web2.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s300x112_BGE-medium-web2.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s500x500_BGE-medium-web2.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s600x400_BGE-medium-web2.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s600x600_BGE-medium-web2.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x400_BGE-medium-web2.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x350_BGE-medium-web2.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x110_BGE-medium-web2.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/BGE-medium-web2.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/BGE-medium-web2.jpg","file_size":81744,"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/50fb2e74bd0286d5550135e4","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e74bd0286d5550135e4"}}}],"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"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/50fb2e6fbd0286d5550135a2","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb2e6fbd0286d5550135a2"}}}'
|
260
252
|
http_version:
|
261
|
-
recorded_at:
|
262
|
-
- request:
|
253
|
+
recorded_at: Thu, 27 Jun 2013 15:41:42 GMT
|
254
|
+
- request:
|
263
255
|
method: get
|
264
256
|
uri: https://the-guide-staging.herokuapp.com/api/v1/articles/minden-master-ii-grill-review
|
265
|
-
body:
|
257
|
+
body:
|
266
258
|
encoding: US-ASCII
|
267
|
-
string:
|
268
|
-
headers:
|
269
|
-
|
259
|
+
string: ''
|
260
|
+
headers:
|
261
|
+
User-Agent:
|
262
|
+
- Faraday v0.8.7
|
263
|
+
X-Reviewed-Authorization:
|
270
264
|
- 38e397252ec670ec441733a95204f141
|
271
|
-
Accept-Encoding:
|
265
|
+
Accept-Encoding:
|
272
266
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
273
|
-
Accept:
|
274
|
-
-
|
275
|
-
|
276
|
-
|
277
|
-
response:
|
278
|
-
status:
|
267
|
+
Accept:
|
268
|
+
- '*/*'
|
269
|
+
response:
|
270
|
+
status:
|
279
271
|
code: 200
|
280
272
|
message: OK
|
281
|
-
headers:
|
282
|
-
Access-Control-Allow-Credentials:
|
283
|
-
-
|
284
|
-
Access-Control-Allow-Headers:
|
285
|
-
- x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization,
|
286
|
-
|
273
|
+
headers:
|
274
|
+
Access-Control-Allow-Credentials:
|
275
|
+
- 'true'
|
276
|
+
Access-Control-Allow-Headers:
|
277
|
+
- x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization,
|
278
|
+
x-skip-cache, Content-Type
|
279
|
+
Access-Control-Allow-Methods:
|
287
280
|
- OPTIONS, GET, POST, PUT, DELETE
|
288
|
-
Access-Control-Allow-Origin:
|
289
|
-
-
|
290
|
-
Access-Control-Max-Age:
|
291
|
-
-
|
292
|
-
Cache-Control:
|
281
|
+
Access-Control-Allow-Origin:
|
282
|
+
- '*'
|
283
|
+
Access-Control-Max-Age:
|
284
|
+
- '1000'
|
285
|
+
Cache-Control:
|
293
286
|
- no-cache, no-store
|
294
|
-
Content-
|
295
|
-
- gzip
|
296
|
-
Content-Type:
|
287
|
+
Content-Type:
|
297
288
|
- application/json; charset=utf-8
|
298
|
-
Date:
|
299
|
-
-
|
300
|
-
|
289
|
+
Date:
|
290
|
+
- Thu, 27 Jun 2013 15:41:42 GMT
|
291
|
+
Etag:
|
292
|
+
- '"e0aa021e21dddbd6d8cecec71e9cf564"'
|
293
|
+
Status:
|
301
294
|
- 200 OK
|
302
|
-
Strict-Transport-Security:
|
295
|
+
Strict-Transport-Security:
|
303
296
|
- max-age=31536000
|
304
|
-
Vary:
|
297
|
+
Vary:
|
305
298
|
- Accept-Encoding
|
306
|
-
X-Request-Id:
|
307
|
-
-
|
308
|
-
X-Runtime:
|
309
|
-
-
|
310
|
-
X-Ua-Compatible:
|
299
|
+
X-Request-Id:
|
300
|
+
- f972534adfe7459c92377a34fa56097b
|
301
|
+
X-Runtime:
|
302
|
+
- '0.020183'
|
303
|
+
X-Ua-Compatible:
|
311
304
|
- IE=Edge,chrome=1
|
312
|
-
Transfer-Encoding:
|
305
|
+
Transfer-Encoding:
|
313
306
|
- chunked
|
314
|
-
Connection:
|
307
|
+
Connection:
|
315
308
|
- keep-alive
|
316
|
-
body:
|
317
|
-
encoding:
|
318
|
-
string:
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
/
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
ec2fw1GWzZ8zUJ7cFzoSpWmdiPK8ltExvqNaRqehPK+bdDjKspt0OsrTG03H
|
417
|
-
oXRPRnleD+pwlGUP6nSUp7enjkNpn+zj53WujkOJnauTUJ7Z1DoY5QngDu93
|
418
|
-
bXSXcEhfbe+sTthLbm6tSWY61tc2WDvTvEgbbPvkT/te9xxt636dSXXnKe9u
|
419
|
-
fxd051GkiIIu7vSih5GjsWfT8XhoMstzLWM8Dm3THoSjoW/78MmkFnWt4cgp
|
420
|
-
Ce5e7GeS2cPxlGR2P6LziOvhiEriuh/ReST1cEQlST0Q0cmE9EhEQEj3IzqP
|
421
|
-
fB5j14p87kd0HtE8HFFJNA9DdDqpPA6RexCi8wjk4YhKAnkYotPJ4nGI7IN8
|
422
|
-
7TxieBwiJIZ7EZ1JAg9GtAfIlQ44LwV3/ZxzOLCNr+ecRxO80elnUwdNrnqb
|
423
|
-
X98o+fpGydc3Sr6+UXLqGyUvdqp9lMGXv1P+ZJMqJ9ht3HpUv/Wt03PXb58Z
|
424
|
-
pP1/AQAAAP//AwBK7XcrNmIAAA==
|
425
|
-
|
309
|
+
body:
|
310
|
+
encoding: UTF-8
|
311
|
+
string: '{"id":"50fb2e7bbd0286d555013653","created_at":"2012-05-15T21:15:16Z","updated_at":"2013-01-31T21:11:23Z","name":"Minden
|
312
|
+
Master II Grill Review","branch_name":"master","summary":"","meta_description":null,"website_ids":["50e669d7bd028648e0000023"],"author_ids":["50fc4eaebd0286d5550b4c93"],"tags":[],"classifications":["review"],"publish_on":"2012-05-18T19:34:00+00:00","attachment_ids":["50fb2e7cbd0286d555013664","50fb2e7cbd0286d555013682"],"primary_product_id":"50fa307696ab5860160c7a7e","resource_uri":"/content/minden-master-ii-grill-review.htm","disqus_uri":"Minden-Master-II-Grill-Review","product_ids":["50fa307696ab5860160c7a7e"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-05-18T19:34:00+00:00","slug":"minden-master-ii-grill-review.htm","is_template":false,"is_branch":false,"deals":[],"related_articles":[],"pages":[{"id":"50fb2e7bbd0286d555013659","name":"Introduction","resource_uri":"/content/minden-master-ii-grill-review/introduction","slug":"introduction","sections":[{"id":"50fb2e7bbd0286d55501365a","name":"Introduction","body":"Though
|
313
|
+
the {{product.name}} ($479 MSRP) turned in solid performance numbers, it''s
|
314
|
+
missing features and controls that similar-priced grills include. This grill
|
315
|
+
actually had one of the fastest heatup times of the grills we''ve tested and
|
316
|
+
was consistent and efficient on its high-fire setting. ","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e7cbd0286d55501365c","name":"Design","resource_uri":"/content/minden-master-ii-grill-review/design","slug":"design","sections":[{"id":"50fb2e7cbd0286d55501365e","name":"Product
|
317
|
+
Tour","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Front
|
318
|
+
Photo'']}} \n \n \n{{product.attachments[''Side Photo'']}} \n \n \n{{product.attachments[''Lid
|
319
|
+
Open Photo'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d55501365f","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Controls
|
320
|
+
1 Photo'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d555013660","name":"Main
|
321
|
+
Grilling Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Main
|
322
|
+
Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d555013661","name":"Warming
|
323
|
+
Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Warming
|
324
|
+
Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d555013663","name":"Thermometer","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Thermometer
|
325
|
+
Photo 1'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e7cbd0286d555013665","name":"Performance","resource_uri":"/content/minden-master-ii-grill-review/performance","slug":"performance","sections":[{"id":"50fb2e7cbd0286d555013667","name":"Heatup
|
326
|
+
Time","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{article.attachments[''table-b297567d41f58254691baba562ae65d34cb1c3f0.csv'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d555013668","name":"Low
|
327
|
+
Fire Cooking Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nAt
|
328
|
+
just less than 10 minutes to cook our test patties, the {{product.name}} performed
|
329
|
+
capably on the grill''s low-fire setting. It also achieved solid consistency
|
330
|
+
across the three burners as there wasn''t too much deviation in temperature.\n\n\n\n\n\n{{comparison_bars
|
331
|
+
title=\"Low Fire Performance\", attribute=\"Low Temp Performance Rating\",
|
332
|
+
xLabel=\"Cooking Performance Score\"}}\n\n","notes":""},{"id":"50fb2e7cbd0286d555013669","name":"Low
|
333
|
+
Temperature Uniformity","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWith
|
334
|
+
the exception of one thermocouple on the left, there wasn''t too much deviation
|
335
|
+
across the grill surface. Most areas on the surface were from 615-650 degrees.\n\n\n\n{{product.attachments[''Low
|
336
|
+
Temp Uniformity Image'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d55501366a","name":"Low
|
337
|
+
Temperature Consistency","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nConsistency
|
338
|
+
on the \t{{product.name}} wasn''t great, as the middle of the grill reached
|
339
|
+
a high of 708 and a low of 539 degrees. This will affect users because they
|
340
|
+
may have steaks that are done on one part and others that need more time.\n\n\n\n{{product.attachments[''Low
|
341
|
+
Temp Consistency Image'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d55501366b","name":"High
|
342
|
+
Fire Cooking Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nYou''ll
|
343
|
+
need less than 8 minutes, which is well below average and a great time, to
|
344
|
+
cook up hamburger patties while cooking on high temperature.\n\n\n\n\n\n{{comparison_bars
|
345
|
+
title=\"High Fire Cooking Performance\", attribute=\"High Temp Performance
|
346
|
+
Rating\", xLabel=\"Cooking Performance Score\"}}\n\n","notes":""},{"id":"50fb2e7cbd0286d55501366c","name":"High
|
347
|
+
Temperature Uniformity","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
|
348
|
+
{{product.name}} cooks with relative uniformity. We didn''t see too much of
|
349
|
+
a variation in temperatures on the cooking area.\n\n\n\n{{product.attachments[''High
|
350
|
+
Temp Uniformity Image'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d55501366d","name":"High
|
351
|
+
Temperature Consistency","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nOne
|
352
|
+
thing you won''t need to worry about with the {{product.name}} is burner consistency.
|
353
|
+
Almost all thermocouples were within 20 degrees of each other.\n\n\n\n{{product.attachments[''High
|
354
|
+
Temp Consistency Image'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d55501366f","name":"Case
|
355
|
+
& Handle Temperature","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
|
356
|
+
allowable temperature for the outside of a grill is 131 degrees. Unfortunately
|
357
|
+
for the {{product.name}}, all of the thermocouples we placed on the outside
|
358
|
+
were higher than that. Furthermore, one of them reached a whopping 147 degrees.
|
359
|
+
You may want to use gloves when using this grill.\n\n\n\n{{product.manufacturer_specs['''']}}Handle
|
360
|
+
Photo 1\" /> \n \nThe image below was taken with an infrared camera to
|
361
|
+
show the heat levels of the lid. The numbers at the bottom indicate the temperature
|
362
|
+
scale. \n{{product.attachments[''IR Photo'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e7cbd0286d555013671","name":"Features
|
363
|
+
& Usability","resource_uri":"/content/minden-master-ii-grill-review/features-and-usability","slug":"features-and-usability","sections":[{"id":"50fb2e7cbd0286d555013673","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThere
|
364
|
+
are three black plastic burner buttons on the front of the {{product.name}}
|
365
|
+
and a red automatic ignition button on the right. Don''t worry about turning
|
366
|
+
these on by accident, because you need to press down on the burner buttons
|
367
|
+
to turn the gas on.\n\n\n\n{{product.attachments[''Controls 1 Photo'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d555013674","name":"Fuel","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
|
368
|
+
{{product.name}} uses liquid propane for fuel. The easy-to-use regulator is
|
369
|
+
included and under the grilling area is storage space where the 20-pound propane
|
370
|
+
canister fits. You''ll need to go through the back of the grill to remove
|
371
|
+
the tank.\n\n\n\n{{product.attachments[''Fuel Photo 1'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d555013675","name":"Lighter/Ignition","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
|
372
|
+
red ignition button on the right will click loudly when you press it.\n\n\n\n","notes":""},{"id":"50fb2e7cbd0286d555013676","name":"Cooking
|
373
|
+
Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
|
374
|
+
\t{{product.name}}''s primary cooking surface is 365 square inches, which
|
375
|
+
isn''t the biggest size we''ve seen but it won''t prevent you from cooking
|
376
|
+
a bunch of burgers at once either. There is a single grate and it''s a bit
|
377
|
+
heavy and not easy to remove for cleaning.\n\n\n\n{{product.attachments[''Main
|
378
|
+
Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d555013677","name":"Warming
|
379
|
+
Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
|
380
|
+
warming tray is located at the back of the grilling area and can''t be removed
|
381
|
+
for cleaning.\n\n\n\n{{product.attachments[''Warming Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d555013678","name":"Other
|
382
|
+
Areas","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Side
|
383
|
+
Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d555013679","name":"Cleanup","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThere''s
|
384
|
+
just the single grate on top of the burners that''s heavy and hard to remove.
|
385
|
+
Once you do get it off the grill, though, it''s easy to just wipe down the
|
386
|
+
grease trays that cover the burners. The grease funnels into a tray that you
|
387
|
+
can pull out of the back by grabbing the wooden handle that protrudes from
|
388
|
+
the back of the grill.\n\n\n\n{{product.attachments[''Grease Trap Photo 1'']}} \n \n \n{{product.attachments[''Cleanup
|
389
|
+
Photo 1'']}}{{product.attachments[''Cleanup Photo 2'']}}\n\n","notes":""},{"id":"50fb2e7cbd0286d55501367a","name":"Other
|
390
|
+
Features","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nYou''ll
|
391
|
+
have access to a food tray/chopping block on the right and by lifting up the
|
392
|
+
tray on the left, you''ll see the tool storage compartment. Both sides also
|
393
|
+
have hooks for tool storage. On the top of the grill is a thermometer that
|
394
|
+
reaches 600 degrees. If you''re looking to move the grill, keep in mind that
|
395
|
+
though it has solid wheels, it''s somewhat heavy to wheel around. \n\n\n\n\n{{product.attachments[''Other
|
396
|
+
Features Photo 1'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}}],"products":[{"id":"50fa307696ab5860160c7a7e","created_at":"2012-05-15T21:12:15Z","updated_at":"2013-03-11T21:05:24Z","name":"Minden
|
397
|
+
Master II","slug":"minden-master-ii","_type":"Home::Grills::Gas","types":["Propane"],"msrp":479.0,"article_ids":["50fb2e7bbd0286d555013653"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2012-05-18T19:34:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed7cbd0286638e000272","model":"Master
|
398
|
+
II","resource_uri":"/products/minden-master-ii","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,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa369fbd0286ee4a03a536","name":"brand_name","value":"(Minden)","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369fbd0286ee4a03a537","name":"manufacturer_name","value":"Minden","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369fbd0286ee4a03a538","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369fbd0286ee4a03a539","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369fbd0286ee4a03a53a","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369fbd0286ee4a03a53b","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369fbd0286ee4a03a53c","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369fbd0286ee4a03a53d","name":"Fuel","value":["LP
|
399
|
+
Gas"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
|
400
|
+
Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
|
401
|
+
(adaptor sold separately)"]},{"id":"50fa369fbd0286ee4a03a53e","name":"Install
|
402
|
+
Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369fbd0286ee4a03a53f","name":"Finish
|
403
|
+
or Color","value":"Green","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa369fbd0286ee4a03a540","name":"Side
|
404
|
+
Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa369fbd0286ee4a03a541","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa369fbd0286ee4a03a542","name":"Original
|
405
|
+
Price","value":479.0,"value_units":"","value_type":"Decimal","order":0,"options":[]}],"attachments":[{"id":"50fca08abd02862d77009628","created_at":"2013-01-21T01:57:30Z","updated_at":"2013-01-21T01:57:30Z","name":"Minden-360MD-vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/3b2dd14de6c1b9abfafa0df5e479b547ef7c7bbd/s50x50_Minden-360MD-vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3b2dd14de6c1b9abfafa0df5e479b547ef7c7bbd/s150x150_Minden-360MD-vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/3b2dd14de6c1b9abfafa0df5e479b547ef7c7bbd/s250x250_Minden-360MD-vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3b2dd14de6c1b9abfafa0df5e479b547ef7c7bbd/s300x150_Minden-360MD-vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/3b2dd14de6c1b9abfafa0df5e479b547ef7c7bbd/s300x112_Minden-360MD-vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/3b2dd14de6c1b9abfafa0df5e479b547ef7c7bbd/s500x500_Minden-360MD-vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3b2dd14de6c1b9abfafa0df5e479b547ef7c7bbd/s600x400_Minden-360MD-vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/3b2dd14de6c1b9abfafa0df5e479b547ef7c7bbd/s600x600_Minden-360MD-vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3b2dd14de6c1b9abfafa0df5e479b547ef7c7bbd/s940x400_Minden-360MD-vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/3b2dd14de6c1b9abfafa0df5e479b547ef7c7bbd/s940x350_Minden-360MD-vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/3b2dd14de6c1b9abfafa0df5e479b547ef7c7bbd/s940x110_Minden-360MD-vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/3b2dd14de6c1b9abfafa0df5e479b547ef7c7bbd/Minden-360MD-vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/3b2dd14de6c1b9abfafa0df5e479b547ef7c7bbd/Minden-360MD-vanity.jpg","file_size":29538,"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/50fca08abd02862d77009628","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fca08abd02862d77009628"}}}],"brand":{"id":"50f9ed7cbd0286638e000272","created_at":"2012-05-15T21:11:27Z","updated_at":"2012-05-15T21:11:27Z","name":"Minden","slug":"minden","url":null,"resource_uri":"/products?brand=minden","website_ids":[],"websites":[],"logo_url":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed7cbd0286638e000272","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed7cbd0286638e000272"}}},"awards":[],"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/51cc5d35f82dc7b9e000002a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d35f82dc7b9e000002a"}}}],"authors":[{"id":"50fc4eaebd0286d5550b4c93","created_at":"2013-01-20T20:08:14Z","updated_at":"2013-01-20T20:08:14Z","name":"Patrick
|
406
|
+
Ouellette","title":"Editor","short_bio":"Patrick Ouellette is a valued contributor
|
407
|
+
to the Reviewed.com family of sites.","long_bio":"Patrick Ouellette is a valued
|
408
|
+
contributor to the Reviewed.com family of sites.","slug":"patrick-ouellette","social":{"email":"pouellette@reviewed.com"},"resource_uri":"/authors/patrick-ouellette","avatars":{"small":"http://www.gravatar.com/avatar/9e8667a1574b61a605bcae15b94f78b3?s=48&d=mm","medium":"http://www.gravatar.com/avatar/9e8667a1574b61a605bcae15b94f78b3?s=128&d=mm","normal":"http://www.gravatar.com/avatar/9e8667a1574b61a605bcae15b94f78b3?d=mm"},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/authors","href":"https://the-guide-staging.herokuapp.com/api/v1/authors"},"resource":{"rel":"/api/v1/authors/50fc4eaebd0286d5550b4c93","href":"https://the-guide-staging.herokuapp.com/api/v1/authors/50fc4eaebd0286d5550b4c93"}}}],"attachments":[{"id":"50fb2e7cbd0286d555013664","created_at":"2013-01-19T23:38:36Z","updated_at":"2013-01-19T23:38:36Z","name":"table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s50x50_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s150x150_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s250x250_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s300x150_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s300x112_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s500x500_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s600x400_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s600x600_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x400_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x350_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x110_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/table-b297567d41f58254691baba562ae65d34cb1c3f0.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","file_size":152},"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/50fb2e7cbd0286d555013664","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e7cbd0286d555013664"}}},{"id":"50fb2e7cbd0286d555013682","created_at":"2013-01-19T23:38:36Z","updated_at":"2013-01-19T23:38:36Z","name":"gri-minden-master-ii-grill.jpg","type":"file","tags":["old-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/89b3a9971e2b62099f3134f87c3c0991a2a62785/s50x50_gri-minden-master-ii-grill.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/89b3a9971e2b62099f3134f87c3c0991a2a62785/s150x150_gri-minden-master-ii-grill.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/89b3a9971e2b62099f3134f87c3c0991a2a62785/s250x250_gri-minden-master-ii-grill.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/89b3a9971e2b62099f3134f87c3c0991a2a62785/s300x150_gri-minden-master-ii-grill.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/89b3a9971e2b62099f3134f87c3c0991a2a62785/s300x112_gri-minden-master-ii-grill.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/89b3a9971e2b62099f3134f87c3c0991a2a62785/s500x500_gri-minden-master-ii-grill.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/89b3a9971e2b62099f3134f87c3c0991a2a62785/s600x400_gri-minden-master-ii-grill.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/89b3a9971e2b62099f3134f87c3c0991a2a62785/s600x600_gri-minden-master-ii-grill.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/89b3a9971e2b62099f3134f87c3c0991a2a62785/s940x400_gri-minden-master-ii-grill.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/89b3a9971e2b62099f3134f87c3c0991a2a62785/s940x350_gri-minden-master-ii-grill.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/89b3a9971e2b62099f3134f87c3c0991a2a62785/s940x110_gri-minden-master-ii-grill.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/89b3a9971e2b62099f3134f87c3c0991a2a62785/gri-minden-master-ii-grill.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/89b3a9971e2b62099f3134f87c3c0991a2a62785/gri-minden-master-ii-grill.jpg","file_size":27430,"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/50fb2e7cbd0286d555013682","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e7cbd0286d555013682"}}}],"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"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/50fb2e7bbd0286d555013653","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb2e7bbd0286d555013653"}}}'
|
426
409
|
http_version:
|
427
|
-
recorded_at:
|
428
|
-
recorded_with: VCR 2.
|
410
|
+
recorded_at: Thu, 27 Jun 2013 15:41:43 GMT
|
411
|
+
recorded_with: VCR 2.5.0
|