brewery_db 0.0.1 → 0.1.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 (65) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +2 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +5 -0
  5. data/CHANGELOG.md +15 -0
  6. data/README.md +81 -29
  7. data/Rakefile +5 -0
  8. data/brewery_db.gemspec +6 -5
  9. data/lib/brewery_db.rb +15 -19
  10. data/lib/brewery_db/client.rb +19 -7
  11. data/lib/brewery_db/collection.rb +42 -0
  12. data/lib/brewery_db/config.rb +7 -6
  13. data/lib/brewery_db/mash.rb +18 -0
  14. data/lib/brewery_db/middleware/error_handler.rb +28 -0
  15. data/lib/brewery_db/request.rb +27 -0
  16. data/lib/brewery_db/resource.rb +16 -22
  17. data/lib/brewery_db/resources/beers.rb +2 -2
  18. data/lib/brewery_db/resources/breweries.rb +2 -2
  19. data/lib/brewery_db/resources/brewery.rb +16 -0
  20. data/lib/brewery_db/resources/categories.rb +2 -2
  21. data/lib/brewery_db/resources/glassware.rb +2 -2
  22. data/lib/brewery_db/resources/search.rb +1 -1
  23. data/lib/brewery_db/resources/styles.rb +2 -2
  24. data/lib/brewery_db/response.rb +26 -12
  25. data/lib/brewery_db/version.rb +1 -1
  26. data/lib/brewery_db/web_hook.rb +32 -0
  27. data/spec/brewery_db/client_spec.rb +41 -30
  28. data/spec/brewery_db/config_spec.rb +25 -28
  29. data/spec/brewery_db/{response_spec.rb → mash_spec.rb} +1 -1
  30. data/spec/brewery_db/middleware/error_handler_spec.rb +49 -0
  31. data/spec/brewery_db/resource_spec.rb +35 -22
  32. data/spec/brewery_db/resources/beers_spec.rb +10 -82
  33. data/spec/brewery_db/resources/breweries_spec.rb +10 -54
  34. data/spec/brewery_db/resources/brewery_spec.rb +27 -0
  35. data/spec/brewery_db/resources/categories_spec.rb +10 -38
  36. data/spec/brewery_db/resources/glassware_spec.rb +10 -36
  37. data/spec/brewery_db/resources/search_spec.rb +19 -61
  38. data/spec/brewery_db/resources/styles_spec.rb +10 -72
  39. data/spec/brewery_db/web_hook_spec.rb +79 -0
  40. data/spec/fixtures/BreweryDB_Resource/_get/a_list_of_resources/can_be_enumerated.yml +515 -0
  41. data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/raises_an_exception.yml +38 -0
  42. data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/sets_the_exception_message_to_the_error_message_in_the_response.yml +38 -0
  43. data/spec/fixtures/BreweryDB_Resource/_get/an_OK_request/name/.yml +54 -0
  44. data/spec/fixtures/BreweryDB_Resources_Beers/_all/fetches_all_of_the_beers_at_once.yml +889 -0
  45. data/spec/fixtures/BreweryDB_Resources_Beers/_find/fetches_only_the_beer_asked_for.yml +61 -0
  46. data/spec/fixtures/BreweryDB_Resources_Breweries/_all/fetches_all_of_the_breweries_at_once.yml +430 -0
  47. data/spec/fixtures/BreweryDB_Resources_Breweries/_find/fetches_only_the_brewery_asked_for.yml +57 -0
  48. data/spec/fixtures/BreweryDB_Resources_Categories/_all/fetches_all_of_the_cagtegories_at_once.yml +49 -0
  49. data/spec/fixtures/BreweryDB_Resources_Categories/_find/fetches_only_the_category_asked_for.yml +39 -0
  50. data/spec/fixtures/BreweryDB_Resources_Glassware/_all/fetches_all_of_the_glassware_at_once.yml +45 -0
  51. data/spec/fixtures/BreweryDB_Resources_Glassware/_find/fetches_only_the_glassware_asked_for.yml +39 -0
  52. data/spec/fixtures/BreweryDB_Resources_Search/_all/fetches_all_of_the_search_results_at_once.yml +1132 -0
  53. data/spec/fixtures/BreweryDB_Resources_Styles/_all/fetches_all_of_the_styles_at_once.yml +1866 -0
  54. data/spec/fixtures/BreweryDB_Resources_Styles/_find/fetches_only_the_style_asked_for.yml +50 -0
  55. data/spec/spec_helper.rb +4 -4
  56. data/spec/support/shared/a_resource.rb +3 -9
  57. data/spec/support/vcr.rb +6 -1
  58. metadata +82 -42
  59. data/spec/brewery_db_spec.rb +0 -18
  60. data/spec/fixtures/beers.yml +0 -445
  61. data/spec/fixtures/breweries.yml +0 -409
  62. data/spec/fixtures/categories.yml +0 -102
  63. data/spec/fixtures/glassware.yml +0 -65
  64. data/spec/fixtures/search.yml +0 -314
  65. data/spec/fixtures/styles.yml +0 -317
@@ -2,70 +2,28 @@
2
2
 
3
3
  require 'spec_helper'
4
4
 
5
- describe BreweryDB::Resources::Search do
6
- it_behaves_like 'a resource' do
7
- context '#all' do
8
- let(:response) { described_class.new(client).all(q: 'IPA') }
5
+ describe BreweryDB::Resources::Search, :resource do
6
+ context '#all', :vcr do
7
+ let(:response) { described_class.new(config).all(q: 'IPA') }
9
8
 
10
- subject { response }
11
-
12
- its(:current_page) { should == 1 }
13
- its(:number_of_pages) { should == 14 }
14
- its(:status) { should == 'success' }
15
- its(:data) { should be_a(Array) }
16
- its(:data) { should have(50).results }
17
-
18
- context 'result' do
19
- subject { response.data.first }
20
-
21
- it { should have(9).keys }
22
-
23
- its(:type) { should be_nil }
24
- its(:id) { should == 'ZnS2BI' }
25
- its(:name) { should == 'IPA' }
26
- its(:abv) { should == '6' }
27
- its(:is_organic) { should == 'N' }
28
- its(:'style.id') { should == 49 }
29
- its(:'style.abv_max') { should == '7.5' }
30
- its(:'style.abv_min') { should == '5.5' }
31
- its(:'style.bjcp_subcategory') { should == 'B' }
32
- its(:'style.category.id') { should == 14 }
33
- its(:'style.category.name') { should == 'India Pale Ale (IPA)' }
34
- its(:'style.category.bjcp_category') { should == '14' }
35
- its(:'style.category.create_date') { should == '2012-04-05 04:00:04' }
36
- its(:'style.category_id') { should == 14 }
37
- its(:'style.name') { should == 'American IPA' }
38
- its(:'style.fg_max') { should == '1.018' }
39
- its(:'style.fg_min') { should == '1.01' }
40
- its(:'style.ibu_max') { should == '70' }
41
- its(:'style.ibu_min') { should == '40' }
42
- its(:'style.og_max') { should == '1.075' }
43
- its(:'style.og_min') { should == '1.056' }
44
- its(:'style.srm_max') { should == '15' }
45
- its(:'style.srm_min') { should == '6' }
46
- its(:'style.simple_url') { should == 'american-ipa' }
47
- its(:'style.create_date') { should == '2012-04-05 04:00:04' }
48
- its(:style_id) { should == 49 }
49
- its(:status) { should == 'verified' }
50
- its(:status_display) { should == 'Verified' }
51
- its(:create_date) { should == '2012-04-05 04:01:50' }
52
- end
9
+ it 'fetches all of the search results at once' do
10
+ response.count.should eq 905
53
11
  end
12
+ end
54
13
 
55
- {
56
- beers: 'beer',
57
- breweries: 'brewery',
58
- guilds: 'guild',
59
- events: 'event'
60
- }.each do |method, type|
61
- context "##{method}" do
62
- subject { described_class.new(client) }
63
-
64
- specify do
65
- results = mock(:results)
66
- subject.should_receive(:all).with(type: type, q: 'IPA').and_return(results)
67
- subject.send(method, q: 'IPA').should == results
68
- end
14
+ {
15
+ beers: 'beer',
16
+ breweries: 'brewery',
17
+ guilds: 'guild',
18
+ events: 'event'
19
+ }.each do |method, type|
20
+ context "##{method}" do
21
+ subject { described_class.new(config) }
22
+
23
+ specify do
24
+ results = mock(:results)
25
+ subject.should_receive(:all).with(type: type, q: 'IPA').and_return(results)
26
+ subject.send(method, q: 'IPA').should == results
69
27
  end
70
28
  end
71
29
  end
@@ -2,82 +2,20 @@
2
2
 
3
3
  require 'spec_helper'
4
4
 
5
- describe BreweryDB::Resources::Styles do
6
- it_behaves_like 'a resource' do
7
- context '#all' do
8
- let(:response) { described_class.new(client).all }
5
+ describe BreweryDB::Resources::Styles, :resource do
6
+ context '#all', :vcr do
7
+ let(:response) { described_class.new(config).all }
9
8
 
10
- subject { response }
11
-
12
- its(:current_page) { should be_nil }
13
- its(:number_of_pages) { should be_nil }
14
- its(:status) { should == 'success' }
15
- its(:data) { should be_a(Array) }
16
- its(:data) { should have(98).results }
17
-
18
- context 'result' do
19
- subject { response.data.first }
20
-
21
- it { should have(17).keys }
22
-
23
- its(:id) { should == 1 }
24
- its(:name) { should == 'Lite American Lager' }
25
- its(:'category.id') { should == 1 }
26
- its(:'category.name') { should == 'Light Lager' }
27
- its(:'category.bjcp_category') { should == '1' }
28
- its(:'category.create_date') { should == '2012-04-04 04:00:04' }
29
- its(:category_id) { should == 1 }
30
- its(:bjcp_subcategory) { should == 'A' }
31
- its(:simple_url) { should == 'lite-american-lager' }
32
- its(:ibu_min) { should == '8' }
33
- its(:ibu_max) { should == '12' }
34
- its(:abv_min) { should == '2.8' }
35
- its(:abv_max) { should == '4.2' }
36
- its(:srm_min) { should == '2' }
37
- its(:srm_max) { should == '3' }
38
- its(:og_min) { should == '1.028' }
39
- its(:og_max) { should == '1.04' }
40
- its(:fg_min) { should == '0.998' }
41
- its(:fg_max) { should == '1.008' }
42
- its(:create_date) { should == '2012-04-04 04:00:04' }
43
- its(:update_date) { should be_nil }
44
- end
9
+ it 'fetches all of the styles at once' do
10
+ response.length.should eq 157
45
11
  end
12
+ end
46
13
 
47
- context '#find' do
48
- let(:response) { described_class.new(client).find(1) }
49
-
50
- subject { response }
51
-
52
- its(:status) { should == 'success' }
53
-
54
- context 'data' do
55
- subject { response.data }
56
-
57
- it { should have(17).keys }
14
+ context '#find', :vcr do
15
+ let(:response) { described_class.new(config).find(1) }
58
16
 
59
- its(:id) { should == 1 }
60
- its(:name) { should == 'Lite American Lager' }
61
- its(:'category.id') { should == 1 }
62
- its(:'category.name') { should == 'Light Lager' }
63
- its(:'category.bjcp_category') { should == '1' }
64
- its(:'category.create_date') { should == '2012-04-04 04:00:04' }
65
- its(:category_id) { should == 1 }
66
- its(:bjcp_subcategory) { should == 'A' }
67
- its(:simple_url) { should == 'lite-american-lager' }
68
- its(:ibu_min) { should == '8' }
69
- its(:ibu_max) { should == '12' }
70
- its(:abv_min) { should == '2.8' }
71
- its(:abv_max) { should == '4.2' }
72
- its(:srm_min) { should == '2' }
73
- its(:srm_max) { should == '3' }
74
- its(:og_min) { should == '1.028' }
75
- its(:og_max) { should == '1.04' }
76
- its(:fg_min) { should == '0.998' }
77
- its(:fg_max) { should == '1.008' }
78
- its(:create_date) { should == '2012-04-04 04:00:04' }
79
- its(:update_date) { should be_nil }
80
- end
17
+ it 'fetches only the style asked for' do
18
+ response.id.should == 1
81
19
  end
82
20
  end
83
21
  end
@@ -0,0 +1,79 @@
1
+ require 'spec_helper'
2
+
3
+ describe BreweryDB::WebHook do
4
+ let(:action) { 'edit' }
5
+ let(:attribute) { 'beer' }
6
+ let(:attribute_id) { 'x6bRxw' }
7
+ let(:key) { 'cfae72cf7db09b7508905573c174baf1f026c051' }
8
+ let(:nonce) { '576a8003ab8936d99fb104401141d613' }
9
+ let(:sub_action) { 'none' }
10
+ let(:timestamp) { '1350573527' }
11
+
12
+ let(:brewery_db_payload) {
13
+ {
14
+ key: key,
15
+ nonce: nonce,
16
+ attribute: attribute,
17
+ attributeId: attribute_id,
18
+ action: action,
19
+ subAction: sub_action,
20
+ timestamp: timestamp
21
+ }
22
+ }
23
+
24
+ subject(:web_hook) { described_class.new(brewery_db_payload) }
25
+
26
+ describe '.new' do
27
+ it 'extracts the action' do
28
+ expect(web_hook.action).to eq(action)
29
+ end
30
+
31
+ it 'extracts the attribute' do
32
+ expect(web_hook.attribute).to eq(attribute)
33
+ end
34
+
35
+ it 'extracts the attribute ID' do
36
+ expect(web_hook.attribute_id).to eq(attribute_id)
37
+ end
38
+
39
+ it 'extracts the key' do
40
+ expect(web_hook.key).to eq(key)
41
+ end
42
+
43
+ it 'extracts the nonce' do
44
+ expect(web_hook.nonce).to eq(nonce)
45
+ end
46
+
47
+ it 'extracts the sub-action' do
48
+ expect(web_hook.sub_action).to eq(sub_action)
49
+ end
50
+
51
+ it 'extracts the timestamp' do
52
+ expect(web_hook.timestamp).to eq(timestamp)
53
+ end
54
+ end
55
+
56
+ describe '#valid?' do
57
+ let(:api_key) { ENV['BREWERY_DB_API_KEY'] }
58
+
59
+ it 'is valid for a legit key and nonce' do
60
+ expect(web_hook).to be_valid(api_key)
61
+ end
62
+
63
+ context 'invalid nonce' do
64
+ let(:nonce) { '316d141104401bf99d6398ba3008a675' }
65
+
66
+ it 'is not valid' do
67
+ expect(web_hook).to_not be_valid(api_key)
68
+ end
69
+ end
70
+
71
+ context 'invalid key' do
72
+ let(:key) { '150c620f1fab471c3755098057b90bd7fc27eafc' }
73
+
74
+ it 'is not valid' do
75
+ expect(web_hook).to_not be_valid(api_key)
76
+ end
77
+ end
78
+ end
79
+ end
@@ -0,0 +1,515 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.brewerydb.com/v2/breweries?key=API_KEY&established=2006
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - BreweryDB Ruby Gem 0.0.1
12
+ response:
13
+ status:
14
+ code: 200
15
+ message:
16
+ headers:
17
+ date:
18
+ - Sat, 11 Aug 2012 23:35:41 GMT
19
+ server:
20
+ - Apache/2.2.22 (Amazon)
21
+ x-powered-by:
22
+ - PHP/5.3.13
23
+ x-ratelimit-limit:
24
+ - Unlimited
25
+ x-ratelimit-remaining:
26
+ - Unlimited
27
+ connection:
28
+ - close
29
+ transfer-encoding:
30
+ - chunked
31
+ content-type:
32
+ - application/json
33
+ 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
44
+ Beer began during the dark days of the July 2006 siege on Lebanon. Tired with
45
+ the lack of quality beer in Lebanon, Mazen Hajjar and his friends started
46
+ to brew beer in his very own kitchen. The first batches were brewed in 20
47
+ liter kettles. Granted that war and blockades are not the ideal conditions
48
+ to start a company, alongside everyone telling them they were mad to even
49
+ consider it, they went ahead with it anyway. They decided that brewing a good
50
+ beer for a great country was what they wanted to do the most.\r\n\r\nWhen
51
+ 961 Beer officially began brewing they were one of the smallest breweries
52
+ in the world, and the only microbrewery in the Middle East (and still are).
53
+ Although 961 Beer now brews nearly 2 million liters per year, they still insist
54
+ 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
57
+ Brewing Company","description":"Aksarben Brewing Company","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
58
+ 02:41:43","updateDate":"2012-03-21 19:06:03"},{"id":"MMSB2i","name":"Ale Asylum","description":"At
59
+ ALE ASYLUM, we brew beers in the tradition of our friend Crusty Oldbrewer
60
+ who sent us on this path: brew honest, brew like you mean it. Thus, our beer
61
+ is brewed and bottled with our own hands on Madison\u2019s East Side. In fact,
62
+ ALE ASYLUM operates the only bottling facility in Madison.\r\n\r\nALE ASYLUM
63
+ is unfiltered and all natural. We use no additives, preservatives, fruit,
64
+ horse hooves, fish guts, or extracts. Our ingredient list: water, malt, hops,
65
+ and yeast. This is what we mean when we say our beer is FERMENTED IN SANITY.
66
+ You know who makes it, you know what it\u2019s made with. You know after having
67
+ one you\u2019ll want another.\r\n\r\nWe brew traditional, bold beers for those
68
+ 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
74
+ in St. Louis, MO. \r\n\r\nWe offer a great selection of craft beer from our
75
+ own brewasters, as well as from other distinctive craft brewers across country,
76
+ in our three restaurants\/brewpubs. We also distill handcrafted spirits, including
77
+ 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
80
+ 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
82
+ of North Carolina. It was formed as collaboration between Geoff Lamb, a UNC
83
+ graduate, who returned to North Carolina in 2006 to join forces with Brewmaster,
84
+ 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
87
+ Brewing Company","description":"Birdsview Brewing Company started in July
88
+ 2006. It is a small family run craft brewery located in the beatuiful North
89
+ 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
91
+ 02:41:46","updateDate":"2012-07-16 12:14:59"},{"id":"s1ihaW","name":"Birra
92
+ Amiata","description":"Craft brewery which seeks to enhance its production
93
+ through the clear waters of the ancient volcano (Mount Amiata) and typical
94
+ local products such as chestnuts (recognized PGI), saffron and honey thorn
95
+ 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
97
+ 02:41:46","updateDate":"2012-03-21 19:06:15"},{"id":"R0cSPu","name":"Black
98
+ Lotus Brewing Company","description":"Mark Harper, Michael Allan and his wife
99
+ Jodi Allan (Mark\u2019s sister) founded Black Lotus Brewing Company in 2006. Their
100
+ family business formed when Mark (a school psychologist and musician) and
101
+ Mike (a financial planner and banker) both longed for more creative and spiritual
102
+ control over their careers. Disheartened by massive corporate entities serving
103
+ up inferior products, Mark and Mike, together with Jodi (a high school educator)
104
+ created the philosophy: \u201cThink Global, Drink Local. \u201c\r\n\r\nUnder
105
+ this philosophy Black Lotus is committed to providing quality-handcrafted
106
+ products to each and every one of its customers. Furthermore, these products
107
+ are to be served to the customer with timeliness, friendliness and individualized
108
+ care. In addition, Black Lotus is committed to the notion that this care
109
+ should be extended to the community at large and the world when possible. This
110
+ is accomplished by supporting charitable contributions and activities that
111
+ 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
113
+ 02:41:46","updateDate":"2012-06-04 00:01:10"},{"id":"NYOvdO","name":"Black
114
+ Star Co-op Pub & Brewery","description":"With a special focus on local producers,
115
+ the basic mission of the Black Star Co-op is to foster an environment in which
116
+ member-owners, as well as the general public, may realize the principles of
117
+ co-operative ownership, worker self-management, education and community action
118
+ through the responsible enjoyment great beer and food.\r\n\r\nAs the first
119
+ enterprise of this type, we seek to realize an alternative business model
120
+ 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
125
+ Ltd","description":"BrewDog is a Scottish craft brewery located in the town
126
+ of Fraserburgh, Aberdeenshire.\r\n\r\nBrewDog was founded in 2006 by friends
127
+ James Watt and Martin Dickie. The brewery at the Kessock Industrial Estate
128
+ in Fraserburgh produced its first brew in April 2007. It is Scotland''s largest
129
+ 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
132
+ Brewing","description":"Our beer is so fresh, you don''t know whether to drink
133
+ it or slap it.\r\n\r\nWe were tired of the generic taste of mass-market beers.
134
+ So we decided to brew our own. At least once a week. Except when we''re on
135
+ a fishing trip. \r\n\r\nOur brewery in in Chatham, NY. You will find us at
136
+ the end of the alley between 20 and 22 Main Street. Stop by the brewery any
137
+ 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
139
+ 02:41:50","updateDate":"2012-03-30 12:00:04"},{"id":"195Jl2","name":"Cody
140
+ Brewing Company","description":"Cody Brewing Company is located in Historic
141
+ Amesbury, Massachusetts on the Powow River. We make hand crafted beer that
142
+ combines traditional styles with rule breaking ideas to make the best beer
143
+ possible. We brew on a 7 barrel system, which is just over 200 gallons, to
144
+ make 1200 barrels each year.\r\n\r\nHand crafted beer that combines traditional
145
+ 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
148
+ Brewing Company","description":"The Crabtree Brewing Company is dedicated
149
+ to serving the environment, the community, our customers, and our valued employees. Requiring
150
+ the best ingredients to support unique premium beers. Keeping a dynamic business
151
+ mind while remaining modestly profitable. Employing technology, embracing
152
+ ethics, growing to meet the needs of our customers and employees, and having
153
+ fun doing what we love - Making Great Beer.\r\n\r\nThe Crabtree Brewing Company,
154
+ ltd. is a Colorado based company providing premium ale, wheat, stout, and
155
+ 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
157
+ 02:41:51","updateDate":"2012-03-21 19:06:05"},{"id":"supFO9","name":"Dead
158
+ 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
162
+ is arguably the best among the handfull of Micro-breweries in India. It is
163
+ based in the city of Pune, in the western Indian state of Maharastra. It was
164
+ founded on March 20, 2006 and has been growing steadly since then.\r\n\r\nAt
165
+ any given point in time they have 4 brews on tap, one of which usually is
166
+ a cider. Doolally experiments a lot, both with local ingridents (like a jaggery
167
+ 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
169
+ 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
174
+ Coast Beer Co","description":"The Emerald Coast Beer Company was started in
175
+ 2006 with the goal of building a brand of beers to satisfy the taste of the
176
+ 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
177
+ 02:41:53","updateDate":"2012-07-21 23:05:08"},{"id":"ixhJ0M","name":"Epic
178
+ Brewing Company","description":"Well there are a few reasons why Epic was
179
+ chosen for the name of the company and beers.\r\n\r\nEpic Flavour - It reflected
180
+ the way I like to brew beer. I like to have big aromas, flavours and taste
181
+ in the beers.\r\n\r\nEpic Challenge - To start a new beer brand in this day
182
+ and age, in a mature market, dominated by multinationals with huge resources,
183
+ and the public perception that beer is a low value commodity, is a big challenge.\r\n\r\nEpic
184
+ Journey - everyone that lives in New Zealand, or travelled here for a holiday,
185
+ they at some point in their or their ancestors lives had to make an Epic Journey.
186
+ 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
189
+ Brewing Company","description":"Not very many people know about the pre-prohibition
190
+ brewing traditions of Northwest Ohio. Many communities had their very own
191
+ brewery selling quality beers to thirsty local customers. Flatrock Brewing
192
+ Cmopany would like to continue this tradition by offering local high quality
193
+ micro brewed beers. Flatrock Brewing Company produces beers using fresh grain
194
+ and locally sourced ingredients including honey and seasonal fruits. With
195
+ 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
197
+ 13:44:27","updateDate":"2012-06-20 13:55:53"},{"id":"dSo7uT","name":"Gardner
198
+ Ale House Brewery & Restaurant","description":"Gardner Ale House is the only
199
+ full-menu brewpub in both North Central Massachusetts and Worcester County. It
200
+ is a family style pub and restaurant featuring fresh, bistro style food in
201
+ an upscale setting. The brewery offers at least 6 distinctive, house made
202
+ brews at all times and continues to develop new recipes. There is always
203
+ an interesting, new beer on tap at the Gardner Ale House. \r\n\r\nThe restaurant
204
+ distinguishes itself through the use of fresh, unfrozen and unprocessed products. Menu
205
+ selections are both ordinary and eclectic, but always of a high quality and
206
+ very interesting. Gardner Ale House is an active member of the community,
207
+ participating in chamber events, making donations to various local charities
208
+ and contributing to the local dining and nightlife scene. As the greater
209
+ Gardner area continues its rapid growth, the Gardner Ale House plans to provide
210
+ 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
212
+ 02:41:55","updateDate":"2012-04-18 01:53:16"},{"id":"2dAEr0","name":"Greenpoint
213
+ Beer Works Inc","website":"http:\/\/www.kelsoofbrooklyn.com\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
214
+ 02:41:56","updateDate":"2012-03-21 19:06:17"},{"id":"lZfiot","name":"Half
215
+ Acre Beer Company","description":"Half Acre Beer Co. is a brewing company
216
+ in the Northcenter neighborhood of Chicago, IL. We built a brewery in the
217
+ middle of the city where we brew small batch beers, and have a store & tasting
218
+ area where we sample our beers and sell them to go in all package styles.
219
+ \r\n\r\nWe make different beers throughout the year, some we brew all the
220
+ 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
223
+ & Mighty Beer Company","description":"High & Mighty Beer Company began in
224
+ 2006 as an offshoot of Shelton Brothers beer importing company. Will Shelton
225
+ took his idea for a novel German-style ale to Paper City Brewery in Holyoke,
226
+ Massachusetts, and Beer of the Gods was born, to extraordinary commercial
227
+ success, critical acclaim, and unabashed adoration from beer geeks the world
228
+ over.\r\n\r\nEventually, Will discovered that he enjoyed selling the beer
229
+ he made even more than he did the splendid beers that Shelton Brothers imports,
230
+ and in June 2008, he abandoned his brother to focus on making American beer
231
+ that added an American attitude to the best of European beer styles. The beer
232
+ 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
235
+ Brewing","description":"Horseheads Brewing broke ground on June 2006 and opened
236
+ it''s doors for business on July 3rd, 2007. The Master Brewer, after \"home-brewing\"
237
+ 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
244
+ River Brewing Company","description":"The Kern River Brewing Company (KRBC)
245
+ brings people back to the magnificent simplicities that life has to offer.\r\n\r\nFrom
246
+ its beginnings, Kernville has been a wild-west town. Established as a mining
247
+ settlement in the mid 1800''s and continuing as a ranching community through
248
+ the 1900''s, Kernville remains a town of adventure, offering a wide variety
249
+ of outdoor activities. On any given day, the outdoor enthusiast enjoys activities
250
+ ranging from the excitement of whitewater rafting, kayaking, downhill skiing,
251
+ cross-country skiing, snowmobiling, horseback riding, attending rodeos, windsurfing,
252
+ water-skiing, mountain biking and climbing. If a more relaxing day is preferred,
253
+ people can enjoy fishing, hiking, camping, sailing, antiquing, and bird watching
254
+ 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
256
+ 02:41:59","updateDate":"2012-03-21 19:06:10"},{"id":"6QNMyS","name":"Laht
257
+ Neppur Brewing Company","description":"We couldn''t have said it better ourselves.
258
+ Laht Neppur Brewing Co., located in Waitsburg, WA, offers premium handcrafted
259
+ ale by the glass or pitcher in our tap room. Sampler trays are highly recommended
260
+ for first time visitors. We also have Mason Jars, Growlers, and Party Pigs
261
+ to go.\r\n\r\nAfter home brewing for more than 20 years, Chiefton Brewer Court
262
+ Ruppenthal, came to the Walla Walla Valley to learn the art of wine making.
263
+ He quickly realized that what the valley really needed was beer - good beer.
264
+ After all, winemakers in the valley are often heard saying, \"It takes a lot
265
+ of beer to make good wine.\" So he decided to open his own brewery, and opened
266
+ the doors to the public on June 3, 2006.\r\n\r\nAll Laht Neppur beer is produced
267
+ 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
269
+ 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
271
+ 02:42:00","updateDate":"2012-03-21 19:06:10"},{"id":"L3ozHK","name":"Lightning
272
+ Brewery","description":"Our fine hand crafted European style beers have a
273
+ distinctive Lightning Finish: a crisp, clean aroma, pronounced maltiness and
274
+ a prolonged and slightly bittering finish. Our beers are good to drink on
275
+ their own, and great with food. We have proven that you don\u2019t need to
276
+ travel to Europe to enjoy beers of these styles and of this caliber!\r\n\r\nAt
277
+ Lightning we brew \u201cBetter Beer Through Science.\u201d We believe that
278
+ good beer can be the result of chance and that great beer is the result of
279
+ an in-depth understanding of the beer making process. We take care to control
280
+ each stage of the brewing cycle, never skimp on how long each step takes and
281
+ 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
284
+ Bend Brewing Company","description":"Moccasin Bend Brewing Company is located
285
+ in the historic St. Elmo district of Chattanooga, TN. We\u2019re at the foot
286
+ of Lookout Mountain just steps away from the world-famous Incline Railway
287
+ and very near to the great Moccasin Bend of the Tennessee River. \r\n\r\nMBBC
288
+ was started by two brewers whose quest for the perfect beer led them to learn
289
+ the art of brewing. Chris Hunt and Duncan Guy began their brewing education
290
+ in the Barley Mob Brewers homebrewing club and continued to search for unique
291
+ and distinctive ale and lager formulas. They decided to offer their creations
292
+ to the public through a small batch microbrewery in 2006. Soon thereafter,
293
+ award-winning brewer Courtney Tyvand joined the two and presented his smoked
294
+ porter at the brewery\u2019s first beer dinner in October of 2006.\r\n\r\nThe
295
+ brewery is located on the ground floor of a historic building at 4015 Tennessee
296
+ Avenue in St. Elmo. The building is constructed of foot-square cedar timbers
297
+ and two-foot thick walls made of granite stone and mortar. Built in 1911
298
+ as a packaging factory for K-Rations for WWI, we occasionally find artifacts
299
+ from that era in the building walls and ceiling. The brewery shares space
300
+ with the Chattanooga U-Brew, a brew-on-premises business owned by Greg McCort.
301
+ \r\n\r\nMBBC is proud to offer small batch specialty ales and lagers in kegs
302
+ of various sizes. A tasting room is part of the brewery; samples of our beers
303
+ can be tasted and tested on premises. Occasionally we have tasting events
304
+ 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
306
+ 02:42:02","updateDate":"2012-03-21 19:06:12"},{"id":"1cfDau","name":"Monday
307
+ Night Brewing","description":"Monday Night Brewing is an Atlanta-based craft
308
+ beer company. We currently offer two delicious styles of beer on draft in
309
+ select Atlanta establishments.\r\n\r\nBelieve it or not, the idea for Monday
310
+ Night Brewing grew out of a small Atlanta Bible study. We started brewing
311
+ beer together on Monday nights as a way to get to know each other better.
312
+ As we got more engrained in the industry and more people started showing up
313
+ to brew with us, beer quickly became more than just a weeknight hobby.\r\n\r\nWe
314
+ spent almost 5 years perfecting our Eye Patch Ale and Drafty Kilt Scotch Ale
315
+ before bringing them to market. Years of minor tweaks, arguments over hop
316
+ 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
319
+ Oscar Bryggeri","description":"We brew beer and produce good spirits\r\n\r\nOur
320
+ brewing there since mid-September 2006 Fru\u00e4ngsk\u00e4llan in Nyk\u00f6ping,
321
+ about 10 mil south of Stockholm, and the distillery is nearby on T\u00e4rn\u00f6
322
+ Manor where even m\u00e4lteriet is located. We have been around since 1996.
323
+ The Nils Oscar operates some of Europe''s most qualified brewer. Our products
324
+ are sold to bars and liquor stores throughout the country. Other companies
325
+ in the same group , occupational group includes, in addition Brewery and Distillery
326
+ also our own malt house and farm T\u00e4rn\u00f6 Manor. Try our products and
327
+ 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
329
+ 10:30:50","updateDate":"2012-06-14 11:59:08"},{"id":"V4I9FT","name":"Ninkasi
330
+ Brewing Company","description":"Ninkasi Brewing began its history on June
331
+ 15th, 2006 when Jamie Floyd and Nikos Ridge spent 17 hours brewing their first
332
+ batch of Total Domination IPA in leased space inside a German restaurant in
333
+ Springfield, Oregon. Once a brewery, the building was equipped with a 15 barrel
334
+ brew house set up for brewpub brewing.\r\n\r\nWithin the next few months Ninkasi
335
+ maximized its first home as they pushed their maximum annual output of 1600
336
+ barrels. Meanwhile, the two worked with the City of Eugene, the SBA, Liberty
337
+ Bank and some investors to purchase their current location in the heart of
338
+ the Historic Whiteaker neighborhood in Eugene. Over time, Ninkasi transformed
339
+ 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
342
+ Brewing Company","description":"The name Oakshire represents Strength, Independence,
343
+ Community and Bioregion, values held by our owners and employees. Begun
344
+ in October 2006 by brothers Jeff and Chris Althouse, Oakshire Brewing operates
345
+ as a production brewery next to the train yards in Northwest Eugene. We
346
+ make three year round beers, available in 22oz bottles and on draft found
347
+ throughout Oregon. Oakshire makes a rotating seasonal beer available in 22oz
348
+ bottles and on draft as well. And the brewers at Oakshire craft a range of
349
+ single batch beers only available on draft. The brewery aims to make clean,
350
+ 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
352
+ 02:42:04","updateDate":"2012-03-21 19:06:11"},{"id":"ayEBYP","name":"Port
353
+ Brewing Company","description":"We officially opened on May 5th 2006. Now
354
+ we will be able to make up to 5000 barrels of beer enabling you more chances
355
+ to drink your favorite Port Brewed beers at home and around town. More impressive
356
+ is our oak barrel room where we age our barrel aged specialty beers. Come
357
+ 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"}'
428
+ http_version:
429
+ recorded_at: Sat, 11 Aug 2012 23:35:41 GMT
430
+ - request:
431
+ method: get
432
+ uri: http://api.brewerydb.com/v2/breweries?key=API_KEY&established=2006&p=2
433
+ body:
434
+ encoding: US-ASCII
435
+ string: ''
436
+ headers:
437
+ User-Agent:
438
+ - BreweryDB Ruby Gem 0.0.1
439
+ response:
440
+ status:
441
+ code: 200
442
+ message:
443
+ headers:
444
+ date:
445
+ - Sat, 11 Aug 2012 23:35:41 GMT
446
+ server:
447
+ - Apache/2.2.22 (Amazon)
448
+ x-powered-by:
449
+ - PHP/5.3.13
450
+ x-ratelimit-limit:
451
+ - Unlimited
452
+ x-ratelimit-remaining:
453
+ - Unlimited
454
+ content-length:
455
+ - '5966'
456
+ connection:
457
+ - close
458
+ content-type:
459
+ - application/json
460
+ body:
461
+ encoding: US-ASCII
462
+ string: ! '{"currentPage":2,"numberOfPages":2,"totalResults":55,"data":[{"id":"VcP5iA","name":"Twin
463
+ Lakes Brewing Company","description":"In 1985, while attending the University
464
+ of California at Berkeley, Samuel Hobbs wrote a chemistry paper, for a laugh,
465
+ on \u201caqueous beer foam\u201d (the head of a beer). It would take 21 years
466
+ for that initial interest to manifest itself into something drinkable. The
467
+ spark would come after 9\/11 while he drank homebrewed stout with five of
468
+ his friends. Motivated by patriotic feelings and the American dream of creating
469
+ a business, the energy was set in motion to start Twin Lakes Brewing Company.
470
+ Weeks later, Sam and his longtime friends Matt Day, Jack Wick, and Mark Fesche
471
+ developed a unique 15 gallon gravity fed pilot system and began working to
472
+ create their first signature brews.\r\n\r\nThey decided to locate the brewery
473
+ at the beautiful \u201cTwin Lakes Farm\u201d in Greenville, Delaware. This
474
+ historic 252 acre farm has been in Sam\u2019s family for seven generations
475
+ and has a deep rock well aquifer which supplies perfect water for brewing.
476
+ Local artisans converted an old tractor barn and art studio to accommodate
477
+ a five vessel, gravity fed brewery and tasting room. Finally, on April 13,
478
+ 2006, the first two brands, Greenville Pale Ale and Route 52 Pilsner, were
479
+ launched. \r\n\r\nToday Twin Lakes Brewery also produces Tweed\u2019s Tavern
480
+ Stout, Caesar Rodney Golden Ale and Winterthur Wheat, as well as seasonal
481
+ styles Oktoberfest and Jublicious. Currently, Twin Lakes beer is available
482
+ on tap at many fine restaurants and taverns in Delaware and Southeastern Pennsylvania.
483
+ Growlers (half gallon jugs of beer) can be purchased at the brewery and kegs
484
+ are available at most regional beer and liquor stores.","website":"http:\/\/twinlakesbrewingcompany.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/VcP5iA\/upload_AT5fnN-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/VcP5iA\/upload_AT5fnN-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/VcP5iA\/upload_AT5fnN-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
485
+ 02:42:11","updateDate":"2012-04-21 12:38:05"},{"id":"Mgxzcw","name":"Weasel
486
+ Boy Brewing Company","description":"Founded by Jay and Lori Wince in 2006
487
+ Weasel Boy Brewing Company is committed to our local community and works
488
+ with many local organizations to promote Zanesville and the Muskingum County
489
+ Area. By taking an active part in community events, supporting local businesses,
490
+ local charities, local artisans and promoting a family friendly environment,
491
+ Weasel Boy endeavors to be a good citizen and good neighbor. Allow us to
492
+ introduce our founders.","website":"http:\/\/www.weaselboybrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Mgxzcw\/upload_kLmyW1-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Mgxzcw\/upload_kLmyW1-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Mgxzcw\/upload_kLmyW1-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
493
+ 02:42:12","updateDate":"2012-03-21 19:06:12"},{"id":"6oEP92","name":"Wells
494
+ and Young's Brewing Company","description":"Wells and Young\u2019s Brewing
495
+ Company is the epitome of all-round business excellence, demonstrating sustained
496
+ growth for its beers and stockists whilst combining traditional family values
497
+ with innovation and development. \r\n\r\nFirmly placed as the UK\u2019s largest
498
+ private brewing company, it is fiercely independent, and with an enviable
499
+ portfolio of some of the UK\u2019s most loved cask beers and speciality lager
500
+ brands.","website":"http:\/\/www.wellsandyoungs.co.uk\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/6oEP92\/upload_dKFbek-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/6oEP92\/upload_dKFbek-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/6oEP92\/upload_dKFbek-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
501
+ 02:42:12","updateDate":"2012-03-21 19:06:10"},{"id":"2ONHw4","name":"Williamsburg
502
+ AleWerks","description":"Williamsburg AleWerks is located in the heart of
503
+ the early colonies in Williamsburg, Virginia. Established in 2006 we have
504
+ rolled out a broad range of beer offerings and quickly established a reputation
505
+ for fine beer. We operate a direct fired brick-clad Peter Austin brew house
506
+ and ferment all our beers in state-of-the-art conical fermentors.","website":"http:\/\/www.williamsburgalewerks.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/2ONHw4\/upload_fyDzSa-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/2ONHw4\/upload_fyDzSa-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/2ONHw4\/upload_fyDzSa-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
507
+ 02:42:13","updateDate":"2012-03-21 19:06:14"},{"id":"IgdWNj","name":"Woodruff
508
+ Brewing Company","description":"The Downtown Grill & Brewery is a nice brewpub
509
+ downtown with patio seating on Gay Street as well as a back porch. The atmosphere
510
+ is lodge-like with rich wood and copper brewing equipment. There is also a
511
+ private room you can rent upstairs.","website":"http:\/\/woodruffbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/IgdWNj\/upload_N1UQo5-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/IgdWNj\/upload_N1UQo5-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/IgdWNj\/upload_N1UQo5-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
512
+ 02:42:16","updateDate":"2012-03-21 19:06:09"}],"status":"success"}'
513
+ http_version:
514
+ recorded_at: Sat, 11 Aug 2012 23:35:41 GMT
515
+ recorded_with: VCR 2.2.2