reviewed 0.6.0 → 0.6.1
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/lib/faraday/cache.rb +13 -11
 - data/lib/reviewed/cache.rb +18 -0
 - data/lib/reviewed/version.rb +1 -1
 - data/reviewed.gemspec +1 -1
 - data/spec/article_spec.rb +1 -1
 - data/spec/client_spec.rb +1 -1
 - data/spec/collection_spec.rb +1 -1
 - data/spec/faraday/cache_spec.rb +9 -9
 - data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/assigns_attachments_to_the_correct_class.yml +236 -289
 - data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_has_many_attachments.yml +196 -226
 - data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_have_any_matching_attachments.yml +236 -289
 - data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/finds_attachments_by_tag.yml +228 -361
 - data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/gets_gallery_attachments.yml +236 -313
 - data/spec/fixtures/vcr/Reviewed_Article/associations/deals/has_many_deals.yml +228 -278
 - data/spec/fixtures/vcr/Reviewed_Article/associations/pages/has_many_pages.yml +196 -226
 - data/spec/fixtures/vcr/Reviewed_Article/associations/products/has_many_products.yml +196 -226
 - data/spec/fixtures/vcr/Reviewed_Article/associations/products/returns_products_of_the_correct_class.yml +196 -226
 - data/spec/fixtures/vcr/Reviewed_Article/associations/related_articles/has_many_related_articles.yml +196 -226
 - data/spec/fixtures/vcr/Reviewed_Article/fetches_when_a_tag_is_not_in_pre-loaded_set.yml +365 -438
 - data/spec/fixtures/vcr/Reviewed_Article/find_page/finds_a_page_with_a_matching_slug.yml +294 -351
 - data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_a_product_of_the_correct_class.yml +424 -504
 - data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_nil_if_does_not_respond_to_products.yml +392 -452
 - data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_the_primary_product.yml +392 -452
 - data/spec/fixtures/vcr/Reviewed_Article/returns_local_attachments_when_available.yml +363 -438
 - data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/not_set/has_nil_query_params.yml +93 -102
 - data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/set/merges_quest_params.yml +11 -12
 - data/spec/fixtures/vcr/Reviewed_Collection/collection_data/fetches_the_first_page_by_default.yml +80 -197
 - data/spec/fixtures/vcr/Reviewed_Collection/collection_data/is_enumerable.yml +80 -197
 - data/spec/fixtures/vcr/Reviewed_Collection/next_page/fetches_the_next_page_of_results.yml +99 -302
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_if_the_page_number_is_out_of_bounds.yml +80 -197
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_whether_this_is_the_first_or_last_page.yml +48 -145
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_limit_value_max_per_page_.yml +48 -145
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_number_of_entries_on_the_current_page.yml +80 -197
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_offset.yml +80 -197
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_item_count.yml +48 -145
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_number_of_pages.yml +80 -197
 - data/spec/fixtures/vcr/Reviewed_Collection/previous_page/fetches_the_previous_page_of_results.yml +211 -551
 - data/spec/fixtures/vcr/Reviewed_Collection/previous_page/returns_nil_if_there_is_no_previous_page.yml +48 -145
 - data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/does_not_have_any_matching_attachments.yml +90 -162
 - data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/matches_attachments_by_tag_properly.yml +50 -99
 - data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/no_longer_has_many_attachments.yml +50 -99
 - data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_by_tag.yml +50 -99
 - data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_of_the_correct_class.yml +58 -110
 - data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/has_many_manufacturer_specs.yml +50 -99
 - data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/returns_attachments_of_the_correct_class.yml +52 -99
 - data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_keywords.yml +72 -0
 - data/spec/fixtures/vcr/Reviewed_Request/_where/returns_a_collection.yml +93 -102
 - data/spec/fixtures/vcr/Reviewed_Request/_where/returns_an_empty_set_if_no_matching_data_was_found.yml +11 -9
 - data/spec/fixtures/vcr/Reviewed_Request/_where/returns_the_appropriate_page_of_results.yml +91 -69
 - data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_a_collection_object.yml +93 -102
 - data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_objects_of_the_correct_class.yml +93 -102
 - data/spec/fixtures/vcr/Reviewed_Request/object_from_response/returns_an_object_of_the_correct_class.yml +90 -93
 - data/spec/product_spec.rb +1 -1
 - data/spec/request_spec.rb +4 -4
 - metadata +35 -62
 - data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_other_supported_options.yml +0 -66
 
| 
         @@ -14,7 +14,7 @@ http_interactions: 
     | 
|
| 
       14 
14 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       15 
15 
     | 
    
         
             
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
       16 
16 
     | 
    
         
             
                  Accept:
         
     | 
| 
       17 
     | 
    
         
            -
                  -  
     | 
| 
      
 17 
     | 
    
         
            +
                  - '*/*'
         
     | 
| 
       18 
18 
     | 
    
         
             
              response:
         
     | 
| 
       19 
19 
     | 
    
         
             
                status:
         
     | 
| 
       20 
20 
     | 
    
         
             
                  code: 200
         
     | 
| 
         @@ -28,17 +28,15 @@ http_interactions: 
     | 
|
| 
       28 
28 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       29 
29 
     | 
    
         
             
                  - OPTIONS, GET, POST, PUT, DELETE
         
     | 
| 
       30 
30 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       31 
     | 
    
         
            -
                  -  
     | 
| 
      
 31 
     | 
    
         
            +
                  - '*'
         
     | 
| 
       32 
32 
     | 
    
         
             
                  Access-Control-Max-Age:
         
     | 
| 
       33 
33 
     | 
    
         
             
                  - '1000'
         
     | 
| 
       34 
34 
     | 
    
         
             
                  Cache-Control:
         
     | 
| 
       35 
35 
     | 
    
         
             
                  - no-cache, no-store
         
     | 
| 
       36 
     | 
    
         
            -
                  Content-Encoding:
         
     | 
| 
       37 
     | 
    
         
            -
                  - gzip
         
     | 
| 
       38 
36 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       39 
37 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       40 
38 
     | 
    
         
             
                  Date:
         
     | 
| 
       41 
     | 
    
         
            -
                  -  
     | 
| 
      
 39 
     | 
    
         
            +
                  - Mon, 29 Jul 2013 21:23:58 GMT
         
     | 
| 
       42 
40 
     | 
    
         
             
                  Status:
         
     | 
| 
       43 
41 
     | 
    
         
             
                  - 200 OK
         
     | 
| 
       44 
42 
     | 
    
         
             
                  Strict-Transport-Security:
         
     | 
| 
         @@ -48,9 +46,9 @@ http_interactions: 
     | 
|
| 
       48 
46 
     | 
    
         
             
                  X-Rack-Cache:
         
     | 
| 
       49 
47 
     | 
    
         
             
                  - miss
         
     | 
| 
       50 
48 
     | 
    
         
             
                  X-Request-Id:
         
     | 
| 
       51 
     | 
    
         
            -
                  -  
     | 
| 
      
 49 
     | 
    
         
            +
                  - 3d1dc382032e96760503fcda39cbcb1c
         
     | 
| 
       52 
50 
     | 
    
         
             
                  X-Runtime:
         
     | 
| 
       53 
     | 
    
         
            -
                  - '0. 
     | 
| 
      
 51 
     | 
    
         
            +
                  - '0.676351'
         
     | 
| 
       54 
52 
     | 
    
         
             
                  X-Ua-Compatible:
         
     | 
| 
       55 
53 
     | 
    
         
             
                  - IE=Edge,chrome=1
         
     | 
| 
       56 
54 
     | 
    
         
             
                  Transfer-Encoding:
         
     | 
| 
         @@ -58,224 +56,196 @@ http_interactions: 
     | 
|
| 
       58 
56 
     | 
    
         
             
                  Connection:
         
     | 
| 
       59 
57 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       60 
58 
     | 
    
         
             
                body:
         
     | 
| 
       61 
     | 
    
         
            -
                  encoding:  
     | 
| 
       62 
     | 
    
         
            -
                  string:  
     | 
| 
       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 
     | 
    
         
            -
                    SqnreEYYRqZDTN/wqO9SX3dDzaTUca4VQfTFU48gBo5iZATRH2M9ghiKclQE
         
     | 
| 
       251 
     | 
    
         
            -
                    0R9kLYIYjHFUBDEAZC2CGIpyXATRH2U9gjgJ5ckRxECUuwhiKMpxEcQQ/ZYj
         
     | 
| 
       252 
     | 
    
         
            -
                    iKEox0UQ/VHWI4hTUJ4eQQxDaZ+OclQEMQBlLYIYinJcBNEfZT2COAXl6RHE
         
     | 
| 
       253 
     | 
    
         
            -
                    MJTGyZZoXAQxDGUVQQxEOTKC6I3yBHAfPIK45OCmCGJ4BBGcjUjR3vjxCCK4
         
     | 
| 
       254 
     | 
    
         
            -
                    XAShEY2YTmSaumO7hkbNSAsDkBs71AwzCizD8VVKrhdB9MPTjCAGjWJ0BNEX
         
     | 
| 
       255 
     | 
    
         
            -
                    YzOCGIZyZATRF2QjghiIcWQE0RtkI4IYhnJsBNEXZTOCOAHliAhiEEopghiG
         
     | 
| 
       256 
     | 
    
         
            -
                    cmwE0V+/6xHEMJRjI4i+KJsRxHCUYyKIISjt01GOjCB6o2xEEMNQjo0g+qJs
         
     | 
| 
       257 
     | 
    
         
            -
                    RhDDUY6JIIagNE62RGMjiCEo5QhiEMrREURPlCeA+wgiiMsNrn6woWWbUwjR
         
     | 
| 
       258 
     | 
    
         
            -
                    w8sPLhlCBC0hhF6/J1SPhxDdJ0037pmKEFMRYipCTEWIqQgxFSGmIsRUhJiK
         
     | 
| 
       259 
     | 
    
         
            -
                    EFMRYipCnDmCaHPgzxZB7Dd+PILQLhdBTEWIqQgxFSGmIsRUhJiKEFMRYipC
         
     | 
| 
       260 
     | 
    
         
            -
                    TEWIqQgxFSHOHkJolwwhtB4hxKFPOUxFiKkIMRUhpiLEVISYihBTEWIqQkxF
         
     | 
| 
       261 
     | 
    
         
            -
                    iKkIMRUhPrII4vSPhPVq/HgEYU9FiKkIMRUhpiLEVISYihBTEWIqQkxFiKkI
         
     | 
| 
       262 
     | 
    
         
            -
                    MRUhfkMhhH3JEMJuCSHM+j204yu7cnjQdfKzOVe9e81cwG38wHoRQnzxlz/P
         
     | 
| 
       263 
     | 
    
         
            -
                    +ZHC82eIMw9+xmiZrOkcx3fWLxnZhuUageYTSgxP803DCS0z8ikOPzAs3TBp
         
     | 
| 
       264 
     | 
    
         
            -
                    YESRXoYL7YhHxgP9QZTxQAeMUQ5/fxTC4e8CMcqjH4BCePQdMMa57P1hlC77
         
     | 
| 
       265 
     | 
    
         
            -
                    IRgn++QDYYBP3gFjnNM9REu4090BY5xX3R9G6VUfgHG62zwMhn0Axii/eAAM
         
     | 
| 
       266 
     | 
    
         
            -
                    4Rd3wBjn+PaHUTq+B2Cc7tkOg2F0K+w413UYDHRd22GM9E17w2jrXXY+8VsE
         
     | 
| 
       267 
     | 
    
         
            -
                    leuJf53le0ej8NX8R1dzTHP65NFA57LNtzubc7nfuOxcahaNqB5quq17Pg20
         
     | 
| 
       268 
     | 
    
         
            -
                    ED9CQjrO+gTH0brX7IXhLdSuLx1J9xiycynEBlEfdizP7VNSg7qmB0OMTBe/
         
     | 
| 
       269 
     | 
    
         
            -
                    nxBogWu4rko9Evm+TcJA0xyd2qVPuQ90pD/ZH0DpT7ZAGOVL9kcgfMk2AKP8
         
     | 
| 
       270 
     | 
    
         
            -
                    yAEIhB/ZAmGcD9kfQulDdkE42X8cCAH8xxYI43zHIdrAfccWCOP8xv4QSr+x
         
     | 
| 
       271 
     | 
    
         
            -
                    A8LpPuMwCHYHhFH+4gAIwl9sgTDOV+wPofQVOyCc7icOg2C0K+U4H3EYBPQR
         
     | 
| 
       272 
     | 
    
         
            -
                    9yGM9A97Q2j23M837PbGRqYlT8ZdZy3opjtlHRu+W7dfdgbHsKtx/lmp2vch
         
     | 
| 
       273 
     | 
    
         
            -
                    RQqy42uSHSlI1bxXrYVhdn9G3ZmrBn6gDh1FmcXQ49OTN/VvVgbQ9GOSvpRS
         
     | 
| 
       274 
     | 
    
         
            -
                    EgGeIoXenmBOkgfEL1L24UNA1lsSP24eHtOk2Faf+9QMxyG+6kUWda3IIgbO
         
     | 
| 
       275 
     | 
    
         
            -
                    h9uRYYX/2Pi5T81bmGbH8Cz2bT0bs7Aa+7Ze9XnOw9MpgTz0GUYh2BcT++ZU
         
     | 
| 
       276 
     | 
    
         
            -
                    jZD+/aYOK8He/XcHludcmLr7YB/K/ACWZ6eEpw5y18DB6S7vujsgk+P6725Z
         
     | 
| 
       277 
     | 
    
         
            -
                    fHn3Uh8eHSTwaR4HqxGzvWvgsHCLu0Robkf10Jzoo/vvbhlm+/8FAAAA//8D
         
     | 
| 
       278 
     | 
    
         
            -
                    AKpoUboqQAEA
         
     | 
| 
      
 59 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 60 
     | 
    
         
            +
                  string: '{"id":"50fb2e6fbd0286d5550135a2","created_at":"2011-11-29T20:18:15Z","updated_at":"2013-04-30T16:00:04Z","name":"Big
         
     | 
| 
      
 61 
     | 
    
         
            +
                    Green Egg Medium Charcoal Grill Review","branch_name":"master","summary":"This
         
     | 
| 
      
 62 
     | 
    
         
            +
                    super-simple charcoal grill has good performance. ","meta_description":"","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","515efe2d12629bec1d0004ab"],"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":["50fa2ce096ab5860160c6a4b","50fa2ced96ab5860160c6a7f","50fa2cfc96ab5860160c6ac2","50fa2cfd96ab5860160c6ac7"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2011-09-28T15:49:00+00:00","slug":"big-green-egg-medium-charcoal-grill-review.htm","is_template":false,"is_branch":false,"deals":[],"related_articles":[],"pages":[{"id":"517fea84f2a91052ea00191a","name":"Introduction","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/introduction","slug":"introduction","sections":[{"id":"517fea84f2a91052ea001922","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":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea00191b","name":"Design","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/design","slug":"design","sections":[{"id":"517fea84f2a91052ea001923","name":"Product
         
     | 
| 
      
 67 
     | 
    
         
            +
                    Tour","body":"{{section_header}}{{section.name}}{{/section_header}}\nThe Big
         
     | 
| 
      
 68 
     | 
    
         
            +
                    Green Egg Medium is a large, heavy and well constructed charcoal grill.\n\n\n\n{{product.attachments[''Front
         
     | 
| 
      
 69 
     | 
    
         
            +
                    Photo'']}}  \n  \n  \n{{product.attachments[''Side Photo'']}}  \n  \n  \n{{product.attachments[''Lid
         
     | 
| 
      
 70 
     | 
    
         
            +
                    Open Photo'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001924","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Controls
         
     | 
| 
      
 71 
     | 
    
         
            +
                    1 Photo'']}}  \n  \n  \n\n\n{{product.attachments[''Controls 2 Photo'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001925","name":"Main
         
     | 
| 
      
 72 
     | 
    
         
            +
                    Grilling Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Main
         
     | 
| 
      
 73 
     | 
    
         
            +
                    Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001926","name":"Thermometer","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Thermometer
         
     | 
| 
      
 74 
     | 
    
         
            +
                    Photo 1'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea00191c","name":"Performance","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/performance","slug":"performance","sections":[{"id":"517fea84f2a91052ea001927","name":"Heatup
         
     | 
| 
      
 75 
     | 
    
         
            +
                    Time","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
         
     | 
| 
      
 76 
     | 
    
         
            +
                    {{product.model}} was a very quick grill to heat up; we found that it could
         
     | 
| 
      
 77 
     | 
    
         
            +
                    reach our low temperature target of 325°F in just 35 seconds and our
         
     | 
| 
      
 78 
     | 
    
         
            +
                    high temperature target of 625°F in just 36 seconds. We reached these
         
     | 
| 
      
 79 
     | 
    
         
            +
                    two settings by adjusting the air vents on the lid and on the bottom of the
         
     | 
| 
      
 80 
     | 
    
         
            +
                    grill body: the low fire setting by half opening the vent, and the high fire
         
     | 
| 
      
 81 
     | 
    
         
            +
                    setting by completely opening it.\n\n\n\n{{article.attachments[''table-b297567d41f58254691baba562ae65d34cb1c3f0.csv'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001928","name":"Low
         
     | 
| 
      
 82 
     | 
    
         
            +
                    Fire Cooking Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nRunning
         
     | 
| 
      
 83 
     | 
    
         
            +
                    at our low temperature target of about 325°F, we found that the grill
         
     | 
| 
      
 84 
     | 
    
         
            +
                    would take just over 11 minutes to cook our test patties, which is fairly
         
     | 
| 
      
 85 
     | 
    
         
            +
                    fast for a  grill of this type. \n\n\n\n\n\n{{comparison_bars title=\"Low
         
     | 
| 
      
 86 
     | 
    
         
            +
                    Fire Performance\", attribute=\"Low Temp Performance Rating\", xLabel=\"Cooking
         
     | 
| 
      
 87 
     | 
    
         
            +
                    Performance Score\"}}\n\n","notes":""},{"id":"517fea84f2a91052ea001929","name":"Low
         
     | 
| 
      
 88 
     | 
    
         
            +
                    Temperature Uniformity","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
         
     | 
| 
      
 89 
     | 
    
         
            +
                    also look at the consistency of the temperature across the cooking surface,
         
     | 
| 
      
 90 
     | 
    
         
            +
                    and the {{product.model}} did well here, producing uniform temperatures across
         
     | 
| 
      
 91 
     | 
    
         
            +
                    the cooking area. We did find that it was a little hotter at one edge, but
         
     | 
| 
      
 92 
     | 
    
         
            +
                    again, that is not unusual for a charcoal grill.\n\n\n\n{{product.attachments[''Low
         
     | 
| 
      
 93 
     | 
    
         
            +
                    Temp Uniformity Image'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea00192a","name":"Low
         
     | 
| 
      
 94 
     | 
    
         
            +
                    Temperature Consistency","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
         
     | 
| 
      
 95 
     | 
    
         
            +
                    temperature also remained consistent over time, with only moderate variations
         
     | 
| 
      
 96 
     | 
    
         
            +
                    in the temperature. This should mean good, even cooking of food\n\n\n\n{{product.attachments[''Low
         
     | 
| 
      
 97 
     | 
    
         
            +
                    Temp Consistency Image'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea00192b","name":"High
         
     | 
| 
      
 98 
     | 
    
         
            +
                    Fire Cooking Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nOpening
         
     | 
| 
      
 99 
     | 
    
         
            +
                    the air vents on the base and lid of the grill increased the temperature,
         
     | 
| 
      
 100 
     | 
    
         
            +
                    and we found equally good performance from this grill cooking food at these
         
     | 
| 
      
 101 
     | 
    
         
            +
                    higher temperatures. Here, the grill was able to cook our test patties in
         
     | 
| 
      
 102 
     | 
    
         
            +
                    just over 8 minutes.  \n\n\n\n\n\n{{comparison_bars title=\"High Fire Cooking
         
     | 
| 
      
 103 
     | 
    
         
            +
                    Performance\", attribute=\"High Temp Performance Rating\", xLabel=\"Cooking
         
     | 
| 
      
 104 
     | 
    
         
            +
                    Performance Score\"}}\n\n","notes":""},{"id":"517fea84f2a91052ea00192c","name":"High
         
     | 
| 
      
 105 
     | 
    
         
            +
                    Temperature Uniformity","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
         
     | 
| 
      
 106 
     | 
    
         
            +
                    did find that the temperature across the cooking area was a lot less consistent
         
     | 
| 
      
 107 
     | 
    
         
            +
                    here, though; the extra flow of air from the open vents seems to create more
         
     | 
| 
      
 108 
     | 
    
         
            +
                    hot zones, especially in the center of the cooking grate, which was nearly
         
     | 
| 
      
 109 
     | 
    
         
            +
                    200°F hotter than close to the edges.\n\n\n\n{{product.attachments[''High
         
     | 
| 
      
 110 
     | 
    
         
            +
                    Temp Uniformity Image'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea00192d","name":"High
         
     | 
| 
      
 111 
     | 
    
         
            +
                    Temperature Consistency","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
         
     | 
| 
      
 112 
     | 
    
         
            +
                    temperature also varied over time, with the temperature rising and falling
         
     | 
| 
      
 113 
     | 
    
         
            +
                    on the cooking grate somewhat more often as the fire rose and fell than we
         
     | 
| 
      
 114 
     | 
    
         
            +
                    like to see. \n\n\n\n{{product.attachments[''High Temp Consistency Image'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea00192e","name":"Case
         
     | 
| 
      
 115 
     | 
    
         
            +
                    & Handle Temperature","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nAlthough
         
     | 
| 
      
 116 
     | 
    
         
            +
                    the grill body got rather hot (rising to a toasty 300°F), the handle
         
     | 
| 
      
 117 
     | 
    
         
            +
                    that you use to lift the lid remained cool; even after running the grill for
         
     | 
| 
      
 118 
     | 
    
         
            +
                    a full hour, this wooden handle didn''t go much above 80°F, which means
         
     | 
| 
      
 119 
     | 
    
         
            +
                    that it is safe and comfortable to use. \n\n\n\n  \n   \nThe image below was
         
     | 
| 
      
 120 
     | 
    
         
            +
                    taken with an infrared camera to show the heat levels of the lid. The numbers
         
     | 
| 
      
 121 
     | 
    
         
            +
                    at the bottom indicate the temperature scale.   \n{{product.attachments[''IR
         
     | 
| 
      
 122 
     | 
    
         
            +
                    Photo'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea00192f","name":"Output
         
     | 
| 
      
 123 
     | 
    
         
            +
                    & Fuel Life","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
         
     | 
| 
      
 124 
     | 
    
         
            +
                    don’t measure the BTU/Hr output of charcoal grills, but we did find
         
     | 
| 
      
 125 
     | 
    
         
            +
                    that this grill can produce a lot of heat with a large load of charcoal onboard.
         
     | 
| 
      
 126 
     | 
    
         
            +
                    It also retains heat well: the body of the grill remains very warm for several
         
     | 
| 
      
 127 
     | 
    
         
            +
                    hours after the charcoal has run out.\n\n\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea00191d","name":"Features
         
     | 
| 
      
 128 
     | 
    
         
            +
                    & Usability","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/features-and-usability","slug":"features-and-usability","sections":[{"id":"517fea84f2a91052ea001930","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
         
     | 
| 
      
 129 
     | 
    
         
            +
                    controls on this grill are basic, to put it mildly: you control the temperature
         
     | 
| 
      
 130 
     | 
    
         
            +
                    by opening and closing vents on the base of the grill body and the lid. Open
         
     | 
| 
      
 131 
     | 
    
         
            +
                    the vents, and more air rushes through to the charcoal fuel, leading to a
         
     | 
| 
      
 132 
     | 
    
         
            +
                    higher temperature. \n\n\n\n{{product.attachments[''Controls 1 Photo'']}}  \n  \n  \n\n\n{{product.attachments[''Controls
         
     | 
| 
      
 133 
     | 
    
         
            +
                    2 Photo'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001931","name":"Fuel","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
         
     | 
| 
      
 134 
     | 
    
         
            +
                    {{product.model}} uses charcoal, which fits into the space below the grate.\n\n\n\n{{product.attachments[''Fuel
         
     | 
| 
      
 135 
     | 
    
         
            +
                    Photo 1'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001932","name":"Lighter/Ignition","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThere
         
     | 
| 
      
 136 
     | 
    
         
            +
                    is no lighter on this grill, so you have to ignite the charcoal yourself.\n\n\n\n","notes":""},{"id":"517fea84f2a91052ea001933","name":"Cooking
         
     | 
| 
      
 137 
     | 
    
         
            +
                    Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
         
     | 
| 
      
 138 
     | 
    
         
            +
                    cooking area is rather small: just 177 square inches. In our tests, we were
         
     | 
| 
      
 139 
     | 
    
         
            +
                    only able to fit two of our test patties onto this space, so that might be
         
     | 
| 
      
 140 
     | 
    
         
            +
                    a big problem for large families or party use. If you want to cook a lot of
         
     | 
| 
      
 141 
     | 
    
         
            +
                    food at once, you should look at a gas grill with a larger cooking area, or
         
     | 
| 
      
 142 
     | 
    
         
            +
                    one of the larger Big Green Egg models that offers more space to cook.\n\n\n\n{{product.attachments[''Main
         
     | 
| 
      
 143 
     | 
    
         
            +
                    Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001934","name":"Warming
         
     | 
| 
      
 144 
     | 
    
         
            +
                    Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThere
         
     | 
| 
      
 145 
     | 
    
         
            +
                    is no warming area on this grill.\n\n\n\n{{product.attachments[''Warming Area
         
     | 
| 
      
 146 
     | 
    
         
            +
                    Photo 1'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001935","name":"Other
         
     | 
| 
      
 147 
     | 
    
         
            +
                    Areas","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nNo
         
     | 
| 
      
 148 
     | 
    
         
            +
                    side areas or other places to put food before or after cooking are included.
         
     | 
| 
      
 149 
     | 
    
         
            +
                    Big Green Egg does offer a number of shelves that clip onto the side of the
         
     | 
| 
      
 150 
     | 
    
         
            +
                    grill, as well as a range of wooden tables designed to hold the Big Green
         
     | 
| 
      
 151 
     | 
    
         
            +
                    Egg medium grill. These do cost extra, though. \n\n\n\n{{product.attachments[''Side
         
     | 
| 
      
 152 
     | 
    
         
            +
                    Area Photo 1'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001936","name":"Cleanup","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nCleaning
         
     | 
| 
      
 153 
     | 
    
         
            +
                    up the grill is easy; the cooking grate lifts out for easy cleaning, although
         
     | 
| 
      
 154 
     | 
    
         
            +
                    the cast iron is not suitable for dishwashing. You have to scoop out the ash
         
     | 
| 
      
 155 
     | 
    
         
            +
                    from the charcoal, as there is no way to remove it from underneath. \n\n\n\n{{product.attachments[''Grease
         
     | 
| 
      
 156 
     | 
    
         
            +
                    Trap Photo 1'']}}  \n  \n  \n{{product.attachments[''Cleanup Photo 1'']}}{{product.attachments[''Cleanup
         
     | 
| 
      
 157 
     | 
    
         
            +
                    Photo 2'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea00191e","name":"Weber  Performer
         
     | 
| 
      
 158 
     | 
    
         
            +
                    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":"517fea84f2a91052ea001937","name":"Comparison
         
     | 
| 
      
 159 
     | 
    
         
            +
                    Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nBoth
         
     | 
| 
      
 160 
     | 
    
         
            +
                    of these grills use charcoal fuel, but the Weber offers the relative luxury
         
     | 
| 
      
 161 
     | 
    
         
            +
                    of a gas-assisted starter, and has a much larger cooking area. The Big Green
         
     | 
| 
      
 162 
     | 
    
         
            +
                    Egg is more consistent, though, and has a simple, straightforward design that
         
     | 
| 
      
 163 
     | 
    
         
            +
                    will appeal to charcoal purists. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea00191f","name":"Primo
         
     | 
| 
      
 164 
     | 
    
         
            +
                    Kamado Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/primo-kamado-comparison","slug":"primo-kamado-comparison","sections":[{"id":"517fea84f2a91052ea001938","name":"Comparison
         
     | 
| 
      
 165 
     | 
    
         
            +
                    Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nBoth
         
     | 
| 
      
 166 
     | 
    
         
            +
                    of these grills offer the same simple, straightforward design to grilling,
         
     | 
| 
      
 167 
     | 
    
         
            +
                    using charcoal fuel and not offering any bells or whistles. The Big Green
         
     | 
| 
      
 168 
     | 
    
         
            +
                    Egg feels better constructed, though, and more likely to stand up to heavy
         
     | 
| 
      
 169 
     | 
    
         
            +
                    use and weather. It is also better finished, with some nice touches like a
         
     | 
| 
      
 170 
     | 
    
         
            +
                    wooden handle that stays cooler and a better seal around the lid that keeps
         
     | 
| 
      
 171 
     | 
    
         
            +
                    the heat in. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea001920","name":"Kenmore
         
     | 
| 
      
 172 
     | 
    
         
            +
                    S3218AR Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/kenmore-s3218ar-comparison","slug":"kenmore-s3218ar-comparison","sections":[{"id":"517fea84f2a91052ea001939","name":"Comparison
         
     | 
| 
      
 173 
     | 
    
         
            +
                    Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nThe
         
     | 
| 
      
 174 
     | 
    
         
            +
                    eternal battle of the grill purists is here: charcoal vs gas. The charcoal
         
     | 
| 
      
 175 
     | 
    
         
            +
                    fuel of the Big Green Egg produces a more natural heat, but takes longer to
         
     | 
| 
      
 176 
     | 
    
         
            +
                    get running when you include the time to load and prep the grill with fuel).
         
     | 
| 
      
 177 
     | 
    
         
            +
                    The Kenmore also has more features, with a side burner and a more controllable
         
     | 
| 
      
 178 
     | 
    
         
            +
                    heat level. But in the end, the choice comes down to which you prefer to cook
         
     | 
| 
      
 179 
     | 
    
         
            +
                    with: charcoal or gas. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea001921","name":"Conclusion","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/conclusion","slug":"conclusion","sections":[{"id":"517fea84f2a91052ea00193a","name":"Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
         
     | 
| 
      
 180 
     | 
    
         
            +
                    found good performance from the Big Green Egg, with short cooking times and
         
     | 
| 
      
 181 
     | 
    
         
            +
                    uniform temperatures. We did find that the temperatures did vary somewhat
         
     | 
| 
      
 182 
     | 
    
         
            +
                    with the vents open and the grill running at maximum, but this didn''t seem
         
     | 
| 
      
 183 
     | 
    
         
            +
                    to be a problem when we cooked our test dishes. Our only major issue here
         
     | 
| 
      
 184 
     | 
    
         
            +
                    was the fact that the cooking area is very small; we were only able to get
         
     | 
| 
      
 185 
     | 
    
         
            +
                    two test patties onto it at a time. \n\n\n\n","notes":""},{"id":"517fea84f2a91052ea00193b","name":"Usability","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nAt
         
     | 
| 
      
 186 
     | 
    
         
            +
                    the risk of throwing out a cliche, the {{product.brand.name}} is so simple,
         
     | 
| 
      
 187 
     | 
    
         
            +
                    even a caveman could use it. Using the grill just involves loading it with
         
     | 
| 
      
 188 
     | 
    
         
            +
                    charcoal, firing it up and throwing the food onto the grill. As long as the
         
     | 
| 
      
 189 
     | 
    
         
            +
                    caveman hasn''t grown accustomed to things like lighters, side burners and
         
     | 
| 
      
 190 
     | 
    
         
            +
                    lights, though: this grill eschews these for a more straightforward design.
         
     | 
| 
      
 191 
     | 
    
         
            +
                    \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-05-21T01:03:02Z","name":"Weber  Performer
         
     | 
| 
      
 192 
     | 
    
         
            +
                    Charcoal Grill","slug":"weber-performer-charcoal-grill","_type":"Home::Grills::Charcoal","types":["Natural
         
     | 
| 
      
 193 
     | 
    
         
            +
                    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
         
     | 
| 
      
 194 
     | 
    
         
            +
                    Grill","resource_uri":"/products/weber-performer-charcoal-grill","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":7.44,"ranking":{"total":5,"rank":3,"percentile":40},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2011
         
     | 
| 
      
 195 
     | 
    
         
            +
                    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-07-03T20:16:36Z","name":"Grills","url":"grills.reviewed.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-05-13T16:38:12Z","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":"519a5485b4623863540005c1","name":"brand_name","value":"Performer","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c2","name":"manufacturer_name","value":"Weber","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c3","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c4","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c5","name":"manufacturer_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c6","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c7","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c8","name":"Fuel","value":["Natural
         
     | 
| 
      
 196 
     | 
    
         
            +
                    Gas"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
         
     | 
| 
      
 197 
     | 
    
         
            +
                    Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
         
     | 
| 
      
 198 
     | 
    
         
            +
                    (adaptor sold separately)"]},{"id":"519a5485b4623863540005c9","name":"Install
         
     | 
| 
      
 199 
     | 
    
         
            +
                    Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a5485b4623863540005ca","name":"Burners","value":"1","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a5485b4623863540005cb","name":"Total
         
     | 
| 
      
 200 
     | 
    
         
            +
                    cooking area","value":"363","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a5485b4623863540005cc","name":"Height","value":"40","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a5485b4623863540005cd","name":"Width","value":"50.25","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a5485b4623863540005ce","name":"Depth","value":"28.5","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a5485b4623863540005cf","name":"Finish
         
     | 
| 
      
 201 
     | 
    
         
            +
                    or Color","value":"Black","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"519a5485b4623863540005d0","name":"Control
         
     | 
| 
      
 202 
     | 
    
         
            +
                    Dials","value":"0","value_units":"","value_type":"Integer","order":0,"options":["Electricity"]},{"id":"519a5485b4623863540005d1","name":"Ignition
         
     | 
| 
      
 203 
     | 
    
         
            +
                    type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
         
     | 
| 
      
 204 
     | 
    
         
            +
                    Electronic","Auto Electronic","Manual","Other"]},{"id":"519a5485b4623863540005d2","name":"Side
         
     | 
| 
      
 205 
     | 
    
         
            +
                    Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"519a5485b4623863540005d3","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","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s200x75_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","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s630x235_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":"grills.reviewed.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/51f6d71a40a0ce6cab000001","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6d71a40a0ce6cab000001"}}},{"id":"50fa2ced96ab5860160c6a7f","created_at":"2011-10-05T17:14:10Z","updated_at":"2013-05-23T15:29:42Z","name":"Kenmore
         
     | 
| 
      
 206 
     | 
    
         
            +
                    S3218AR","slug":"kenmore-s3218ar","_type":"Home::Grills::Gas","types":["Propane"],"msrp":null,"article_ids":["50fb2e47bd0286d55501334a","50fb2e4cbd0286d55501338d","50fb2e50bd0286d5550133d0","50fb2e63bd0286d5550134dd","50fb2e6fbd0286d5550135a2","50fc4348bd0286d5550b0efb"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":null,"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":9.37,"ranking":{"total":15,"rank":5,"percentile":67},"rubric":{"id":"50f9ed93bd0286638e0003b4","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2011
         
     | 
| 
      
 207 
     | 
    
         
            +
                    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-07-03T20:16:36Z","name":"Grills","url":"grills.reviewed.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-05-13T16:38:12Z","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":"517edd730bf4957d16002055","name":"brand_name","value":"(Kenmore)","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d16002056","name":"manufacturer_name","value":"Kenmore","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d16002057","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d16002058","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d16002059","name":"manufacturer_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d1600205a","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d1600205b","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d1600205c","name":"Fuel","value":["LP
         
     | 
| 
      
 208 
     | 
    
         
            +
                    Gas"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
         
     | 
| 
      
 209 
     | 
    
         
            +
                    Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
         
     | 
| 
      
 210 
     | 
    
         
            +
                    (adaptor sold separately)"]},{"id":"517edd730bf4957d1600205d","name":"Install
         
     | 
| 
      
 211 
     | 
    
         
            +
                    Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d1600205e","name":"Burners","value":"5","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d1600205f","name":"BTU
         
     | 
| 
      
 212 
     | 
    
         
            +
                    Output (total)","value":"85000","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002060","name":"Total
         
     | 
| 
      
 213 
     | 
    
         
            +
                    cooking area","value":"784","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002061","name":"Primary
         
     | 
| 
      
 214 
     | 
    
         
            +
                    cooking area","value":"400","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002062","name":"Warming
         
     | 
| 
      
 215 
     | 
    
         
            +
                    rack area","value":"290","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002063","name":"Height","value":"60.8","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002064","name":"Width","value":"48.6","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002065","name":"Depth","value":"24.6","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002066","name":"Finish
         
     | 
| 
      
 216 
     | 
    
         
            +
                    or Color","value":"Red / Stainless","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"517edd730bf4957d16002067","name":"Control
         
     | 
| 
      
 217 
     | 
    
         
            +
                    Dials","value":"7","value_units":"","value_type":"Integer","order":0,"options":["Electricity"]},{"id":"517edd730bf4957d16002068","name":"Ignition
         
     | 
| 
      
 218 
     | 
    
         
            +
                    type","value":"Auto Electronic","value_units":"","value_type":"String","order":0,"options":["Push-button
         
     | 
| 
      
 219 
     | 
    
         
            +
                    Electronic","Auto Electronic","Manual","Other"]},{"id":"517edd730bf4957d16002069","name":"Side
         
     | 
| 
      
 220 
     | 
    
         
            +
                    Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"517edd730bf4957d1600206a","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","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s200x75_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","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s630x235_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":"refrigerators.reviewed.com"},{"code":"WDI","name":"Laundry","url":"laundry.reviewed.com"},{"code":"VCI","name":"Vacuums","url":"vacuums.reviewed.com"},{"code":"DWI","name":"Dishwashers","url":"dishwashers.reviewed.com"},{"code":"GRI","name":"Grills","url":"grills.reviewed.com"},{"code":"OVI","name":"Ovens","url":"ovens.reviewed.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/51f6d71b40a0ce6cab000002","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6d71b40a0ce6cab000002"}}},{"id":"50fa2cfc96ab5860160c6ac2","created_at":"2011-10-12T18:55:14Z","updated_at":"2013-05-20T16:00:47Z","name":"Big
         
     | 
| 
      
 221 
     | 
    
         
            +
                    Green Egg Medium","slug":"big-green-egg-medium","_type":"Home::Grills::Charcoal","types":["Charcoal"],"msrp":649.0,"article_ids":["50fb2e67bd0286d55501351e","50fb2e6bbd0286d555013560","50fb2e6fbd0286d5550135a2","50fc4345bd0286d5550b0eeb"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":null,"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":10.0,"ranking":{"total":5,"rank":1,"percentile":80},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2011
         
     | 
| 
      
 222 
     | 
    
         
            +
                    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-07-03T20:16:36Z","name":"Grills","url":"grills.reviewed.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-05-13T16:38:12Z","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":"519a48afd64df212ae0003f2","name":"brand_name","value":"(Big
         
     | 
| 
      
 223 
     | 
    
         
            +
                    Green Egg)","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f3","name":"manufacturer_name","value":"Big
         
     | 
| 
      
 224 
     | 
    
         
            +
                    Green Egg","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f4","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f5","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f6","name":"manufacturer_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f7","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f8","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f9","name":"Fuel","value":["Charcoal"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
         
     | 
| 
      
 225 
     | 
    
         
            +
                    Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
         
     | 
| 
      
 226 
     | 
    
         
            +
                    (adaptor sold separately)"]},{"id":"519a48afd64df212ae0003fa","name":"Install
         
     | 
| 
      
 227 
     | 
    
         
            +
                    Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a48afd64df212ae0003fb","name":"Total
         
     | 
| 
      
 228 
     | 
    
         
            +
                    cooking area","value":"177","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a48afd64df212ae0003fc","name":"Finish
         
     | 
| 
      
 229 
     | 
    
         
            +
                    or Color","value":"Green","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"519a48afd64df212ae0003fd","name":"Ignition
         
     | 
| 
      
 230 
     | 
    
         
            +
                    type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
         
     | 
| 
      
 231 
     | 
    
         
            +
                    Electronic","Auto Electronic","Manual","Other"]},{"id":"519a48afd64df212ae0003fe","name":"Side
         
     | 
| 
      
 232 
     | 
    
         
            +
                    Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"519a48afd64df212ae0003ff","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"519a48afd64df212ae000400","name":"Original
         
     | 
| 
      
 233 
     | 
    
         
            +
                    Price","value":"649","value_units":"","value_type":"Decimal","order":0,"options":null}],"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","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s200x75_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","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s630x235_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
         
     | 
| 
      
 234 
     | 
    
         
            +
                    Green Egg","slug":"big-green-egg","url":null,"resource_uri":"/products?brand=big-green-egg","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grills.reviewed.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/51f6d71b40a0ce6cab000003","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6d71b40a0ce6cab000003"}}},{"id":"50fa2cfd96ab5860160c6ac7","created_at":"2011-10-12T19:32:52Z","updated_at":"2013-05-21T00:00:13Z","name":"Primo
         
     | 
| 
      
 235 
     | 
    
         
            +
                    Kamado","slug":"primo-kamado","_type":"Home::Grills::Charcoal","types":["Charcoal"],"msrp":829.99,"article_ids":["50fb2e4cbd0286d55501338d","50fb2e5ebd0286d55501349a","50fb2e6fbd0286d5550135a2","50fc4345bd0286d5550b0eeb"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":null,"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":5.94,"ranking":{"total":5,"rank":4,"percentile":20},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2011
         
     | 
| 
      
 236 
     | 
    
         
            +
                    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-07-03T20:16:36Z","name":"Grills","url":"grills.reviewed.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-05-13T16:38:12Z","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":"517ede209e2cf26196001f14","name":"brand_name","value":"(Primo)","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f15","name":"manufacturer_name","value":"Primo","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f16","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f17","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f18","name":"manufacturer_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f19","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f1a","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f1b","name":"Fuel","value":["Charcoal"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
         
     | 
| 
      
 237 
     | 
    
         
            +
                    Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
         
     | 
| 
      
 238 
     | 
    
         
            +
                    (adaptor sold separately)"]},{"id":"517ede209e2cf26196001f1c","name":"Install
         
     | 
| 
      
 239 
     | 
    
         
            +
                    Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517ede209e2cf26196001f1d","name":"Total
         
     | 
| 
      
 240 
     | 
    
         
            +
                    cooking area","value":"280","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517ede209e2cf26196001f1e","name":"Height","value":"429.75","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517ede209e2cf26196001f1f","name":"Width","value":"21.5","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517ede209e2cf26196001f20","name":"Depth","value":"21.5","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517ede209e2cf26196001f21","name":"Finish
         
     | 
| 
      
 241 
     | 
    
         
            +
                    or Color","value":"Black Ceramic","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"517ede209e2cf26196001f22","name":"Ignition
         
     | 
| 
      
 242 
     | 
    
         
            +
                    type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
         
     | 
| 
      
 243 
     | 
    
         
            +
                    Electronic","Auto Electronic","Manual","Other"]},{"id":"517ede209e2cf26196001f23","name":"Side
         
     | 
| 
      
 244 
     | 
    
         
            +
                    Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"517ede209e2cf26196001f24","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"517ede209e2cf26196001f25","name":"Original
         
     | 
| 
      
 245 
     | 
    
         
            +
                    Price","value":"829.99","value_units":"","value_type":"Decimal","order":0,"options":null}],"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","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s200x75_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","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s630x235_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":"grills.reviewed.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/51f6d71b40a0ce6cab000004","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6d71b40a0ce6cab000004"}}}],"authors":[{"id":"50fc4e94bd0286d5550b4bf8","created_at":"2013-01-20T20:07:48Z","updated_at":"2013-02-13T15:13:52Z","name":"Richard
         
     | 
| 
      
 246 
     | 
    
         
            +
                    Baguley","title":"Editor","short_bio":"Richard Baguley is a valued contributor
         
     | 
| 
      
 247 
     | 
    
         
            +
                    to the Reviewed.com family of sites.","long_bio":"Richard Baguley is a valued
         
     | 
| 
      
 248 
     | 
    
         
            +
                    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","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s200x75_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","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s630x235_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","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s200x75_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","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s630x235_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","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s200x75_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","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s630x235_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","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s200x75_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","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s630x235_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","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s200x75_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","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s630x235_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","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s200x75_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","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s630x235_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","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s200x75_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","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s630x235_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-04-09T14:23:59Z","name":"BGE-medium-web2.jpg","type":"file","tags":["home-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","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s200x75_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","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s630x235_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":"","alt_text":"","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"}}},{"id":"515efe2d12629bec1d0004ab","created_at":"2013-04-05T16:39:09Z","updated_at":"2013-04-05T16:39:39Z","name":"medium-hero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s50x50_medium-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s150x150_medium-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s200x75_medium-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s250x250_medium-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s300x150_medium-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s300x112_medium-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s500x500_medium-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s600x400_medium-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s600x600_medium-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s630x235_medium-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s940x400_medium-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s940x350_medium-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s940x110_medium-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/medium-hero.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/medium-hero.jpg","file_size":124864},"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/515efe2d12629bec1d0004ab","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/515efe2d12629bec1d0004ab"}}}],"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-07-03T20:16:36Z","name":"Grills","url":"grills.reviewed.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-05-13T16:38:12Z","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"}}}'
         
     | 
| 
       279 
249 
     | 
    
         
             
                http_version: 
         
     | 
| 
       280 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 250 
     | 
    
         
            +
              recorded_at: Mon, 29 Jul 2013 21:23:58 GMT
         
     | 
| 
       281 
251 
     | 
    
         
             
            recorded_with: VCR 2.4.0
         
     |