brewery_db 0.2.3 → 0.2.4
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 +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +1 -0
- data/CHANGELOG.md +4 -0
- data/README.md +5 -4
- data/brewery_db.gemspec +2 -0
- data/lib/brewery_db/resources/beers.rb +4 -0
- data/lib/brewery_db/version.rb +1 -1
- data/spec/brewery_db/client_spec.rb +23 -12
- data/spec/brewery_db/config_spec.rb +9 -5
- data/spec/brewery_db/resource_spec.rb +1 -1
- data/spec/brewery_db/resources/beers_spec.rb +14 -3
- data/spec/brewery_db/resources/breweries_spec.rb +1 -1
- data/spec/brewery_db/resources/brewery_spec.rb +2 -2
- data/spec/brewery_db/resources/categories_spec.rb +1 -1
- data/spec/brewery_db/resources/fermentables_spec.rb +1 -1
- data/spec/brewery_db/resources/fluid_size_spec.rb +1 -1
- data/spec/brewery_db/resources/hops_spec.rb +1 -1
- data/spec/brewery_db/resources/locations_spec.rb +1 -1
- data/spec/brewery_db/resources/search_spec.rb +5 -5
- data/spec/brewery_db/resources/styles_spec.rb +1 -1
- data/spec/brewery_db/resources/yeasts_spec.rb +1 -1
- data/spec/fixtures/BreweryDB_Resource/_get/a_list_of_resources/can_be_enumerated.yml +160 -84
- data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/includes_the_response_message_in_the_error_message.yml +9 -9
- data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/includes_the_response_status_in_the_error_message.yml +9 -9
- data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/raises_an_exception.yml +9 -9
- data/spec/fixtures/BreweryDB_Resource/_get/an_OK_request/returns_the_data.yml +10 -10
- data/spec/fixtures/BreweryDB_Resources_Beers/_all/fetches_all_of_the_beers_at_once.yml +228 -244
- data/spec/fixtures/BreweryDB_Resources_Beers/_find/fetches_only_the_beer_asked_for.yml +10 -10
- data/spec/fixtures/BreweryDB_Resources_Beers/_random/fetches_a_random_beer.yml +53 -0
- data/spec/fixtures/BreweryDB_Resources_Breweries/_all/fetches_all_of_the_breweries_at_once.yml +46 -66
- data/spec/fixtures/BreweryDB_Resources_Breweries/_find/fetches_only_the_brewery_asked_for.yml +10 -10
- data/spec/fixtures/BreweryDB_Resources_Categories/_all/fetches_all_of_the_cagtegories_at_once.yml +13 -12
- data/spec/fixtures/BreweryDB_Resources_Categories/_find/fetches_only_the_category_asked_for.yml +10 -10
- data/spec/fixtures/BreweryDB_Resources_Fermentables/_all/fetches_all_of_the_fermentables_at_once.yml +15 -15
- data/spec/fixtures/BreweryDB_Resources_Fermentables/_find/fetches_only_the_fermentable_asked_for.yml +13 -13
- data/spec/fixtures/BreweryDB_Resources_FluidSize/_all/fetches_all_of_the_fluid_sizes_at_once.yml +16 -14
- data/spec/fixtures/BreweryDB_Resources_FluidSize/_find/fetches_only_the_fluid_size_asked_for.yml +12 -12
- data/spec/fixtures/BreweryDB_Resources_Glassware/_all/fetches_all_of_the_glassware_at_once.yml +10 -10
- data/spec/fixtures/BreweryDB_Resources_Glassware/_find/fetches_only_the_glassware_asked_for.yml +10 -10
- data/spec/fixtures/BreweryDB_Resources_Hops/_all/fetches_all_of_the_hops_at_once.yml +15 -15
- data/spec/fixtures/BreweryDB_Resources_Hops/_find/fetches_only_the_hop_asked_for.yml +13 -13
- data/spec/fixtures/BreweryDB_Resources_Locations/_all/fetches_all_of_the_breweries_at_once.yml +122 -58
- data/spec/fixtures/BreweryDB_Resources_Locations/_find/fetches_only_the_location_asked_for.yml +10 -10
- data/spec/fixtures/BreweryDB_Resources_Menu/_beer_availability/fetches_all_of_the_beer_availabilities_at_once.yml +12 -12
- data/spec/fixtures/BreweryDB_Resources_Search/_all/fetches_all_of_the_search_results_at_once.yml +366 -411
- data/spec/fixtures/BreweryDB_Resources_Search/_upc/for_an_existing_upc_code/returns_a_collection_with_the_matched_beer.yml +11 -11
- data/spec/fixtures/BreweryDB_Resources_Styles/_all/fetches_all_of_the_styles_at_once.yml +63 -24
- data/spec/fixtures/BreweryDB_Resources_Styles/_find/fetches_only_the_style_asked_for.yml +10 -10
- data/spec/fixtures/BreweryDB_Resources_Yeasts/_all/fetches_all_of_the_yeasts_at_once.yml +14 -14
- data/spec/fixtures/BreweryDB_Resources_Yeasts/_find/fetches_only_the_yeast_asked_for.yml +13 -13
- data/spec/spec_helper.rb +2 -0
- metadata +52 -22
data/spec/fixtures/BreweryDB_Resources_Locations/_find/fetches_only_the_location_asked_for.yml
CHANGED
|
@@ -8,30 +8,30 @@ http_interactions:
|
|
|
8
8
|
string: ''
|
|
9
9
|
headers:
|
|
10
10
|
User-Agent:
|
|
11
|
-
- BreweryDB Ruby Gem 0.2.
|
|
11
|
+
- BreweryDB Ruby Gem 0.2.3
|
|
12
12
|
response:
|
|
13
13
|
status:
|
|
14
14
|
code: 200
|
|
15
15
|
message:
|
|
16
16
|
headers:
|
|
17
|
+
content-type:
|
|
18
|
+
- application/json
|
|
17
19
|
date:
|
|
18
|
-
- Mon,
|
|
20
|
+
- Mon, 31 Mar 2014 20:13:25 GMT
|
|
19
21
|
server:
|
|
20
|
-
- Apache/2.2.
|
|
22
|
+
- Apache/2.2.26 (Amazon)
|
|
23
|
+
vary:
|
|
24
|
+
- Accept-Encoding
|
|
21
25
|
x-powered-by:
|
|
22
|
-
- PHP/5.3.
|
|
26
|
+
- PHP/5.3.28
|
|
23
27
|
x-ratelimit-limit:
|
|
24
28
|
- Unlimited
|
|
25
29
|
x-ratelimit-remaining:
|
|
26
30
|
- Unlimited
|
|
27
|
-
vary:
|
|
28
|
-
- Accept-Encoding
|
|
29
31
|
content-length:
|
|
30
32
|
- '864'
|
|
31
33
|
connection:
|
|
32
|
-
-
|
|
33
|
-
content-type:
|
|
34
|
-
- application/json
|
|
34
|
+
- Close
|
|
35
35
|
body:
|
|
36
36
|
encoding: UTF-8
|
|
37
37
|
string: '{"message":"READ ONLY MODE: Request Successful","data":{"id":"wXmTDU","name":"Main
|
|
@@ -48,5 +48,5 @@ http_interactions:
|
|
|
48
48
|
STATES","displayName":"United States","isoThree":"USA","numberCode":840,"createDate":"2012-01-03
|
|
49
49
|
02:41:33"}},"status":"success"}'
|
|
50
50
|
http_version:
|
|
51
|
-
recorded_at: Mon,
|
|
51
|
+
recorded_at: Mon, 31 Mar 2014 20:13:25 GMT
|
|
52
52
|
recorded_with: VCR 2.4.0
|
|
@@ -8,30 +8,30 @@ http_interactions:
|
|
|
8
8
|
string: ''
|
|
9
9
|
headers:
|
|
10
10
|
User-Agent:
|
|
11
|
-
- BreweryDB Ruby Gem 0.2.
|
|
11
|
+
- BreweryDB Ruby Gem 0.2.3
|
|
12
12
|
response:
|
|
13
13
|
status:
|
|
14
14
|
code: 200
|
|
15
15
|
message:
|
|
16
16
|
headers:
|
|
17
|
+
content-type:
|
|
18
|
+
- application/json
|
|
17
19
|
date:
|
|
18
|
-
- Mon,
|
|
20
|
+
- Mon, 31 Mar 2014 20:13:25 GMT
|
|
19
21
|
server:
|
|
20
|
-
- Apache/2.2.
|
|
22
|
+
- Apache/2.2.26 (Amazon)
|
|
23
|
+
vary:
|
|
24
|
+
- Accept-Encoding
|
|
21
25
|
x-powered-by:
|
|
22
|
-
- PHP/5.3.
|
|
26
|
+
- PHP/5.3.28
|
|
23
27
|
x-ratelimit-limit:
|
|
24
|
-
-
|
|
28
|
+
- Unlimited
|
|
25
29
|
x-ratelimit-remaining:
|
|
26
|
-
-
|
|
27
|
-
vary:
|
|
28
|
-
- Accept-Encoding
|
|
30
|
+
- Unlimited
|
|
29
31
|
content-length:
|
|
30
32
|
- '296'
|
|
31
33
|
connection:
|
|
32
|
-
-
|
|
33
|
-
content-type:
|
|
34
|
-
- application/json
|
|
34
|
+
- Close
|
|
35
35
|
body:
|
|
36
36
|
encoding: UTF-8
|
|
37
37
|
string: '{"message":"READ ONLY MODE: Request Successful","data":[{"id":1,"name":"Year
|
|
@@ -44,5 +44,5 @@ http_interactions:
|
|
|
44
44
|
during the fall months."},{"id":8,"name":"Winter","description":"Available
|
|
45
45
|
during the winter months."}],"status":"success"}'
|
|
46
46
|
http_version:
|
|
47
|
-
recorded_at: Mon,
|
|
47
|
+
recorded_at: Mon, 31 Mar 2014 20:13:25 GMT
|
|
48
48
|
recorded_with: VCR 2.4.0
|
data/spec/fixtures/BreweryDB_Resources_Search/_all/fetches_all_of_the_search_results_at_once.yml
CHANGED
|
@@ -8,56 +8,40 @@ http_interactions:
|
|
|
8
8
|
string: ''
|
|
9
9
|
headers:
|
|
10
10
|
User-Agent:
|
|
11
|
-
- BreweryDB Ruby Gem 0.2.
|
|
11
|
+
- BreweryDB Ruby Gem 0.2.3
|
|
12
12
|
response:
|
|
13
13
|
status:
|
|
14
14
|
code: 200
|
|
15
15
|
message:
|
|
16
16
|
headers:
|
|
17
|
+
content-type:
|
|
18
|
+
- application/json
|
|
17
19
|
date:
|
|
18
|
-
- Mon,
|
|
20
|
+
- Mon, 31 Mar 2014 20:13:25 GMT
|
|
19
21
|
server:
|
|
20
|
-
- Apache/2.2.
|
|
22
|
+
- Apache/2.2.26 (Amazon)
|
|
23
|
+
vary:
|
|
24
|
+
- Accept-Encoding
|
|
21
25
|
x-powered-by:
|
|
22
|
-
- PHP/5.3.
|
|
26
|
+
- PHP/5.3.28
|
|
23
27
|
x-ratelimit-limit:
|
|
24
28
|
- Unlimited
|
|
25
29
|
x-ratelimit-remaining:
|
|
26
30
|
- Unlimited
|
|
27
|
-
vary:
|
|
28
|
-
- Accept-Encoding
|
|
29
31
|
content-length:
|
|
30
|
-
- '
|
|
32
|
+
- '10610'
|
|
31
33
|
connection:
|
|
32
|
-
-
|
|
33
|
-
content-type:
|
|
34
|
-
- application/json
|
|
34
|
+
- Close
|
|
35
35
|
body:
|
|
36
36
|
encoding: UTF-8
|
|
37
|
-
string: '{"currentPage":1,"numberOfPages":
|
|
38
|
-
Pale Ale","
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
one or more of these American-variety hop characters is the perceived end,
|
|
46
|
-
but the hop characters may be a result of the skillful use of hops of other
|
|
47
|
-
national origins. The use of water with high mineral content results in a
|
|
48
|
-
crisp, dry beer. This pale gold to deep copper-colored ale has a full, flowery
|
|
49
|
-
hop aroma and may have a strong hop flavor (in addition to the perception
|
|
50
|
-
of hop bitterness). India pale ales possess medium maltiness which contributes
|
|
51
|
-
to a medium body. Fruity-ester flavors and aromas are moderate to very strong.
|
|
52
|
-
Diacetyl can be absent or may be perceived at very low levels. Chill and\/or
|
|
53
|
-
hop haze is allowable at cold temperatures. (English and citrus-like American
|
|
54
|
-
hops are considered enough of a distinction justifying separate American-style
|
|
55
|
-
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
56
|
-
may be used for bitterness or approximating traditional American or English
|
|
57
|
-
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
58
|
-
20:06:45"},"type":"beer"},{"id":"2stTak","name":"I.P.A.","description":"Citrus,
|
|
59
|
-
floral, pine, enough malt to balance","abv":"6.8","styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/2stTak\/upload_ji0DOT-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/2stTak\/upload_ji0DOT-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/2stTak\/upload_ji0DOT-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-06-13
|
|
60
|
-
17:30:25","updateDate":"2013-02-28 10:02:48","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
37
|
+
string: '{"currentPage":1,"numberOfPages":145,"totalResults":7202,"data":[{"id":"xuDNdK","name":"IPA
|
|
38
|
+
(India Pale Ale)","description":"Originally brewed in England in the 18th
|
|
39
|
+
and 19th centuries for export to the thirsty colonials stationed in India.
|
|
40
|
+
Higher in hop and alcohol content (both natural preservatives), this amber,
|
|
41
|
+
fruity ale has a big hop nose and assertively dry, hoppy finish. Unfiltered
|
|
42
|
+
and dry hopped for more hop flavor and aroma. (7.1% abv).","abv":"7.1","glasswareId":5,"styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
43
|
+
02:43:30","updateDate":"2012-03-22 13:05:35","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
44
|
+
02:41:33"},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
61
45
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
62
46
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
63
47
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -76,10 +60,11 @@ http_interactions:
|
|
|
76
60
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
77
61
|
may be used for bitterness or approximating traditional American or English
|
|
78
62
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
79
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
63
|
+
20:06:45"},"type":"beer"},{"id":"hqVqZY","name":"Cascade I.P.A.","description":"Light
|
|
64
|
+
in color, medium body, with a hop bitterness and Cascade hop finish.","abv":"5.3","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/hqVqZY\/upload_7PaSWE-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/hqVqZY\/upload_7PaSWE-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/hqVqZY\/upload_7PaSWE-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
65
|
+
02:42:57","updateDate":"2012-03-22 13:05:01","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
66
|
+
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
67
|
+
year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
83
68
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
84
69
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
85
70
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -98,13 +83,14 @@ http_interactions:
|
|
|
98
83
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
99
84
|
may be used for bitterness or approximating traditional American or English
|
|
100
85
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
101
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
86
|
+
20:06:45"},"type":"beer"},{"id":"JaubXD","name":"Rotator IPA: Shaddock IPA","description":"When
|
|
87
|
+
Captain Shaddock introduced the grapefruit to the West Indies, he probably
|
|
88
|
+
never thought they\u2019d be used in beer. Our brewers did exactly that, adding
|
|
89
|
+
grapefruit peel to our popular X-114 IPA. The result is a refreshing new brew
|
|
90
|
+
that blends the sweet aroma and unmistakable flavor of grapefruit with the
|
|
91
|
+
tropical notes found in citra hops.","abv":"6.2","ibu":"50","glasswareId":5,"availableId":2,"styleId":30,"isOrganic":"N","beerVariationId":"JJVl0I","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/JaubXD\/upload_WSPGlp-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/JaubXD\/upload_WSPGlp-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/JaubXD\/upload_WSPGlp-large.png"},"status":"verified","statusDisplay":"Verified","originalGravity":"1.058","createDate":"2012-09-11
|
|
92
|
+
21:45:55","updateDate":"2012-09-11 21:46:43","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
93
|
+
02:41:33"},"available":{"id":2,"name":"Limited","description":"Limited availability."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
108
94
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
109
95
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
110
96
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -123,15 +109,13 @@ http_interactions:
|
|
|
123
109
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
124
110
|
may be used for bitterness or approximating traditional American or English
|
|
125
111
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
126
|
-
20:06:45"},"
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
brewers behind it, to create on amazing brew.","abv":"7","ibu":"70","glasswareId":5,"availableId":2,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/fsbUQ3\/upload_xCChhq-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/fsbUQ3\/upload_xCChhq-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/fsbUQ3\/upload_xCChhq-large.png"},"status":"verified","statusDisplay":"Verified","originalGravity":"1.065","createDate":"2012-02-18
|
|
134
|
-
16:35:26","updateDate":"2012-09-11 21:34:31","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
112
|
+
20:06:45"},"beerVariation":{"id":"JJVl0I","name":"Rotator IPA: X-114","description":"Meet
|
|
113
|
+
x-114, our secret formula for hophead nirvana. Named for the experimental
|
|
114
|
+
hop that came to be known as citra, this aromatic ipa balances perfect proportions
|
|
115
|
+
of big fruit and citrus flavor, with hints of peppery spice, caramel malt
|
|
116
|
+
sweetness, and a bitter but smooth finish. Its one experiment that bears repeating.
|
|
117
|
+
Often.","abv":"6.2","ibu":"50","glasswareId":5,"availableId":2,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/JJVl0I\/upload_xye7sr-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/JJVl0I\/upload_xye7sr-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/JJVl0I\/upload_xye7sr-large.png"},"status":"verified","statusDisplay":"Verified","originalGravity":"1.058","createDate":"2012-01-03
|
|
118
|
+
02:44:33","updateDate":"2012-03-22 13:05:23","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
135
119
|
02:41:33"},"available":{"id":2,"name":"Limited","description":"Limited availability."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
136
120
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
137
121
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
@@ -151,12 +135,12 @@ http_interactions:
|
|
|
151
135
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
152
136
|
may be used for bitterness or approximating traditional American or English
|
|
153
137
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
154
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
138
|
+
20:06:45"}},"type":"beer"},{"id":"e7LyKD","name":"I.P.A","description":"For
|
|
139
|
+
those hop lovers out there, this is the beer for you. It is a traditional
|
|
140
|
+
American Style I.P.A. featuring a significant amount of Northwest hops balanced
|
|
141
|
+
with a hefty grain bill. If this beer doesn\u2019t make your taste buds scream
|
|
142
|
+
hops then we don\u2019t know what will.","abv":"6","ibu":"65","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/e7LyKD\/upload_Z16nT5-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/e7LyKD\/upload_Z16nT5-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/e7LyKD\/upload_Z16nT5-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
143
|
+
02:43:27","updateDate":"2012-03-22 13:05:20","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
160
144
|
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
161
145
|
year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
162
146
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
@@ -177,16 +161,8 @@ http_interactions:
|
|
|
177
161
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
178
162
|
may be used for bitterness or approximating traditional American or English
|
|
179
163
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
180
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
181
|
-
|
|
182
|
-
and the maltiness of premium English barley - perfectly balanced by alcohol
|
|
183
|
-
at 6% by volume.\r\n\r\n\r\nGold Medal 2007 Great American Beer Festival\r\nEnglish
|
|
184
|
-
Style India Pale Ale Category\r\n\r\nGold Medal 2006 World Beer Cup\r\nEnglish
|
|
185
|
-
Style India Pale Ale Category\r\n\r\nSilver Medal 2005 Great American Beer
|
|
186
|
-
Festival \r\nEnglish Style India Pale Ale Category \r\n\r\nGold Medal 2004
|
|
187
|
-
Great American Beer Festival\r\nEnglish Style India Pale Ale Category\r\n\r\nBronze
|
|
188
|
-
Medal 2003 Great American Beer Festival\r\nEnglish Style India Pale Ale Category","abv":"6","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
189
|
-
02:43:29","updateDate":"2012-03-22 13:05:36","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
164
|
+
20:06:45"},"type":"beer"},{"id":"5g5NCo","name":"I.P.A","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
165
|
+
02:43:27","updateDate":"2012-03-22 13:05:39","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
190
166
|
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
191
167
|
year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
192
168
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
@@ -207,12 +183,28 @@ http_interactions:
|
|
|
207
183
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
208
184
|
may be used for bitterness or approximating traditional American or English
|
|
209
185
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
210
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
186
|
+
20:06:45"},"type":"beer"},{"id":"sdstvK","name":"Imperial I.P.A.","description":"San
|
|
187
|
+
Diego-style IPA, as it has come to be known by many, is super-hoppy, high
|
|
188
|
+
gravity, yet highly quaffable ale. Our Imperial IPA is created in this new
|
|
189
|
+
tradition with intense hop flavors and aromas from a unique blend of Summit
|
|
190
|
+
and Nugget hops. It''s all about the hops!","abv":"9.4","ibu":"101","glasswareId":5,"availableId":1,"styleId":31,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/sdstvK\/upload_DW88PU-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/sdstvK\/upload_DW88PU-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/sdstvK\/upload_DW88PU-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
191
|
+
02:43:27","updateDate":"2014-01-03 13:33:00","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
192
|
+
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
193
|
+
year round as a staple beer."},"style":{"id":31,"categoryId":3,"category":{"id":3,"name":"North
|
|
194
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"Imperial
|
|
195
|
+
or Double India Pale Ale","description":"Imperial or Double India Pale Ales
|
|
196
|
+
have intense hop bitterness, flavor and aroma. Alcohol content is medium-high
|
|
197
|
+
to high and notably evident. They range from deep golden to medium copper
|
|
198
|
+
in color. The style may use any variety of hops. Though the hop character
|
|
199
|
+
is intense it''s balanced with complex alcohol flavors, moderate to high fruity
|
|
200
|
+
esters and medium to high malt character. Hop character should be fresh and
|
|
201
|
+
lively and should not be harsh in quality. The use of large amounts of hops
|
|
202
|
+
may cause a degree of appropriate hop haze. Imperial or Double India Pale
|
|
203
|
+
Ales have medium-high to full body. Diacetyl should not be perceived. The
|
|
204
|
+
intention of this style of beer is to exhibit the fresh and bright character
|
|
205
|
+
of hops. Oxidative character and aged character should not be present.","ibuMin":"65","ibuMax":"100","abvMin":"7.5","abvMax":"10.5","srmMin":"5","srmMax":"13","ogMin":"1.075","fgMin":"1.012","fgMax":"1.02","createDate":"2012-03-21
|
|
206
|
+
20:06:45"},"type":"beer"},{"id":"26F7Qm","name":"IPA Pale Ale","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
207
|
+
02:43:30","updateDate":"2012-03-22 13:04:54","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
216
208
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
217
209
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
218
210
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -405,8 +397,29 @@ http_interactions:
|
|
|
405
397
|
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
|
406
398
|
should be moderate to strong. Diacetyl should be absent or present at very
|
|
407
399
|
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
408
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
409
|
-
|
|
400
|
+
20:06:45"},"type":"beer"},{"id":"jR0Nvx","name":"Double I.P.A.","description":"We
|
|
401
|
+
use generous late-addition hops along with a carefully crafted malt bill to
|
|
402
|
+
create this Double IPA that is nicely balanced. Expect big notes of Citrus,
|
|
403
|
+
Mango, Peach, and Grapefruit; all these flavors and aromas come from the hops.
|
|
404
|
+
This beer is unfiltered, so it will be a little cloudy at first. It should
|
|
405
|
+
clear up with time.","abv":"8.5","ibu":"85","glasswareId":5,"availableId":4,"styleId":31,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2014-01-20
|
|
406
|
+
16:56:04","updateDate":"2014-01-20 16:56:04","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
407
|
+
02:41:33"},"available":{"id":4,"name":"Seasonal","description":"Available
|
|
408
|
+
at the same time of year, every year."},"style":{"id":31,"categoryId":3,"category":{"id":3,"name":"North
|
|
409
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"Imperial
|
|
410
|
+
or Double India Pale Ale","description":"Imperial or Double India Pale Ales
|
|
411
|
+
have intense hop bitterness, flavor and aroma. Alcohol content is medium-high
|
|
412
|
+
to high and notably evident. They range from deep golden to medium copper
|
|
413
|
+
in color. The style may use any variety of hops. Though the hop character
|
|
414
|
+
is intense it''s balanced with complex alcohol flavors, moderate to high fruity
|
|
415
|
+
esters and medium to high malt character. Hop character should be fresh and
|
|
416
|
+
lively and should not be harsh in quality. The use of large amounts of hops
|
|
417
|
+
may cause a degree of appropriate hop haze. Imperial or Double India Pale
|
|
418
|
+
Ales have medium-high to full body. Diacetyl should not be perceived. The
|
|
419
|
+
intention of this style of beer is to exhibit the fresh and bright character
|
|
420
|
+
of hops. Oxidative character and aged character should not be present.","ibuMin":"65","ibuMax":"100","abvMin":"7.5","abvMax":"10.5","srmMin":"5","srmMax":"13","ogMin":"1.075","fgMin":"1.012","fgMax":"1.02","createDate":"2012-03-21
|
|
421
|
+
20:06:45"},"type":"beer"},{"id":"5wnT8a","name":"Imperial I.P.A.","abv":"7.2","styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
422
|
+
02:43:27","updateDate":"2012-03-22 13:04:35","style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
|
410
423
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
411
424
|
Pale Ale","description":"American pale ales range from deep golden to copper
|
|
412
425
|
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
|
@@ -419,8 +432,8 @@ http_interactions:
|
|
|
419
432
|
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
|
420
433
|
should be moderate to strong. Diacetyl should be absent or present at very
|
|
421
434
|
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
422
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
423
|
-
02:
|
|
435
|
+
20:06:45"},"type":"beer"},{"id":"HJTHzW","name":"Prime I.P.A.","styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
436
|
+
02:44:00","updateDate":"2012-03-22 13:04:51","style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
|
424
437
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
425
438
|
Pale Ale","description":"American pale ales range from deep golden to copper
|
|
426
439
|
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
|
@@ -454,14 +467,8 @@ http_interactions:
|
|
|
454
467
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
455
468
|
may be used for bitterness or approximating traditional American or English
|
|
456
469
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
457
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
458
|
-
|
|
459
|
-
colonials stationed in India. Higher in hop and alcohol content (both natural
|
|
460
|
-
preservatives), this amber, fruity ale has a big hop nose and assertively
|
|
461
|
-
dry, hoppy finish. Unfiltered and dry hopped for more hop flavor and aroma.
|
|
462
|
-
(7.1% abv).","abv":"7.1","glasswareId":5,"styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
463
|
-
02:43:30","updateDate":"2012-03-22 13:05:35","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
464
|
-
02:41:33"},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
470
|
+
20:06:45"},"type":"beer"},{"id":"yGrJ4p","name":"Confession I.P.A.","abv":"6","styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/yGrJ4p\/upload_wch5SN-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/yGrJ4p\/upload_wch5SN-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/yGrJ4p\/upload_wch5SN-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-07-22
|
|
471
|
+
23:25:54","updateDate":"2013-07-22 23:26:02","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
465
472
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
466
473
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
467
474
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -480,72 +487,35 @@ http_interactions:
|
|
|
480
487
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
481
488
|
may be used for bitterness or approximating traditional American or English
|
|
482
489
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
483
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
hop character producing medium to medium-high hop bitterness, flavor, and
|
|
513
|
-
aroma. Note that the \"traditional\" style of this beer has its origins with
|
|
514
|
-
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
|
515
|
-
hop varietals. One or more of these hop characters is the perceived end, but
|
|
516
|
-
the perceived hop characters may be a result of the skillful use of hops of
|
|
517
|
-
other national origins. American pale ales have medium body and low to medium
|
|
518
|
-
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
|
519
|
-
should be moderate to strong. Diacetyl should be absent or present at very
|
|
520
|
-
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
521
|
-
20:06:45"},"type":"beer"},{"id":"bM5Diz","name":"Industrial IPA","description":"This
|
|
522
|
-
one''s a butt-kicker! The surely big brother of our regular IPA! Dar copper
|
|
523
|
-
in color, a distinct malty sweetness is followed by an intensely hoppy middle.
|
|
524
|
-
a floral finish imparted by the dry-hop will leave you begging for another.","abv":"7.9","ibu":"80","availableId":1,"styleId":31,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
525
|
-
02:43:29","updateDate":"2012-03-22 13:04:35","available":{"id":1,"name":"Year
|
|
526
|
-
Round","description":"Available year round as a staple beer."},"style":{"id":31,"categoryId":3,"category":{"id":3,"name":"North
|
|
527
|
-
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"Imperial
|
|
528
|
-
or Double India Pale Ale","description":"Imperial or Double India Pale Ales
|
|
529
|
-
have intense hop bitterness, flavor and aroma. Alcohol content is medium-high
|
|
530
|
-
to high and notably evident. They range from deep golden to medium copper
|
|
531
|
-
in color. The style may use any variety of hops. Though the hop character
|
|
532
|
-
is intense it''s balanced with complex alcohol flavors, moderate to high fruity
|
|
533
|
-
esters and medium to high malt character. Hop character should be fresh and
|
|
534
|
-
lively and should not be harsh in quality. The use of large amounts of hops
|
|
535
|
-
may cause a degree of appropriate hop haze. Imperial or Double India Pale
|
|
536
|
-
Ales have medium-high to full body. Diacetyl should not be perceived. The
|
|
537
|
-
intention of this style of beer is to exhibit the fresh and bright character
|
|
538
|
-
of hops. Oxidative character and aged character should not be present.","ibuMin":"65","ibuMax":"100","abvMin":"7.5","abvMax":"10.5","srmMin":"5","srmMax":"13","ogMin":"1.075","fgMin":"1.012","fgMax":"1.02","createDate":"2012-03-21
|
|
539
|
-
20:06:45"},"type":"beer"},{"id":"NxvZb9","name":"IPA","description":"Terminal
|
|
540
|
-
Gravity''s \"India Pale Ale\" is pale copper in color but big in flavor with
|
|
541
|
-
a heady hop character. It is a true beer drinkers beer and brings a smile
|
|
542
|
-
to many a face. We use spring water and snow melt from high in the Eagle
|
|
543
|
-
Cap Wilderness! This is the beer that was named Beer of the Year by the Oregonian.\r\n\r\n\"Terminal
|
|
544
|
-
Gravity India Pale Ale is one of the best beers in the state, and therefore
|
|
545
|
-
the country. It is a rich copper in the glass with a lucious hops aroma betraying
|
|
546
|
-
a vigorous hopping rate. Complex maltiness balances the hoppy bite, as do
|
|
547
|
-
the peachy notes... imparted by the yeast.\" John Foyston, The Oregonian","abv":"6.9","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
548
|
-
02:43:29","updateDate":"2013-01-20 14:36:28","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
490
|
+
20:06:45"},"type":"beer"},{"id":"AVRqgv","name":"Extra I.P.A","description":"A
|
|
491
|
+
strong hoppy ale. Brewed specifically for the hop lover. A blend of hops,
|
|
492
|
+
prized for their aroma, gives this beer it\u2019s great hop bouquet and lasting
|
|
493
|
+
hop flavour.","abv":"6.8","styleId":2,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/AVRqgv\/upload_cGw4qk-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/AVRqgv\/upload_cGw4qk-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/AVRqgv\/upload_cGw4qk-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-08-12
|
|
494
|
+
18:44:50","updateDate":"2013-08-12 23:38:00","style":{"id":2,"categoryId":1,"category":{"id":1,"name":"British
|
|
495
|
+
Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"English-Style India
|
|
496
|
+
Pale Ale","description":"Most traditional interpretations of English-style
|
|
497
|
+
India pale ales are characterized by medium-high hop bitterness with a medium
|
|
498
|
+
to medium-high alcohol content. Hops from a variety of origins may be used
|
|
499
|
+
to contribute to a high hopping rate. Earthy and herbal English-variety hop
|
|
500
|
+
character is the perceived end, but may be a result of the skillful use of
|
|
501
|
+
hops of other national origins. The use of water with high mineral content
|
|
502
|
+
results in a crisp, dry beer, sometimes with subtle and balanced character
|
|
503
|
+
of sulfur compounds. This pale gold to deep copper-colored ale has a medium
|
|
504
|
+
to high, flowery hop aroma and may have a medium to strong hop flavor (in
|
|
505
|
+
addition to the hop bitterness). English-style India pale ales possess medium
|
|
506
|
+
maltiness and body. Fruity-ester flavors and aromas are moderate to very strong.
|
|
507
|
+
Diacetyl can be absent or may be perceived at very low levels. Chill haze
|
|
508
|
+
is allowable at cold temperatures. Hops of other origins may be used for bitterness
|
|
509
|
+
or approximating traditional English character.","ibuMin":"35","ibuMax":"63","abvMin":"5","abvMax":"7","srmMin":"6","srmMax":"14","ogMin":"1.05","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
510
|
+
20:06:45"},"type":"beer"},{"id":"h6gLs0","name":"White I.P.A.","description":"If
|
|
511
|
+
you''re the kind of person who likes to see what happens when two delicious
|
|
512
|
+
things are combined (Cherry 7up + Dr Pepper = match made in heaven?) then
|
|
513
|
+
this is the beer for you. We''ve taken a Weiss beer, added some farm grown
|
|
514
|
+
coriander and combined it with a bunch of delicious hops- including some
|
|
515
|
+
of our own home grown. We couldn''t be happier with the results and hope you
|
|
516
|
+
are too.\r\n\r\nA Weiss Beer with Hops","glasswareId":9,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/h6gLs0\/upload_PdzTUE-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/h6gLs0\/upload_PdzTUE-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/h6gLs0\/upload_PdzTUE-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2014-01-28
|
|
517
|
+
13:15:19","updateDate":"2014-01-29 13:17:43","glass":{"id":9,"name":"Weizen","createDate":"2012-01-03
|
|
518
|
+
02:41:33"},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
549
519
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
550
520
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
551
521
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -564,11 +534,15 @@ http_interactions:
|
|
|
564
534
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
565
535
|
may be used for bitterness or approximating traditional American or English
|
|
566
536
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
567
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
537
|
+
20:06:45"},"type":"beer"},{"id":"SXJH7r","name":"Moylan''s IPA (India Pale
|
|
538
|
+
Ale)","description":"Exciting and provocative, India Pale Ale provides a stimulating
|
|
539
|
+
assault on all senses.Our version of the IPA style possesses a deep golden
|
|
540
|
+
hue that nearly winks at you from the glass. Extremely full-bodied, its rich
|
|
541
|
+
flavor wraps your tongue in a lush blanket of sweet malt with a spicy hop
|
|
542
|
+
finish. Two hop varieties in the Dry Hopping provide an enticing floral bouquet,
|
|
543
|
+
with notes of resin and herbs,creating a delightfully quaffable and refreshing
|
|
544
|
+
ale we\u2019re sure you\u2019ll love!","abv":"6.5","ibu":"70","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/SXJH7r\/upload_dyd9LN-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/SXJH7r\/upload_dyd9LN-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/SXJH7r\/upload_dyd9LN-large.png"},"status":"verified","statusDisplay":"Verified","originalGravity":"1.094","createDate":"2012-04-15
|
|
545
|
+
17:51:43","updateDate":"2012-04-15 17:51:44","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
572
546
|
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
573
547
|
year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
574
548
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
@@ -589,8 +563,16 @@ http_interactions:
|
|
|
589
563
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
590
564
|
may be used for bitterness or approximating traditional American or English
|
|
591
565
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
592
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
593
|
-
|
|
566
|
+
20:06:45"},"type":"beer"},{"id":"gHtsql","name":"Edgar I.P.A.","description":"As
|
|
567
|
+
the story goes, I was redesigning our I.P.A. to be bigger and better but as
|
|
568
|
+
it came together it started to take on a life of its own. After much deliberation
|
|
569
|
+
and several pints of our new creation we decided to name him after the master
|
|
570
|
+
of macabre, Edgar Allen Poe, as a tribute to his aptly named short story \\HOP
|
|
571
|
+
FROG.\"As Edgar fermented and spewed his almost abusive hop aroma throughout
|
|
572
|
+
the pub he was released into the world. We hope Edgar amuses you as much as
|
|
573
|
+
he has us but stay on his good side because much like the story this Hop
|
|
574
|
+
Frog bites back!\"\"\"","abv":"8","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
575
|
+
02:43:09","updateDate":"2012-03-22 13:04:58","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
594
576
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
595
577
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
596
578
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -609,8 +591,16 @@ http_interactions:
|
|
|
609
591
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
610
592
|
may be used for bitterness or approximating traditional American or English
|
|
611
593
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
612
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
613
|
-
|
|
594
|
+
20:06:45"},"type":"beer"},{"id":"oeyVFd","name":"India Pale Ale (IPA)","description":"Originally
|
|
595
|
+
brewed in England for the British troops stationed in India during the 18th
|
|
596
|
+
century, increased amounts of hops and higher alcohol content (both natural
|
|
597
|
+
preservatives) were needed for the beer to survive the long sea voyage. Medium
|
|
598
|
+
body with high hop bitterness, flavour and aroma keep this beer true to its
|
|
599
|
+
original style.","abv":"6.8","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-30
|
|
600
|
+
01:17:11","updateDate":"2012-03-30 01:17:11","type":"beer"},{"id":"8SJhJS","name":"Echolocation
|
|
601
|
+
I.P.A.","abv":"5","glasswareId":5,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/8SJhJS\/upload_8fpcTL-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/8SJhJS\/upload_8fpcTL-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/8SJhJS\/upload_8fpcTL-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-03-07
|
|
602
|
+
13:23:14","updateDate":"2012-03-22 13:05:51","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
603
|
+
02:41:33"},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
614
604
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
615
605
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
616
606
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -629,36 +619,12 @@ http_interactions:
|
|
|
629
619
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
630
620
|
may be used for bitterness or approximating traditional American or English
|
|
631
621
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
632
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
aroma. Note that the \"traditional\" style of this beer has its origins with
|
|
639
|
-
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
|
640
|
-
hop varietals. One or more of these hop characters is the perceived end, but
|
|
641
|
-
the perceived hop characters may be a result of the skillful use of hops of
|
|
642
|
-
other national origins. American pale ales have medium body and low to medium
|
|
643
|
-
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
|
644
|
-
should be moderate to strong. Diacetyl should be absent or present at very
|
|
645
|
-
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
646
|
-
20:06:45"},"type":"beer"},{"id":"YRydPA","name":"India Pale Ale","styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
647
|
-
02:43:28","updateDate":"2012-03-22 13:04:39","style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
|
648
|
-
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
649
|
-
Pale Ale","description":"American pale ales range from deep golden to copper
|
|
650
|
-
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
|
651
|
-
hop character producing medium to medium-high hop bitterness, flavor, and
|
|
652
|
-
aroma. Note that the \"traditional\" style of this beer has its origins with
|
|
653
|
-
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
|
654
|
-
hop varietals. One or more of these hop characters is the perceived end, but
|
|
655
|
-
the perceived hop characters may be a result of the skillful use of hops of
|
|
656
|
-
other national origins. American pale ales have medium body and low to medium
|
|
657
|
-
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
|
658
|
-
should be moderate to strong. Diacetyl should be absent or present at very
|
|
659
|
-
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
660
|
-
20:06:45"},"type":"beer"},{"id":"11gqIZ","name":"Evolutionary IPA","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
661
|
-
02:43:11","updateDate":"2012-03-22 13:04:40","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
622
|
+
20:06:45"},"type":"beer"},{"id":"A41LOw","name":"Aloha I.P.A.","description":"Brewed
|
|
623
|
+
within the parameters of a classic India Pale Ale or I.P.A., our version boasts
|
|
624
|
+
a burst of hops from start to finish, and is balanced with a sweet maltiness.","abv":"6.2","ibu":"50","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-12-02
|
|
625
|
+
11:09:08","updateDate":"2012-12-02 11:09:09","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
626
|
+
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
627
|
+
year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
662
628
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
663
629
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
664
630
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -677,22 +643,19 @@ http_interactions:
|
|
|
677
643
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
678
644
|
may be used for bitterness or approximating traditional American or English
|
|
679
645
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
680
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
694
|
-
20:06:45"},"type":"beer"},{"id":"NJbyiS","name":"IPA","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
695
|
-
02:43:29","updateDate":"2012-03-22 13:04:43","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
646
|
+
20:06:45"},"type":"beer"},{"id":"cJio9R","name":"Brewers Association","description":"The
|
|
647
|
+
Brewers Association is an organization of brewers, for brewers and by brewers.
|
|
648
|
+
More than 1,300 US brewery members and 27,000 members of the American Homebrewers
|
|
649
|
+
Association are joined by members of the allied trade, beer wholesalers, individuals,
|
|
650
|
+
other associate members and the Brewers Association staff to make up the Brewers
|
|
651
|
+
Association.","established":"2005","website":"http:\/\/www.brewersassociation.org\/","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/guild\/cJio9R\/upload_ps6gVw-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/guild\/cJio9R\/upload_ps6gVw-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/guild\/cJio9R\/upload_ps6gVw-large.png"},"status":"update_pending","statusDisplay":"Update
|
|
652
|
+
Pending","createDate":"2012-01-03 02:41:33","updateDate":"2014-03-31 14:54:47","type":"guild"},{"id":"9fhoAG","name":"Moat
|
|
653
|
+
I.P.A.","description":"Moat I.P.A. \u2013 7% a.b.v. -our interpretation of
|
|
654
|
+
the classic British style. It is higher in alchohol than our Pale Ale with
|
|
655
|
+
a medium hop nose and a firm hop finish. Seasonal","abv":"7","glasswareId":5,"availableId":4,"styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
656
|
+
02:43:43","updateDate":"2012-03-22 13:05:16","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
657
|
+
02:41:33"},"available":{"id":4,"name":"Seasonal","description":"Available
|
|
658
|
+
at the same time of year, every year."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
696
659
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
697
660
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
698
661
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -711,11 +674,16 @@ http_interactions:
|
|
|
711
674
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
712
675
|
may be used for bitterness or approximating traditional American or English
|
|
713
676
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
714
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
677
|
+
20:06:45"},"type":"beer"},{"id":"cAPBg8","name":"India Pale Ale (IPA)","description":"This
|
|
678
|
+
classic American IPA has a golden copper color, generous hop flavors and aromas
|
|
679
|
+
and the maltiness of premium English barley - perfectly balanced by alcohol
|
|
680
|
+
at 6% by volume.\r\n\r\n\r\nGold Medal 2007 Great American Beer Festival\r\nEnglish
|
|
681
|
+
Style India Pale Ale Category\r\n\r\nGold Medal 2006 World Beer Cup\r\nEnglish
|
|
682
|
+
Style India Pale Ale Category\r\n\r\nSilver Medal 2005 Great American Beer
|
|
683
|
+
Festival \r\nEnglish Style India Pale Ale Category \r\n\r\nGold Medal 2004
|
|
684
|
+
Great American Beer Festival\r\nEnglish Style India Pale Ale Category\r\n\r\nBronze
|
|
685
|
+
Medal 2003 Great American Beer Festival\r\nEnglish Style India Pale Ale Category","abv":"6","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
686
|
+
02:43:29","updateDate":"2012-03-22 13:05:36","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
719
687
|
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
720
688
|
year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
721
689
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
@@ -736,30 +704,12 @@ http_interactions:
|
|
|
736
704
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
737
705
|
may be used for bitterness or approximating traditional American or English
|
|
738
706
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
739
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
740
|
-
|
|
741
|
-
American
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
aroma. Note that the \"traditional\" style of this beer has its origins with
|
|
746
|
-
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
|
747
|
-
hop varietals. One or more of these hop characters is the perceived end, but
|
|
748
|
-
the perceived hop characters may be a result of the skillful use of hops of
|
|
749
|
-
other national origins. American pale ales have medium body and low to medium
|
|
750
|
-
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
|
751
|
-
should be moderate to strong. Diacetyl should be absent or present at very
|
|
752
|
-
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
753
|
-
20:06:45"},"type":"beer"},{"id":"iLlMCb","name":"IPA","description":"This
|
|
754
|
-
is our unique version of an ancient style. A style as old as the ocean trade
|
|
755
|
-
routes of the last centuries Great Ships. Not as old as the equator they had
|
|
756
|
-
to cross twice enroute, nor as old as the 10,000 or so miles of Di-Hydrogen
|
|
757
|
-
Oxide and Sodium upon which they sailed, but older than the Circulithium-4
|
|
758
|
-
Lentloid that binds the Lupulin Quartnate onto your taste buds. Weird. Think
|
|
759
|
-
about it. Now stop. OK, go again, now stop. Think again, and stop. But we
|
|
760
|
-
digress. Made with 43 different hops and 65 various malts, this redolent ale
|
|
761
|
-
will likely float your boat, whatever planet you''re on.","abv":"5.7","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/iLlMCb\/upload_Jlj2Pz-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/iLlMCb\/upload_Jlj2Pz-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/iLlMCb\/upload_Jlj2Pz-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
762
|
-
02:43:29","updateDate":"2012-09-06 17:37:39","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
707
|
+
20:06:45"},"type":"beer"},{"id":"Wyq080","name":"India Pale Ale (IPA)","description":"IPA
|
|
708
|
+
was originally brewed to survive the long trip by sea from England to India. Our
|
|
709
|
+
IPA is an American version of this classic strong ale. With 6 hop additions,
|
|
710
|
+
including first wort hopping and a massive blast of dry hops, this beer has
|
|
711
|
+
become an Asheville favorite","abv":"7.5","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"Y","status":"verified","statusDisplay":"Verified","createDate":"2012-01-08
|
|
712
|
+
17:41:03","updateDate":"2013-01-20 14:33:49","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
763
713
|
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
764
714
|
year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
765
715
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
@@ -780,17 +730,16 @@ http_interactions:
|
|
|
780
730
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
781
731
|
may be used for bitterness or approximating traditional American or English
|
|
782
732
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
783
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
02:44:24","updateDate":"2012-03-22 13:04:58","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
733
|
+
20:06:45"},"type":"beer"},{"id":"fsbUQ3","name":"Rotator IPA: Spiced IPA","description":"In
|
|
734
|
+
the spirit of collaboration, we teamed up with san diego''s quality ale and
|
|
735
|
+
fermentation fraternity, or quaff for short, to brew spiced IPA, a beer that
|
|
736
|
+
offers an intriguing twist on the west coast''s favorite style. Blending familiar
|
|
737
|
+
flavors with unexpected ingredients, this hop-forward yet balanced IPA is
|
|
738
|
+
brewed with malty assam black tea, ginger, cinnamon, clove, star anise, black
|
|
739
|
+
pepper, and cardamom. The beer and the spices come together, much like the
|
|
740
|
+
brewers behind it, to create on amazing brew.","abv":"7","ibu":"70","glasswareId":5,"availableId":2,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/fsbUQ3\/upload_xCChhq-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/fsbUQ3\/upload_xCChhq-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/fsbUQ3\/upload_xCChhq-large.png"},"status":"verified","statusDisplay":"Verified","originalGravity":"1.065","createDate":"2012-02-18
|
|
741
|
+
16:35:26","updateDate":"2012-09-11 21:34:31","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
742
|
+
02:41:33"},"available":{"id":2,"name":"Limited","description":"Limited availability."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
794
743
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
795
744
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
796
745
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -809,12 +758,9 @@ http_interactions:
|
|
|
809
758
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
810
759
|
may be used for bitterness or approximating traditional American or English
|
|
811
760
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
812
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
02:43:28","updateDate":"2012-03-22 13:05:05","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
816
|
-
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
817
|
-
year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
761
|
+
20:06:45"},"type":"beer"},{"id":"2stTak","name":"I.P.A.","description":"Citrus,
|
|
762
|
+
floral, pine, enough malt to balance","abv":"6.8","styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/2stTak\/upload_ji0DOT-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/2stTak\/upload_ji0DOT-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/2stTak\/upload_ji0DOT-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-06-13
|
|
763
|
+
17:30:25","updateDate":"2013-02-28 10:02:48","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
818
764
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
819
765
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
820
766
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -833,19 +779,10 @@ http_interactions:
|
|
|
833
779
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
834
780
|
may be used for bitterness or approximating traditional American or English
|
|
835
781
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
836
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
bitter bite to the flavor, but this beer is surprisingly well balanced with
|
|
841
|
-
a full body and smooth malty flavor to back up the hops. It finishes smooth
|
|
842
|
-
and crisp with a lingering hop flavor reminiscent of fresh ruby red grapefruit.","abv":"6.9","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/qQxLJq\/upload_Myi2xG-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/qQxLJq\/upload_Myi2xG-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/qQxLJq\/upload_Myi2xG-large.png"},"status":"verified","statusDisplay":"Verified","foodPairings":"Goes
|
|
843
|
-
well with any spicy food, historically Indian food as well as Thai, Cajun,
|
|
844
|
-
or Mexican. Try our IPA with Buffalo wings, blackened chicken or pepperoni
|
|
845
|
-
pizza. Beef dishes or fried seafood can stand up to the hops as well.","servingTemperature":"cellar","servingTemperatureDisplay":"Cellar
|
|
846
|
-
- (12-14C\/54-57F)","createDate":"2012-01-03 02:43:35","updateDate":"2012-09-06
|
|
847
|
-
17:35:10","glass":{"id":5,"name":"Pint","createDate":"2012-01-03 02:41:33"},"available":{"id":1,"name":"Year
|
|
848
|
-
Round","description":"Available year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
782
|
+
20:06:45"},"type":"beer"},{"id":"4yQYjl","name":"508 I.P.A.","description":"Intense
|
|
783
|
+
hop aroma with a citrusy, floral, piney, high hop bitterness, the malt backbone
|
|
784
|
+
will support the strong hop character. Finish fairly dry and crisp","abv":"6.3","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-21
|
|
785
|
+
12:08:53","updateDate":"2012-04-21 12:08:53","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
849
786
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
850
787
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
851
788
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -864,12 +801,12 @@ http_interactions:
|
|
|
864
801
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
865
802
|
may be used for bitterness or approximating traditional American or English
|
|
866
803
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
867
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
804
|
+
20:06:45"},"type":"beer"},{"id":"3WxXFm","name":"India Pale Ale IPA","description":"Our
|
|
805
|
+
I.P.A. is a result of our profound love of hops and big, bold brews. A combination
|
|
806
|
+
of Cluster, Cascade, Citra and Simcoe hops create a piney, citrus aroma and
|
|
807
|
+
flavor.","abv":"6.4","ibu":"66.5","srmId":5,"availableId":1,"styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2013-05-02
|
|
808
|
+
18:24:57","updateDate":"2013-05-02 22:41:23","srm":{"id":5,"name":"5","hex":"FBB123"},"available":{"id":1,"name":"Year
|
|
809
|
+
Round","description":"Available year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
873
810
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
874
811
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
875
812
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -888,12 +825,8 @@ http_interactions:
|
|
|
888
825
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
889
826
|
may be used for bitterness or approximating traditional American or English
|
|
890
827
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
891
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
892
|
-
|
|
893
|
-
Victoria\u00c3\u00a2\u00e2?\u00ac\u00e2?\u00a2s reign as a strong, flavorful
|
|
894
|
-
ale, which was able to survive the ocean voyage from England to India during
|
|
895
|
-
the British occupation.","abv":"6.2","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
896
|
-
02:44:27","updateDate":"2012-03-22 13:05:06","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
828
|
+
20:06:45"},"type":"beer"},{"id":"WqVEqj","name":"IPA","abv":"5.5","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
829
|
+
02:43:30","updateDate":"2012-03-22 13:04:31","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
897
830
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
898
831
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
899
832
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -912,33 +845,18 @@ http_interactions:
|
|
|
912
845
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
913
846
|
may be used for bitterness or approximating traditional American or English
|
|
914
847
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
915
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
to high and notably evident. They range from deep golden to medium copper
|
|
928
|
-
in color. The style may use any variety of hops. Though the hop character
|
|
929
|
-
is intense it''s balanced with complex alcohol flavors, moderate to high fruity
|
|
930
|
-
esters and medium to high malt character. Hop character should be fresh and
|
|
931
|
-
lively and should not be harsh in quality. The use of large amounts of hops
|
|
932
|
-
may cause a degree of appropriate hop haze. Imperial or Double India Pale
|
|
933
|
-
Ales have medium-high to full body. Diacetyl should not be perceived. The
|
|
934
|
-
intention of this style of beer is to exhibit the fresh and bright character
|
|
935
|
-
of hops. Oxidative character and aged character should not be present.","ibuMin":"65","ibuMax":"100","abvMin":"7.5","abvMax":"10.5","srmMin":"5","srmMax":"13","ogMin":"1.075","fgMin":"1.012","fgMax":"1.02","createDate":"2012-03-21
|
|
936
|
-
20:06:45"},"type":"beer"},{"id":"KKUZ16","name":"Tumbleweed IPA","description":"A
|
|
937
|
-
GOLD MEDAL WINNER at the Great American Beer Festival, beating out 98 other
|
|
938
|
-
IPA''s and chosen as the best IPA in the country! It''s amber color and incredible
|
|
939
|
-
hoppy aroma will keep you coming back for more. R-U-HOPPY?\r\n\r\nAlso available
|
|
940
|
-
in cans!","abv":"6.6","ibu":"90","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/KKUZ16\/upload_ZTDQal-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/KKUZ16\/upload_ZTDQal-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/KKUZ16\/upload_ZTDQal-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
941
|
-
02:44:25","updateDate":"2012-03-22 13:05:06","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
848
|
+
20:06:45"},"type":"beer"},{"id":"M1SZhm","name":"Titan IPA","description":"Traditionally
|
|
849
|
+
India Pale Ales, the hoppiest of all pales, were brewed with more alcohol
|
|
850
|
+
and large quantities of hops in order to survive the lengthy ocean journey
|
|
851
|
+
from the U.K. to India. Unlike our brewing forefathers, Great Divide enjoys
|
|
852
|
+
the modern benefits of refrigeration and we don\u2019t have any plans to ship
|
|
853
|
+
Titan IPA to India. Instead, we brew Titan IPA for hop disciples \u2013 independent
|
|
854
|
+
beer drinkers seeking out robust, flavorful beers characterized by their abundance
|
|
855
|
+
of hops flavor, aroma and bitterness. As a big, aggressively hopped India
|
|
856
|
+
Pale Ale, Titan IPA fills this bill \u2013 beginning with piney hop aromas
|
|
857
|
+
and citrus hop flavors, and finishing with a rich, malty sweetness that is
|
|
858
|
+
carefully balanced with crisp hop bitterness.","abv":"7.1","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/M1SZhm\/upload_ml8Ufq-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/M1SZhm\/upload_ml8Ufq-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/M1SZhm\/upload_ml8Ufq-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
859
|
+
02:44:23","updateDate":"2012-08-25 01:38:48","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
942
860
|
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
943
861
|
year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
944
862
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
@@ -959,19 +877,44 @@ http_interactions:
|
|
|
959
877
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
960
878
|
may be used for bitterness or approximating traditional American or English
|
|
961
879
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
962
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
880
|
+
20:06:45"},"type":"beer"},{"id":"Lmfcmq","name":"India Pale Ale","styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
881
|
+
02:43:28","updateDate":"2012-03-22 13:04:33","style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
|
882
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
883
|
+
Pale Ale","description":"American pale ales range from deep golden to copper
|
|
884
|
+
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
|
885
|
+
hop character producing medium to medium-high hop bitterness, flavor, and
|
|
886
|
+
aroma. Note that the \"traditional\" style of this beer has its origins with
|
|
887
|
+
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
|
888
|
+
hop varietals. One or more of these hop characters is the perceived end, but
|
|
889
|
+
the perceived hop characters may be a result of the skillful use of hops of
|
|
890
|
+
other national origins. American pale ales have medium body and low to medium
|
|
891
|
+
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
|
892
|
+
should be moderate to strong. Diacetyl should be absent or present at very
|
|
893
|
+
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
894
|
+
20:06:45"},"type":"beer"},{"id":"4JeSmy","name":"India Pale Ale","abv":"5.8","styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
895
|
+
02:43:28","updateDate":"2012-03-22 13:04:34","style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
|
896
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
897
|
+
Pale Ale","description":"American pale ales range from deep golden to copper
|
|
898
|
+
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
|
899
|
+
hop character producing medium to medium-high hop bitterness, flavor, and
|
|
900
|
+
aroma. Note that the \"traditional\" style of this beer has its origins with
|
|
901
|
+
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
|
902
|
+
hop varietals. One or more of these hop characters is the perceived end, but
|
|
903
|
+
the perceived hop characters may be a result of the skillful use of hops of
|
|
904
|
+
other national origins. American pale ales have medium body and low to medium
|
|
905
|
+
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
|
906
|
+
should be moderate to strong. Diacetyl should be absent or present at very
|
|
907
|
+
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
908
|
+
20:06:45"},"type":"beer"},{"id":"7cnuJq","name":"Ruination IPA","description":"So
|
|
909
|
+
called because of the \"ruinous\" effect on your palate! This massive hop
|
|
910
|
+
monster has a wonderfully delicious and intensely bitter flavor on a refreshing
|
|
911
|
+
malt base. One taste and you can easily see why we call this brew \"a liquid
|
|
912
|
+
poem to the glory of the hop!\" Those who seek, crave and rejoice in beers
|
|
913
|
+
with big, bold, bitter character will find true nirvana in Stone Ruination
|
|
914
|
+
IPA!","abv":"7.7","ibu":"100","glasswareId":6,"availableId":1,"styleId":31,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/7cnuJq\/upload_aC4vUP-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/7cnuJq\/upload_aC4vUP-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/7cnuJq\/upload_aC4vUP-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
915
|
+
02:44:07","updateDate":"2012-09-20 12:58:55","glass":{"id":6,"name":"Snifter","createDate":"2012-01-03
|
|
916
|
+
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
917
|
+
year round as a staple beer."},"style":{"id":31,"categoryId":3,"category":{"id":3,"name":"North
|
|
975
918
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"Imperial
|
|
976
919
|
or Double India Pale Ale","description":"Imperial or Double India Pale Ales
|
|
977
920
|
have intense hop bitterness, flavor and aroma. Alcohol content is medium-high
|
|
@@ -984,13 +927,20 @@ http_interactions:
|
|
|
984
927
|
Ales have medium-high to full body. Diacetyl should not be perceived. The
|
|
985
928
|
intention of this style of beer is to exhibit the fresh and bright character
|
|
986
929
|
of hops. Oxidative character and aged character should not be present.","ibuMin":"65","ibuMax":"100","abvMin":"7.5","abvMax":"10.5","srmMin":"5","srmMax":"13","ogMin":"1.075","fgMin":"1.012","fgMax":"1.02","createDate":"2012-03-21
|
|
987
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
930
|
+
20:06:45"},"type":"beer"},{"id":"Ff8SbR","name":"India Pale Ale","description":"Our
|
|
931
|
+
IPA is the essence of \"beer in balance\". Dry-hopped with Columbus hops in
|
|
932
|
+
our open fermenters, our IPA boasts a bright floral aroma and flavor reminiscent
|
|
933
|
+
of pine and lemon peel. The pronounced hop bitterness is balanced by a medium-bodied
|
|
934
|
+
caramel and biscuity malt character with a nutty finish.\r\n\r\nTrue to the
|
|
935
|
+
original English version of this style, our India Pale Ale showcases many
|
|
936
|
+
subtle earthy bitter notes, rather than the resinous citrus-rind bite often
|
|
937
|
+
featured in many American-style IPAs. This unique, sessionable brew would
|
|
938
|
+
have surely pleased British troops stationed in faraway lands.\r\nRecommended
|
|
939
|
+
Foods: Indian Cuisine, Cajun, Creole, Aged Bleu Cheese, Grilled Seafood or
|
|
940
|
+
Shellfish","abv":"5.9","ibu":"41","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/Ff8SbR\/upload_DjZeGZ-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/Ff8SbR\/upload_DjZeGZ-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/Ff8SbR\/upload_DjZeGZ-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
941
|
+
02:43:28","updateDate":"2012-03-22 13:04:40","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
942
|
+
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
943
|
+
year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
994
944
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
995
945
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
996
946
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -1009,14 +959,8 @@ http_interactions:
|
|
|
1009
959
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
1010
960
|
may be used for bitterness or approximating traditional American or English
|
|
1011
961
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
1012
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
1013
|
-
|
|
1014
|
-
by a blossom of flavors delivered by our handpicked aromatic hops. Flavor
|
|
1015
|
-
carries through the end with a full fisted kick of alcohol content that rocks
|
|
1016
|
-
the Richter scale at 6.5%. A nose of citrus with a floral essence of spice
|
|
1017
|
-
tickles the tongue in this ode to hops. Discover an IPA that encourages how
|
|
1018
|
-
to enjoy what beer is all about.","abv":"6.5","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
1019
|
-
02:44:21","updateDate":"2012-03-22 13:05:07","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
962
|
+
20:06:45"},"type":"beer"},{"id":"4ihK01","name":"Trafalgar IPA","abv":"6","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
963
|
+
02:44:24","updateDate":"2012-03-22 13:04:44","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
1020
964
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
1021
965
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
1022
966
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -1035,62 +979,22 @@ http_interactions:
|
|
|
1035
979
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
1036
980
|
may be used for bitterness or approximating traditional American or English
|
|
1037
981
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
1038
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
1039
|
-
|
|
1040
|
-
IPA is no exception. English pale barley malt is predominant in this beer
|
|
1041
|
-
with just a small amount of crystal malt. It is well bittered with Cluster
|
|
1042
|
-
and Cascade hops and finished with a mix of local hop and larger amounts of
|
|
1043
|
-
Fuggle hop.\"\"\"","abv":"6.1","styleId":2,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
1044
|
-
02:42:44","updateDate":"2012-03-22 13:05:07","style":{"id":2,"categoryId":1,"category":{"id":1,"name":"British
|
|
1045
|
-
Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"English-Style India
|
|
1046
|
-
Pale Ale","description":"Most traditional interpretations of English-style
|
|
1047
|
-
India pale ales are characterized by medium-high hop bitterness with a medium
|
|
1048
|
-
to medium-high alcohol content. Hops from a variety of origins may be used
|
|
1049
|
-
to contribute to a high hopping rate. Earthy and herbal English-variety hop
|
|
1050
|
-
character is the perceived end, but may be a result of the skillful use of
|
|
1051
|
-
hops of other national origins. The use of water with high mineral content
|
|
1052
|
-
results in a crisp, dry beer, sometimes with subtle and balanced character
|
|
1053
|
-
of sulfur compounds. This pale gold to deep copper-colored ale has a medium
|
|
1054
|
-
to high, flowery hop aroma and may have a medium to strong hop flavor (in
|
|
1055
|
-
addition to the hop bitterness). English-style India pale ales possess medium
|
|
1056
|
-
maltiness and body. Fruity-ester flavors and aromas are moderate to very strong.
|
|
1057
|
-
Diacetyl can be absent or may be perceived at very low levels. Chill haze
|
|
1058
|
-
is allowable at cold temperatures. Hops of other origins may be used for bitterness
|
|
1059
|
-
or approximating traditional English character.","ibuMin":"35","ibuMax":"63","abvMin":"5","abvMax":"7","srmMin":"6","srmMax":"14","ogMin":"1.05","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
1060
|
-
20:06:45"},"type":"beer"},{"id":"22ttqQ","name":"Sculpin IPA","description":"The
|
|
1061
|
-
Sculpin is a testament to our humble beginnings as Home Brew Mart. It showcases
|
|
1062
|
-
bright flavors and aromas of apricot, peach, mango & lemon. The lighter body
|
|
1063
|
-
also brings out the crispness of the hops.\r\n\r\nThis delicious Ballast Point
|
|
1064
|
-
Ale won a gold medal at the World Beer Cup 2010 in the International Pale
|
|
1065
|
-
Ale category. The Sculpin fish has poisonous spikes on it\u2019s fins that
|
|
1066
|
-
can give a strong sting.\r\n\r\nIronically, the meat from a Sculpin is considered
|
|
1067
|
-
some of the tastiest. Something that has a sting but tastes great, sounds
|
|
1068
|
-
like a Ballast Point India Pale Ale.","abv":"7","ibu":"70","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/22ttqQ\/upload_3qCBKJ-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/22ttqQ\/upload_3qCBKJ-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/22ttqQ\/upload_3qCBKJ-large.png"},"status":"verified","statusDisplay":"Verified","servingTemperature":"cool","servingTemperatureDisplay":"Cool
|
|
1069
|
-
- (8-12C\/45-54F)","createDate":"2012-01-03 02:44:11","updateDate":"2013-03-21
|
|
1070
|
-
11:25:04","glass":{"id":5,"name":"Pint","createDate":"2012-01-03 02:41:33"},"available":{"id":1,"name":"Year
|
|
1071
|
-
Round","description":"Available year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
982
|
+
20:06:45"},"type":"beer"},{"id":"JM8wIt","name":"India Pale Ale","styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
983
|
+
02:43:28","updateDate":"2012-03-22 13:04:44","style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
|
1072
984
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
hops are considered enough of a distinction justifying separate American-style
|
|
1087
|
-
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
1088
|
-
may be used for bitterness or approximating traditional American or English
|
|
1089
|
-
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
1090
|
-
20:06:45"},"type":"beer"},{"id":"CisTjj","name":"Fairweather IPA","description":"A
|
|
1091
|
-
hop lover and beer connoisseur''s favorite, this ale is surprisingly drinkable
|
|
1092
|
-
and fully delights with its hoppy aromatics. Stick your nose in this one.","abv":"6.1","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
1093
|
-
02:43:11","updateDate":"2012-03-22 13:05:07","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
985
|
+
Pale Ale","description":"American pale ales range from deep golden to copper
|
|
986
|
+
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
|
987
|
+
hop character producing medium to medium-high hop bitterness, flavor, and
|
|
988
|
+
aroma. Note that the \"traditional\" style of this beer has its origins with
|
|
989
|
+
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
|
990
|
+
hop varietals. One or more of these hop characters is the perceived end, but
|
|
991
|
+
the perceived hop characters may be a result of the skillful use of hops of
|
|
992
|
+
other national origins. American pale ales have medium body and low to medium
|
|
993
|
+
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
|
994
|
+
should be moderate to strong. Diacetyl should be absent or present at very
|
|
995
|
+
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
996
|
+
20:06:45"},"type":"beer"},{"id":"cqA8ox","name":"Imperial IPA","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
997
|
+
02:43:27","updateDate":"2012-03-22 13:04:41","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
1094
998
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
1095
999
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
1096
1000
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -1109,14 +1013,22 @@ http_interactions:
|
|
|
1109
1013
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
1110
1014
|
may be used for bitterness or approximating traditional American or English
|
|
1111
1015
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
1112
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1016
|
+
20:06:45"},"type":"beer"},{"id":"FdSqoG","name":"Lucknow India Pale Ale","styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
1017
|
+
02:43:38","updateDate":"2012-03-22 13:04:47","style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
|
1018
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
1019
|
+
Pale Ale","description":"American pale ales range from deep golden to copper
|
|
1020
|
+
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
|
1021
|
+
hop character producing medium to medium-high hop bitterness, flavor, and
|
|
1022
|
+
aroma. Note that the \"traditional\" style of this beer has its origins with
|
|
1023
|
+
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
|
1024
|
+
hop varietals. One or more of these hop characters is the perceived end, but
|
|
1025
|
+
the perceived hop characters may be a result of the skillful use of hops of
|
|
1026
|
+
other national origins. American pale ales have medium body and low to medium
|
|
1027
|
+
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
|
1028
|
+
should be moderate to strong. Diacetyl should be absent or present at very
|
|
1029
|
+
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
1030
|
+
20:06:45"},"type":"beer"},{"id":"WicydY","name":"Underground IPA","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
1031
|
+
02:44:26","updateDate":"2012-03-22 13:04:48","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
1120
1032
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
1121
1033
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
1122
1034
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -1135,11 +1047,45 @@ http_interactions:
|
|
|
1135
1047
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
1136
1048
|
may be used for bitterness or approximating traditional American or English
|
|
1137
1049
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
1138
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1050
|
+
20:06:45"},"type":"beer"},{"id":"VOnxph","name":"India Pale Ale","description":"This
|
|
1051
|
+
style was originally developed to be hard and bitter enough to withstand the
|
|
1052
|
+
travel and storage required to reach the torrid climate in India. When the
|
|
1053
|
+
soldiers returned home they found themselves so accustomed to its bold character,
|
|
1054
|
+
they requested it as a regular Pub offering. Our IPA is brewed with Canadian
|
|
1055
|
+
2-row Pale Malt, Crisp Specialty Malt and triple hopped with Cascades and
|
|
1056
|
+
Columbus Hops.","glasswareId":5,"availableId":1,"styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
1057
|
+
02:43:28","updateDate":"2012-03-22 13:04:48","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
1058
|
+
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
1059
|
+
year round as a staple beer."},"style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
|
1060
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
1061
|
+
Pale Ale","description":"American pale ales range from deep golden to copper
|
|
1062
|
+
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
|
1063
|
+
hop character producing medium to medium-high hop bitterness, flavor, and
|
|
1064
|
+
aroma. Note that the \"traditional\" style of this beer has its origins with
|
|
1065
|
+
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
|
1066
|
+
hop varietals. One or more of these hop characters is the perceived end, but
|
|
1067
|
+
the perceived hop characters may be a result of the skillful use of hops of
|
|
1068
|
+
other national origins. American pale ales have medium body and low to medium
|
|
1069
|
+
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
|
1070
|
+
should be moderate to strong. Diacetyl should be absent or present at very
|
|
1071
|
+
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
1072
|
+
20:06:45"},"type":"beer"},{"id":"311H1a","name":"Smooth India Pale Ale","styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
1073
|
+
02:44:14","updateDate":"2012-03-22 13:04:45","style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
|
1074
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
1075
|
+
Pale Ale","description":"American pale ales range from deep golden to copper
|
|
1076
|
+
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
|
1077
|
+
hop character producing medium to medium-high hop bitterness, flavor, and
|
|
1078
|
+
aroma. Note that the \"traditional\" style of this beer has its origins with
|
|
1079
|
+
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
|
1080
|
+
hop varietals. One or more of these hop characters is the perceived end, but
|
|
1081
|
+
the perceived hop characters may be a result of the skillful use of hops of
|
|
1082
|
+
other national origins. American pale ales have medium body and low to medium
|
|
1083
|
+
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
|
1084
|
+
should be moderate to strong. Diacetyl should be absent or present at very
|
|
1085
|
+
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
1086
|
+
20:06:45"},"type":"beer"},{"id":"lpeUmI","name":"IPA","availableId":3,"styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
1087
|
+
02:43:30","updateDate":"2013-08-14 18:48:22","available":{"id":3,"name":"Not
|
|
1088
|
+
Available","description":"Beer is not available."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
1143
1089
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
1144
1090
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
1145
1091
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -1158,13 +1104,8 @@ http_interactions:
|
|
|
1158
1104
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
1159
1105
|
may be used for bitterness or approximating traditional American or English
|
|
1160
1106
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
1161
|
-
20:06:45"},"type":"beer"},{"id":"
|
|
1162
|
-
|
|
1163
|
-
grain bill includes floor malted Maris Otter barley from the United Kingdom,
|
|
1164
|
-
Melanoidin and Crystal malts.","abv":"7.3","ibu":"55","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","originalGravity":"17.5","createDate":"2012-05-22
|
|
1165
|
-
13:02:14","updateDate":"2012-05-22 13:02:14","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
|
1166
|
-
02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
|
|
1167
|
-
year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
1107
|
+
20:06:45"},"type":"beer"},{"id":"ErkmT6","name":"Bandit IPA","styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
1108
|
+
02:42:45","updateDate":"2012-03-22 13:04:51","style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
|
1168
1109
|
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
1169
1110
|
India Pale Ale","description":"American-style India pale ales are perceived
|
|
1170
1111
|
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
|
@@ -1183,7 +1124,21 @@ http_interactions:
|
|
|
1183
1124
|
IPA and English-style IPA categories or subcategories. Hops of other origins
|
|
1184
1125
|
may be used for bitterness or approximating traditional American or English
|
|
1185
1126
|
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
|
1127
|
+
20:06:45"},"type":"beer"},{"id":"4V6C7Y","name":"India Pale Ale","styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
|
1128
|
+
02:43:28","updateDate":"2012-03-22 13:04:51","style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
|
1129
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
|
1130
|
+
Pale Ale","description":"American pale ales range from deep golden to copper
|
|
1131
|
+
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
|
1132
|
+
hop character producing medium to medium-high hop bitterness, flavor, and
|
|
1133
|
+
aroma. Note that the \"traditional\" style of this beer has its origins with
|
|
1134
|
+
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
|
1135
|
+
hop varietals. One or more of these hop characters is the perceived end, but
|
|
1136
|
+
the perceived hop characters may be a result of the skillful use of hops of
|
|
1137
|
+
other national origins. American pale ales have medium body and low to medium
|
|
1138
|
+
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
|
1139
|
+
should be moderate to strong. Diacetyl should be absent or present at very
|
|
1140
|
+
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
|
1186
1141
|
20:06:45"},"type":"beer"}],"status":"success"}'
|
|
1187
1142
|
http_version:
|
|
1188
|
-
recorded_at: Mon,
|
|
1143
|
+
recorded_at: Mon, 31 Mar 2014 20:13:25 GMT
|
|
1189
1144
|
recorded_with: VCR 2.4.0
|