reviewed 0.4.6 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. checksums.yaml +7 -0
  2. data/.ruby-version +1 -1
  3. data/lib/reviewed/article.rb +0 -1
  4. data/lib/reviewed/attachable.rb +14 -7
  5. data/lib/reviewed/product.rb +0 -1
  6. data/lib/reviewed/version.rb +1 -1
  7. data/spec/attachable_spec.rb +22 -0
  8. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/assigns_attachments_to_the_correct_class.yml +338 -289
  9. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_has_many_attachments.yml +237 -245
  10. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_have_any_matching_attachments.yml +280 -289
  11. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/finds_attachments_by_tag.yml +281 -301
  12. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/gets_gallery_attachments.yml +340 -324
  13. data/spec/fixtures/vcr/Reviewed_Article/associations/deals/has_many_deals.yml +237 -245
  14. data/spec/fixtures/vcr/Reviewed_Article/associations/pages/has_many_pages.yml +237 -245
  15. data/spec/fixtures/vcr/Reviewed_Article/associations/products/has_many_products.yml +237 -245
  16. data/spec/fixtures/vcr/Reviewed_Article/associations/products/returns_products_of_the_correct_class.yml +237 -245
  17. data/spec/fixtures/vcr/Reviewed_Article/associations/related_articles/has_many_related_articles.yml +237 -245
  18. data/spec/fixtures/vcr/Reviewed_Article/does_not_request_for_an_attachment_if_it_can_be_found_in_attributes.yml +387 -0
  19. data/spec/fixtures/vcr/Reviewed_Article/fetches_all_attachments_when_no_tag_is_asked_for.yml +195 -0
  20. data/spec/fixtures/vcr/Reviewed_Article/fetches_attachments_when_non-existent.yml +137 -0
  21. data/spec/fixtures/vcr/Reviewed_Article/fetches_when_a_tag_is_not_in_pre-loaded_set.yml +75 -0
  22. data/spec/fixtures/vcr/Reviewed_Article/fetches_when_an_tag_is_not_in_pre-loaded_set.yml +75 -0
  23. data/spec/fixtures/vcr/Reviewed_Article/find_page/finds_a_page_with_a_matching_slug.yml +377 -394
  24. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_a_product_of_the_correct_class.yml +471 -487
  25. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_nil_if_does_not_respond_to_products.yml +471 -487
  26. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_the_primary_product.yml +471 -487
  27. data/spec/fixtures/vcr/Reviewed_Article/returns_local_attachments_when_available.yml +137 -0
  28. data/spec/fixtures/vcr/Reviewed_Article/sets_DEFAULT_ATTACHMENTS.yml +75 -0
  29. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/not_set/has_nil_query_params.yml +138 -195
  30. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/set/merges_quest_params.yml +48 -71
  31. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/fetches_the_first_page_by_default.yml +73 -113
  32. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/is_enumerable.yml +73 -113
  33. data/spec/fixtures/vcr/Reviewed_Collection/next_page/fetches_the_next_page_of_results.yml +140 -197
  34. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_if_the_page_number_is_out_of_bounds.yml +73 -113
  35. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_whether_this_is_the_first_or_last_page.yml +73 -113
  36. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_limit_value_max_per_page_.yml +73 -113
  37. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_number_of_entries_on_the_current_page.yml +73 -113
  38. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_offset.yml +73 -113
  39. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_item_count.yml +73 -113
  40. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_number_of_pages.yml +73 -113
  41. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/fetches_the_previous_page_of_results.yml +210 -307
  42. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/returns_nil_if_there_is_no_previous_page.yml +73 -113
  43. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/does_not_have_any_matching_attachments.yml +98 -125
  44. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/matches_attachments_by_tag_properly.yml +98 -136
  45. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/no_longer_has_many_attachments.yml +55 -81
  46. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_by_tag.yml +98 -136
  47. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_of_the_correct_class.yml +98 -125
  48. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/has_many_manufacturer_specs.yml +55 -81
  49. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/returns_attachments_of_the_correct_class.yml +55 -81
  50. data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_other_supported_options.yml +49 -67
  51. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_a_collection.yml +138 -195
  52. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_an_empty_set_if_no_matching_data_was_found.yml +47 -51
  53. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_the_appropriate_page_of_results.yml +105 -207
  54. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_a_collection_object.yml +138 -195
  55. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_objects_of_the_correct_class.yml +138 -195
  56. data/spec/fixtures/vcr/Reviewed_Request/object_from_response/returns_an_object_of_the_correct_class.yml +237 -245
  57. data/spec/spec_helper.rb +1 -1
  58. metadata +45 -55
@@ -1,521 +1,505 @@
1
- ---
2
- http_interactions:
3
- - request:
1
+ ---
2
+ http_interactions:
3
+ - request:
4
4
  method: get
5
5
  uri: https://the-guide-staging.herokuapp.com/api/v1/articles/big-green-egg-medium-charcoal-grill-review?with_attachments=true
6
- body:
6
+ body:
7
7
  encoding: US-ASCII
8
- string: ""
9
- headers:
10
- X-Reviewed-Authorization:
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.7
12
+ X-Reviewed-Authorization:
11
13
  - 38e397252ec670ec441733a95204f141
12
- Accept-Encoding:
14
+ Accept-Encoding:
13
15
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
- Accept:
15
- - "*/*"
16
- User-Agent:
17
- - Ruby
18
- response:
19
- status:
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
20
  code: 200
21
21
  message: OK
22
- headers:
23
- Access-Control-Allow-Credentials:
24
- - "true"
25
- Access-Control-Allow-Headers:
26
- - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization, x-skip-cache, Content-Type
27
- Access-Control-Allow-Methods:
22
+ headers:
23
+ Access-Control-Allow-Credentials:
24
+ - 'true'
25
+ Access-Control-Allow-Headers:
26
+ - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization,
27
+ x-skip-cache, Content-Type
28
+ Access-Control-Allow-Methods:
28
29
  - OPTIONS, GET, POST, PUT, DELETE
29
- Access-Control-Allow-Origin:
30
- - "*"
31
- Access-Control-Max-Age:
32
- - "1000"
33
- Cache-Control:
30
+ Access-Control-Allow-Origin:
31
+ - '*'
32
+ Access-Control-Max-Age:
33
+ - '1000'
34
+ Cache-Control:
34
35
  - no-cache, no-store
35
- Content-Encoding:
36
- - gzip
37
- Content-Type:
36
+ Content-Type:
38
37
  - application/json; charset=utf-8
39
- Date:
40
- - Sat, 27 Apr 2013 01:45:51 GMT
41
- Status:
38
+ Date:
39
+ - Thu, 27 Jun 2013 15:41:44 GMT
40
+ Etag:
41
+ - '"e0aa021e21dddbd6d8cecec71e9cf564"'
42
+ Status:
42
43
  - 200 OK
43
- Strict-Transport-Security:
44
+ Strict-Transport-Security:
44
45
  - max-age=31536000
45
- Vary:
46
+ Vary:
46
47
  - Accept-Encoding
47
- X-Request-Id:
48
- - e2e1f011971b1c5fa31878cdde4f1869
49
- X-Runtime:
50
- - "1.045670"
51
- X-Ua-Compatible:
48
+ X-Request-Id:
49
+ - 466df5d9645b1bc4e3f9527ae844b0e7
50
+ X-Runtime:
51
+ - '0.020183'
52
+ X-Ua-Compatible:
52
53
  - IE=Edge,chrome=1
53
- Transfer-Encoding:
54
+ Transfer-Encoding:
54
55
  - chunked
55
- Connection:
56
+ Connection:
56
57
  - keep-alive
57
- body:
58
- encoding: ASCII-8BIT
59
- string: !binary |
60
- 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
- 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
- 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
- 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
- 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
- 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
- 6qVRRu+iIJ3M/wVrQm17Fjh8TUyXqvgf3Zj8fDUhebaIk7Jl6Jt0Zkqr55le
67
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- DE1WEawT24wPIAAEdiNLclqcRlvh4wePJIsp7MeT+Pzx41V1I2vGjnjlRn7F
79
- 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
- 3NSb/LQu/lvuaHmcpP/606sEJqu8XcRZ/KefYZ+Vn9bFvy13fB8FtNcN30aB
81
- 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
- nTmgOcqXoAznnvvuiHwiinbEVDy1nMqPBJT8QpOQxxoCXy/hg2FMVjG4kvTs
83
- aikNtRf85SynZ0oGqjw2TmM+N5UOhQ2tfdnRkHp2ifMbmD4cUrfRip5kw6on
84
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- bNqSwnU5SyJ2NM7vF1+wG+mvWUKUEM9zPLxBMIXAUObuCDFNKV3xA5m5+aD5
102
- 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
- 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
- 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
- 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
- Av8DbueTYmxl93NuLBccIlPZpzhXci7DyyjMtmGMdMbGyy/4UUhCFPxEONol
107
- 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
- lPBQJiHfcLDIMExWWHeA3LTVYDtz8Oxw1ZM7VHnYcdxWsSkie/DTRFFu/odn
109
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 4RgtgsFlt+RrmOgafMrDW/RXlppUbhOykTepA1FDbIZ8V6eW+jFCMKsrduGr
130
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- CuD7+DECzZnBhJNLMmTqw4fqzvBnZcjsjK+17MWZGTI7OPQWHBfdDKm4fAmG
192
- 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
- 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
- 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
- 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
- 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
- JraUZ3jUsYkTqIZvmppJNN0IfNtXLV8LDNVwrZmm6p5fsKUa0Q5kSXXHULCk
198
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- j0ZBazIUp6Cg7fY7UtCGUNDI4PHbe96hoIV+lYLmN5NgNXWq6beaO7esudZO
206
- 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
- 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
- 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
- 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
- PeEEWCXeWTvHg1negeu6l0pRRyXxy34j753ZmYJEO7s4g6KORSKVnZ1BcQCK
211
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- pojk2QLf+lKJ2Ew6MyWmgmfyF/w2R2zqra7OVWduui3WSBcv79EMwfIoguPI
231
- X4BcKC/Ifb6kmNDMogzL8ZOvgyhjqZEUsGV3XhTvNleiVCEKC1IDBc+5JPJy
232
- TG5msQJrpLwTJgIXRQnJKlo+KXGoMFt0PUGjgtSCc/QsrGvCe5162+mlsR+h
233
- 5/JhQlckWvIwOyQ+9eL4Pf+UPUZZhvH1RBacwhqLzbrZ7Zo8gPOR8Eh2hSmp
234
- ral8fHy8vk/4dS4g7M+bwNQC1w9mbqiqnq7ClruqOpu51A9dU3fo/6Z/Md3P
235
- gr+sMF0t3phwik41fdvrOk5W5BRQWX/PU9Ys9Odor0Hcv99vEfu+RzcHjd7e
236
- sTASLakdT6eOVqU0ea2sCHBJdGNuuHN9LytCbiMMBUu3Tj195li2A8IQWq5u
237
- mfZM84hHLFsn1IZT3PQ9zTdC9dpPH9qSPydN+nTEUyR9jprF0LRQZ4xFWug4
238
- lAMTR51RFomj41AOTC11RlmklgagPD751A+lph+JcmB6qofu8PTUcSgHJrA6
239
- oywSWMejHJDi6oXSPhrlwCRYZ5RFEux4lAPSZL1QGkfr+MBEWi+UmEg7CuXQ
240
- VFtXlEeA656Mq2XAsMkNn96wNN0ZJ1dL5Oljqq7d0zxJqq658+pTDQ1t/NYq
241
- 5lBXl/i2GbiOSlVKXWdmBEFoOsT0jBn1XOrpbqCZlDrOpVzdrniqrm7PWQx0
242
- dbtjrLq6fVEOc3W7o6y6un1RDnN1u6OsurpHoTza1e2Jcuvq9kU5zNXtozuy
243
- q9sX5TBXtzvKqqt7DMrjXd1+KO2jUQ5zdbujrLq6x6A83tXth9I4WseHubr9
244
- UJaubk+UA13dziiPAPfsru45Jze6up28Uf9kVenmzg+7uv75XF2NaMR0QtPU
245
- Hds1NGqGWuCDqNiBZpihbxmOp1JyOVe3G566q9trFoNd3a4Y665uP5RDXd2u
246
- KOuubj+UQ13drijrru4RKAe4ur1QSq5uP5RDXd3uulN1dfuhHOrqdkVZd3X7
247
- oxzi6vZBaR+Ncqir2xVl3dXtj3KIq9sHpXG0jg91dfuglF3dXigHu7odUR4B
248
- 7hNwdc83uerLtizbHH3ddlfzbL6u3+Dr6tU2gXrY121/9WetzZjWHdO6Y1p3
249
- TOuOad0xrTumdce07pjW/SO7uk2e5slc3d3OD7u62vlc3TGtO6Z1x7TumNYd
250
- 07pjWndM645p3TGt+8f2dbVz+rpaB19335ubx7TumNYd07pjWndM645p3TGt
251
- O6Z1x7TumNY93tU9/scrOnV+2NW1x7TumNYd07pjWndM645p3TGtO6Z1x7Tu
252
- mNY9j69rn9PXtRt8XbPahrb8qJnsx7a9mHCnjfB1X/z16yl/4930EWKgvW+T
253
- j5fBFKd30vfJ24blGr7mEUqMmeaZhhNYZuhRnL1vWLphUt8IQ71wa5sBD/Rb
254
- u4Mo/NYWGMMc0+4wCse0BcYwz7M7jMLz3AfjaNeyJwxwLVtgDPMd+wgo9x1b
255
- YAxzDrvDKJzDPTCO9/76wbDbYQxz77rDKNy7PTCO99/6wTDaNWWYg9YPBjpo
256
- zTAGemCdYTSNfqF3zg/CWPGUXM0xzfG184fdqCYv5mRu1G7n/DWu4y/bjr9s
257
- u0+Sxl+2HX/Zdt8v257t1f29BD7JIn85YLW3HewXbtFK2FQ7rNpUog8ev71n
258
- WO3/FwAAAP//AwDRah5yyyYBAA==
259
-
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"id":"50fb2e6fbd0286d5550135a2","created_at":"2011-11-29T20:18:15Z","updated_at":"2013-03-07T22:08:45Z","name":"Big
61
+ Green Egg Medium Charcoal Grill Review","branch_name":"master","summary":"Super-simple
62
+ charcoal grill has good performance. ","meta_description":null,"website_ids":["50e669d7bd028648e0000023"],"author_ids":["50fc4e94bd0286d5550b4bf8"],"tags":[],"classifications":["review"],"publish_on":"2011-11-29T20:17:00+00:00","attachment_ids":["50fb2e71bd0286d5550135b3","50fb2e71bd0286d5550135cb","50fb2e71bd0286d5550135cc","50fb2e72bd0286d5550135d0","50fb2e72bd0286d5550135d1","50fb2e72bd0286d5550135d5","50fb2e72bd0286d5550135d6","50fb2e74bd0286d5550135e4"],"primary_product_id":"50fa2cfc96ab5860160c6ac2","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review.htm","disqus_uri":"Big-Green-Egg-Medium-Charcoal-Grill-Review","product_ids":["50fa2cfc96ab5860160c6ac2","50fa2ce096ab5860160c6a4b","50fa2cfd96ab5860160c6ac7","50fa2ced96ab5860160c6a7f"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2011-10-12T19:31:00+00:00","slug":"big-green-egg-medium-charcoal-grill-review.htm","is_template":false,"is_branch":false,"deals":[],"related_articles":[],"pages":[{"id":"50fb2e70bd0286d5550135a8","name":"Introduction","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/introduction","slug":"introduction","sections":[{"id":"50fb2e70bd0286d5550135a9","name":"Introduction","body":"The
63
+ {{product.name}} is a classic charcoal grill with a simple design: a ceramic
64
+ vessel that holds a load of charcoal. While the design is simple, don''t think
65
+ that it offers generic performance as well. The {{product.name}} will heat
66
+ your food up quick and maintain consistent high-temperature cooking.","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135ab","name":"Design","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/design","slug":"design","sections":[{"id":"50fb2e71bd0286d5550135ad","name":"Product
67
+ Tour","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Front
68
+ Photo'']}} \n \n \n{{product.attachments[''Side Photo'']}} \n \n \n{{product.attachments[''Lid
69
+ Open Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135ae","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Controls
70
+ 1 Photo'']}} \n \n \n\n\n{{product.attachments[''Controls 2 Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135af","name":"Main
71
+ Grilling Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Main
72
+ Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b0","name":"Warming
73
+ Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Warming
74
+ Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b2","name":"Thermometer","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Thermometer
75
+ Photo 1'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135b4","name":"Performance","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/performance","slug":"performance","sections":[{"id":"50fb2e71bd0286d5550135b6","name":"Heatup
76
+ Time","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
77
+ {{product.model}} was a very quick grill to heat up; we found that it could
78
+ reach our low temperature target of 325°F in just 35 seconds and our
79
+ high temperature target of 625°F in just 36 seconds. We reached these
80
+ two settings by adjusting the air vents on the lid and on the bottom of the
81
+ grill body: the low fire setting by half opening the vent, and the high fire
82
+ setting by completely opening it.\n\n\n\n{{article.attachments[''table-b297567d41f58254691baba562ae65d34cb1c3f0.csv'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b7","name":"Low
83
+ Fire Cooking Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nRunning
84
+ at our low temperature target of about 325°F, we found that the grill
85
+ would take just over 11 minutes to cook our test patties, which is fairly
86
+ fast for a grill of this type. \n\n\n\n\n\n{{comparison_bars title=\"Low
87
+ Fire Performance\", attribute=\"Low Temp Performance Rating\", xLabel=\"Cooking
88
+ Performance Score\"}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b8","name":"Low
89
+ Temperature Uniformity","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
90
+ also look at the consistency of the temperature across the cooking surface,
91
+ and the {{product.model}} did well here, producing uniform temperatures across
92
+ the cooking area. We did find that it was a little hotter at one edge, but
93
+ again, that is not unusual for a charcoal grill.\n\n\n\n{{product.attachments[''Low
94
+ Temp Uniformity Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b9","name":"Low
95
+ Temperature Consistency","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
96
+ temperature also remained consistent over time, with only moderate variations
97
+ in the temperature. This should mean good, even cooking of food\n\n\n\n{{product.attachments[''Low
98
+ Temp Consistency Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135ba","name":"High
99
+ Fire Cooking Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nOpening
100
+ the air vents on the base and lid of the grill increased the temperature,
101
+ and we found equally good performance from this grill cooking food at these
102
+ higher temperatures. Here, the grill was able to cook our test patties in
103
+ just over 8 minutes. \n\n\n\n\n\n{{comparison_bars title=\"High Fire Cooking
104
+ Performance\", attribute=\"High Temp Performance Rating\", xLabel=\"Cooking
105
+ Performance Score\"}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135bb","name":"High
106
+ Temperature Uniformity","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
107
+ did find that the temperature across the cooking area was a lot less consistent
108
+ here, though; the extra flow of air from the open vents seems to create more
109
+ hot zones, especially in the center of the cooking grate, which was nearly
110
+ 200°F hotter than close to the edges.\n\n\n\n{{product.attachments[''High
111
+ Temp Uniformity Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135bc","name":"High
112
+ Temperature Consistency","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
113
+ temperature also varied over time, with the temperature rising and falling
114
+ on the cooking grate somewhat more often as the fire rose and fell than we
115
+ like to see. \n\n\n\n{{product.attachments[''High Temp Consistency Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135be","name":"Case
116
+ & Handle Temperature","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nAlthough
117
+ the grill body got rather hot (rising to a toasty 300°F), the handle
118
+ that you use to lift the lid remained cool; even after running the grill for
119
+ a full hour, this wooden handle didn''t go much above 80°F, which means
120
+ that it is safe and comfortable to use. \n\n\n\n{{product.manufacturer_specs['''']}}Handle
121
+ Photo 1\" /> \n \nThe image below was taken with an infrared camera to
122
+ show the heat levels of the lid. The numbers at the bottom indicate the temperature
123
+ scale. \n{{product.attachments[''IR Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135bf","name":"Output
124
+ & Fuel Life","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
125
+ don’t measure the BTU/Hr output of charcoal grills, but we did find
126
+ that this grill can produce a lot of heat with a large load of charcoal onboard.
127
+ It also retains heat well: the body of the grill remains very warm for several
128
+ hours after the charcoal has run out.\n\n\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135c0","name":"Features
129
+ & Usability","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/features-and-usability","slug":"features-and-usability","sections":[{"id":"50fb2e71bd0286d5550135c2","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
130
+ controls on this grill are basic, to put it mildly: you control the temperature
131
+ by opening and closing vents on the base of the grill body and the lid. Open
132
+ the vents, and more air rushes through to the charcoal fuel, leading to a
133
+ higher temperature. \n\n\n\n{{product.attachments[''Controls 1 Photo'']}} \n \n \n\n\n{{product.attachments[''Controls
134
+ 2 Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c3","name":"Fuel","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
135
+ {{product.model}} uses charcoal, which fits into the space below the grate.\n\n\n\n{{product.attachments[''Fuel
136
+ Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c4","name":"Lighter/Ignition","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThere
137
+ is no lighter on this grill, so you have to ignite the charcoal yourself.\n\n\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c5","name":"Cooking
138
+ Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
139
+ cooking area is rather small: just 177 square inches. In our tests, we were
140
+ only able to fit two of our test patties onto this space, so that might be
141
+ a big problem for large families or party use. If you want to cook a lot of
142
+ food at once, you should look at a gas grill with a larger cooking area, or
143
+ one of the larger Big Green Egg models that offers more space to cook.\n\n\n\n{{product.attachments[''Main
144
+ Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c6","name":"Warming
145
+ Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThere
146
+ is no warming area on this grill.\n\n\n\n{{product.attachments[''Warming Area
147
+ Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c7","name":"Other
148
+ Areas","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nNo
149
+ side areas or other places to put food before or after cooking are included.
150
+ Big Green Egg does offer a number of shelves that clip onto the side of the
151
+ grill, as well as a range of wooden tables designed to hold the Big Green
152
+ Egg medium grill. These do cost extra, though. \n\n\n\n{{product.attachments[''Side
153
+ Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c8","name":"Cleanup","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nCleaning
154
+ up the grill is easy; the cooking grate lifts out for easy cleaning, although
155
+ the cast iron is not suitable for dishwashing. You have to scoop out the ash
156
+ from the charcoal, as there is no way to remove it from underneath. \n\n\n\n{{product.attachments[''Grease
157
+ Trap Photo 1'']}} \n \n \n{{product.attachments[''Cleanup Photo 1'']}}{{product.attachments[''Cleanup
158
+ Photo 2'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c9","name":"Other
159
+ Features","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Other
160
+ Features Photo 1'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135cd","name":"Weber Performer
161
+ Charcoal Grill Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/weber-performer-charcoal-grill-comparison","slug":"weber-performer-charcoal-grill-comparison","sections":[{"id":"50fb2e71bd0286d5550135cf","name":"Comparison
162
+ Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nBoth
163
+ of these grills use charcoal fuel, but the Weber offers the relative luxury
164
+ of a gas-assisted starter, and has a much larger cooking area. The Big Green
165
+ Egg is more consistent, though, and has a simple, straightforward design that
166
+ will appeal to charcoal purists. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e72bd0286d5550135d2","name":"Primo
167
+ Kamado Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/primo-kamado-comparison","slug":"primo-kamado-comparison","sections":[{"id":"50fb2e72bd0286d5550135d4","name":"Comparison
168
+ Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nBoth
169
+ of these grills offer the same simple, straightforward design to grilling,
170
+ using charcoal fuel and not offering any bells or whistles. The Big Green
171
+ Egg feels better constructed, though, and more likely to stand up to heavy
172
+ use and weather. It is also better finished, with some nice touches like a
173
+ wooden handle that stays cooler and a better seal around the lid that keeps
174
+ the heat in. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e72bd0286d5550135d7","name":"Kenmore
175
+ S3218AR Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/kenmore-s3218ar-comparison","slug":"kenmore-s3218ar-comparison","sections":[{"id":"50fb2e72bd0286d5550135d9","name":"Comparison
176
+ Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nThe
177
+ eternal battle of the grill purists is here: charcoal vs gas. The charcoal
178
+ fuel of the Big Green Egg produces a more natural heat, but takes longer to
179
+ get running when you include the time to load and prep the grill with fuel).
180
+ The Kenmore also has more features, with a side burner and a more controllable
181
+ heat level. But in the end, the choice comes down to which you prefer to cook
182
+ with: charcoal or gas. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e72bd0286d5550135da","name":"Conclusion","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/conclusion","slug":"conclusion","sections":[{"id":"50fb2e72bd0286d5550135dc","name":"Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
183
+ found good performance from the Big Green Egg, with short cooking times and
184
+ uniform temperatures. We did find that the temperatures did vary somewhat
185
+ with the vents open and the grill running at maximum, but this didn''t seem
186
+ to be a problem when we cooked our test dishes. Our only major issue here
187
+ was the fact that the cooking area is very small; we were only able to get
188
+ two test patties onto it at a time. \n\n\n\n","notes":""},{"id":"50fb2e72bd0286d5550135dd","name":"Usability","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nAt
189
+ the risk of throwing out a cliche, the {{product.brand.name}} is so simple,
190
+ even a caveman could use it. Using the grill just involves loading it with
191
+ charcoal, firing it up and throwing the food onto the grill. As long as the
192
+ caveman hasn''t grown accustomed to things like lighters, side burners and
193
+ lights, though: this grill eschews these for a more straightforward design.
194
+ \n\n\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}}],"products":[{"id":"50fa2ce096ab5860160c6a4b","created_at":"2011-09-28T15:42:10Z","updated_at":"2013-03-14T14:36:39Z","name":"Weber Performer
195
+ Charcoal Grill","slug":"weber-performer-charcoal-grill","_type":"Home::Grills::Charcoal","types":["Natural
196
+ Gas"],"msrp":null,"article_ids":["50fb2e4cbd0286d55501338d","50fb2e5ebd0286d55501349a","50fb2e67bd0286d55501351e","50fb2e6bbd0286d555013560","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-09-28T15:49:00+00:00","upc":null,"price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b5","brand_id":"50f9ed78bd0286638e0001f2","model":"Charcoal
197
+ Grill","resource_uri":"/products/weber-performer-charcoal-grill","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":0.1,"ranking":{"total":3,"rank":3,"percentile":0},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
198
+ Charcoal Grill Rubric","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa36a0bd0286ee4a03a686","name":"brand_name","value":"Performer","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a687","name":"manufacturer_name","value":"Weber","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a688","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a689","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68a","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68b","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68c","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68d","name":"Fuel","value":["Natural
199
+ Gas"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
200
+ Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
201
+ (adaptor sold separately)"]},{"id":"50fa36a0bd0286ee4a03a68e","name":"Install
202
+ Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a68f","name":"Burners","value":1,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a690","name":"Total
203
+ cooking area","value":363,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a691","name":"Height","value":40.0,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a692","name":"Width","value":50.25,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a693","name":"Depth","value":28.5,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a694","name":"Finish
204
+ or Color","value":"Black","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa36a0bd0286ee4a03a695","name":"Control
205
+ Dials","value":0,"value_units":"","value_type":"Integer","order":0,"options":["Electricity"]},{"id":"50fa36a0bd0286ee4a03a696","name":"Ignition
206
+ type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
207
+ Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa36a0bd0286ee4a03a697","name":"Side
208
+ Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa36a0bd0286ee4a03a698","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]}],"attachments":[{"id":"50fce120bd0286f12a01075c","created_at":"2013-01-21T06:33:04Z","updated_at":"2013-01-21T06:33:04Z","name":"Weber-Performer-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s50x50_Weber-Performer-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s150x150_Weber-Performer-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s250x250_Weber-Performer-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s300x150_Weber-Performer-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s300x112_Weber-Performer-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s500x500_Weber-Performer-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s600x400_Weber-Performer-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s600x600_Weber-Performer-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x400_Weber-Performer-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x350_Weber-Performer-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x110_Weber-Performer-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/Weber-Performer-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/Weber-Performer-Vanity.jpg","file_size":33646,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce120bd0286f12a01075c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce120bd0286f12a01075c"}}}],"brand":{"id":"50f9ed78bd0286638e0001f2","created_at":"2011-09-21T14:57:52Z","updated_at":"2013-01-19T00:49:04Z","name":"Weber","slug":"weber","url":null,"resource_uri":"/products?brand=weber","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grillsinfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/01545cd3e6b182be8c6cdabccbdcb877bba2cf9a/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed78bd0286638e0001f2","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed78bd0286638e0001f2"}}},"awards":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d36f82dc7b9e000002b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d36f82dc7b9e000002b"}}},{"id":"50fa2ced96ab5860160c6a7f","created_at":"2011-10-05T17:14:10Z","updated_at":"2013-03-14T14:36:44Z","name":"Kenmore
209
+ S3218AR","slug":"kenmore-s3218ar","_type":"Home::Grills::Gas","types":["Propane"],"msrp":null,"article_ids":["50fb2e47bd0286d55501334a","50fb2e4cbd0286d55501338d","50fb2e50bd0286d5550133d0","50fb2e63bd0286d5550134dd","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-10-05T17:10:00+00:00","upc":null,"price_grabber_id":"883339143","rubric_id":"50f9ed93bd0286638e0003b4","brand_id":"50f9ed77bd0286638e0001c9","model":"S3218AR","resource_uri":"/products/kenmore-s3218ar","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":3.27,"ranking":{"total":7,"rank":6,"percentile":15},"rubric":{"id":"50f9ed93bd0286638e0003b4","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
210
+ Gas Grill Rubric","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003b4","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b4"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa369bbd0286ee4a039bed","name":"brand_name","value":"(Kenmore)","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bee","name":"manufacturer_name","value":"Kenmore","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bef","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf0","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf1","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf2","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf3","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf4","name":"Fuel","value":["LP
211
+ Gas"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
212
+ Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
213
+ (adaptor sold separately)"]},{"id":"50fa369bbd0286ee4a039bf5","name":"Install
214
+ Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf6","name":"Burners","value":5,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf7","name":"BTU
215
+ Output (total)","value":85000,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf8","name":"Total
216
+ cooking area","value":784,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf9","name":"Primary
217
+ cooking area","value":400,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfa","name":"Warming
218
+ rack area","value":290,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfb","name":"Height","value":60.8,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfc","name":"Width","value":48.6,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfd","name":"Depth","value":24.6,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfe","name":"Finish
219
+ or Color","value":"Red / Stainless","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa369bbd0286ee4a039bff","name":"Control
220
+ Dials","value":7,"value_units":"","value_type":"Integer","order":0,"options":["Electricity"]},{"id":"50fa369bbd0286ee4a039c00","name":"Ignition
221
+ type","value":"Auto Electronic","value_units":"","value_type":"String","order":0,"options":["Push-button
222
+ Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa369bbd0286ee4a039c01","name":"Side
223
+ Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa369bbd0286ee4a039c02","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]}],"attachments":[{"id":"50fce11fbd02860b13010754","created_at":"2013-01-21T06:33:03Z","updated_at":"2013-01-21T06:33:03Z","name":"Kenmore-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s50x50_Kenmore-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s150x150_Kenmore-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s250x250_Kenmore-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s300x150_Kenmore-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s300x112_Kenmore-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s500x500_Kenmore-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s600x400_Kenmore-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s600x600_Kenmore-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x400_Kenmore-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x350_Kenmore-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x110_Kenmore-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/Kenmore-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/Kenmore-Vanity.jpg","file_size":32529,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce11fbd02860b13010754","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce11fbd02860b13010754"}}}],"brand":{"id":"50f9ed77bd0286638e0001c9","created_at":"2011-04-13T15:03:17Z","updated_at":"2013-01-19T00:49:05Z","name":"Kenmore","slug":"kenmore","url":null,"resource_uri":"/products?brand=kenmore","website_ids":["50e669d7bd028648e000002b","50e669d7bd028648e0000021","50e669d7bd028648e0000023","50e669d7bd028648e0000019","50e669d7bd028648e000001b","50e669d7bd028648e000001d"],"websites":[{"code":"RFI","name":"Refrigerators","url":"refrigeratorinfo.com"},{"code":"WDI","name":"Laundry","url":"washerdryerinfo.com"},{"code":"VCI","name":"Vacuums","url":"vacuumcleanerinfo.com"},{"code":"DWI","name":"Dishwashers","url":"dishwashersinfo.com"},{"code":"GRI","name":"Grills","url":"grillsinfo.com"},{"code":"OVI","name":"Ovens","url":"oveninfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/ee5037a5bec182596e7e41a91fa7f9667a9aa658/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed77bd0286638e0001c9","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed77bd0286638e0001c9"}}},"awards":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d37f82dc7b9e000002c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d37f82dc7b9e000002c"}}},{"id":"50fa2cfc96ab5860160c6ac2","created_at":"2011-10-12T18:55:14Z","updated_at":"2013-03-14T14:36:39Z","name":"Big
224
+ Green Egg Medium","slug":"big-green-egg-medium","_type":"Home::Grills::Charcoal","types":["Charcoal"],"msrp":649.0,"article_ids":["50fb2e67bd0286d55501351e","50fb2e6bbd0286d555013560","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-10-12T18:55:00+00:00","upc":null,"price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b5","brand_id":"50f9ed79bd0286638e000215","model":"Medium","resource_uri":"/products/big-green-egg-medium","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.74,"ranking":{"total":3,"rank":2,"percentile":34},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
225
+ Charcoal Grill Rubric","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":true,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa3698bd0286ee4a0394dd","name":"brand_name","value":"(Big
226
+ Green Egg)","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394de","name":"manufacturer_name","value":"Big
227
+ Green Egg","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394df","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e0","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e1","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e2","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e3","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e4","name":"Fuel","value":["Charcoal"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
228
+ Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
229
+ (adaptor sold separately)"]},{"id":"50fa3698bd0286ee4a0394e5","name":"Install
230
+ Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a0394e6","name":"Total
231
+ cooking area","value":177,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a0394e7","name":"Finish
232
+ or Color","value":"Green","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa3698bd0286ee4a0394e8","name":"Ignition
233
+ type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
234
+ Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa3698bd0286ee4a0394e9","name":"Side
235
+ Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a0394ea","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a0394eb","name":"Original
236
+ Price","value":649.0,"value_units":"","value_type":"Decimal","order":0,"options":[]}],"attachments":[{"id":"50fce12cbd0286de7b010793","created_at":"2013-01-21T06:33:16Z","updated_at":"2013-01-21T06:33:16Z","name":"MEgg.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s50x50_MEgg.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s150x150_MEgg.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s250x250_MEgg.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s300x150_MEgg.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s300x112_MEgg.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s500x500_MEgg.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s600x400_MEgg.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s600x600_MEgg.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x400_MEgg.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x350_MEgg.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x110_MEgg.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/MEgg.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/MEgg.jpg","file_size":24813,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce12cbd0286de7b010793","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce12cbd0286de7b010793"}}}],"brand":{"id":"50f9ed79bd0286638e000215","created_at":"2011-10-12T17:05:13Z","updated_at":"2013-01-19T00:49:04Z","name":"Big
237
+ Green Egg","slug":"big-green-egg","url":null,"resource_uri":"/products?brand=big-green-egg","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grillsinfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/c32bb02dc90868b3732566a0274ca535cc59c464/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed79bd0286638e000215","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed79bd0286638e000215"}}},"awards":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d37f82dc7b9e000002d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d37f82dc7b9e000002d"}}},{"id":"50fa2cfd96ab5860160c6ac7","created_at":"2011-10-12T19:32:52Z","updated_at":"2013-03-14T14:36:38Z","name":"Primo
238
+ Kamado","slug":"primo-kamado","_type":"Home::Grills::Charcoal","types":["Charcoal"],"msrp":829.99,"article_ids":["50fb2e4cbd0286d55501338d","50fb2e5ebd0286d55501349a","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-10-12T19:31:00+00:00","upc":null,"price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b5","brand_id":"50f9ed79bd0286638e000214","model":"Kamado","resource_uri":"/products/primo-kamado","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":10.0,"ranking":{"total":3,"rank":1,"percentile":67},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
239
+ Charcoal Grill Rubric","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa3698bd0286ee4a03952e","name":"brand_name","value":"(Primo)","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a03952f","name":"manufacturer_name","value":"Primo","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039530","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039531","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039532","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039533","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039534","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039535","name":"Fuel","value":["Charcoal"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
240
+ Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
241
+ (adaptor sold separately)"]},{"id":"50fa3698bd0286ee4a039536","name":"Install
242
+ Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a039537","name":"Total
243
+ cooking area","value":280,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a039538","name":"Height","value":429.75,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a039539","name":"Width","value":21.5,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a03953a","name":"Depth","value":21.5,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a03953b","name":"Finish
244
+ or Color","value":"Black Ceramic","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa3698bd0286ee4a03953c","name":"Ignition
245
+ type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
246
+ Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa3698bd0286ee4a03953d","name":"Side
247
+ Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a03953e","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a03953f","name":"Original
248
+ Price","value":829.99,"value_units":"","value_type":"Decimal","order":0,"options":[]}],"attachments":[{"id":"50fce12bbd02862d7701078b","created_at":"2013-01-21T06:33:15Z","updated_at":"2013-01-21T06:33:15Z","name":"Primo-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s50x50_Primo-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s150x150_Primo-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s250x250_Primo-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s300x150_Primo-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s300x112_Primo-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s500x500_Primo-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s600x400_Primo-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s600x600_Primo-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x400_Primo-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x350_Primo-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x110_Primo-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/Primo-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/Primo-Vanity.jpg","file_size":15587,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce12bbd02862d7701078b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce12bbd02862d7701078b"}}}],"brand":{"id":"50f9ed79bd0286638e000214","created_at":"2011-10-12T17:04:59Z","updated_at":"2013-01-19T00:49:04Z","name":"Primo","slug":"primo","url":null,"resource_uri":"/products?brand=primo","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grillsinfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/23f6bdb326780525380b08dcbc9cc0a26385d30c/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed79bd0286638e000214","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed79bd0286638e000214"}}},"awards":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d37f82dc7b9e000002e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d37f82dc7b9e000002e"}}}],"authors":[{"id":"50fc4e94bd0286d5550b4bf8","created_at":"2013-01-20T20:07:48Z","updated_at":"2013-02-13T15:13:52Z","name":"Richard
249
+ Baguley","title":"Editor","short_bio":"Richard Baguley is a valued contributor
250
+ to the Reviewed.com family of sites.","long_bio":"Richard Baguley is a valued
251
+ contributor to the Reviewed.com family of sites.","slug":"richard-baguley","social":{"email":"","facebook":"","twitter":""},"resource_uri":"/authors/richard-baguley","avatars":{"small":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?s=48&d=mm","medium":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?s=128&d=mm","normal":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=mm"},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/authors","href":"https://the-guide-staging.herokuapp.com/api/v1/authors"},"resource":{"rel":"/api/v1/authors/50fc4e94bd0286d5550b4bf8","href":"https://the-guide-staging.herokuapp.com/api/v1/authors/50fc4e94bd0286d5550b4bf8"}}}],"attachments":[{"id":"50fb2e71bd0286d5550135b3","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s50x50_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s150x150_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s250x250_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s300x150_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s300x112_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s500x500_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s600x400_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s600x600_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x400_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x350_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x110_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/table-b297567d41f58254691baba562ae65d34cb1c3f0.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","file_size":152},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e71bd0286d5550135b3","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135b3"}}},{"id":"50fb2e71bd0286d5550135cb","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e71bd0286d5550135cb","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135cb"}}},{"id":"50fb2e71bd0286d5550135cc","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e71bd0286d5550135cc","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135cc"}}},{"id":"50fb2e72bd0286d5550135d0","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e72bd0286d5550135d0","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d0"}}},{"id":"50fb2e72bd0286d5550135d1","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e72bd0286d5550135d1","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d1"}}},{"id":"50fb2e72bd0286d5550135d5","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e72bd0286d5550135d5","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d5"}}},{"id":"50fb2e72bd0286d5550135d6","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e72bd0286d5550135d6","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d6"}}},{"id":"50fb2e74bd0286d5550135e4","created_at":"2013-01-19T23:38:28Z","updated_at":"2013-01-19T23:38:28Z","name":"BGE-medium-web2.jpg","type":"file","tags":["old-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s50x50_BGE-medium-web2.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s150x150_BGE-medium-web2.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s250x250_BGE-medium-web2.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s300x150_BGE-medium-web2.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s300x112_BGE-medium-web2.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s500x500_BGE-medium-web2.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s600x400_BGE-medium-web2.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s600x600_BGE-medium-web2.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x400_BGE-medium-web2.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x350_BGE-medium-web2.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x110_BGE-medium-web2.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/BGE-medium-web2.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/BGE-medium-web2.jpg","file_size":81744,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e74bd0286d5550135e4","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e74bd0286d5550135e4"}}}],"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb2e6fbd0286d5550135a2","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb2e6fbd0286d5550135a2"}}}'
260
252
  http_version:
261
- recorded_at: Sat, 27 Apr 2013 01:45:52 GMT
262
- - request:
253
+ recorded_at: Thu, 27 Jun 2013 15:41:45 GMT
254
+ - request:
263
255
  method: get
264
256
  uri: https://the-guide-staging.herokuapp.com/api/v1/articles/big-green-egg-medium-charcoal-grill-review
265
- body:
257
+ body:
266
258
  encoding: US-ASCII
267
- string: ""
268
- headers:
269
- X-Reviewed-Authorization:
259
+ string: ''
260
+ headers:
261
+ User-Agent:
262
+ - Faraday v0.8.7
263
+ X-Reviewed-Authorization:
270
264
  - 38e397252ec670ec441733a95204f141
271
- Accept-Encoding:
265
+ Accept-Encoding:
272
266
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
273
- Accept:
274
- - "*/*"
275
- User-Agent:
276
- - Ruby
277
- response:
278
- status:
267
+ Accept:
268
+ - '*/*'
269
+ response:
270
+ status:
279
271
  code: 200
280
272
  message: OK
281
- headers:
282
- Access-Control-Allow-Credentials:
283
- - "true"
284
- Access-Control-Allow-Headers:
285
- - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization, x-skip-cache, Content-Type
286
- Access-Control-Allow-Methods:
273
+ headers:
274
+ Access-Control-Allow-Credentials:
275
+ - 'true'
276
+ Access-Control-Allow-Headers:
277
+ - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization,
278
+ x-skip-cache, Content-Type
279
+ Access-Control-Allow-Methods:
287
280
  - OPTIONS, GET, POST, PUT, DELETE
288
- Access-Control-Allow-Origin:
289
- - "*"
290
- Access-Control-Max-Age:
291
- - "1000"
292
- Cache-Control:
281
+ Access-Control-Allow-Origin:
282
+ - '*'
283
+ Access-Control-Max-Age:
284
+ - '1000'
285
+ Cache-Control:
293
286
  - no-cache, no-store
294
- Content-Encoding:
295
- - gzip
296
- Content-Type:
287
+ Content-Type:
297
288
  - application/json; charset=utf-8
298
- Date:
299
- - Sat, 27 Apr 2013 01:45:53 GMT
300
- Status:
289
+ Date:
290
+ - Thu, 27 Jun 2013 15:41:46 GMT
291
+ Etag:
292
+ - '"e0aa021e21dddbd6d8cecec71e9cf564"'
293
+ Status:
301
294
  - 200 OK
302
- Strict-Transport-Security:
295
+ Strict-Transport-Security:
303
296
  - max-age=31536000
304
- Vary:
297
+ Vary:
305
298
  - Accept-Encoding
306
- X-Request-Id:
307
- - fd33c92f1254af6c7a214f655fd2a232
308
- X-Runtime:
309
- - "0.987177"
310
- X-Ua-Compatible:
299
+ X-Request-Id:
300
+ - b3058685b44b94666e4bb4de206f43a2
301
+ X-Runtime:
302
+ - '0.020183'
303
+ X-Ua-Compatible:
311
304
  - IE=Edge,chrome=1
312
- Transfer-Encoding:
305
+ Transfer-Encoding:
313
306
  - chunked
314
- Connection:
307
+ Connection:
315
308
  - keep-alive
316
- body:
317
- encoding: ASCII-8BIT
318
- string: !binary |
319
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- VbpdUOXDByEL19j040clShWicBvg103VY5Qt4KqwY2Caovv1HJvThKyg+QNN
334
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- mU3i6iGgHVKLk9bUfKnGcfKamqwgj6JzJkkVLTk03xOV33wpnf6GSTF2eJqD
383
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- sike/q0+NSk0zfQrmma4waR4ZNWilUvmjGwv2U5VPzVaXvKql+zyodqGh69/
414
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- WreeH6DEAP6KbmSAunv9CeCTKsmvWGESSwYv42WclEgnL5bEfz9QsWXzdRBV
432
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
452
- KOItj39mMcrnJVIX4/PnRysVsvdReRzXfH6sErXxLXfxW9Can8LKSkTI4tVT
453
- CcGfpqpA1WefAFT5bdU1jpStXrsXp/jsAJR4lDWOlOle28+PT3Lz6hQp81PA
454
- J7l/7RSpdzRQbpTv8bWs+ELwgYZ+HztpB1/lRTuNZCnnjGSpGhxflTzENrLU
455
- Lp3p02BN7cxF8jYvzZrawSJ5nM/MmtJE3lb1NIOV7FoTfyUjqj3xV2tTzYE/
456
- E1vKMzzq2MQJVMM3Tc0kmm4Evu2rlq8Fhmq41kxTdc8v2FKNaAeypLpjKFhS
457
- zSiGsaO6oyjYUc0ohrGiuqMoWFF7UBzNhuqJQtNbUAxjQfWRTc6CakYxjP3U
458
- HUXBfmpHcTzrqR8KuxXFMLZTdxQF26kdxfEsp34ojFYdGcZu6ocC2U2NKAay
459
- mjqjaBj8QmymIRCrLCbd0mcji+kgi6nRazkVi6mh8z0spqZacQOLyZxqBr77
460
- QTXmmtOBxWTt+k+TOndg0ofJVN7TrSjPf/q88ZLWfslovaTN2i+1j6UFbZSq
461
- d68kStU7GoKRwXcZxUlZW0ykb0t+1dW2ix+/krr4luTrIHna3oxvDaYJfEMb
462
- 7/3HS+nefxA/z1flwA/sM3thcfPdX/0o3f2VeEcxlaAH5XdN9/fhk5V3vfmH
463
- dNebB7oub4of8CciTkJBo9RSDYdYHvU1V7dmNnWoqZGZFhInnNm2Q2aE2Jb7
464
- R6OgNRmKU1DQdvsdKWhDKGh08PjtPe9Q0EK/SkHzm0mwmjrV9FvNnVvWXGsn
465
- MDS/2qn6wsXv2AvzyrOk6XV6kz5vcdp+t6Wk2eYMnydt5KR9Mm9jkpf0Im9j
466
- mlVa6Rq2Kkhl201p5ZS1bNOZiGXWtWPuffmSXiWWGeb49qVPi132HG9f4qs6
467
- kstGctlILhvJZWckl7mVcooZHCSXVVygU1PM6mg6UswqmM4M6cJEs9rw9NJE
468
- s/r4z0U0q+N4FqJZHcSliWb18fcQzeRQ4vdFNasvwqdONavjlahm+9hRmjOU
469
- nnACrBLvrJ3jwSzvwHXdS6Woo5L4Zb+R987sTEGinV2cQVHHIpHKzs6gOABF
470
- Io29EaUu5S3mDko4IiMyhP108PU3xRN91MFH6p1Za3i1JWlo9mEiB28jpvcd
471
- eCoXp29QX/VJGDq2QR010FWbWoapwXeq7biao4fU8gLdLegbEsahpI3OIxek
472
- DXnsgVSNzmMXVA157IEEjc5jFwSNnbGPp2X0G1vTK2MPJGP0kDROxpDHHkjB
473
- 6Dx2QcGojz2AeNFrbLs29kC6ReexC7pFfewBJIteYxvW7tgDqBW9xkZqhTT2
474
- UEJF17G3Q16KRtEbWIU8oZuuZozkicOvgGnyFE72CpjdzveQJ5pqIq3VL2eu
475
- WnOtQ3Gg8gqYepqlqew16UOkqN/5W3k1jG/onqfqgT9TXdv1DMfQLdsmqu6Y
476
- PrEMy/etmW/a5h+tLt8kg6eoy+/2O9bl+9TltVr1PBw8fnvPu3X52qth2I/d
477
- t1qm2dzQ219OJdflXckyyb9cWxom+RdlJ8Pq8K4+u57NTvtjSmcrxMMaas9T
478
- iMeEZFGI3+5GayG+tj9nKsBr7I3cewrwWrUAbztjAX4swI+vdxkr8GMFfqzA
479
- X7oCb+lSzbu5As+cnfNW3i29VuZuq7wzLOeFYuyWvC9Y5LUMbWf4S1bcLaOt
480
- 0n3ZirtlGC04LroZUsX7GSruENpP/vAVd8uQf/fj06+4W4ZUxd5XcdfdZ3ht
481
- Rh2rVNve+WkhiEGdy/82zg5EqXZde3GGrj3Db/fs4JPq2fUXZ3wS+KQi94Hf
482
- FlJe0oSsBr8Joge5wjKk16L8NskVliFxGJ+ZXGEZkjf3vOQKy5BcujZyRZHm
483
- Oiu7QjybogeOg2UNt+kn2GvMifbQudZGzgc+10syCIRWqk5mM9sJZ55le6oG
484
- DrVmWbrp2dTQNN+HZdj+pFAD1qFsi84ICrZFE4aBrIvOGArWRROGgeyLzhgK
485
- 9kUrhuNZGP0waHojhoFsjB4SydkYTRgGsjI6YyhYGW0YBrAzemGwWzAMZGl0
486
- xlCwNNowDGBr9MJgtOjFQNZGLwzI2mjAMJS90RXDztCXYnEcDbDC5oD2rjOy
487
- OQ6zOZo8k5OxOXY778HmaMrWy2wOc27NerI5itSdXCyd9GFvFHf8VlgbuhHa
488
- XuAZuu24qqVDrK16qhv4nj/zfZXosNhWYKj+H521cXzp4VC/I2tjAGtDUweP
489
- 394zN0Ukzxb41pdKxGbSmSkxFTyTv+C3OWJTb3V1rjpz022xRrp4eY9mCJZH
490
- ERxH/gLkQnlB7vMlxYRmFmVYjp98HUQZS42kgC2786J4t7kSpQpRWJAaKHjO
491
- JZGXY3IzixVYI+WdMBG4KEpIVtHySYlDhdmi6wkaFaQWnKNnYV0T3uvU204v
492
- jf0IPZcPE7oi0ZKH2SHxqRfH7/mn7DHKMoyvJ7LgFNZYbNbNbtfkAZyPhEey
493
- K0xJbU3l4+Pj9X3Cr3MBYX/eBKYWuH4wc0NV9XQVttxV1dnMpX7omrpD/zf9
494
- i+l+Fvxlhelq8caEU3Sq6dte13GyIqeAyvp7nrJmoT9Hew3i/v1+i9j3Pbo5
495
- aPT2joWRaEnteDp1tCqlyWtlRYBLohtzw53re1kRchthKFi6derpM8eyHRCG
496
- 0HJ1y7Rnmkc8Ytk6oTac4qbvab4Rqtd++tCW/Dlp0qcjniLpc9QshqaFOmMs
497
- 0kLHoRyYOOqMskgcHYdyYGqpM8oitTQA5fHJp34oNf1IlAPTUz10h6enjkM5
498
- MIHVGWWRwDoe5YAUVy+U9tEoBybBOqMskmDHoxyQJuuF0jhaxwcm0nqhxETa
499
- USiHptq6ojwCXPdkXC0Dhk1u+PSGpenOOLlaIk8fU3XtnuZJUnXNnVefamho
500
- 47dWMYe6usS3zcB1VKpS6jozIwhC0yGmZ8yo51JPdwPNpNRxLuXqdsVTdXV7
501
- zmKgq9sdY9XV7YtymKvbHWXV1e2Lcpir2x1l1dU9CuXRrm5PlFtXty/KYa5u
502
- H92RXd2+KIe5ut1RVl3dY1Ae7+r2Q2kfjXKYq9sdZdXVPQbl8a5uP5TG0To+
503
- zNXth7J0dXuiHOjqdkZ5BLhnd3XPObnR1e3kjfonq0o3d37Y1fXP5+pqRCOm
504
- E5qm7tiuoVEz1AIfRMUONMMMfctwPJWSy7m63fDUXd1esxjs6nbFWHd1+6Ec
505
- 6up2RVl3dfuhHOrqdkVZd3WPQDnA1e2FUnJ1+6Ec6up2152qq9sP5VBXtyvK
506
- uqvbH+UQV7cPSvtolENd3a4o665uf5RDXN0+KI2jdXyoq9sHpezq9kI52NXt
507
- iPIIcJ+Aq3u+yVVftmXZ5ujrtruaZ/N1/QZfV6+2CdTDvm77qz9rbca07pjW
508
- HdO6Y1p3TOuOad0xrTumdce07h/Z1W3yNE/m6u52ftjV1c7n6o5p3TGtO6Z1
509
- x7TumNYd07pjWndM645p3T+2r6ud09fVOvi6+97cPKZ1x7TumNYd07pjWndM
510
- 645p3TGtO6Z1x7Tu8a7u8T9e0anzw66uPaZ1x7TumNYd07pjWndM645p3TGt
511
- O6Z1x7TueXxd+5y+rt3g65rVNrTlR81kP7btxYQ7bYSv++KvX0/5G++mjxAD
512
- 7X2bfLwMpji9k75P3jYs1/A1j1BizDTPNJzAMkOP4ux9w9INk/pGGOqFW9sM
513
- eKDf2h1E4be2wBjmmHaHUTimLTCGeZ7dYRSe5z4YR7uWPWGAa9kCY5jv2EdA
514
- ue/YAmOYc9gdRuEc7oFxvPfXD4bdDmOYe9cdRuHe7YFxvP/WD4bRrinDHLR+
515
- MNBBa4Yx0APrDKNp9Au9c34Qxoqn5GqOaY6vnT/sRjV5MSdzo3Y7569xHX/Z
516
- dvxl232SNP6y7fjLtvt+2fZsr+7vJfBJFvnLAau97WC/cItWwqbaYdWmEn3w
517
- +O09w2r/vwAAAAD//wMA+9RUzssmAQA=
518
-
309
+ body:
310
+ encoding: UTF-8
311
+ string: '{"id":"50fb2e6fbd0286d5550135a2","created_at":"2011-11-29T20:18:15Z","updated_at":"2013-03-07T22:08:45Z","name":"Big
312
+ Green Egg Medium Charcoal Grill Review","branch_name":"master","summary":"Super-simple
313
+ charcoal grill has good performance. ","meta_description":null,"website_ids":["50e669d7bd028648e0000023"],"author_ids":["50fc4e94bd0286d5550b4bf8"],"tags":[],"classifications":["review"],"publish_on":"2011-11-29T20:17:00+00:00","attachment_ids":["50fb2e71bd0286d5550135b3","50fb2e71bd0286d5550135cb","50fb2e71bd0286d5550135cc","50fb2e72bd0286d5550135d0","50fb2e72bd0286d5550135d1","50fb2e72bd0286d5550135d5","50fb2e72bd0286d5550135d6","50fb2e74bd0286d5550135e4"],"primary_product_id":"50fa2cfc96ab5860160c6ac2","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review.htm","disqus_uri":"Big-Green-Egg-Medium-Charcoal-Grill-Review","product_ids":["50fa2cfc96ab5860160c6ac2","50fa2ce096ab5860160c6a4b","50fa2cfd96ab5860160c6ac7","50fa2ced96ab5860160c6a7f"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2011-10-12T19:31:00+00:00","slug":"big-green-egg-medium-charcoal-grill-review.htm","is_template":false,"is_branch":false,"deals":[],"related_articles":[],"pages":[{"id":"50fb2e70bd0286d5550135a8","name":"Introduction","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/introduction","slug":"introduction","sections":[{"id":"50fb2e70bd0286d5550135a9","name":"Introduction","body":"The
314
+ {{product.name}} is a classic charcoal grill with a simple design: a ceramic
315
+ vessel that holds a load of charcoal. While the design is simple, don''t think
316
+ that it offers generic performance as well. The {{product.name}} will heat
317
+ your food up quick and maintain consistent high-temperature cooking.","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135ab","name":"Design","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/design","slug":"design","sections":[{"id":"50fb2e71bd0286d5550135ad","name":"Product
318
+ Tour","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Front
319
+ Photo'']}} \n \n \n{{product.attachments[''Side Photo'']}} \n \n \n{{product.attachments[''Lid
320
+ Open Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135ae","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Controls
321
+ 1 Photo'']}} \n \n \n\n\n{{product.attachments[''Controls 2 Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135af","name":"Main
322
+ Grilling Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Main
323
+ Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b0","name":"Warming
324
+ Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Warming
325
+ Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b2","name":"Thermometer","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Thermometer
326
+ Photo 1'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135b4","name":"Performance","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/performance","slug":"performance","sections":[{"id":"50fb2e71bd0286d5550135b6","name":"Heatup
327
+ Time","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
328
+ {{product.model}} was a very quick grill to heat up; we found that it could
329
+ reach our low temperature target of 325°F in just 35 seconds and our
330
+ high temperature target of 625°F in just 36 seconds. We reached these
331
+ two settings by adjusting the air vents on the lid and on the bottom of the
332
+ grill body: the low fire setting by half opening the vent, and the high fire
333
+ setting by completely opening it.\n\n\n\n{{article.attachments[''table-b297567d41f58254691baba562ae65d34cb1c3f0.csv'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b7","name":"Low
334
+ Fire Cooking Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nRunning
335
+ at our low temperature target of about 325°F, we found that the grill
336
+ would take just over 11 minutes to cook our test patties, which is fairly
337
+ fast for a grill of this type. \n\n\n\n\n\n{{comparison_bars title=\"Low
338
+ Fire Performance\", attribute=\"Low Temp Performance Rating\", xLabel=\"Cooking
339
+ Performance Score\"}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b8","name":"Low
340
+ Temperature Uniformity","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
341
+ also look at the consistency of the temperature across the cooking surface,
342
+ and the {{product.model}} did well here, producing uniform temperatures across
343
+ the cooking area. We did find that it was a little hotter at one edge, but
344
+ again, that is not unusual for a charcoal grill.\n\n\n\n{{product.attachments[''Low
345
+ Temp Uniformity Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b9","name":"Low
346
+ Temperature Consistency","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
347
+ temperature also remained consistent over time, with only moderate variations
348
+ in the temperature. This should mean good, even cooking of food\n\n\n\n{{product.attachments[''Low
349
+ Temp Consistency Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135ba","name":"High
350
+ Fire Cooking Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nOpening
351
+ the air vents on the base and lid of the grill increased the temperature,
352
+ and we found equally good performance from this grill cooking food at these
353
+ higher temperatures. Here, the grill was able to cook our test patties in
354
+ just over 8 minutes. \n\n\n\n\n\n{{comparison_bars title=\"High Fire Cooking
355
+ Performance\", attribute=\"High Temp Performance Rating\", xLabel=\"Cooking
356
+ Performance Score\"}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135bb","name":"High
357
+ Temperature Uniformity","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
358
+ did find that the temperature across the cooking area was a lot less consistent
359
+ here, though; the extra flow of air from the open vents seems to create more
360
+ hot zones, especially in the center of the cooking grate, which was nearly
361
+ 200°F hotter than close to the edges.\n\n\n\n{{product.attachments[''High
362
+ Temp Uniformity Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135bc","name":"High
363
+ Temperature Consistency","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
364
+ temperature also varied over time, with the temperature rising and falling
365
+ on the cooking grate somewhat more often as the fire rose and fell than we
366
+ like to see. \n\n\n\n{{product.attachments[''High Temp Consistency Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135be","name":"Case
367
+ & Handle Temperature","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nAlthough
368
+ the grill body got rather hot (rising to a toasty 300°F), the handle
369
+ that you use to lift the lid remained cool; even after running the grill for
370
+ a full hour, this wooden handle didn''t go much above 80°F, which means
371
+ that it is safe and comfortable to use. \n\n\n\n{{product.manufacturer_specs['''']}}Handle
372
+ Photo 1\" /> \n \nThe image below was taken with an infrared camera to
373
+ show the heat levels of the lid. The numbers at the bottom indicate the temperature
374
+ scale. \n{{product.attachments[''IR Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135bf","name":"Output
375
+ & Fuel Life","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
376
+ don’t measure the BTU/Hr output of charcoal grills, but we did find
377
+ that this grill can produce a lot of heat with a large load of charcoal onboard.
378
+ It also retains heat well: the body of the grill remains very warm for several
379
+ hours after the charcoal has run out.\n\n\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135c0","name":"Features
380
+ & Usability","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/features-and-usability","slug":"features-and-usability","sections":[{"id":"50fb2e71bd0286d5550135c2","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
381
+ controls on this grill are basic, to put it mildly: you control the temperature
382
+ by opening and closing vents on the base of the grill body and the lid. Open
383
+ the vents, and more air rushes through to the charcoal fuel, leading to a
384
+ higher temperature. \n\n\n\n{{product.attachments[''Controls 1 Photo'']}} \n \n \n\n\n{{product.attachments[''Controls
385
+ 2 Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c3","name":"Fuel","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
386
+ {{product.model}} uses charcoal, which fits into the space below the grate.\n\n\n\n{{product.attachments[''Fuel
387
+ Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c4","name":"Lighter/Ignition","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThere
388
+ is no lighter on this grill, so you have to ignite the charcoal yourself.\n\n\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c5","name":"Cooking
389
+ Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
390
+ cooking area is rather small: just 177 square inches. In our tests, we were
391
+ only able to fit two of our test patties onto this space, so that might be
392
+ a big problem for large families or party use. If you want to cook a lot of
393
+ food at once, you should look at a gas grill with a larger cooking area, or
394
+ one of the larger Big Green Egg models that offers more space to cook.\n\n\n\n{{product.attachments[''Main
395
+ Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c6","name":"Warming
396
+ Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThere
397
+ is no warming area on this grill.\n\n\n\n{{product.attachments[''Warming Area
398
+ Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c7","name":"Other
399
+ Areas","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nNo
400
+ side areas or other places to put food before or after cooking are included.
401
+ Big Green Egg does offer a number of shelves that clip onto the side of the
402
+ grill, as well as a range of wooden tables designed to hold the Big Green
403
+ Egg medium grill. These do cost extra, though. \n\n\n\n{{product.attachments[''Side
404
+ Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c8","name":"Cleanup","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nCleaning
405
+ up the grill is easy; the cooking grate lifts out for easy cleaning, although
406
+ the cast iron is not suitable for dishwashing. You have to scoop out the ash
407
+ from the charcoal, as there is no way to remove it from underneath. \n\n\n\n{{product.attachments[''Grease
408
+ Trap Photo 1'']}} \n \n \n{{product.attachments[''Cleanup Photo 1'']}}{{product.attachments[''Cleanup
409
+ Photo 2'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c9","name":"Other
410
+ Features","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Other
411
+ Features Photo 1'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135cd","name":"Weber Performer
412
+ Charcoal Grill Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/weber-performer-charcoal-grill-comparison","slug":"weber-performer-charcoal-grill-comparison","sections":[{"id":"50fb2e71bd0286d5550135cf","name":"Comparison
413
+ Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nBoth
414
+ of these grills use charcoal fuel, but the Weber offers the relative luxury
415
+ of a gas-assisted starter, and has a much larger cooking area. The Big Green
416
+ Egg is more consistent, though, and has a simple, straightforward design that
417
+ will appeal to charcoal purists. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e72bd0286d5550135d2","name":"Primo
418
+ Kamado Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/primo-kamado-comparison","slug":"primo-kamado-comparison","sections":[{"id":"50fb2e72bd0286d5550135d4","name":"Comparison
419
+ Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nBoth
420
+ of these grills offer the same simple, straightforward design to grilling,
421
+ using charcoal fuel and not offering any bells or whistles. The Big Green
422
+ Egg feels better constructed, though, and more likely to stand up to heavy
423
+ use and weather. It is also better finished, with some nice touches like a
424
+ wooden handle that stays cooler and a better seal around the lid that keeps
425
+ the heat in. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e72bd0286d5550135d7","name":"Kenmore
426
+ S3218AR Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/kenmore-s3218ar-comparison","slug":"kenmore-s3218ar-comparison","sections":[{"id":"50fb2e72bd0286d5550135d9","name":"Comparison
427
+ Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nThe
428
+ eternal battle of the grill purists is here: charcoal vs gas. The charcoal
429
+ fuel of the Big Green Egg produces a more natural heat, but takes longer to
430
+ get running when you include the time to load and prep the grill with fuel).
431
+ The Kenmore also has more features, with a side burner and a more controllable
432
+ heat level. But in the end, the choice comes down to which you prefer to cook
433
+ with: charcoal or gas. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e72bd0286d5550135da","name":"Conclusion","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/conclusion","slug":"conclusion","sections":[{"id":"50fb2e72bd0286d5550135dc","name":"Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
434
+ found good performance from the Big Green Egg, with short cooking times and
435
+ uniform temperatures. We did find that the temperatures did vary somewhat
436
+ with the vents open and the grill running at maximum, but this didn''t seem
437
+ to be a problem when we cooked our test dishes. Our only major issue here
438
+ was the fact that the cooking area is very small; we were only able to get
439
+ two test patties onto it at a time. \n\n\n\n","notes":""},{"id":"50fb2e72bd0286d5550135dd","name":"Usability","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nAt
440
+ the risk of throwing out a cliche, the {{product.brand.name}} is so simple,
441
+ even a caveman could use it. Using the grill just involves loading it with
442
+ charcoal, firing it up and throwing the food onto the grill. As long as the
443
+ caveman hasn''t grown accustomed to things like lighters, side burners and
444
+ lights, though: this grill eschews these for a more straightforward design.
445
+ \n\n\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}}],"products":[{"id":"50fa2ce096ab5860160c6a4b","created_at":"2011-09-28T15:42:10Z","updated_at":"2013-03-14T14:36:39Z","name":"Weber Performer
446
+ Charcoal Grill","slug":"weber-performer-charcoal-grill","_type":"Home::Grills::Charcoal","types":["Natural
447
+ 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
448
+ Grill","resource_uri":"/products/weber-performer-charcoal-grill","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":0.1,"ranking":{"total":3,"rank":3,"percentile":0},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
449
+ Charcoal Grill Rubric","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa36a0bd0286ee4a03a686","name":"brand_name","value":"Performer","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a687","name":"manufacturer_name","value":"Weber","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a688","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a689","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68a","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68b","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68c","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68d","name":"Fuel","value":["Natural
450
+ Gas"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
451
+ Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
452
+ (adaptor sold separately)"]},{"id":"50fa36a0bd0286ee4a03a68e","name":"Install
453
+ Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a68f","name":"Burners","value":1,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a690","name":"Total
454
+ cooking area","value":363,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a691","name":"Height","value":40.0,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a692","name":"Width","value":50.25,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a693","name":"Depth","value":28.5,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a694","name":"Finish
455
+ or Color","value":"Black","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa36a0bd0286ee4a03a695","name":"Control
456
+ Dials","value":0,"value_units":"","value_type":"Integer","order":0,"options":["Electricity"]},{"id":"50fa36a0bd0286ee4a03a696","name":"Ignition
457
+ type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
458
+ Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa36a0bd0286ee4a03a697","name":"Side
459
+ Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa36a0bd0286ee4a03a698","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]}],"attachments":[{"id":"50fce120bd0286f12a01075c","created_at":"2013-01-21T06:33:04Z","updated_at":"2013-01-21T06:33:04Z","name":"Weber-Performer-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s50x50_Weber-Performer-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s150x150_Weber-Performer-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s250x250_Weber-Performer-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s300x150_Weber-Performer-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s300x112_Weber-Performer-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s500x500_Weber-Performer-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s600x400_Weber-Performer-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s600x600_Weber-Performer-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x400_Weber-Performer-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x350_Weber-Performer-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x110_Weber-Performer-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/Weber-Performer-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/Weber-Performer-Vanity.jpg","file_size":33646,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce120bd0286f12a01075c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce120bd0286f12a01075c"}}}],"brand":{"id":"50f9ed78bd0286638e0001f2","created_at":"2011-09-21T14:57:52Z","updated_at":"2013-01-19T00:49:04Z","name":"Weber","slug":"weber","url":null,"resource_uri":"/products?brand=weber","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grillsinfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/01545cd3e6b182be8c6cdabccbdcb877bba2cf9a/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed78bd0286638e0001f2","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed78bd0286638e0001f2"}}},"awards":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d39f82dc7b9e000002f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d39f82dc7b9e000002f"}}},{"id":"50fa2ced96ab5860160c6a7f","created_at":"2011-10-05T17:14:10Z","updated_at":"2013-03-14T14:36:44Z","name":"Kenmore
460
+ S3218AR","slug":"kenmore-s3218ar","_type":"Home::Grills::Gas","types":["Propane"],"msrp":null,"article_ids":["50fb2e47bd0286d55501334a","50fb2e4cbd0286d55501338d","50fb2e50bd0286d5550133d0","50fb2e63bd0286d5550134dd","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-10-05T17:10:00+00:00","upc":null,"price_grabber_id":"883339143","rubric_id":"50f9ed93bd0286638e0003b4","brand_id":"50f9ed77bd0286638e0001c9","model":"S3218AR","resource_uri":"/products/kenmore-s3218ar","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":3.27,"ranking":{"total":7,"rank":6,"percentile":15},"rubric":{"id":"50f9ed93bd0286638e0003b4","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
461
+ Gas Grill Rubric","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003b4","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b4"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa369bbd0286ee4a039bed","name":"brand_name","value":"(Kenmore)","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bee","name":"manufacturer_name","value":"Kenmore","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bef","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf0","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf1","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf2","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf3","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf4","name":"Fuel","value":["LP
462
+ Gas"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
463
+ Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
464
+ (adaptor sold separately)"]},{"id":"50fa369bbd0286ee4a039bf5","name":"Install
465
+ Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf6","name":"Burners","value":5,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf7","name":"BTU
466
+ Output (total)","value":85000,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf8","name":"Total
467
+ cooking area","value":784,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf9","name":"Primary
468
+ cooking area","value":400,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfa","name":"Warming
469
+ rack area","value":290,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfb","name":"Height","value":60.8,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfc","name":"Width","value":48.6,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfd","name":"Depth","value":24.6,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfe","name":"Finish
470
+ or Color","value":"Red / Stainless","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa369bbd0286ee4a039bff","name":"Control
471
+ Dials","value":7,"value_units":"","value_type":"Integer","order":0,"options":["Electricity"]},{"id":"50fa369bbd0286ee4a039c00","name":"Ignition
472
+ type","value":"Auto Electronic","value_units":"","value_type":"String","order":0,"options":["Push-button
473
+ Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa369bbd0286ee4a039c01","name":"Side
474
+ Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa369bbd0286ee4a039c02","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]}],"attachments":[{"id":"50fce11fbd02860b13010754","created_at":"2013-01-21T06:33:03Z","updated_at":"2013-01-21T06:33:03Z","name":"Kenmore-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s50x50_Kenmore-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s150x150_Kenmore-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s250x250_Kenmore-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s300x150_Kenmore-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s300x112_Kenmore-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s500x500_Kenmore-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s600x400_Kenmore-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s600x600_Kenmore-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x400_Kenmore-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x350_Kenmore-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x110_Kenmore-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/Kenmore-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/Kenmore-Vanity.jpg","file_size":32529,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce11fbd02860b13010754","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce11fbd02860b13010754"}}}],"brand":{"id":"50f9ed77bd0286638e0001c9","created_at":"2011-04-13T15:03:17Z","updated_at":"2013-01-19T00:49:05Z","name":"Kenmore","slug":"kenmore","url":null,"resource_uri":"/products?brand=kenmore","website_ids":["50e669d7bd028648e000002b","50e669d7bd028648e0000021","50e669d7bd028648e0000023","50e669d7bd028648e0000019","50e669d7bd028648e000001b","50e669d7bd028648e000001d"],"websites":[{"code":"RFI","name":"Refrigerators","url":"refrigeratorinfo.com"},{"code":"WDI","name":"Laundry","url":"washerdryerinfo.com"},{"code":"VCI","name":"Vacuums","url":"vacuumcleanerinfo.com"},{"code":"DWI","name":"Dishwashers","url":"dishwashersinfo.com"},{"code":"GRI","name":"Grills","url":"grillsinfo.com"},{"code":"OVI","name":"Ovens","url":"oveninfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/ee5037a5bec182596e7e41a91fa7f9667a9aa658/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed77bd0286638e0001c9","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed77bd0286638e0001c9"}}},"awards":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d39f82dc7b9e0000030","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d39f82dc7b9e0000030"}}},{"id":"50fa2cfc96ab5860160c6ac2","created_at":"2011-10-12T18:55:14Z","updated_at":"2013-03-14T14:36:39Z","name":"Big
475
+ Green Egg Medium","slug":"big-green-egg-medium","_type":"Home::Grills::Charcoal","types":["Charcoal"],"msrp":649.0,"article_ids":["50fb2e67bd0286d55501351e","50fb2e6bbd0286d555013560","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-10-12T18:55:00+00:00","upc":null,"price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b5","brand_id":"50f9ed79bd0286638e000215","model":"Medium","resource_uri":"/products/big-green-egg-medium","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.74,"ranking":{"total":3,"rank":2,"percentile":34},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
476
+ Charcoal Grill Rubric","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":true,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa3698bd0286ee4a0394dd","name":"brand_name","value":"(Big
477
+ Green Egg)","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394de","name":"manufacturer_name","value":"Big
478
+ Green Egg","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394df","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e0","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e1","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e2","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e3","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e4","name":"Fuel","value":["Charcoal"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
479
+ Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
480
+ (adaptor sold separately)"]},{"id":"50fa3698bd0286ee4a0394e5","name":"Install
481
+ Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a0394e6","name":"Total
482
+ cooking area","value":177,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a0394e7","name":"Finish
483
+ or Color","value":"Green","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa3698bd0286ee4a0394e8","name":"Ignition
484
+ type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
485
+ Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa3698bd0286ee4a0394e9","name":"Side
486
+ Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a0394ea","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a0394eb","name":"Original
487
+ Price","value":649.0,"value_units":"","value_type":"Decimal","order":0,"options":[]}],"attachments":[{"id":"50fce12cbd0286de7b010793","created_at":"2013-01-21T06:33:16Z","updated_at":"2013-01-21T06:33:16Z","name":"MEgg.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s50x50_MEgg.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s150x150_MEgg.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s250x250_MEgg.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s300x150_MEgg.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s300x112_MEgg.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s500x500_MEgg.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s600x400_MEgg.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s600x600_MEgg.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x400_MEgg.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x350_MEgg.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x110_MEgg.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/MEgg.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/MEgg.jpg","file_size":24813,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce12cbd0286de7b010793","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce12cbd0286de7b010793"}}}],"brand":{"id":"50f9ed79bd0286638e000215","created_at":"2011-10-12T17:05:13Z","updated_at":"2013-01-19T00:49:04Z","name":"Big
488
+ Green Egg","slug":"big-green-egg","url":null,"resource_uri":"/products?brand=big-green-egg","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grillsinfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/c32bb02dc90868b3732566a0274ca535cc59c464/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed79bd0286638e000215","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed79bd0286638e000215"}}},"awards":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d3af82dc7b9e0000031","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d3af82dc7b9e0000031"}}},{"id":"50fa2cfd96ab5860160c6ac7","created_at":"2011-10-12T19:32:52Z","updated_at":"2013-03-14T14:36:38Z","name":"Primo
489
+ Kamado","slug":"primo-kamado","_type":"Home::Grills::Charcoal","types":["Charcoal"],"msrp":829.99,"article_ids":["50fb2e4cbd0286d55501338d","50fb2e5ebd0286d55501349a","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-10-12T19:31:00+00:00","upc":null,"price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b5","brand_id":"50f9ed79bd0286638e000214","model":"Kamado","resource_uri":"/products/primo-kamado","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":10.0,"ranking":{"total":3,"rank":1,"percentile":67},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
490
+ Charcoal Grill Rubric","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa3698bd0286ee4a03952e","name":"brand_name","value":"(Primo)","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a03952f","name":"manufacturer_name","value":"Primo","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039530","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039531","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039532","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039533","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039534","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039535","name":"Fuel","value":["Charcoal"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
491
+ Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
492
+ (adaptor sold separately)"]},{"id":"50fa3698bd0286ee4a039536","name":"Install
493
+ Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a039537","name":"Total
494
+ cooking area","value":280,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a039538","name":"Height","value":429.75,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a039539","name":"Width","value":21.5,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a03953a","name":"Depth","value":21.5,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a03953b","name":"Finish
495
+ or Color","value":"Black Ceramic","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa3698bd0286ee4a03953c","name":"Ignition
496
+ type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
497
+ Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa3698bd0286ee4a03953d","name":"Side
498
+ Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a03953e","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a03953f","name":"Original
499
+ Price","value":829.99,"value_units":"","value_type":"Decimal","order":0,"options":[]}],"attachments":[{"id":"50fce12bbd02862d7701078b","created_at":"2013-01-21T06:33:15Z","updated_at":"2013-01-21T06:33:15Z","name":"Primo-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s50x50_Primo-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s150x150_Primo-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s250x250_Primo-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s300x150_Primo-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s300x112_Primo-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s500x500_Primo-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s600x400_Primo-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s600x600_Primo-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x400_Primo-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x350_Primo-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x110_Primo-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/Primo-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/Primo-Vanity.jpg","file_size":15587,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce12bbd02862d7701078b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce12bbd02862d7701078b"}}}],"brand":{"id":"50f9ed79bd0286638e000214","created_at":"2011-10-12T17:04:59Z","updated_at":"2013-01-19T00:49:04Z","name":"Primo","slug":"primo","url":null,"resource_uri":"/products?brand=primo","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grillsinfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/23f6bdb326780525380b08dcbc9cc0a26385d30c/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed79bd0286638e000214","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed79bd0286638e000214"}}},"awards":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d3af82dc7b9e0000032","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d3af82dc7b9e0000032"}}}],"authors":[{"id":"50fc4e94bd0286d5550b4bf8","created_at":"2013-01-20T20:07:48Z","updated_at":"2013-02-13T15:13:52Z","name":"Richard
500
+ Baguley","title":"Editor","short_bio":"Richard Baguley is a valued contributor
501
+ to the Reviewed.com family of sites.","long_bio":"Richard Baguley is a valued
502
+ contributor to the Reviewed.com family of sites.","slug":"richard-baguley","social":{"email":"","facebook":"","twitter":""},"resource_uri":"/authors/richard-baguley","avatars":{"small":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?s=48&d=mm","medium":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?s=128&d=mm","normal":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=mm"},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/authors","href":"https://the-guide-staging.herokuapp.com/api/v1/authors"},"resource":{"rel":"/api/v1/authors/50fc4e94bd0286d5550b4bf8","href":"https://the-guide-staging.herokuapp.com/api/v1/authors/50fc4e94bd0286d5550b4bf8"}}}],"attachments":[{"id":"50fb2e71bd0286d5550135b3","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s50x50_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s150x150_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s250x250_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s300x150_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s300x112_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s500x500_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s600x400_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s600x600_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x400_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x350_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x110_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/table-b297567d41f58254691baba562ae65d34cb1c3f0.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","file_size":152},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e71bd0286d5550135b3","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135b3"}}},{"id":"50fb2e71bd0286d5550135cb","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e71bd0286d5550135cb","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135cb"}}},{"id":"50fb2e71bd0286d5550135cc","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e71bd0286d5550135cc","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135cc"}}},{"id":"50fb2e72bd0286d5550135d0","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e72bd0286d5550135d0","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d0"}}},{"id":"50fb2e72bd0286d5550135d1","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e72bd0286d5550135d1","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d1"}}},{"id":"50fb2e72bd0286d5550135d5","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e72bd0286d5550135d5","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d5"}}},{"id":"50fb2e72bd0286d5550135d6","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e72bd0286d5550135d6","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d6"}}},{"id":"50fb2e74bd0286d5550135e4","created_at":"2013-01-19T23:38:28Z","updated_at":"2013-01-19T23:38:28Z","name":"BGE-medium-web2.jpg","type":"file","tags":["old-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s50x50_BGE-medium-web2.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s150x150_BGE-medium-web2.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s250x250_BGE-medium-web2.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s300x150_BGE-medium-web2.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s300x112_BGE-medium-web2.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s500x500_BGE-medium-web2.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s600x400_BGE-medium-web2.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s600x600_BGE-medium-web2.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x400_BGE-medium-web2.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x350_BGE-medium-web2.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x110_BGE-medium-web2.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/BGE-medium-web2.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/BGE-medium-web2.jpg","file_size":81744,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fb2e74bd0286d5550135e4","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e74bd0286d5550135e4"}}}],"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb2e6fbd0286d5550135a2","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb2e6fbd0286d5550135a2"}}}'
519
503
  http_version:
520
- recorded_at: Sat, 27 Apr 2013 01:45:53 GMT
521
- recorded_with: VCR 2.3.0
504
+ recorded_at: Thu, 27 Jun 2013 15:41:47 GMT
505
+ recorded_with: VCR 2.5.0