brewery_db 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +6 -14
  2. data/CHANGELOG.md +6 -0
  3. data/README.md +9 -0
  4. data/brewery_db.gemspec +1 -1
  5. data/lib/brewery_db.rb +3 -0
  6. data/lib/brewery_db/client.rb +12 -0
  7. data/lib/brewery_db/resources/fermentables.rb +13 -0
  8. data/lib/brewery_db/resources/hops.rb +13 -0
  9. data/lib/brewery_db/resources/yeasts.rb +13 -0
  10. data/lib/brewery_db/version.rb +1 -1
  11. data/spec/brewery_db/client_spec.rb +19 -14
  12. data/spec/brewery_db/config_spec.rb +12 -10
  13. data/spec/brewery_db/mash_spec.rb +2 -2
  14. data/spec/brewery_db/middleware/error_handler_spec.rb +1 -1
  15. data/spec/brewery_db/resource_spec.rb +12 -6
  16. data/spec/brewery_db/resources/beers_spec.rb +2 -2
  17. data/spec/brewery_db/resources/breweries_spec.rb +2 -2
  18. data/spec/brewery_db/resources/brewery_spec.rb +8 -8
  19. data/spec/brewery_db/resources/categories_spec.rb +2 -2
  20. data/spec/brewery_db/resources/fermentables_spec.rb +21 -0
  21. data/spec/brewery_db/resources/glassware_spec.rb +2 -2
  22. data/spec/brewery_db/resources/hops_spec.rb +21 -0
  23. data/spec/brewery_db/resources/locations_spec.rb +2 -2
  24. data/spec/brewery_db/resources/search_spec.rb +5 -5
  25. data/spec/brewery_db/resources/styles_spec.rb +2 -2
  26. data/spec/brewery_db/resources/yeasts_spec.rb +21 -0
  27. data/spec/brewery_db/web_hook_spec.rb +1 -1
  28. data/spec/fixtures/BreweryDB_Resource/_get/a_list_of_resources/can_be_enumerated.yml +237 -141
  29. data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/{sets_the_exception_message_to_the_error_message_in_the_response.yml → includes_the_response_message_in_the_error_message.yml} +11 -13
  30. data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/includes_the_response_status_in_the_error_message.yml +36 -0
  31. data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/raises_an_exception.yml +11 -13
  32. data/spec/fixtures/BreweryDB_Resource/_get/an_OK_request/{name/.yml → returns_the_data.yml} +13 -11
  33. data/spec/fixtures/BreweryDB_Resources_Beers/_all/fetches_all_of_the_beers_at_once.yml +497 -497
  34. data/spec/fixtures/BreweryDB_Resources_Beers/_find/fetches_only_the_beer_asked_for.yml +13 -11
  35. data/spec/fixtures/BreweryDB_Resources_Breweries/_all/fetches_all_of_the_breweries_at_once.yml +164 -147
  36. data/spec/fixtures/BreweryDB_Resources_Breweries/_find/fetches_only_the_brewery_asked_for.yml +13 -11
  37. data/spec/fixtures/BreweryDB_Resources_Categories/_all/fetches_all_of_the_cagtegories_at_once.yml +11 -9
  38. data/spec/fixtures/BreweryDB_Resources_Categories/_find/fetches_only_the_category_asked_for.yml +11 -9
  39. data/spec/fixtures/BreweryDB_Resources_Fermentables/_all/fetches_all_of_the_fermentables_at_once.yml +189 -0
  40. data/spec/fixtures/BreweryDB_Resources_Fermentables/_find/fetches_only_the_fermentable_asked_for.yml +42 -0
  41. data/spec/fixtures/BreweryDB_Resources_Glassware/_all/fetches_all_of_the_glassware_at_once.yml +11 -9
  42. data/spec/fixtures/BreweryDB_Resources_Glassware/_find/fetches_only_the_glassware_asked_for.yml +11 -9
  43. data/spec/fixtures/BreweryDB_Resources_Hops/_all/fetches_all_of_the_hops_at_once.yml +248 -0
  44. data/spec/fixtures/BreweryDB_Resources_Hops/_find/fetches_only_the_hop_asked_for.yml +45 -0
  45. data/spec/fixtures/BreweryDB_Resources_Locations/_all/fetches_all_of_the_breweries_at_once.yml +252 -686
  46. data/spec/fixtures/BreweryDB_Resources_Locations/_find/fetches_only_the_location_asked_for.yml +35 -72
  47. data/spec/fixtures/BreweryDB_Resources_Search/_all/fetches_all_of_the_search_results_at_once.yml +486 -429
  48. data/spec/fixtures/BreweryDB_Resources_Styles/_all/fetches_all_of_the_styles_at_once.yml +54 -57
  49. data/spec/fixtures/BreweryDB_Resources_Styles/_find/fetches_only_the_style_asked_for.yml +11 -9
  50. data/spec/fixtures/BreweryDB_Resources_Yeasts/_all/fetches_all_of_the_yeasts_at_once.yml +222 -0
  51. data/spec/fixtures/BreweryDB_Resources_Yeasts/_find/fetches_only_the_yeast_asked_for.yml +49 -0
  52. metadata +38 -16
@@ -8,33 +8,35 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - BreweryDB Ruby Gem 0.0.1
11
+ - BreweryDB Ruby Gem 0.2.0
12
12
  response:
13
13
  status:
14
14
  code: 200
15
15
  message:
16
16
  headers:
17
17
  date:
18
- - Sat, 11 Aug 2012 23:35:42 GMT
18
+ - Mon, 22 Jul 2013 00:05:47 GMT
19
19
  server:
20
- - Apache/2.2.22 (Amazon)
20
+ - Apache/2.2.24 (Amazon)
21
21
  x-powered-by:
22
- - PHP/5.3.13
22
+ - PHP/5.3.26
23
23
  x-ratelimit-limit:
24
24
  - Unlimited
25
25
  x-ratelimit-remaining:
26
26
  - Unlimited
27
+ vary:
28
+ - Accept-Encoding
27
29
  content-length:
28
- - '2371'
30
+ - '1156'
29
31
  connection:
30
32
  - close
31
33
  content-type:
32
34
  - application/json
33
35
  body:
34
- encoding: US-ASCII
35
- string: ! '{"message":"READ ONLY MODE: Request Successful","data":{"id":"99Uj1n","name":"Curmudgeon\u2019s
36
- Better Half","abv":"11.9","glasswareId":5,"styleId":13,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/99Uj1n\/upload_vcInAc-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/99Uj1n\/upload_vcInAc-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/99Uj1n\/upload_vcInAc-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-02-21
37
- 11:27:00","updateDate":"2012-03-22 13:05:50","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
36
+ encoding: UTF-8
37
+ string: '{"message":"READ ONLY MODE: Request Successful","data":{"id":"99Uj1n","name":"Curmudgeon\u2019s
38
+ Better Half","abv":"11.9","glasswareId":5,"styleId":13,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/99Uj1n\/upload_vcInAc-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/99Uj1n\/upload_vcInAc-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/99Uj1n\/upload_vcInAc-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-02-21
39
+ 11:27:00","updateDate":"2012-09-08 17:12:04","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
38
40
  02:41:33"},"style":{"id":13,"categoryId":1,"category":{"id":1,"name":"British
39
41
  Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"Old Ale","description":"Dark
40
42
  amber to brown in color, old ales are medium to full bodied with a malty sweetness.
@@ -57,5 +59,5 @@ http_interactions:
57
59
  organizers may choose to distinguish these types of old ale from modern versions.)","ibuMin":"30","ibuMax":"65","abvMin":"6","abvMax":"9","srmMin":"12","srmMax":"30","ogMin":"1.058","fgMin":"1.014","fgMax":"1.03","createDate":"2012-03-21
58
60
  20:06:45"}},"status":"success"}'
59
61
  http_version:
60
- recorded_at: Sat, 11 Aug 2012 23:35:43 GMT
61
- recorded_with: VCR 2.2.2
62
+ recorded_at: Mon, 22 Jul 2013 00:05:48 GMT
63
+ recorded_with: VCR 2.4.0
@@ -8,39 +8,47 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - BreweryDB Ruby Gem 0.0.1
11
+ - BreweryDB Ruby Gem 0.2.0
12
12
  response:
13
13
  status:
14
14
  code: 200
15
15
  message:
16
16
  headers:
17
17
  date:
18
- - Sat, 11 Aug 2012 23:35:43 GMT
18
+ - Mon, 22 Jul 2013 00:05:48 GMT
19
19
  server:
20
- - Apache/2.2.22 (Amazon)
20
+ - Apache/2.2.24 (Amazon)
21
21
  x-powered-by:
22
- - PHP/5.3.13
22
+ - PHP/5.3.26
23
23
  x-ratelimit-limit:
24
24
  - Unlimited
25
25
  x-ratelimit-remaining:
26
26
  - Unlimited
27
+ vary:
28
+ - Accept-Encoding
29
+ content-length:
30
+ - '13953'
27
31
  connection:
28
32
  - close
29
- transfer-encoding:
30
- - chunked
31
33
  content-type:
32
34
  - application/json
33
35
  body:
34
- encoding: US-ASCII
35
- string: ! '{"currentPage":1,"numberOfPages":2,"totalResults":55,"data":[{"id":"QtDyxR","name":"612
36
- Brew LLC","description":"At 612Brew, the newest beer company in the 612, we
37
- want to make your newest favorite beer you\u2019ve never had.\r\n\r\nWith
38
- our operation moving to a larger location in Uptown, we have the opportunity
39
- to make and test out much larger batches of hand crafted beer and present
40
- them for you to try. You never know what we may brew next, a Porter, a Pilsner,
41
- a Bock or a Belgian. We are excited for each new beer that we make and hope
42
- you get excited to try them.","website":"http:\/\/612brew.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QtDyxR\/upload_RQJsAZ-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QtDyxR\/upload_RQJsAZ-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QtDyxR\/upload_RQJsAZ-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
43
- 02:41:43","updateDate":"2012-03-21 19:06:15"},{"id":"SIlrQa","name":"961 BEER","description":"961
36
+ encoding: UTF-8
37
+ string: '{"currentPage":1,"numberOfPages":2,"totalResults":66,"data":[{"id":"snQlvg","name":"10
38
+ Barrel Brewing Company","description":"We brew into a 10 Barrel Brewhouse,
39
+ giving us the freedom to experiment with our recipes in order to produce the
40
+ highest quality of beer that we can. This isn\u2019t just any 10 Barrel brewhouse
41
+ though, it\u2019s a state of the art system that allows us to blend new technology
42
+ with the tradition of craft fundamentals. In other words we can\u2019t produce
43
+ a TON of beer, but we can make it the highest quality.","website":"http:\/\/www.10barrel.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/snQlvg\/upload_qMSc0A-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/snQlvg\/upload_qMSc0A-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/snQlvg\/upload_qMSc0A-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
44
+ 02:41:43","updateDate":"2012-12-03 11:44:27"},{"id":"QtDyxR","name":"612 Brew","description":"At
45
+ 612Brew, the newest beer company in the 612, we want to make your newest favorite
46
+ beer you\u2019ve never had.\r\n\r\nWith our operation moving to a larger location
47
+ in Uptown, we have the opportunity to make and test out much larger batches
48
+ of hand crafted beer and present them for you to try. You never know what
49
+ we may brew next, a Porter, a Pilsner, a Bock or a Belgian. We are excited
50
+ for each new beer that we make and hope you get excited to try them.","website":"http:\/\/612brew.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QtDyxR\/upload_TLZ9B4-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QtDyxR\/upload_TLZ9B4-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QtDyxR\/upload_TLZ9B4-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
51
+ 02:41:43","updateDate":"2012-10-23 13:53:49"},{"id":"SIlrQa","name":"961 BEER","description":"961
44
52
  Beer began during the dark days of the July 2006 siege on Lebanon. Tired with
45
53
  the lack of quality beer in Lebanon, Mazen Hajjar and his friends started
46
54
  to brew beer in his very own kitchen. The first batches were brewed in 20
@@ -52,8 +60,12 @@ http_interactions:
52
60
  in the world, and the only microbrewery in the Middle East (and still are).
53
61
  Although 961 Beer now brews nearly 2 million liters per year, they still insist
54
62
  upon making beer using the very same principles: traditional techniques, quality
55
- ingredients and love.","website":"http:\/\/www.961beer.com","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/SIlrQa\/upload_N7AHMN-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/SIlrQa\/upload_N7AHMN-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/SIlrQa\/upload_N7AHMN-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-02-08
56
- 15:28:05","updateDate":"2012-03-21 19:06:20"},{"id":"eS7K86","name":"Aksarben
63
+ ingredients and love.","website":"http:\/\/www.961beer.com","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/SIlrQa\/upload_N7AHMN-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/SIlrQa\/upload_N7AHMN-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/SIlrQa\/upload_N7AHMN-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-02-08
64
+ 15:28:05","updateDate":"2012-03-21 19:06:20"},{"id":"wXmTDU","name":"Abbey
65
+ Wright Brewing Company","description":"The Valley Inn & Abbey Wright Brewing
66
+ Co. have a superb selection of our own hand-crafted beers. We also have 22
67
+ beers on tap, and a huge selection of bottled beer from around the world.","website":"http:\/\/www.thevalley-inn.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wXmTDU\/upload_o5pHUZ-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wXmTDU\/upload_o5pHUZ-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wXmTDU\/upload_o5pHUZ-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
68
+ 02:41:43","updateDate":"2012-10-24 11:48:27"},{"id":"eS7K86","name":"Aksarben
57
69
  Brewing Company","description":"Aksarben Brewing Company","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
58
70
  02:41:43","updateDate":"2012-03-21 19:06:03"},{"id":"MMSB2i","name":"Ale Asylum","description":"At
59
71
  ALE ASYLUM, we brew beers in the tradition of our friend Crusty Oldbrewer
@@ -66,34 +78,57 @@ http_interactions:
66
78
  You know who makes it, you know what it\u2019s made with. You know after having
67
79
  one you\u2019ll want another.\r\n\r\nWe brew traditional, bold beers for those
68
80
  who demand quality and consistency. To those people we say: raise a pint,
69
- because you believe how we believe.","website":"http:\/\/www.aleasylum.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/MMSB2i\/upload_KgWLgF-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/MMSB2i\/upload_KgWLgF-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/MMSB2i\/upload_KgWLgF-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
70
- 02:41:44","updateDate":"2012-03-24 01:29:29"},{"id":"R1oHSN","name":"Alzeyer
71
- Volker Br\u00e4u","established":"2006","isOrganic":"N","status":"new_unverified","statusDisplay":"New,
72
- Unverified","createDate":"2012-08-07 10:19:23","updateDate":"2012-08-07 10:19:23"},{"id":"jnSdDd","name":"Amalgamated
73
- Brewing Co","description":"Amalgamated is a craft brewery and micro distillery
81
+ because you believe how we believe.","website":"http:\/\/www.aleasylum.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/MMSB2i\/upload_mgyl30-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/MMSB2i\/upload_mgyl30-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/MMSB2i\/upload_mgyl30-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
82
+ 02:41:44","updateDate":"2012-10-30 12:04:42"},{"id":"R1oHSN","name":"Alzeyer
83
+ Volker Br\u00e4u","website":"http:\/\/www.volkerbraeu.de\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-08-07
84
+ 10:19:23","updateDate":"2012-08-16 11:41:03"},{"id":"jnSdDd","name":"Amalgamated
85
+ Brewing Company","description":"Amalgamated is a craft brewery and micro distillery
74
86
  in St. Louis, MO. \r\n\r\nWe offer a great selection of craft beer from our
75
87
  own brewasters, as well as from other distinctive craft brewers across country,
76
88
  in our three restaurants\/brewpubs. We also distill handcrafted spirits, including
77
89
  85 Lashes rum, which can be found in restaurants and liquor stores with good
78
- taste across the St. Louis metro area.","website":"http:\/\/www.amalgamatedbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/jnSdDd\/upload_4wuDUD-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/jnSdDd\/upload_4wuDUD-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/jnSdDd\/upload_4wuDUD-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
79
- 02:41:44","updateDate":"2012-03-21 19:06:15"},{"id":"pwfPCD","name":"Big Boss
90
+ taste across the St. Louis metro area.","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/jnSdDd\/upload_4wuDUD-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/jnSdDd\/upload_4wuDUD-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/jnSdDd\/upload_4wuDUD-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
91
+ 02:41:44","updateDate":"2012-10-21 13:04:17"},{"id":"GOh8Oi","name":"B. Nektar
92
+ Meadery","description":"Known for the most amazing and creative alcoholic
93
+ beverages made from honey. B. Nektar is a world-wide sensation.\r\n\r\nTo
94
+ boldly go where no meadery has gone before. To prove to you that the horrible
95
+ mead your best friend made one time in college is NOT what a good mead should
96
+ taste like. To show you that mead doesn''t HAVE to be sweet. To educate you
97
+ on the different styles of mead. To bring mead into the mainstream, but still
98
+ maintain our integrity. To everyday thank my mom and tell her that I love
99
+ her (shouldn''t we all?).","website":"http:\/\/www.bnektar.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GOh8Oi\/upload_ageyZ1-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GOh8Oi\/upload_ageyZ1-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GOh8Oi\/upload_ageyZ1-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-01-24
100
+ 11:58:59","updateDate":"2013-01-24 12:00:24"},{"id":"OR1ggJ","name":"Beaus
101
+ All Natural Brewing Company","description":"Beaus is located inside an old
102
+ tannery in an industrial park, and makes some of the best craft brews in Canada,
103
+ showing ingenuity in their craft, but also in marketing and distribution.
104
+ From their website:\r\n\r\nWe\u2019re fiercely independent. Our beer and our
105
+ brewery is a labour of love from start to finish. There were no deep pockets
106
+ behind us when we launched and there aren\u2019t any now either. Our success
107
+ is derived from hard work, unbridled passion and the support from customers
108
+ who appreciate these qualities and a well made beer.\r\n\r\nWhile we take
109
+ great care in making the best beer possible, we don\u2019t take ourselves
110
+ too seriously. We go out of our way to take any pretense out of our beer.
111
+ We believe in rustic, natural quality over fancy-pants snobbery. Our marketing
112
+ and branding efforts try to reinforce this and we choose to market by talking
113
+ to folks instead of blaring messages through mass-market advertising.","website":"http:\/\/beaus.ca\/","established":"2006","isOrganic":"Y","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OR1ggJ\/upload_due5zU-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OR1ggJ\/upload_due5zU-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OR1ggJ\/upload_due5zU-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-03-21
114
+ 10:33:23","updateDate":"2013-03-21 10:42:31"},{"id":"pwfPCD","name":"Big Boss
80
115
  Brewing Company","description":"Big Boss Brewing Company was started in 2006
81
- and shipped it first beer in the 2nd quarter of 2007 in the triangle area
116
+ and shipped its first beer in the 2nd quarter of 2007 in the triangle area
82
117
  of North Carolina. It was formed as collaboration between Geoff Lamb, a UNC
83
118
  graduate, who returned to North Carolina in 2006 to join forces with Brewmaster,
84
119
  Brad Wynn, who has 12+ years of brewing experience including several years
85
- with Victory, Wild Goose and Native Brewing Company.","website":"http:\/\/www.bigbossbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/pwfPCD\/upload_fx97RX-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/pwfPCD\/upload_fx97RX-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/pwfPCD\/upload_fx97RX-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
86
- 02:41:46","updateDate":"2012-04-10 18:48:42"},{"id":"HSXNFA","name":"Birdsview
120
+ with Victory, Wild Goose and Native Brewing Company.","website":"http:\/\/www.bigbossbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/pwfPCD\/upload_fx97RX-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/pwfPCD\/upload_fx97RX-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/pwfPCD\/upload_fx97RX-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
121
+ 02:41:46","updateDate":"2013-03-23 11:42:56"},{"id":"HSXNFA","name":"Birdsview
87
122
  Brewing Company","description":"Birdsview Brewing Company started in July
88
123
  2006. It is a small family run craft brewery located in the beatuiful North
89
124
  Cascades in NW Washington State.\r\n\r\nKids & families are always welcome
90
- inside. The outdoor beer garden is 21 and over","website":"http:\/\/www.birdsviewbrewingco.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/HSXNFA\/upload_33Fxdn-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/HSXNFA\/upload_33Fxdn-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/HSXNFA\/upload_33Fxdn-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
125
+ inside. The outdoor beer garden is 21 and over","website":"http:\/\/www.birdsviewbrewingco.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/HSXNFA\/upload_33Fxdn-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/HSXNFA\/upload_33Fxdn-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/HSXNFA\/upload_33Fxdn-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
91
126
  02:41:46","updateDate":"2012-07-16 12:14:59"},{"id":"s1ihaW","name":"Birra
92
127
  Amiata","description":"Craft brewery which seeks to enhance its production
93
128
  through the clear waters of the ancient volcano (Mount Amiata) and typical
94
129
  local products such as chestnuts (recognized PGI), saffron and honey thorn
95
130
  Maremma\r\n\r\nBirra Amiata uses the finest ingredients of real beer, not
96
- pasteurized, making the public to rediscover the flavor of an old product","website":"http:\/\/www.birra-amiata.it\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/s1ihaW\/upload_3D2Say-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/s1ihaW\/upload_3D2Say-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/s1ihaW\/upload_3D2Say-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
131
+ pasteurized, making the public to rediscover the flavor of an old product","website":"http:\/\/www.birra-amiata.it\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/s1ihaW\/upload_3D2Say-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/s1ihaW\/upload_3D2Say-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/s1ihaW\/upload_3D2Say-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
97
132
  02:41:46","updateDate":"2012-03-21 19:06:15"},{"id":"R0cSPu","name":"Black
98
133
  Lotus Brewing Company","description":"Mark Harper, Michael Allan and his wife
99
134
  Jodi Allan (Mark\u2019s sister) founded Black Lotus Brewing Company in 2006. Their
@@ -109,7 +144,7 @@ http_interactions:
109
144
  should be extended to the community at large and the world when possible. This
110
145
  is accomplished by supporting charitable contributions and activities that
111
146
  bring the world more creation, more compassion, more art, more tastefulness,
112
- and more peace.","website":"http:\/\/blacklotusbrewery.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/R0cSPu\/upload_xDb1ip-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/R0cSPu\/upload_xDb1ip-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/R0cSPu\/upload_xDb1ip-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
147
+ and more peace.","website":"http:\/\/blacklotusbrewery.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/R0cSPu\/upload_xDb1ip-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/R0cSPu\/upload_xDb1ip-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/R0cSPu\/upload_xDb1ip-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
113
148
  02:41:46","updateDate":"2012-06-04 00:01:10"},{"id":"NYOvdO","name":"Black
114
149
  Star Co-op Pub & Brewery","description":"With a special focus on local producers,
115
150
  the basic mission of the Black Star Co-op is to foster an environment in which
@@ -118,24 +153,40 @@ http_interactions:
118
153
  through the responsible enjoyment great beer and food.\r\n\r\nAs the first
119
154
  enterprise of this type, we seek to realize an alternative business model
120
155
  for brewpubs and to help expand the co-operative movement into new and innovative
121
- areas \u2014 both in Austin and around the world.","website":"http:\/\/www.blackstar.coop\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/NYOvdO\/upload_yun5pM-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/NYOvdO\/upload_yun5pM-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/NYOvdO\/upload_yun5pM-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
122
- 02:41:46","updateDate":"2012-06-27 13:53:30"},{"id":"EighDS","name":"Brauerei
123
- Schmieriger Lachs","established":"2006","isOrganic":"N","status":"new_unverified","statusDisplay":"New,
124
- Unverified","createDate":"2012-08-07 10:18:27","updateDate":"2012-08-07 10:18:27"},{"id":"wfAwfx","name":"BrewDog
156
+ areas \u2014 both in Austin and around the world.","website":"http:\/\/www.blackstar.coop\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/NYOvdO\/upload_yun5pM-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/NYOvdO\/upload_yun5pM-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/NYOvdO\/upload_yun5pM-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
157
+ 02:41:46","updateDate":"2012-06-27 13:53:30"},{"id":"GKA5lt","name":"Brasseurs
158
+ du Hameau","description":"The Brewers of Hamlet took up residence in the village
159
+ to make a craft beer quality.\r\nThe term nano-brewery is a project which
160
+ initially is modest in terms of quantity, about 750 liters per week. This
161
+ is actually the smallest brewery in Canada.\r\nThe production started in spring
162
+ 2006 and initially served the MRC des Sources and some specialized in the
163
+ Eastern Townships and Bois-Francs shops. The increased demand for our products
164
+ in the region of Montreal, Lower Laurentians and the Outaouais has led us
165
+ to expand our market.\r\nOur beer is produced from a little old process used
166
+ today by brewers: the brewery floors. This technique works by gravity and
167
+ will involve the four floors of the facility. In addition, the beer is fermented
168
+ in glass demijohns in 50 liters, which gives it very valuable qualities.","website":"http:\/\/lesbrasseursduhameau.ca\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GKA5lt\/upload_80SWV7-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GKA5lt\/upload_80SWV7-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GKA5lt\/upload_80SWV7-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-07-04
169
+ 20:23:56","updateDate":"2013-07-05 11:01:13"},{"id":"EighDS","name":"Brauerei
170
+ Schmieriger Lachs","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-08-07
171
+ 10:18:27","updateDate":"2012-08-15 15:44:46"},{"id":"wfAwfx","name":"BrewDog
125
172
  Ltd","description":"BrewDog is a Scottish craft brewery located in the town
126
173
  of Fraserburgh, Aberdeenshire.\r\n\r\nBrewDog was founded in 2006 by friends
127
174
  James Watt and Martin Dickie. The brewery at the Kessock Industrial Estate
128
175
  in Fraserburgh produced its first brew in April 2007. It is Scotland''s largest
129
176
  independently owned brewery producing about 120,000 bottles per month for
130
- export all over the world.","website":"http:\/\/brewdog.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wfAwfx\/upload_d1lvD0-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wfAwfx\/upload_d1lvD0-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wfAwfx\/upload_d1lvD0-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
131
- 02:41:48","updateDate":"2012-03-21 19:06:04"},{"id":"cSJ6eN","name":"Chatham
177
+ export all over the world.","website":"http:\/\/brewdog.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wfAwfx\/upload_tn2qSA-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wfAwfx\/upload_tn2qSA-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/wfAwfx\/upload_tn2qSA-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
178
+ 02:41:48","updateDate":"2012-08-23 12:47:02"},{"id":"OVYjJ8","name":"Burlington
179
+ Beer Company","description":"Vermont''s first community supported brewery.
180
+ We''re planning to open a Brewery in the Burlington Area featuring hand crafted
181
+ ales & lagers. Follow our adventures from idea to brewery!","website":"http:\/\/www.burlingtonbeercompany.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OVYjJ8\/upload_F5jiIP-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OVYjJ8\/upload_F5jiIP-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OVYjJ8\/upload_F5jiIP-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-10-10
182
+ 23:56:27","updateDate":"2012-10-10 23:56:50"},{"id":"cSJ6eN","name":"Chatham
132
183
  Brewing","description":"Our beer is so fresh, you don''t know whether to drink
133
184
  it or slap it.\r\n\r\nWe were tired of the generic taste of mass-market beers.
134
185
  So we decided to brew our own. At least once a week. Except when we''re on
135
186
  a fishing trip. \r\n\r\nOur brewery in in Chatham, NY. You will find us at
136
187
  the end of the alley between 20 and 22 Main Street. Stop by the brewery any
137
188
  Saturday from 11am until 5pm to for a taste (or two). We''ll even sell you
138
- a growler or a keg to take home.","website":"http:\/\/chathambrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cSJ6eN\/upload_mddF1S-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cSJ6eN\/upload_mddF1S-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cSJ6eN\/upload_mddF1S-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
189
+ a growler or a keg to take home.","website":"http:\/\/chathambrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cSJ6eN\/upload_mddF1S-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cSJ6eN\/upload_mddF1S-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cSJ6eN\/upload_mddF1S-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
139
190
  02:41:50","updateDate":"2012-03-30 12:00:04"},{"id":"195Jl2","name":"Cody
140
191
  Brewing Company","description":"Cody Brewing Company is located in Historic
141
192
  Amesbury, Massachusetts on the Powow River. We make hand crafted beer that
@@ -143,8 +194,12 @@ http_interactions:
143
194
  possible. We brew on a 7 barrel system, which is just over 200 gallons, to
144
195
  make 1200 barrels each year.\r\n\r\nHand crafted beer that combines traditional
145
196
  styles with rule breaking ideas to make the best beer possible that our customers
146
- enjoy. Always.","website":"http:\/\/www.codybrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/195Jl2\/upload_kLxCU7-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/195Jl2\/upload_kLxCU7-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/195Jl2\/upload_kLxCU7-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
147
- 02:41:51","updateDate":"2012-03-21 19:06:12"},{"id":"OQJeOY","name":"Crabtree
197
+ enjoy. Always.","website":"http:\/\/www.codybrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/195Jl2\/upload_kPCSAe-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/195Jl2\/upload_kPCSAe-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/195Jl2\/upload_kPCSAe-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
198
+ 02:41:51","updateDate":"2012-09-18 17:41:27"},{"id":"AQE3Sx","name":"Coedo
199
+ Brewery","description":"Representing Japan\u2019s globally appealing craft
200
+ beer, COEDO makes premium craft beers in Japan, whose brewing and high quality
201
+ has received accolades from the world.","website":"http:\/\/www.coedobrewery.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/AQE3Sx\/upload_VEmk2i-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/AQE3Sx\/upload_VEmk2i-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/AQE3Sx\/upload_VEmk2i-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-05-17
202
+ 23:42:08","updateDate":"2013-06-02 14:00:27"},{"id":"OQJeOY","name":"Crabtree
148
203
  Brewing Company","description":"The Crabtree Brewing Company is dedicated
149
204
  to serving the environment, the community, our customers, and our valued employees. Requiring
150
205
  the best ingredients to support unique premium beers. Keeping a dynamic business
@@ -153,24 +208,23 @@ http_interactions:
153
208
  fun doing what we love - Making Great Beer.\r\n\r\nThe Crabtree Brewing Company,
154
209
  ltd. is a Colorado based company providing premium ale, wheat, stout, and
155
210
  lager style beers. Established in 2006, this is the first micro-brewery located
156
- within Greeley, Colorado.","website":"http:\/\/www.crabtreebrewing.com","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OQJeOY\/upload_Yfs90V-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OQJeOY\/upload_Yfs90V-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OQJeOY\/upload_Yfs90V-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
211
+ within Greeley, Colorado.","website":"http:\/\/www.crabtreebrewing.com","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OQJeOY\/upload_Yfs90V-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OQJeOY\/upload_Yfs90V-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/OQJeOY\/upload_Yfs90V-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
157
212
  02:41:51","updateDate":"2012-03-21 19:06:05"},{"id":"supFO9","name":"Dead
158
213
  Frog Brewery","description":"A Canadian Craft Brewery located in Aldergrove
159
- BC and home of the finest beer in the universe! Do It Froggy Style!!!","website":"http:\/\/www.deadfrogbrewery.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/supFO9\/upload_sAyr6d-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/supFO9\/upload_sAyr6d-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/supFO9\/upload_sAyr6d-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
160
- 02:41:52","updateDate":"2012-03-21 19:06:13"},{"id":"nhaS2q","name":"Diamant-Brauerei","established":"2006","isOrganic":"N","status":"new_unverified","statusDisplay":"New,
161
- Unverified","createDate":"2012-08-07 10:20:17","updateDate":"2012-08-07 10:20:17"},{"id":"MpYI7s","name":"Doolally","description":"Doolally
214
+ BC and home of the finest beer in the universe! Do It Froggy Style!!!","website":"http:\/\/www.deadfrogbrewery.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/supFO9\/upload_sAyr6d-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/supFO9\/upload_sAyr6d-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/supFO9\/upload_sAyr6d-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
215
+ 02:41:52","updateDate":"2012-03-21 19:06:13"},{"id":"MpYI7s","name":"Doolally","description":"Doolally
162
216
  is arguably the best among the handfull of Micro-breweries in India. It is
163
217
  based in the city of Pune, in the western Indian state of Maharastra. It was
164
218
  founded on March 20, 2006 and has been growing steadly since then.\r\n\r\nAt
165
219
  any given point in time they have 4 brews on tap, one of which usually is
166
220
  a cider. Doolally experiments a lot, both with local ingridents (like a jaggery
167
221
  based Ale[2]) with flavours to complement Indian cusine or with traditonal
168
- brews like a German wheat or a good English stout.","website":"http:\/\/www.doolally.in\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/MpYI7s\/upload_ASeofj-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/MpYI7s\/upload_ASeofj-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/MpYI7s\/upload_ASeofj-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-07-30
222
+ brews like a German wheat or a good English stout.","website":"http:\/\/www.doolally.in\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/MpYI7s\/upload_ASeofj-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/MpYI7s\/upload_ASeofj-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/MpYI7s\/upload_ASeofj-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-07-30
169
223
  19:45:52","updateDate":"2012-07-30 21:55:22"},{"id":"2L24Li","name":"Dorfkrug
170
- Neindorf","established":"2006","isOrganic":"N","status":"new_unverified","statusDisplay":"New,
171
- Unverified","createDate":"2012-08-07 10:20:18","updateDate":"2012-08-07 10:20:18"},{"id":"Ptumjo","name":"Eckhoff''s
172
- Hofbrauerei","established":"2006","isOrganic":"N","status":"new_unverified","statusDisplay":"New,
173
- Unverified","createDate":"2012-08-07 10:18:31","updateDate":"2012-08-07 10:18:31"},{"id":"edZ3Sg","name":"Emerald
224
+ Neindorf","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-08-07
225
+ 10:20:18","updateDate":"2012-08-12 23:45:34"},{"id":"Ptumjo","name":"Eckhoff''s
226
+ Brauerei im Alten Land","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-08-07
227
+ 10:18:31","updateDate":"2012-08-13 12:49:24"},{"id":"edZ3Sg","name":"Emerald
174
228
  Coast Beer Co","description":"The Emerald Coast Beer Company was started in
175
229
  2006 with the goal of building a brand of beers to satisfy the taste of the
176
230
  southern beer drinker. There are four beers under the brand.","website":"http:\/\/www.emeraldcoastbeerco.com\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
@@ -184,8 +238,8 @@ http_interactions:
184
238
  Journey - everyone that lives in New Zealand, or travelled here for a holiday,
185
239
  they at some point in their or their ancestors lives had to make an Epic Journey.
186
240
  Whether it be by canoe or commercial airliner they traveled a great distance
187
- to the end of the world to be in this beautiful country of New Zealand","website":"http:\/\/www.epicbeer.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ixhJ0M\/upload_UIHydk-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ixhJ0M\/upload_UIHydk-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ixhJ0M\/upload_UIHydk-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
188
- 02:41:54","updateDate":"2012-03-21 19:06:06"},{"id":"JsaGyP","name":"Flatrock
241
+ to the end of the world to be in this beautiful country of New Zealand","website":"http:\/\/www.epicbeer.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ixhJ0M\/upload_IWbSAp-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ixhJ0M\/upload_IWbSAp-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ixhJ0M\/upload_IWbSAp-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
242
+ 02:41:54","updateDate":"2012-12-18 11:51:07"},{"id":"JsaGyP","name":"Flatrock
189
243
  Brewing Company","description":"Not very many people know about the pre-prohibition
190
244
  brewing traditions of Northwest Ohio. Many communities had their very own
191
245
  brewery selling quality beers to thirsty local customers. Flatrock Brewing
@@ -193,7 +247,7 @@ http_interactions:
193
247
  micro brewed beers. Flatrock Brewing Company produces beers using fresh grain
194
248
  and locally sourced ingredients including honey and seasonal fruits. With
195
249
  the brewery expansions we also plan on hiring local brewery employees and
196
- sales people.","website":"http:\/\/www.flatrockbrewery.com","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/JsaGyP\/upload_OgtrTm-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/JsaGyP\/upload_OgtrTm-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/JsaGyP\/upload_OgtrTm-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-06-20
250
+ sales people.","website":"http:\/\/www.flatrockbrewery.com","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/JsaGyP\/upload_OgtrTm-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/JsaGyP\/upload_OgtrTm-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/JsaGyP\/upload_OgtrTm-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-06-20
197
251
  13:44:27","updateDate":"2012-06-20 13:55:53"},{"id":"dSo7uT","name":"Gardner
198
252
  Ale House Brewery & Restaurant","description":"Gardner Ale House is the only
199
253
  full-menu brewpub in both North Central Massachusetts and Worcester County. It
@@ -208,7 +262,7 @@ http_interactions:
208
262
  and contributing to the local dining and nightlife scene. As the greater
209
263
  Gardner area continues its rapid growth, the Gardner Ale House plans to provide
210
264
  the best food, drink and entertainment in the area, 7 days a week, offering
211
- both lunch and dinner.","website":"http:\/\/www.gardnerale.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/dSo7uT\/upload_0ZliPo-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/dSo7uT\/upload_0ZliPo-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/dSo7uT\/upload_0ZliPo-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
265
+ both lunch and dinner.","website":"http:\/\/www.gardnerale.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/dSo7uT\/upload_0ZliPo-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/dSo7uT\/upload_0ZliPo-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/dSo7uT\/upload_0ZliPo-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
212
266
  02:41:55","updateDate":"2012-04-18 01:53:16"},{"id":"2dAEr0","name":"Greenpoint
213
267
  Beer Works Inc","website":"http:\/\/www.kelsoofbrooklyn.com\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
214
268
  02:41:56","updateDate":"2012-03-21 19:06:17"},{"id":"lZfiot","name":"Half
@@ -218,8 +272,8 @@ http_interactions:
218
272
  area where we sample our beers and sell them to go in all package styles.
219
273
  \r\n\r\nWe make different beers throughout the year, some we brew all the
220
274
  time and some are only around for a very short period. Our focus is to expand
221
- our abilities and enjoy our work.","website":"http:\/\/www.halfacrebeer.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/lZfiot\/upload_A0HxP0-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/lZfiot\/upload_A0HxP0-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/lZfiot\/upload_A0HxP0-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
222
- 02:41:56","updateDate":"2012-04-16 13:11:21"},{"id":"s6FkDL","name":"High
275
+ our abilities and enjoy our work.","website":"http:\/\/www.halfacrebeer.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/lZfiot\/upload_A0HxP0-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/lZfiot\/upload_A0HxP0-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/lZfiot\/upload_A0HxP0-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
276
+ 02:41:56","updateDate":"2012-10-23 15:16:03"},{"id":"s6FkDL","name":"High
223
277
  & Mighty Beer Company","description":"High & Mighty Beer Company began in
224
278
  2006 as an offshoot of Shelton Brothers beer importing company. Will Shelton
225
279
  took his idea for a novel German-style ale to Paper City Brewery in Holyoke,
@@ -230,17 +284,44 @@ http_interactions:
230
284
  and in June 2008, he abandoned his brother to focus on making American beer
231
285
  that added an American attitude to the best of European beer styles. The beer
232
286
  is still lovingly made at Paper City, but look for High & Mighty to open a
233
- brewery of its own in 2010.","website":"http:\/\/www.highandmightybeer.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/s6FkDL\/upload_S7HTTQ-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/s6FkDL\/upload_S7HTTQ-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/s6FkDL\/upload_S7HTTQ-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
234
- 02:41:57","updateDate":"2012-03-21 19:06:12"},{"id":"XYs5bX","name":"Horseheads
287
+ brewery of its own in 2010.","website":"http:\/\/www.highandmightybeer.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/s6FkDL\/upload_S7HTTQ-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/s6FkDL\/upload_S7HTTQ-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/s6FkDL\/upload_S7HTTQ-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
288
+ 02:41:57","updateDate":"2012-03-21 19:06:12"},{"id":"RVOBIF","name":"Hopfenstark","description":"The
289
+ purpose of the microbrewery Hopfenstark is to make quality beer and tasty,
290
+ made from carefully selected ingredients. Make a mix of original taste of
291
+ beer from different regions of the world and the current, open and eager to
292
+ discover.\r\n\r\nWithout falling into caricature tastes, we want to make the
293
+ nobility to the beer, for some time, is a left-nots in Quebec. Because, in
294
+ reality, a beer should not taste the water ...\r\n\r\nHopfenstark therefore
295
+ offers cask ales are available at various locations in Montreal and Lanaudi\u00e8re,
296
+ and the tasting room.","website":"http:\/\/www.hopfenstark.com\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2013-07-05
297
+ 21:20:34","updateDate":"2013-07-09 11:58:42"},{"id":"XYs5bX","name":"Horseheads
235
298
  Brewing","description":"Horseheads Brewing broke ground on June 2006 and opened
236
299
  it''s doors for business on July 3rd, 2007. The Master Brewer, after \"home-brewing\"
237
300
  for 8 years, received his education and certificate of concise brewing technology
238
- from the Siebel Institute in Chicago.","website":"http:\/\/www.horseheadsbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/XYs5bX\/upload_f6VLgY-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/XYs5bX\/upload_f6VLgY-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/XYs5bX\/upload_f6VLgY-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
239
- 02:41:58","updateDate":"2012-03-21 19:06:12"},{"id":"gj68bh","name":"Kelso
240
- of Brooklyn","description":"Brewing extraordinary lagers which highlight the
241
- simple beauty of well crafted, local beers since 2006\r\n\r\nBrewing fresh,
242
- flavorful, balanced beer in Brooklyn since 2006.","website":"http:\/\/kelsoofbrooklyn.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/gj68bh\/upload_msaagt-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/gj68bh\/upload_msaagt-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/gj68bh\/upload_msaagt-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
243
- 02:41:59","updateDate":"2012-03-21 19:06:13"},{"id":"E1zSFp","name":"Kern
301
+ from the Siebel Institute in Chicago.","website":"http:\/\/www.horseheadsbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/XYs5bX\/upload_f6VLgY-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/XYs5bX\/upload_f6VLgY-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/XYs5bX\/upload_f6VLgY-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
302
+ 02:41:58","updateDate":"2013-01-14 11:26:46"},{"id":"fOnL38","name":"Indslev
303
+ Bryggeri","description":"Here at the first Weissbier brewery in Denmark, we
304
+ focus on innovation with respect for tradition. In developing the best beers
305
+ and brewing techniques. With roots going back to 1897 Indslev Bryggeri on
306
+ Funen reopened as a modern brewery in April 2006.\r\n\r\nThe equipment and
307
+ the raw materials we use are selected to achieve the very best quality. Weissbeer
308
+ from Indslev Bryggeri has great taste. Every week shops, cafes and restaurants
309
+ across the country get freshly tapped beer from Indslev - so you can enjoy
310
+ the best beer in your glass.\r\n\r\nWeissbeer is classic Belgian and German
311
+ beer tradition dating back to ancient times. And the right person to introduce
312
+ the German weissbier tradition of Indslev Bryggeri is Brewmaster Stefan Peter
313
+ Stadler. He has 30 years of experience with Weissbier and the art of brewing
314
+ beer for the senses. Stefan Peter Stadler was born and raised in Munich, where
315
+ he is graduated master brewer at Hofbrauhaus in Munich. He has experience
316
+ in both German and Danish breweries.\r\n\r\nDiscover our interpretation of
317
+ Danish Weissbier that is hand-brewed by Bavarian tradition. We believe that
318
+ hand-brewed beer tastes better. The entire brewing process is controlled by
319
+ hand, and we treat for all the details and the best ingredients. There is
320
+ no additives - only malt, hops, yeast, water and a few spices.","website":"http:\/\/www.indslevbryggeri.dk","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/fOnL38\/upload_BNfCRD-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/fOnL38\/upload_BNfCRD-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/fOnL38\/upload_BNfCRD-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-01-09
321
+ 19:16:18","updateDate":"2013-01-10 11:30:02"},{"id":"gj68bh","name":"KelSo
322
+ Beer Company","description":"Brewing extraordinary lagers which highlight
323
+ the simple beauty of well crafted, local beers since 2006.","website":"http:\/\/www.kelsobeer.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/gj68bh\/upload_dcQZHw-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/gj68bh\/upload_dcQZHw-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/gj68bh\/upload_dcQZHw-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
324
+ 02:41:59","updateDate":"2013-01-09 12:27:09"},{"id":"E1zSFp","name":"Kern
244
325
  River Brewing Company","description":"The Kern River Brewing Company (KRBC)
245
326
  brings people back to the magnificent simplicities that life has to offer.\r\n\r\nFrom
246
327
  its beginnings, Kernville has been a wild-west town. Established as a mining
@@ -252,7 +333,7 @@ http_interactions:
252
333
  water-skiing, mountain biking and climbing. If a more relaxing day is preferred,
253
334
  people can enjoy fishing, hiking, camping, sailing, antiquing, and bird watching
254
335
  or simply kicking back and taking in the spectacular views of the Sierra Nevada
255
- mountain range.","website":"http:\/\/www.kernriverbrewingcompany.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/E1zSFp\/upload_m8yLwX-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/E1zSFp\/upload_m8yLwX-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/E1zSFp\/upload_m8yLwX-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
336
+ mountain range.","website":"http:\/\/www.kernriverbrewingcompany.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/E1zSFp\/upload_m8yLwX-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/E1zSFp\/upload_m8yLwX-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/E1zSFp\/upload_m8yLwX-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
256
337
  02:41:59","updateDate":"2012-03-21 19:06:10"},{"id":"6QNMyS","name":"Laht
257
338
  Neppur Brewing Company","description":"We couldn''t have said it better ourselves.
258
339
  Laht Neppur Brewing Co., located in Waitsburg, WA, offers premium handcrafted
@@ -265,9 +346,9 @@ http_interactions:
265
346
  of beer to make good wine.\" So he decided to open his own brewery, and opened
266
347
  the doors to the public on June 3, 2006.\r\n\r\nAll Laht Neppur beer is produced
267
348
  on site and is available in our tap room. There are no macro-brews here! Families
268
- are welcome, and we offer an outdoor seating area.","website":"http:\/\/www.lahtneppur.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/6QNMyS\/upload_yIGYY9-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/6QNMyS\/upload_yIGYY9-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/6QNMyS\/upload_yIGYY9-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
349
+ are welcome, and we offer an outdoor seating area.","website":"http:\/\/www.lahtneppur.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/6QNMyS\/upload_yIGYY9-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/6QNMyS\/upload_yIGYY9-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/6QNMyS\/upload_yIGYY9-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
269
350
  02:42:00","updateDate":"2012-03-21 19:06:12"},{"id":"vwKJAR","name":"Lazy
270
- Boy Brewing Company","website":"http:\/\/www.lazyboybrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/vwKJAR\/upload_tI6zBv-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/vwKJAR\/upload_tI6zBv-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/vwKJAR\/upload_tI6zBv-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
351
+ Boy Brewing Company","website":"http:\/\/www.lazyboybrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/vwKJAR\/upload_tI6zBv-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/vwKJAR\/upload_tI6zBv-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/vwKJAR\/upload_tI6zBv-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
271
352
  02:42:00","updateDate":"2012-03-21 19:06:10"},{"id":"L3ozHK","name":"Lightning
272
353
  Brewery","description":"Our fine hand crafted European style beers have a
273
354
  distinctive Lightning Finish: a crisp, clean aroma, pronounced maltiness and
@@ -279,8 +360,10 @@ http_interactions:
279
360
  an in-depth understanding of the beer making process. We take care to control
280
361
  each stage of the brewing cycle, never skimp on how long each step takes and
281
362
  only use the highest quality ingredients: malted barley, hops, yeast, plus
282
- a healthy dose of science.","website":"http:\/\/www.lightningbrewery.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/L3ozHK\/upload_N1uLAM-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/L3ozHK\/upload_N1uLAM-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/L3ozHK\/upload_N1uLAM-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
283
- 02:42:00","updateDate":"2012-03-21 19:06:12"},{"id":"zpGIxB","name":"Moccasin
363
+ a healthy dose of science.","website":"http:\/\/www.lightningbrewery.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/L3ozHK\/upload_N1uLAM-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/L3ozHK\/upload_N1uLAM-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/L3ozHK\/upload_N1uLAM-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
364
+ 02:42:00","updateDate":"2012-03-21 19:06:12"},{"id":"hSeoOy","name":"Microbrasserie
365
+ de l''\u00cele d''Orl\u00e9ans","website":"http:\/\/www.microorleans.com\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2013-07-03
366
+ 15:20:18","updateDate":"2013-07-05 11:13:51"},{"id":"zpGIxB","name":"Moccasin
284
367
  Bend Brewing Company","description":"Moccasin Bend Brewing Company is located
285
368
  in the historic St. Elmo district of Chattanooga, TN. We\u2019re at the foot
286
369
  of Lookout Mountain just steps away from the world-famous Incline Railway
@@ -302,7 +385,7 @@ http_interactions:
302
385
  of various sizes. A tasting room is part of the brewery; samples of our beers
303
386
  can be tasted and tested on premises. Occasionally we have tasting events
304
387
  or tapping events at the brewery or at a nearby bar or restaurant. Please
305
- check our calendar for scheduled tasting events at the brewery.","website":"http:\/\/www.bendbrewingbeer.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/zpGIxB\/upload_ywwMfl-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/zpGIxB\/upload_ywwMfl-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/zpGIxB\/upload_ywwMfl-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
388
+ check our calendar for scheduled tasting events at the brewery.","website":"http:\/\/www.bendbrewingbeer.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/zpGIxB\/upload_ywwMfl-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/zpGIxB\/upload_ywwMfl-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/zpGIxB\/upload_ywwMfl-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
306
389
  02:42:02","updateDate":"2012-03-21 19:06:12"},{"id":"1cfDau","name":"Monday
307
390
  Night Brewing","description":"Monday Night Brewing is an Atlanta-based craft
308
391
  beer company. We currently offer two delicious styles of beer on draft in
@@ -314,8 +397,10 @@ http_interactions:
314
397
  spent almost 5 years perfecting our Eye Patch Ale and Drafty Kilt Scotch Ale
315
398
  before bringing them to market. Years of minor tweaks, arguments over hop
316
399
  profiles, and experiments with different brands of base malts are poured into
317
- every glass that we brew.","website":"http:\/\/mondaynightbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/1cfDau\/upload_chRwUi-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/1cfDau\/upload_chRwUi-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/1cfDau\/upload_chRwUi-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
318
- 02:42:02","updateDate":"2012-03-21 19:06:17"},{"id":"8hMBS3","name":"Nils
400
+ every glass that we brew.","website":"http:\/\/mondaynightbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/1cfDau\/upload_24Ushu-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/1cfDau\/upload_24Ushu-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/1cfDau\/upload_24Ushu-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
401
+ 02:42:02","updateDate":"2013-03-18 11:22:48"},{"id":"QlLikG","name":"Naukabout
402
+ Beer Company","website":"http:\/\/naukabout.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QlLikG\/upload_HPPVas-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QlLikG\/upload_HPPVas-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/QlLikG\/upload_HPPVas-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-01-09
403
+ 12:14:30","updateDate":"2013-01-09 12:16:56"},{"id":"8hMBS3","name":"Nils
319
404
  Oscar Bryggeri","description":"We brew beer and produce good spirits\r\n\r\nOur
320
405
  brewing there since mid-September 2006 Fru\u00e4ngsk\u00e4llan in Nyk\u00f6ping,
321
406
  about 10 mil south of Stockholm, and the distillery is nearby on T\u00e4rn\u00f6
@@ -325,7 +410,7 @@ http_interactions:
325
410
  in the same group , occupational group includes, in addition Brewery and Distillery
326
411
  also our own malt house and farm T\u00e4rn\u00f6 Manor. Try our products and
327
412
  please let us know if you want to know more: info@nilsoscar.se You can also
328
- sign up to Nils Oscar Good Friends . Welcome!","website":"http:\/\/www.nilsoscar.se\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/8hMBS3\/upload_haARwd-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/8hMBS3\/upload_haARwd-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/8hMBS3\/upload_haARwd-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-06-14
413
+ sign up to Nils Oscar Good Friends . Welcome!","website":"http:\/\/www.nilsoscar.se\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/8hMBS3\/upload_haARwd-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/8hMBS3\/upload_haARwd-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/8hMBS3\/upload_haARwd-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-06-14
329
414
  10:30:50","updateDate":"2012-06-14 11:59:08"},{"id":"V4I9FT","name":"Ninkasi
330
415
  Brewing Company","description":"Ninkasi Brewing began its history on June
331
416
  15th, 2006 when Jamie Floyd and Nikos Ridge spent 17 hours brewing their first
@@ -337,8 +422,8 @@ http_interactions:
337
422
  Bank and some investors to purchase their current location in the heart of
338
423
  the Historic Whiteaker neighborhood in Eugene. Over time, Ninkasi transformed
339
424
  the old plumbing company\u2019s building into the modern production brewery
340
- it is today.","website":"http:\/\/www.ninkasibrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/V4I9FT\/upload_u1O33q-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/V4I9FT\/upload_u1O33q-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/V4I9FT\/upload_u1O33q-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
341
- 02:42:03","updateDate":"2012-03-21 19:06:08"},{"id":"WwE6W1","name":"Oakshire
425
+ it is today.","website":"http:\/\/www.ninkasibrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/V4I9FT\/upload_vJvHqO-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/V4I9FT\/upload_vJvHqO-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/V4I9FT\/upload_vJvHqO-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
426
+ 02:42:03","updateDate":"2012-11-01 11:22:37"},{"id":"WwE6W1","name":"Oakshire
342
427
  Brewing Company","description":"The name Oakshire represents Strength, Independence,
343
428
  Community and Bioregion, values held by our owners and employees. Begun
344
429
  in October 2006 by brothers Jeff and Chris Althouse, Oakshire Brewing operates
@@ -348,83 +433,15 @@ http_interactions:
348
433
  bottles and on draft as well. And the brewers at Oakshire craft a range of
349
434
  single batch beers only available on draft. The brewery aims to make clean,
350
435
  consistent, high quality beer \u2013 humble brewers of delicious beer.\r\n\r\nFormerly
351
- know as Willamette Brewery","website":"http:\/\/oakbrew.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/WwE6W1\/upload_lV4GZt-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/WwE6W1\/upload_lV4GZt-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/WwE6W1\/upload_lV4GZt-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
436
+ know as Willamette Brewery","website":"http:\/\/oakbrew.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/WwE6W1\/upload_lV4GZt-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/WwE6W1\/upload_lV4GZt-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/WwE6W1\/upload_lV4GZt-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
352
437
  02:42:04","updateDate":"2012-03-21 19:06:11"},{"id":"ayEBYP","name":"Port
353
438
  Brewing Company","description":"We officially opened on May 5th 2006. Now
354
439
  we will be able to make up to 5000 barrels of beer enabling you more chances
355
440
  to drink your favorite Port Brewed beers at home and around town. More impressive
356
441
  is our oak barrel room where we age our barrel aged specialty beers. Come
357
442
  check out our tasting bar on Fridays and Saturdays where you can get bottles,
358
- jugs & merchandise to go while you sample what we''ve been brewing!","website":"http:\/\/www.portbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ayEBYP\/upload_jgHQ5x-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ayEBYP\/upload_jgHQ5x-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ayEBYP\/upload_jgHQ5x-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
359
- 02:42:06","updateDate":"2012-03-21 19:06:08"},{"id":"6UQcqZ","name":"Robens
360
- Kerkerbr\u00e4u","established":"2006","isOrganic":"N","status":"new_unverified","statusDisplay":"New,
361
- Unverified","createDate":"2012-08-07 10:18:43","updateDate":"2012-08-07 10:18:43"},{"id":"3Q48Ed","name":"R\u00f6merbr\u00e4u","established":"2006","isOrganic":"N","status":"new_unverified","statusDisplay":"New,
362
- Unverified","createDate":"2012-08-07 10:16:06","updateDate":"2012-08-07 10:16:06"},{"id":"jYfgIh","name":"Schooner
363
- Exact Brewing Company","description":"In 2006, homebrewing pals Marcus Connery
364
- and Matt & Heather McClung decided to take their hobby to the next level and
365
- go pro. Purchasing a half-barrel system, they began brewing a keg of beer
366
- at a time out of an ActivSpace unit under the West Seattle Bridge. Beginning
367
- in January 2007, they distributed their beer to restaurants and taprooms all
368
- over the city of Seattle.\r\n\r\nAs demand for their beers increased, the
369
- Schooner EXACT founders expanded into a larger, 10 -barrel system. The brewery
370
- moved to the South Park neighborhood in early 2009, and to its current SODO
371
- location on 1st Avenue in 2010. After Marcus Connery passed the reins of the
372
- brewery over to Heather and Matt to pursue the next chapter in his beer adventures
373
- by opening a beer broker\/ consulting business, Matt and Heather quit their
374
- teaching jobs to pursue their brewery dreams full time.","website":"http:\/\/www.schoonerexact.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/jYfgIh\/upload_kdGmrs-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/jYfgIh\/upload_kdGmrs-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/jYfgIh\/upload_kdGmrs-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
375
- 02:42:08","updateDate":"2012-03-21 19:06:12"},{"id":"Feefqj","name":"Schwarzenbeker
376
- Brauhaus","established":"2006","isOrganic":"N","status":"new_unverified","statusDisplay":"New,
377
- Unverified","createDate":"2012-08-07 10:20:28","updateDate":"2012-08-07 10:20:28"},{"id":"4ihK01","name":"Sherwood
378
- Brewing Company","description":"Sherwood Brewing Company opened its doors
379
- on August 31, 2006 in the Hayes Center Shoppes plaza on Hayes Rd. north of
380
- Hall Rd. (M-59) in Shelby Township, Michigan.\r\n\r\nWe serve only the finest
381
- hand-crafted beer, wine, and sodas, all made in our on-site brewing facility.\r\n\r\nSherwood
382
- Brewing Company is proud and honored to be the recipient of WDIV''s \"4 the
383
- Best\" award for Best Brewpub for four consecutive years (2007 - 2010) as
384
- voted by you, our customers.","website":"http:\/\/sherwoodbrewing.com\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
385
- 02:42:08","updateDate":"2012-04-09 18:57:21"},{"id":"GANyEU","name":"Southern
386
- Oregon Brewing Company","description":"Then we invite you to sample the hand-crafted
387
- brews of the Southern Oregon Brewing Company.\r\nBrewed with uncompromised
388
- standards in Medford, Oregon, we\u2019re dedicated to producing a full line
389
- of tantalizing brews using old-world brewing techniques and only the finest
390
- natural ingredients.\r\n\r\nServed at discriminating restaurants and bars,
391
- one sip and you''ll know that you''ve discovered something quiet extraordinary\u2026
392
- beer that has been crafted by beer lovers for beer lovers.\r\nAs a Southern
393
- Oregon owned crafted brewery, we\u2019re dedicated to the highest standards
394
- of quality and returning a percentage of our profits to the local community.","website":"http:\/\/www.sobrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GANyEU\/upload_2aXCOU-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GANyEU\/upload_2aXCOU-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GANyEU\/upload_2aXCOU-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
395
- 02:42:08","updateDate":"2012-03-21 19:06:10"},{"id":"DWG9s4","name":"Spezialit\u00e4tenbrauerei
396
- Eckart","established":"2006","isOrganic":"N","status":"new_unverified","statusDisplay":"New,
397
- Unverified","createDate":"2012-08-07 10:20:23","updateDate":"2012-08-07 10:20:23"},{"id":"g6S9WB","name":"Square
398
- One Brewery & Distillery","description":"The Square One Brewery & Distillery
399
- began operations as a brewery \/restaurant in February of 2006. In August
400
- of 2008 Square One became the first microdistillery restaurant in the state
401
- of Missouri and one of the first in the country. We believe that our approach
402
- to the alcohol beverage program is unique and very different from that of
403
- other restaurants. We believe in crafting the products we serve whether it
404
- is spirits, beer or food. By combining the expertise of our distiller, our
405
- master brewer, and our chef we are committed to creating an amazing array
406
- of flavors and tastes for our customers.","website":"http:\/\/www.squareonebrewery.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/g6S9WB\/upload_l9hvAq-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/g6S9WB\/upload_l9hvAq-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/g6S9WB\/upload_l9hvAq-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
407
- 02:42:09","updateDate":"2012-03-21 19:06:12"},{"id":"cPRfoj","name":"Surly
408
- Brewing Company","description":"While you''re enjoying the full-bodied flavor
409
- of the beer, remember that it was more than 10 years in the making. We think
410
- it was worth it. We hope you agree.\r\n \r\nSurly: The anger fueled by the
411
- inability to find good beer.\r\n\r\n\"We brewed beer for people who didn''t
412
- know they wanted to drink it until they had it.\" - Omar Ansari","website":"http:\/\/www.surlybrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cPRfoj\/upload_h0oqUF-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cPRfoj\/upload_h0oqUF-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cPRfoj\/upload_h0oqUF-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
413
- 02:42:09","updateDate":"2012-07-30 21:46:09"},{"id":"9x7wNn","name":"The Lost
414
- Abbey","description":"Founded in 2006, Port Brewing Company produces a line
415
- of award-winning American ales and the groundbreaking Lost Abbey family of
416
- Belgian-inspired beers. Craft brewed under the direction of co-founder and
417
- World Champion brewer Tomme Arthur, five beers are issued under the Lost Abbey
418
- label year-round: Avant Garde, Lost and Found, Red Barn, Devotion and Judgment
419
- Day. Additionally, a number of seasonal and specialty releases are offered
420
- at various times throughout the year. As many of these are blended and aged
421
- for up to 18 months in French Oak, Brandy and Bourbon barrels, Lost Abbey
422
- beers are universally recognized for their complexity, unique flavors, and
423
- bold, boundary-pushing styles.\r\n\r\nSince opening its doors, Port Brewing
424
- and The Lost Abbey beers have won more nearly 100 medals in regional, national
425
- and international competitions. Rate Beer ranks the brewery number three in
426
- the world, and six of its beers are among the 100 best beers.","website":"http:\/\/www.lostabbey.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/9x7wNn\/upload_iFoVyB-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/9x7wNn\/upload_iFoVyB-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/9x7wNn\/upload_iFoVyB-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
427
- 02:42:10","updateDate":"2012-03-21 19:06:09"}],"status":"success"}'
443
+ jugs & merchandise to go while you sample what we''ve been brewing!","website":"http:\/\/www.portbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ayEBYP\/upload_jgHQ5x-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ayEBYP\/upload_jgHQ5x-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/ayEBYP\/upload_jgHQ5x-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
444
+ 02:42:06","updateDate":"2013-07-05 23:39:59"}],"status":"success"}'
428
445
  http_version:
429
- recorded_at: Sat, 11 Aug 2012 23:35:43 GMT
430
- recorded_with: VCR 2.2.2
446
+ recorded_at: Mon, 22 Jul 2013 00:05:48 GMT
447
+ recorded_with: VCR 2.4.0