brewery_db 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +6 -14
- data/CHANGELOG.md +6 -0
- data/README.md +9 -0
- data/brewery_db.gemspec +1 -1
- data/lib/brewery_db.rb +3 -0
- data/lib/brewery_db/client.rb +12 -0
- data/lib/brewery_db/resources/fermentables.rb +13 -0
- data/lib/brewery_db/resources/hops.rb +13 -0
- data/lib/brewery_db/resources/yeasts.rb +13 -0
- data/lib/brewery_db/version.rb +1 -1
- data/spec/brewery_db/client_spec.rb +19 -14
- data/spec/brewery_db/config_spec.rb +12 -10
- data/spec/brewery_db/mash_spec.rb +2 -2
- data/spec/brewery_db/middleware/error_handler_spec.rb +1 -1
- data/spec/brewery_db/resource_spec.rb +12 -6
- data/spec/brewery_db/resources/beers_spec.rb +2 -2
- data/spec/brewery_db/resources/breweries_spec.rb +2 -2
- data/spec/brewery_db/resources/brewery_spec.rb +8 -8
- data/spec/brewery_db/resources/categories_spec.rb +2 -2
- data/spec/brewery_db/resources/fermentables_spec.rb +21 -0
- data/spec/brewery_db/resources/glassware_spec.rb +2 -2
- data/spec/brewery_db/resources/hops_spec.rb +21 -0
- data/spec/brewery_db/resources/locations_spec.rb +2 -2
- data/spec/brewery_db/resources/search_spec.rb +5 -5
- data/spec/brewery_db/resources/styles_spec.rb +2 -2
- data/spec/brewery_db/resources/yeasts_spec.rb +21 -0
- data/spec/brewery_db/web_hook_spec.rb +1 -1
- data/spec/fixtures/BreweryDB_Resource/_get/a_list_of_resources/can_be_enumerated.yml +237 -141
- 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
- data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/includes_the_response_status_in_the_error_message.yml +36 -0
- data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/raises_an_exception.yml +11 -13
- data/spec/fixtures/BreweryDB_Resource/_get/an_OK_request/{name/.yml → returns_the_data.yml} +13 -11
- data/spec/fixtures/BreweryDB_Resources_Beers/_all/fetches_all_of_the_beers_at_once.yml +497 -497
- data/spec/fixtures/BreweryDB_Resources_Beers/_find/fetches_only_the_beer_asked_for.yml +13 -11
- data/spec/fixtures/BreweryDB_Resources_Breweries/_all/fetches_all_of_the_breweries_at_once.yml +164 -147
- data/spec/fixtures/BreweryDB_Resources_Breweries/_find/fetches_only_the_brewery_asked_for.yml +13 -11
- data/spec/fixtures/BreweryDB_Resources_Categories/_all/fetches_all_of_the_cagtegories_at_once.yml +11 -9
- data/spec/fixtures/BreweryDB_Resources_Categories/_find/fetches_only_the_category_asked_for.yml +11 -9
- data/spec/fixtures/BreweryDB_Resources_Fermentables/_all/fetches_all_of_the_fermentables_at_once.yml +189 -0
- data/spec/fixtures/BreweryDB_Resources_Fermentables/_find/fetches_only_the_fermentable_asked_for.yml +42 -0
- data/spec/fixtures/BreweryDB_Resources_Glassware/_all/fetches_all_of_the_glassware_at_once.yml +11 -9
- data/spec/fixtures/BreweryDB_Resources_Glassware/_find/fetches_only_the_glassware_asked_for.yml +11 -9
- data/spec/fixtures/BreweryDB_Resources_Hops/_all/fetches_all_of_the_hops_at_once.yml +248 -0
- data/spec/fixtures/BreweryDB_Resources_Hops/_find/fetches_only_the_hop_asked_for.yml +45 -0
- data/spec/fixtures/BreweryDB_Resources_Locations/_all/fetches_all_of_the_breweries_at_once.yml +252 -686
- data/spec/fixtures/BreweryDB_Resources_Locations/_find/fetches_only_the_location_asked_for.yml +35 -72
- data/spec/fixtures/BreweryDB_Resources_Search/_all/fetches_all_of_the_search_results_at_once.yml +486 -429
- data/spec/fixtures/BreweryDB_Resources_Styles/_all/fetches_all_of_the_styles_at_once.yml +54 -57
- data/spec/fixtures/BreweryDB_Resources_Styles/_find/fetches_only_the_style_asked_for.yml +11 -9
- data/spec/fixtures/BreweryDB_Resources_Yeasts/_all/fetches_all_of_the_yeasts_at_once.yml +222 -0
- data/spec/fixtures/BreweryDB_Resources_Yeasts/_find/fetches_only_the_yeast_asked_for.yml +49 -0
- metadata +38 -16
|
@@ -7,7 +7,7 @@ describe BreweryDB::Resources::Categories, :resource do
|
|
|
7
7
|
let(:response) { described_class.new(config).all }
|
|
8
8
|
|
|
9
9
|
it 'fetches all of the cagtegories at once' do
|
|
10
|
-
response.length.
|
|
10
|
+
expect(response.length).to eq(12)
|
|
11
11
|
end
|
|
12
12
|
end
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@ describe BreweryDB::Resources::Categories, :resource do
|
|
|
15
15
|
let(:response) { described_class.new(config).find(1) }
|
|
16
16
|
|
|
17
17
|
it 'fetches only the category asked for' do
|
|
18
|
-
response.id.
|
|
18
|
+
expect(response.id).to eq(1)
|
|
19
19
|
end
|
|
20
20
|
end
|
|
21
21
|
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
|
|
3
|
+
require 'spec_helper'
|
|
4
|
+
|
|
5
|
+
describe BreweryDB::Resources::Fermentables, :resource do
|
|
6
|
+
context '#all', :vcr do
|
|
7
|
+
let(:response) { described_class.new(config).all }
|
|
8
|
+
|
|
9
|
+
it 'fetches all of the fermentables at once' do
|
|
10
|
+
expect(response.length).to eq(50)
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
context '#find', :vcr do
|
|
15
|
+
let(:response) { described_class.new(config).find(1924) }
|
|
16
|
+
|
|
17
|
+
it 'fetches only the fermentable asked for' do
|
|
18
|
+
expect(response.id).to eq(1924)
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
@@ -7,7 +7,7 @@ describe BreweryDB::Resources::Glassware, :resource do
|
|
|
7
7
|
let(:response) { described_class.new(config).all }
|
|
8
8
|
|
|
9
9
|
it 'fetches all of the glassware at once' do
|
|
10
|
-
response.length.
|
|
10
|
+
expect(response.length).to eq(12)
|
|
11
11
|
end
|
|
12
12
|
end
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@ describe BreweryDB::Resources::Glassware, :resource do
|
|
|
15
15
|
let(:response) { described_class.new(config).find(1) }
|
|
16
16
|
|
|
17
17
|
it 'fetches only the glassware asked for' do
|
|
18
|
-
response.id.
|
|
18
|
+
expect(response.id).to eq(1)
|
|
19
19
|
end
|
|
20
20
|
end
|
|
21
21
|
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
|
|
3
|
+
require 'spec_helper'
|
|
4
|
+
|
|
5
|
+
describe BreweryDB::Resources::Hops, :resource do
|
|
6
|
+
context '#all', :vcr do
|
|
7
|
+
let(:response) { described_class.new(config).all }
|
|
8
|
+
|
|
9
|
+
it 'fetches all of the hops at once' do
|
|
10
|
+
expect(response.length).to eq(50)
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
context '#find', :vcr do
|
|
15
|
+
let(:response) { described_class.new(config).find(1) }
|
|
16
|
+
|
|
17
|
+
it 'fetches only the hop asked for' do
|
|
18
|
+
expect(response.id).to eq(1)
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
@@ -5,7 +5,7 @@ describe BreweryDB::Resources::Locations, :resource do
|
|
|
5
5
|
let(:response) { described_class.new(config).all(locality: 'San Francisco') }
|
|
6
6
|
|
|
7
7
|
it 'fetches all of the breweries at once' do
|
|
8
|
-
response.count.
|
|
8
|
+
expect(response.count).to eq(19)
|
|
9
9
|
end
|
|
10
10
|
end
|
|
11
11
|
|
|
@@ -13,7 +13,7 @@ describe BreweryDB::Resources::Locations, :resource do
|
|
|
13
13
|
let(:response) { described_class.new(config).find('wXmTDU') }
|
|
14
14
|
|
|
15
15
|
it 'fetches only the location asked for' do
|
|
16
|
-
response.id.
|
|
16
|
+
expect(response.id).to eq('wXmTDU')
|
|
17
17
|
end
|
|
18
18
|
end
|
|
19
19
|
end
|
|
@@ -7,7 +7,7 @@ describe BreweryDB::Resources::Search, :resource do
|
|
|
7
7
|
let(:response) { described_class.new(config).all(q: 'IPA') }
|
|
8
8
|
|
|
9
9
|
it 'fetches all of the search results at once' do
|
|
10
|
-
response.count.
|
|
10
|
+
expect(response.count).to eq(6260)
|
|
11
11
|
end
|
|
12
12
|
end
|
|
13
13
|
|
|
@@ -18,12 +18,12 @@ describe BreweryDB::Resources::Search, :resource do
|
|
|
18
18
|
events: 'event'
|
|
19
19
|
}.each do |method, type|
|
|
20
20
|
context "##{method}" do
|
|
21
|
-
subject { described_class.new(config) }
|
|
21
|
+
subject(:search) { described_class.new(config) }
|
|
22
22
|
|
|
23
23
|
specify do
|
|
24
|
-
results =
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
results = double(:results)
|
|
25
|
+
search.stub(:all).with(type: type, q: 'IPA') { results }
|
|
26
|
+
expect(search.send(method, q: 'IPA')).to eq(results)
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
end
|
|
@@ -7,7 +7,7 @@ describe BreweryDB::Resources::Styles, :resource do
|
|
|
7
7
|
let(:response) { described_class.new(config).all }
|
|
8
8
|
|
|
9
9
|
it 'fetches all of the styles at once' do
|
|
10
|
-
response.length.
|
|
10
|
+
expect(response.length).to eq(157)
|
|
11
11
|
end
|
|
12
12
|
end
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@ describe BreweryDB::Resources::Styles, :resource do
|
|
|
15
15
|
let(:response) { described_class.new(config).find(1) }
|
|
16
16
|
|
|
17
17
|
it 'fetches only the style asked for' do
|
|
18
|
-
response.id.
|
|
18
|
+
expect(response.id).to eq(1)
|
|
19
19
|
end
|
|
20
20
|
end
|
|
21
21
|
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
|
|
3
|
+
require 'spec_helper'
|
|
4
|
+
|
|
5
|
+
describe BreweryDB::Resources::Yeasts, :resource do
|
|
6
|
+
context '#all', :vcr do
|
|
7
|
+
let(:response) { described_class.new(config).all }
|
|
8
|
+
|
|
9
|
+
it 'fetches all of the yeasts at once' do
|
|
10
|
+
expect(response.length).to eq(50)
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
context '#find', :vcr do
|
|
15
|
+
let(:response) { described_class.new(config).find(1836) }
|
|
16
|
+
|
|
17
|
+
it 'fetches only the yeast asked for' do
|
|
18
|
+
expect(response.id).to eq(1836)
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
@@ -8,39 +8,47 @@ http_interactions:
|
|
|
8
8
|
string: ''
|
|
9
9
|
headers:
|
|
10
10
|
User-Agent:
|
|
11
|
-
- BreweryDB Ruby Gem 0.0
|
|
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
|
-
-
|
|
18
|
+
- Mon, 22 Jul 2013 00:05:45 GMT
|
|
19
19
|
server:
|
|
20
|
-
- Apache/2.2.
|
|
20
|
+
- Apache/2.2.24 (Amazon)
|
|
21
21
|
x-powered-by:
|
|
22
|
-
- PHP/5.3.
|
|
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:
|
|
35
|
-
string:
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
a
|
|
42
|
-
|
|
43
|
-
|
|
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":"
|
|
56
|
-
15:28:05","updateDate":"2012-03-21 19:06:20"},{"id":"
|
|
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":"
|
|
70
|
-
02:41:44","updateDate":"2012-
|
|
71
|
-
Volker Br\u00e4u","established":"2006","isOrganic":"N","status":"
|
|
72
|
-
|
|
73
|
-
Brewing
|
|
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.","
|
|
79
|
-
02:41:44","updateDate":"2012-
|
|
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
|
|
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":"
|
|
86
|
-
02:41:46","updateDate":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
122
|
-
02:41:46","updateDate":"2012-06-27 13:53:30"},{"id":"
|
|
123
|
-
|
|
124
|
-
|
|
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":"
|
|
131
|
-
02:41:48","updateDate":"2012-
|
|
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":"
|
|
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":"
|
|
147
|
-
02:41:51","updateDate":"2012-
|
|
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":"
|
|
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":"
|
|
160
|
-
02:41:52","updateDate":"2012-03-21 19:06:13"},{"id":"
|
|
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":"
|
|
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":"
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
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":"
|
|
188
|
-
02:41:54","updateDate":"2012-
|
|
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":"
|
|
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":"
|
|
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":"
|
|
222
|
-
02:41:56","updateDate":"2012-
|
|
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":"
|
|
234
|
-
02:41:57","updateDate":"2012-03-21 19:06:12"},{"id":"
|
|
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":"
|
|
239
|
-
02:41:58","updateDate":"
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
283
|
-
02:42:00","updateDate":"2012-03-21 19:06:12"},{"id":"
|
|
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":"
|
|
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":"
|
|
318
|
-
02:42:02","updateDate":"
|
|
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":"
|
|
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":"
|
|
341
|
-
02:42:03","updateDate":"2012-
|
|
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,18 +433,56 @@ 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":"
|
|
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":"
|
|
359
|
-
02:42:06","updateDate":"
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
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"}'
|
|
445
|
+
http_version:
|
|
446
|
+
recorded_at: Mon, 22 Jul 2013 00:05:46 GMT
|
|
447
|
+
- request:
|
|
448
|
+
method: get
|
|
449
|
+
uri: http://api.brewerydb.com/v2/breweries?key=API_KEY&established=2006&p=2
|
|
450
|
+
body:
|
|
451
|
+
encoding: US-ASCII
|
|
452
|
+
string: ''
|
|
453
|
+
headers:
|
|
454
|
+
User-Agent:
|
|
455
|
+
- BreweryDB Ruby Gem 0.2.0
|
|
456
|
+
response:
|
|
457
|
+
status:
|
|
458
|
+
code: 200
|
|
459
|
+
message:
|
|
460
|
+
headers:
|
|
461
|
+
date:
|
|
462
|
+
- Mon, 22 Jul 2013 00:05:46 GMT
|
|
463
|
+
server:
|
|
464
|
+
- Apache/2.2.24 (Amazon)
|
|
465
|
+
x-powered-by:
|
|
466
|
+
- PHP/5.3.26
|
|
467
|
+
x-ratelimit-limit:
|
|
468
|
+
- Unlimited
|
|
469
|
+
x-ratelimit-remaining:
|
|
470
|
+
- Unlimited
|
|
471
|
+
vary:
|
|
472
|
+
- Accept-Encoding
|
|
473
|
+
content-length:
|
|
474
|
+
- '4882'
|
|
475
|
+
connection:
|
|
476
|
+
- close
|
|
477
|
+
content-type:
|
|
478
|
+
- application/json
|
|
479
|
+
body:
|
|
480
|
+
encoding: UTF-8
|
|
481
|
+
string: '{"currentPage":2,"numberOfPages":2,"totalResults":66,"data":[{"id":"6UQcqZ","name":"Robens
|
|
482
|
+
Kerkerbr\u00e4u","website":"http:\/\/www.robens-kerkerbraeu.de\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-08-07
|
|
483
|
+
10:18:43","updateDate":"2012-08-16 14:56:53"},{"id":"3Q48Ed","name":"R\u00f6merbr\u00e4u
|
|
484
|
+
Riegel","website":"http:\/\/www.roemerbraeu.de\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-08-07
|
|
485
|
+
10:16:06","updateDate":"2012-08-13 11:46:21"},{"id":"jYfgIh","name":"Schooner
|
|
363
486
|
Exact Brewing Company","description":"In 2006, homebrewing pals Marcus Connery
|
|
364
487
|
and Matt & Heather McClung decided to take their hobby to the next level and
|
|
365
488
|
go pro. Purchasing a half-barrel system, they began brewing a keg of beer
|
|
@@ -371,10 +494,10 @@ http_interactions:
|
|
|
371
494
|
location on 1st Avenue in 2010. After Marcus Connery passed the reins of the
|
|
372
495
|
brewery over to Heather and Matt to pursue the next chapter in his beer adventures
|
|
373
496
|
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":"
|
|
497
|
+
teaching jobs to pursue their brewery dreams full time.","website":"http:\/\/www.schoonerexact.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/jYfgIh\/upload_kdGmrs-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/jYfgIh\/upload_kdGmrs-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/jYfgIh\/upload_kdGmrs-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
375
498
|
02:42:08","updateDate":"2012-03-21 19:06:12"},{"id":"Feefqj","name":"Schwarzenbeker
|
|
376
|
-
Brauhaus","established":"2006","isOrganic":"N","status":"
|
|
377
|
-
|
|
499
|
+
Brauhaus","website":"http:\/\/www.schwarzenbeker-brauhaus.de\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-08-07
|
|
500
|
+
10:20:28","updateDate":"2012-08-12 23:38:00"},{"id":"4ihK01","name":"Sherwood
|
|
378
501
|
Brewing Company","description":"Sherwood Brewing Company opened its doors
|
|
379
502
|
on August 31, 2006 in the Hayes Center Shoppes plaza on Hayes Rd. north of
|
|
380
503
|
Hall Rd. (M-59) in Shelby Township, Michigan.\r\n\r\nWe serve only the finest
|
|
@@ -391,10 +514,10 @@ http_interactions:
|
|
|
391
514
|
one sip and you''ll know that you''ve discovered something quiet extraordinary\u2026
|
|
392
515
|
beer that has been crafted by beer lovers for beer lovers.\r\nAs a Southern
|
|
393
516
|
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":"
|
|
517
|
+
of quality and returning a percentage of our profits to the local community.","website":"http:\/\/www.sobrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GANyEU\/upload_2aXCOU-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GANyEU\/upload_2aXCOU-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/GANyEU\/upload_2aXCOU-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
395
518
|
02:42:08","updateDate":"2012-03-21 19:06:10"},{"id":"DWG9s4","name":"Spezialit\u00e4tenbrauerei
|
|
396
|
-
Eckart","established":"2006","isOrganic":"N","status":"
|
|
397
|
-
|
|
519
|
+
Eckart","website":"http:\/\/www.brauerei-eckart.de\/","established":"2006","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-08-07
|
|
520
|
+
10:20:23","updateDate":"2012-08-16 15:11:37"},{"id":"g6S9WB","name":"Square
|
|
398
521
|
One Brewery & Distillery","description":"The Square One Brewery & Distillery
|
|
399
522
|
began operations as a brewery \/restaurant in February of 2006. In August
|
|
400
523
|
of 2008 Square One became the first microdistillery restaurant in the state
|
|
@@ -403,13 +526,13 @@ http_interactions:
|
|
|
403
526
|
other restaurants. We believe in crafting the products we serve whether it
|
|
404
527
|
is spirits, beer or food. By combining the expertise of our distiller, our
|
|
405
528
|
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":"
|
|
529
|
+
of flavors and tastes for our customers.","website":"http:\/\/www.squareonebrewery.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/g6S9WB\/upload_l9hvAq-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/g6S9WB\/upload_l9hvAq-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/g6S9WB\/upload_l9hvAq-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
407
530
|
02:42:09","updateDate":"2012-03-21 19:06:12"},{"id":"cPRfoj","name":"Surly
|
|
408
531
|
Brewing Company","description":"While you''re enjoying the full-bodied flavor
|
|
409
532
|
of the beer, remember that it was more than 10 years in the making. We think
|
|
410
533
|
it was worth it. We hope you agree.\r\n \r\nSurly: The anger fueled by the
|
|
411
534
|
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":"
|
|
535
|
+
know they wanted to drink it until they had it.\" - Omar Ansari","website":"http:\/\/www.surlybrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cPRfoj\/upload_h0oqUF-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cPRfoj\/upload_h0oqUF-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/cPRfoj\/upload_h0oqUF-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
413
536
|
02:42:09","updateDate":"2012-07-30 21:46:09"},{"id":"9x7wNn","name":"The Lost
|
|
414
537
|
Abbey","description":"Founded in 2006, Port Brewing Company produces a line
|
|
415
538
|
of award-winning American ales and the groundbreaking Lost Abbey family of
|
|
@@ -423,43 +546,8 @@ http_interactions:
|
|
|
423
546
|
bold, boundary-pushing styles.\r\n\r\nSince opening its doors, Port Brewing
|
|
424
547
|
and The Lost Abbey beers have won more nearly 100 medals in regional, national
|
|
425
548
|
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":"
|
|
427
|
-
02:42:10","updateDate":"2012-03-21 19:06:09"}
|
|
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
|
|
549
|
+
the world, and six of its beers are among the 100 best beers.","website":"http:\/\/www.lostabbey.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/9x7wNn\/upload_iFoVyB-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/9x7wNn\/upload_iFoVyB-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/9x7wNn\/upload_iFoVyB-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
550
|
+
02:42:10","updateDate":"2012-03-21 19:06:09"},{"id":"VcP5iA","name":"Twin
|
|
463
551
|
Lakes Brewing Company","description":"In 1985, while attending the University
|
|
464
552
|
of California at Berkeley, Samuel Hobbs wrote a chemistry paper, for a laugh,
|
|
465
553
|
on \u201caqueous beer foam\u201d (the head of a beer). It would take 21 years
|
|
@@ -481,7 +569,7 @@ http_interactions:
|
|
|
481
569
|
styles Oktoberfest and Jublicious. Currently, Twin Lakes beer is available
|
|
482
570
|
on tap at many fine restaurants and taverns in Delaware and Southeastern Pennsylvania.
|
|
483
571
|
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":"
|
|
572
|
+
are available at most regional beer and liquor stores.","website":"http:\/\/twinlakesbrewingcompany.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/VcP5iA\/upload_AT5fnN-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/VcP5iA\/upload_AT5fnN-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/VcP5iA\/upload_AT5fnN-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
485
573
|
02:42:11","updateDate":"2012-04-21 12:38:05"},{"id":"Mgxzcw","name":"Weasel
|
|
486
574
|
Boy Brewing Company","description":"Founded by Jay and Lori Wince in 2006
|
|
487
575
|
Weasel Boy Brewing Company is committed to our local community and works
|
|
@@ -489,27 +577,35 @@ http_interactions:
|
|
|
489
577
|
Area. By taking an active part in community events, supporting local businesses,
|
|
490
578
|
local charities, local artisans and promoting a family friendly environment,
|
|
491
579
|
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":"
|
|
493
|
-
02:42:12","updateDate":"2012-
|
|
494
|
-
and Young
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
580
|
+
introduce our founders.","website":"http:\/\/www.weaselboybrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Mgxzcw\/upload_XaKMC5-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Mgxzcw\/upload_XaKMC5-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/Mgxzcw\/upload_XaKMC5-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
581
|
+
02:42:12","updateDate":"2012-09-29 20:55:25"},{"id":"6oEP92","name":"Wells
|
|
582
|
+
and Young''s Brewing Company","description":"Wells and Young''s Brewing Company
|
|
583
|
+
is the epitome of all-round business excellence, demonstrating sustained growth
|
|
584
|
+
for its beers and stockists whilst combining traditional family values with
|
|
585
|
+
innovation and development. \r\n\r\nFirmly placed as the UK''s largest private
|
|
586
|
+
brewing company, it is fiercely independent, and with an enviable portfolio
|
|
587
|
+
of some of the UK''s most loved cask beers and speciality lager brands.","website":"http:\/\/www.wellsandyoungs.co.uk\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/6oEP92\/upload_dKFbek-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/6oEP92\/upload_dKFbek-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/6oEP92\/upload_dKFbek-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
588
|
+
02:42:12","updateDate":"2012-10-20 17:22:51"},{"id":"9na4NR","name":"West
|
|
589
|
+
Brewery","description":"WEST is a brewery, bar and restaurant situated in
|
|
590
|
+
the Templeton Building on Glasgow Green. \r\n\r\nWEST is the first UK brewery
|
|
591
|
+
to produce all of its beers in accordance with the Reinheitsgebot, known as
|
|
592
|
+
the German Purity Law. This means that we only use the four core ingredients,
|
|
593
|
+
water, malt, hops and yeast in brewing all of our beers, adding no artificial
|
|
594
|
+
additives, colouring or preservatives. The rich complexity and diverse range
|
|
595
|
+
of flavours in our beers comes from pure ingredients, expertly brewed, with
|
|
596
|
+
no shortcuts. \r\n\r\nWEST Brewery. Glaswegian Heart. German Head.","website":"http:\/\/www.westbeer.com\/","established":"2006","mailingListUrl":"http:\/\/www.westbeer.com\/WEST_Mailing_List.html","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/9na4NR\/upload_XT2HjW-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/9na4NR\/upload_XT2HjW-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/9na4NR\/upload_XT2HjW-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-03-21
|
|
597
|
+
00:57:31","updateDate":"2013-03-21 10:52:04"},{"id":"2ONHw4","name":"Williamsburg
|
|
502
598
|
AleWerks","description":"Williamsburg AleWerks is located in the heart of
|
|
503
599
|
the early colonies in Williamsburg, Virginia. Established in 2006 we have
|
|
504
600
|
rolled out a broad range of beer offerings and quickly established a reputation
|
|
505
601
|
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":"
|
|
602
|
+
and ferment all our beers in state-of-the-art conical fermentors.","website":"http:\/\/www.williamsburgalewerks.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/2ONHw4\/upload_fyDzSa-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/2ONHw4\/upload_fyDzSa-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/2ONHw4\/upload_fyDzSa-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
507
603
|
02:42:13","updateDate":"2012-03-21 19:06:14"},{"id":"IgdWNj","name":"Woodruff
|
|
508
604
|
Brewing Company","description":"The Downtown Grill & Brewery is a nice brewpub
|
|
509
605
|
downtown with patio seating on Gay Street as well as a back porch. The atmosphere
|
|
510
606
|
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":"
|
|
512
|
-
02:42:16","updateDate":"2012-
|
|
607
|
+
private room you can rent upstairs.","website":"http:\/\/woodruffbrewing.com\/","established":"2006","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/IgdWNj\/upload_HoAg3q-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/IgdWNj\/upload_HoAg3q-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/IgdWNj\/upload_HoAg3q-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
608
|
+
02:42:16","updateDate":"2012-11-15 16:40:40"}],"status":"success"}'
|
|
513
609
|
http_version:
|
|
514
|
-
recorded_at:
|
|
515
|
-
recorded_with: VCR 2.
|
|
610
|
+
recorded_at: Mon, 22 Jul 2013 00:05:46 GMT
|
|
611
|
+
recorded_with: VCR 2.4.0
|