brewery_db 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.travis.yml +1 -0
  4. data/CHANGELOG.md +4 -0
  5. data/README.md +5 -4
  6. data/brewery_db.gemspec +2 -0
  7. data/lib/brewery_db/resources/beers.rb +4 -0
  8. data/lib/brewery_db/version.rb +1 -1
  9. data/spec/brewery_db/client_spec.rb +23 -12
  10. data/spec/brewery_db/config_spec.rb +9 -5
  11. data/spec/brewery_db/resource_spec.rb +1 -1
  12. data/spec/brewery_db/resources/beers_spec.rb +14 -3
  13. data/spec/brewery_db/resources/breweries_spec.rb +1 -1
  14. data/spec/brewery_db/resources/brewery_spec.rb +2 -2
  15. data/spec/brewery_db/resources/categories_spec.rb +1 -1
  16. data/spec/brewery_db/resources/fermentables_spec.rb +1 -1
  17. data/spec/brewery_db/resources/fluid_size_spec.rb +1 -1
  18. data/spec/brewery_db/resources/hops_spec.rb +1 -1
  19. data/spec/brewery_db/resources/locations_spec.rb +1 -1
  20. data/spec/brewery_db/resources/search_spec.rb +5 -5
  21. data/spec/brewery_db/resources/styles_spec.rb +1 -1
  22. data/spec/brewery_db/resources/yeasts_spec.rb +1 -1
  23. data/spec/fixtures/BreweryDB_Resource/_get/a_list_of_resources/can_be_enumerated.yml +160 -84
  24. data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/includes_the_response_message_in_the_error_message.yml +9 -9
  25. data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/includes_the_response_status_in_the_error_message.yml +9 -9
  26. data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/raises_an_exception.yml +9 -9
  27. data/spec/fixtures/BreweryDB_Resource/_get/an_OK_request/returns_the_data.yml +10 -10
  28. data/spec/fixtures/BreweryDB_Resources_Beers/_all/fetches_all_of_the_beers_at_once.yml +228 -244
  29. data/spec/fixtures/BreweryDB_Resources_Beers/_find/fetches_only_the_beer_asked_for.yml +10 -10
  30. data/spec/fixtures/BreweryDB_Resources_Beers/_random/fetches_a_random_beer.yml +53 -0
  31. data/spec/fixtures/BreweryDB_Resources_Breweries/_all/fetches_all_of_the_breweries_at_once.yml +46 -66
  32. data/spec/fixtures/BreweryDB_Resources_Breweries/_find/fetches_only_the_brewery_asked_for.yml +10 -10
  33. data/spec/fixtures/BreweryDB_Resources_Categories/_all/fetches_all_of_the_cagtegories_at_once.yml +13 -12
  34. data/spec/fixtures/BreweryDB_Resources_Categories/_find/fetches_only_the_category_asked_for.yml +10 -10
  35. data/spec/fixtures/BreweryDB_Resources_Fermentables/_all/fetches_all_of_the_fermentables_at_once.yml +15 -15
  36. data/spec/fixtures/BreweryDB_Resources_Fermentables/_find/fetches_only_the_fermentable_asked_for.yml +13 -13
  37. data/spec/fixtures/BreweryDB_Resources_FluidSize/_all/fetches_all_of_the_fluid_sizes_at_once.yml +16 -14
  38. data/spec/fixtures/BreweryDB_Resources_FluidSize/_find/fetches_only_the_fluid_size_asked_for.yml +12 -12
  39. data/spec/fixtures/BreweryDB_Resources_Glassware/_all/fetches_all_of_the_glassware_at_once.yml +10 -10
  40. data/spec/fixtures/BreweryDB_Resources_Glassware/_find/fetches_only_the_glassware_asked_for.yml +10 -10
  41. data/spec/fixtures/BreweryDB_Resources_Hops/_all/fetches_all_of_the_hops_at_once.yml +15 -15
  42. data/spec/fixtures/BreweryDB_Resources_Hops/_find/fetches_only_the_hop_asked_for.yml +13 -13
  43. data/spec/fixtures/BreweryDB_Resources_Locations/_all/fetches_all_of_the_breweries_at_once.yml +122 -58
  44. data/spec/fixtures/BreweryDB_Resources_Locations/_find/fetches_only_the_location_asked_for.yml +10 -10
  45. data/spec/fixtures/BreweryDB_Resources_Menu/_beer_availability/fetches_all_of_the_beer_availabilities_at_once.yml +12 -12
  46. data/spec/fixtures/BreweryDB_Resources_Search/_all/fetches_all_of_the_search_results_at_once.yml +366 -411
  47. data/spec/fixtures/BreweryDB_Resources_Search/_upc/for_an_existing_upc_code/returns_a_collection_with_the_matched_beer.yml +11 -11
  48. data/spec/fixtures/BreweryDB_Resources_Styles/_all/fetches_all_of_the_styles_at_once.yml +63 -24
  49. data/spec/fixtures/BreweryDB_Resources_Styles/_find/fetches_only_the_style_asked_for.yml +10 -10
  50. data/spec/fixtures/BreweryDB_Resources_Yeasts/_all/fetches_all_of_the_yeasts_at_once.yml +14 -14
  51. data/spec/fixtures/BreweryDB_Resources_Yeasts/_find/fetches_only_the_yeast_asked_for.yml +13 -13
  52. data/spec/spec_helper.rb +2 -0
  53. metadata +52 -22
@@ -8,29 +8,29 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - BreweryDB Ruby Gem 0.2.0
11
+ - BreweryDB Ruby Gem 0.2.3
12
12
  response:
13
13
  status:
14
14
  code: 404
15
15
  message:
16
16
  headers:
17
+ content-type:
18
+ - application/json
17
19
  date:
18
- - Mon, 22 Jul 2013 00:05:46 GMT
20
+ - Mon, 31 Mar 2014 20:13:21 GMT
19
21
  server:
20
- - Apache/2.2.24 (Amazon)
21
- x-powered-by:
22
- - PHP/5.3.26
22
+ - Apache/2.2.26 (Amazon)
23
23
  vary:
24
24
  - Accept-Encoding
25
+ x-powered-by:
26
+ - PHP/5.3.28
25
27
  content-length:
26
28
  - '95'
27
29
  connection:
28
- - close
29
- content-type:
30
- - application/json
30
+ - Close
31
31
  body:
32
32
  encoding: UTF-8
33
33
  string: '{"errorMessage":"The endpoint you requested could not be found","status":"failure"}'
34
34
  http_version:
35
- recorded_at: Mon, 22 Jul 2013 00:05:46 GMT
35
+ recorded_at: Mon, 31 Mar 2014 20:13:20 GMT
36
36
  recorded_with: VCR 2.4.0
@@ -8,29 +8,29 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - BreweryDB Ruby Gem 0.2.0
11
+ - BreweryDB Ruby Gem 0.2.3
12
12
  response:
13
13
  status:
14
14
  code: 404
15
15
  message:
16
16
  headers:
17
+ content-type:
18
+ - application/json
17
19
  date:
18
- - Mon, 22 Jul 2013 00:05:46 GMT
20
+ - Mon, 31 Mar 2014 20:13:21 GMT
19
21
  server:
20
- - Apache/2.2.24 (Amazon)
21
- x-powered-by:
22
- - PHP/5.3.26
22
+ - Apache/2.2.26 (Amazon)
23
23
  vary:
24
24
  - Accept-Encoding
25
+ x-powered-by:
26
+ - PHP/5.3.28
25
27
  content-length:
26
28
  - '95'
27
29
  connection:
28
- - close
29
- content-type:
30
- - application/json
30
+ - Close
31
31
  body:
32
32
  encoding: UTF-8
33
33
  string: '{"errorMessage":"The endpoint you requested could not be found","status":"failure"}'
34
34
  http_version:
35
- recorded_at: Mon, 22 Jul 2013 00:05:46 GMT
35
+ recorded_at: Mon, 31 Mar 2014 20:13:20 GMT
36
36
  recorded_with: VCR 2.4.0
@@ -8,29 +8,29 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - BreweryDB Ruby Gem 0.2.0
11
+ - BreweryDB Ruby Gem 0.2.3
12
12
  response:
13
13
  status:
14
14
  code: 404
15
15
  message:
16
16
  headers:
17
+ content-type:
18
+ - application/json
17
19
  date:
18
- - Mon, 22 Jul 2013 00:05:46 GMT
20
+ - Mon, 31 Mar 2014 20:13:20 GMT
19
21
  server:
20
- - Apache/2.2.24 (Amazon)
21
- x-powered-by:
22
- - PHP/5.3.26
22
+ - Apache/2.2.26 (Amazon)
23
23
  vary:
24
24
  - Accept-Encoding
25
+ x-powered-by:
26
+ - PHP/5.3.28
25
27
  content-length:
26
28
  - '95'
27
29
  connection:
28
- - close
29
- content-type:
30
- - application/json
30
+ - Close
31
31
  body:
32
32
  encoding: UTF-8
33
33
  string: '{"errorMessage":"The endpoint you requested could not be found","status":"failure"}'
34
34
  http_version:
35
- recorded_at: Mon, 22 Jul 2013 00:05:46 GMT
35
+ recorded_at: Mon, 31 Mar 2014 20:13:20 GMT
36
36
  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.0
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, 22 Jul 2013 00:05:45 GMT
20
+ - Mon, 31 Mar 2014 20:13:20 GMT
19
21
  server:
20
- - Apache/2.2.24 (Amazon)
22
+ - Apache/2.2.26 (Amazon)
23
+ vary:
24
+ - Accept-Encoding
21
25
  x-powered-by:
22
- - PHP/5.3.26
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
  - '889'
31
33
  connection:
32
- - close
33
- content-type:
34
- - application/json
34
+ - Close
35
35
  body:
36
36
  encoding: UTF-8
37
37
  string: '{"currentPage":1,"numberOfPages":1,"totalResults":1,"data":[{"id":"X0l98q","name":"Rogue
@@ -52,5 +52,5 @@ http_interactions:
52
52
  (outside), and the bottling line and brew kettles (inside).","website":"http:\/\/www.rogue.com\/","established":"1987","isOrganic":"N","images":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/X0l98q\/upload_G7JsDk-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/X0l98q\/upload_G7JsDk-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/X0l98q\/upload_G7JsDk-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
53
53
  02:42:07","updateDate":"2012-10-19 14:08:55"}],"status":"success"}'
54
54
  http_version:
55
- recorded_at: Mon, 22 Jul 2013 00:05:45 GMT
55
+ recorded_at: Mon, 31 Mar 2014 20:13:20 GMT
56
56
  recorded_with: VCR 2.4.0
@@ -8,41 +8,54 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - BreweryDB Ruby Gem 0.2.0
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, 22 Jul 2013 00:05:46 GMT
20
+ - Mon, 31 Mar 2014 20:13:21 GMT
19
21
  server:
20
- - Apache/2.2.24 (Amazon)
22
+ - Apache/2.2.26 (Amazon)
23
+ vary:
24
+ - Accept-Encoding
21
25
  x-powered-by:
22
- - PHP/5.3.26
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
- - '15833'
32
+ - '15925'
31
33
  connection:
32
- - close
33
- content-type:
34
- - application/json
34
+ - Close
35
35
  body:
36
36
  encoding: UTF-8
37
- string: '{"currentPage":1,"numberOfPages":17,"totalResults":807,"data":[{"id":"M6vu9P","name":"10
38
- Blocks South","description":"Tired of the standard American Pale Ale? Not
39
- feeling the hop bite and higher ABV of an IPA? We have something in-between.
40
- What you get is a hop-centric but easy drinking beer with tons of citrus and
41
- floral hop character brought on by Centennial, Cascade, Columbus and Chinook
42
- hops and backed with a solid malt bill.","abv":"5.5","ibu":"56","glasswareId":5,"srmId":9,"availableId":1,"styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-09
43
- 21:35:12","updateDate":"2012-03-22 13:05:46","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
44
- 02:41:33"},"srm":{"id":9,"name":"9","hex":"E58500"},"available":{"id":1,"name":"Year
45
- Round","description":"Available year round as a staple beer."},"style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
37
+ string: '{"currentPage":1,"numberOfPages":20,"totalResults":985,"data":[{"id":"c4f2KE","name":"''Murican
38
+ Pilsner","abv":"5.5","glasswareId":4,"styleId":98,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/c4f2KE\/upload_jjKJ7g-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/c4f2KE\/upload_jjKJ7g-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/c4f2KE\/upload_jjKJ7g-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-08-19
39
+ 11:58:12","updateDate":"2013-08-19 11:58:23","glass":{"id":4,"name":"Pilsner","createDate":"2012-01-03
40
+ 02:41:33"},"style":{"id":98,"categoryId":8,"category":{"id":8,"name":"North
41
+ American Lager","createDate":"2012-03-21 20:06:46"},"name":"American-Style
42
+ Pilsener","description":"This classic and unique pre-Prohibition American-style
43
+ Pilsener is straw to deep gold in color. Hop bitterness, flavor and aroma
44
+ are medium to high, and use of noble-type hops for flavor and aroma is preferred.
45
+ Up to 25 percent corn and\/or rice in the grist should be used. Malt flavor
46
+ and aroma are medium. This is a light-medium to medium-bodied beer. Sweet
47
+ corn-like dimethylsulfide (DMS), fruity esters and American hop-derived citrus
48
+ flavors or aromas should not be perceived. Diacetyl is not acceptable. There
49
+ should be no chill haze. Competition organizers may wish to subcategorize
50
+ this style into rice and corn subcategories.","ibuMin":"25","ibuMax":"40","abvMin":"5","abvMax":"6","srmMin":"3","srmMax":"6","ogMin":"1.045","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
51
+ 20:06:46"}},{"id":"M6vu9P","name":"10 Blocks South","description":"Tired of
52
+ the standard American Pale Ale? Not feeling the hop bite and higher ABV of
53
+ an IPA? We have something in-between. What you get is a hop-centric but easy
54
+ drinking beer with tons of citrus and floral hop character brought on by Centennial,
55
+ Cascade, Columbus and Chinook hops and backed with a solid malt bill.","abv":"5.5","ibu":"56","glasswareId":5,"srmId":9,"availableId":3,"styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-09
56
+ 21:35:12","updateDate":"2013-08-09 15:10:28","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
57
+ 02:41:33"},"srm":{"id":9,"name":"9","hex":"E58500"},"available":{"id":3,"name":"Not
58
+ Available","description":"Beer is not available."},"style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
46
59
  American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
47
60
  Pale Ale","description":"American pale ales range from deep golden to copper
48
61
  in color. The style is characterized by fruity, floral and citrus-like American-variety
@@ -55,7 +68,25 @@ http_interactions:
55
68
  maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
56
69
  should be moderate to strong. Diacetyl should be absent or present at very
57
70
  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
58
- 20:06:45"}},{"id":"295GZo","name":"19 Original Colonies","description":"19
71
+ 20:06:45"}},{"id":"qHOBcs","name":"11 Point Pilsner","description":"This Pilsner
72
+ is a straight ahead, German-style pilsner; dry, clean with a bracing hop finish.
73
+ 11 Point Pilsner is brewed with premium 2-row malted barley, noble hops, soft
74
+ water and Bavarian lager yeast, and is the type of beer that goes well with
75
+ a range of food, or simply enjoyed on its own.","abv":"5.5","ibu":"35","availableId":1,"styleId":75,"isOrganic":"Y","status":"verified","statusDisplay":"Verified","originalGravity":"12","createDate":"2013-08-12
76
+ 17:29:17","updateDate":"2013-08-12 17:58:57","available":{"id":1,"name":"Year
77
+ Round","description":"Available year round as a staple beer."},"style":{"id":75,"categoryId":7,"category":{"id":7,"name":"European-germanic
78
+ Lager","createDate":"2012-03-21 20:06:46"},"name":"German-Style Pilsener","description":"A
79
+ classic German Pilsener is very light straw or golden in color and well hopped.
80
+ Perception of hop bitterness is medium to high. Noble-type hop aroma and flavor
81
+ are moderate and quite obvious. It is a well-attenuated, medium-light bodied
82
+ beer, but a malty residual sweetness can be perceived in aroma and flavor.
83
+ Very low levels of sweet corn-like dimethylsulfide (DMS) character are below
84
+ most beer drinkers'' taste thresholds and are usually not detectable except
85
+ to the trained or sensitive palate. Other fermentation or hop related sulfur
86
+ compounds, when perceived at low levels, may be characteristic of this style.
87
+ Fruity esters and diacetyl should not be perceived. There should be no chill
88
+ haze. Its head should be dense and rich.","ibuMin":"25","ibuMax":"40","abvMin":"4","abvMax":"5","srmMin":"3","srmMax":"4","ogMin":"1.044","fgMin":"1.006","fgMax":"1.012","createDate":"2012-03-21
89
+ 20:06:46"}},{"id":"295GZo","name":"19 Original Colonies","description":"19
59
90
  Original Colonies Mead is brewed using 5 ingredients: Rogue Hopyard Honey,
60
91
  Wild Flower Honey, Jasmine Silver Tip Green Tea Leaves, Champagne Yeast &
61
92
  Free Range Coastal Water. No Chemicals, additives or preservatives were used.","abv":"5.5","styleId":148,"isOrganic":"Y","status":"verified","statusDisplay":"Verified","originalGravity":"1.008","createDate":"2012-12-08
@@ -65,6 +96,34 @@ http_interactions:
65
96
  ingredients in varying degrees, and should show a good blending or balance
66
97
  between the various flavor elements. Whatever ingredients are included, the
67
98
  result should be identifiable as a honey-based fermented beverage.","createDate":"2012-03-21
99
+ 20:06:46"}},{"id":"tvXEUg","name":"1st Conversation","description":"That first
100
+ conversation between new found friends is always enthralling. In this Saison,
101
+ malted barley, rye, and wheat tell their stories, straightforward yet profound,
102
+ while a unique yeast strain captivates them with elegant ramblings. The yeast
103
+ is responsible for the fruity, cirtusy, spicy notes in this thirst quencher,
104
+ the 1st in our series of Belgian-inspired beers. 5.5% ABV.\r\n\r\n2013 Silver
105
+ medal winner in the California State Fair Craft Beer Competition in the category
106
+ Belgian Pale Ale.","abv":"5.5","ibu":"29","glasswareId":8,"availableId":4,"styleId":72,"isOrganic":"N","status":"verified","statusDisplay":"Verified","servingTemperature":"cold","servingTemperatureDisplay":"Cold
107
+ - (4-7C\/39-45F)","originalGravity":"11.3","createDate":"2013-08-08 20:23:59","updateDate":"2013-08-09
108
+ 12:30:33","glass":{"id":8,"name":"Tulip","createDate":"2012-01-03 02:41:33"},"available":{"id":4,"name":"Seasonal","description":"Available
109
+ at the same time of year, every year."},"style":{"id":72,"categoryId":5,"category":{"id":5,"name":"Belgian
110
+ And French Origin Ales","createDate":"2012-03-21 20:06:46"},"name":"French
111
+ & Belgian-Style Saison","description":"Beers in this category are golden to
112
+ deep amber in color. There may be quite a variety of characters within this
113
+ style. Generally: They are light to medium in body. Malt aroma is low to medium-low.
114
+ Esters are medium to high in aroma, while, complex alcohols, herbs, spices,
115
+ low Brettanomyces character and even clove and smoke-like phenolics may or
116
+ may not be evident in the overall balanced beer. Hop aroma and flavor may
117
+ be at low to medium levels. Malt flavor is low but provides foundation for
118
+ the overall balance. Hop bitterness is moderate to moderately assertive. Herb
119
+ and\/or spice flavors, including black pepper-like notes, may or may not be
120
+ evident. Fruitiness from fermentation is generally in character. A balanced
121
+ small amount of sour or acidic flavors is acceptable when in balance with
122
+ other components. Earthy, cellar-like, musty aromas are okay. Diacetyl should
123
+ not be perceived. Chill or slight yeast haze is okay. Often bottle conditioned
124
+ with some yeast character and high carbonation. French & Belgian-Style Saison
125
+ may have Brettanomyces characters that are slightly acidity, fruity, horsey,
126
+ goaty and\/or leather-like.","ibuMin":"20","ibuMax":"40","abvMin":"4.5","abvMax":"8.5","srmMin":"4","srmMax":"14","ogMin":"1.055","fgMin":"1.004","fgMax":"1.016","createDate":"2012-03-21
68
127
  20:06:46"}},{"id":"fjHrwk","name":"20-Pounder","description":"This not-so-classic
69
128
  American Pale Ale is named for the 20 pounds of hops (Columbus, Cascade, and
70
129
  Falconer\u2019s Flight) added to the kettle. The malt bill consists simply
@@ -121,9 +180,54 @@ http_interactions:
121
180
  for competing: Spiced beers using unusual fermentables should be entered in
122
181
  the experimental category. Fruit beers using unusual fermentables should be
123
182
  entered in the fruit beer category.","ibuMax":"100","abvMin":"2.5","abvMax":"25","srmMin":"1","srmMax":"100","ogMin":"1.03","fgMin":"1.006","fgMax":"1.03","createDate":"2012-03-21
124
- 20:06:46"}},{"id":"oVuPzz","name":"292 Ale","description":"Our Hoptoberfest
125
- style has a deep copper color, rich caramel and toasted flavors, and is chock
126
- full of our favorite hops!","abv":"5.5","glasswareId":3,"availableId":4,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-21
183
+ 20:06:46"}},{"id":"GZdnHy","name":"2013","abv":"5.5","availableId":2,"styleId":125,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/GZdnHy\/upload_DhbjTh-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/GZdnHy\/upload_DhbjTh-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/GZdnHy\/upload_DhbjTh-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-11-01
184
+ 12:31:47","updateDate":"2013-11-02 05:00:15","available":{"id":2,"name":"Limited","description":"Limited
185
+ availability."},"style":{"id":125,"categoryId":11,"category":{"id":11,"name":"Hybrid\/mixed
186
+ Beer","createDate":"2012-03-21 20:06:46"},"name":"Specialty Beer","description":"These
187
+ beers are brewed using unusual fermentable sugars, grains and starches that
188
+ contribute to alcohol content other than, or in addition to, malted barley.
189
+ Nuts generally have some degree of fermentables, thus beers brewed with nuts
190
+ would appropriately be entered in this category. The distinctive characters
191
+ of these special ingredients should be evident either in the aroma, flavor
192
+ or overall balance of the beer, but not necessarily in overpowering quantities.
193
+ For example, maple syrup or potatoes would be considered unusual. Rice, corn,
194
+ or wheat are not considered unusual. Special ingredients must be listed when
195
+ competing. A statement by the brewer explaining the special nature of the
196
+ beer, ingredient(s) and achieved character is essential in order for fair
197
+ assessment in competitions. If this beer is a classic style with some specialty
198
+ ingredient(s), the brewer should also specify the classic style. Guidelines
199
+ for competing: Spiced beers using unusual fermentables should be entered in
200
+ the experimental category. Fruit beers using unusual fermentables should be
201
+ entered in the fruit beer category.","ibuMax":"100","abvMin":"2.5","abvMax":"25","srmMin":"1","srmMax":"100","ogMin":"1.03","fgMin":"1.006","fgMax":"1.03","createDate":"2012-03-21
202
+ 20:06:46"}},{"id":"6mllCI","name":"2013 Christmas","abv":"5.5","ibu":"16","availableId":2,"styleId":124,"isOrganic":"N","year":2013,"labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/6mllCI\/upload_AUOnuJ-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/6mllCI\/upload_AUOnuJ-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/6mllCI\/upload_AUOnuJ-large.png"},"status":"verified","statusDisplay":"Verified","originalGravity":"1.057","createDate":"2013-09-01
203
+ 14:17:14","updateDate":"2013-09-01 14:17:28","available":{"id":2,"name":"Limited","description":"Limited
204
+ availability."},"style":{"id":124,"categoryId":11,"category":{"id":11,"name":"Hybrid\/mixed
205
+ Beer","createDate":"2012-03-21 20:06:46"},"name":"Herb and Spice Beer","description":"Herb
206
+ beers use herbs or spices (derived from roots, seeds, fruits, vegetable, flowers,
207
+ etc.) other than or in addition to hops to create a distinct (ranging from
208
+ subtle to intense) character, though individual characters of herbs and\/or
209
+ spices used may not always be identifiable. Under hopping often, but not always,
210
+ allows the spice or herb to contribute to the flavor profile. Positive evaluations
211
+ are significantly based on perceived balance of flavors. Note: Chili-flavored
212
+ beers that emphasize heat rather than chili flavor should be entered as a
213
+ \"spiced\" beer. A statement by the brewer explaining what herbs or spices
214
+ are used is essential in order for fair assessment in competitions. Specifying
215
+ a style upon which the beer is based may help evaluation. If this beer is
216
+ a classic style with an herb or spice, the brewer should specify the classic
217
+ style. If no Chocolate or Coffee category exists in a competition, then chocolate
218
+ and coffee beers should be entered in this category.","ibuMin":"5","ibuMax":"70","abvMin":"2.5","abvMax":"12","srmMin":"5","srmMax":"50","ogMin":"1.03","fgMin":"1.006","fgMax":"1.03","createDate":"2012-03-21
219
+ 20:06:46"}},{"id":"p26DRq","name":"237 Milk Stout","abv":"5.5","styleId":20,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2013-07-30
220
+ 00:17:54","updateDate":"2013-07-30 00:17:55","style":{"id":20,"categoryId":1,"category":{"id":1,"name":"British
221
+ Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"Sweet or Cream Stout","description":"Sweet
222
+ stouts, also referred to as cream stouts, have less roasted bitter flavor
223
+ and a full-bodied mouthfeel. The style can be given more body with milk sugar
224
+ (lactose) before bottling. Malt sweetness, chocolate, and caramel flavor should
225
+ dominate the flavor profile and contribute to the aroma. Hops should balance
226
+ and suppress some of the sweetness without contributing apparent flavor or
227
+ aroma. The overall impression should be sweet and full-bodied.","ibuMin":"15","ibuMax":"25","abvMin":"3","abvMax":"6","srmMin":"40","srmMax":"40","ogMin":"1.045","fgMin":"1.012","fgMax":"1.02","createDate":"2012-03-21
228
+ 20:06:45","updateDate":"2013-08-10 12:39:33"}},{"id":"oVuPzz","name":"292
229
+ Ale","description":"Our Hoptoberfest style has a deep copper color, rich caramel
230
+ and toasted flavors, and is chock full of our favorite hops!","abv":"5.5","glasswareId":3,"availableId":4,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-21
127
231
  22:40:14","updateDate":"2012-04-21 22:40:14","glass":{"id":3,"name":"Mug","createDate":"2012-01-03
128
232
  02:41:33"},"available":{"id":4,"name":"Seasonal","description":"Available
129
233
  at the same time of year, every year."}},{"id":"M50l8Z","name":"3 Picket Porter","abv":"5.5","glasswareId":5,"availableId":1,"styleId":18,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/M50l8Z\/upload_XO3oCf-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/M50l8Z\/upload_XO3oCf-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/M50l8Z\/upload_XO3oCf-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-02-27
@@ -136,28 +240,22 @@ http_interactions:
136
240
  sweetness, caramel and chocolate is acceptable along with medium hop bitterness.
137
241
  This is a lightto medium-bodied beer. Fruity esters are acceptable. Hop flavor
138
242
  and aroma may vary from being negligible to medium in character.","ibuMin":"20","ibuMax":"30","abvMin":"4.5","abvMax":"6","srmMin":"20","srmMax":"35","ogMin":"1.04","fgMin":"1.006","fgMax":"1.014","createDate":"2012-03-21
139
- 20:06:45"}},{"id":"Ux7vK3","name":"40K Honey Wheat Ale","description":"This
140
- dry, crisp wheat ale is delicately spiced with coriander and orange peel and
141
- has complex floral aroma. The addition of orange blossom honey contributes
142
- to its light body and clean finish. It is easy drinking and pairs well with
143
- spicy foods.","abv":"5.5","ibu":"18","glasswareId":5,"availableId":1,"styleId":112,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
144
- 02:42:37","updateDate":"2012-03-22 13:05:19","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
145
- 02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
146
- year round as a staple beer."},"style":{"id":112,"categoryId":11,"category":{"id":11,"name":"Hybrid\/mixed
147
- Beer","createDate":"2012-03-21 20:06:46"},"name":"Light American Wheat Ale
148
- or Lager with Yeast","description":"This beer can be made using either ale
149
- or lager yeast. It can be brewed with 30 to 75 percent wheat malt, and hop
150
- rates may be low to medium. Hop characters may be light to moderate in bitterness,
151
- flavor and aroma. Fruity-estery aroma and flavor are typical but at low levels
152
- however, phenolic, clove-like characteristics should not be perceived. Color
153
- is usually straw to light amber, and the body should be light to medium in
154
- character. Diacetyl should not be perceived. Because this style is served
155
- with yeast the character should portray a full yeasty mouthfeel and appear
156
- hazy to very cloudy. Chill haze is also acceptable. Yeast flavor and aroma
157
- should be low to medium but not overpowering the balance and character of
158
- malt and hops. These beers are typically served with the yeast in the bottle,
159
- and are cloudy when served.","ibuMin":"10","ibuMax":"35","abvMin":"3.5","abvMax":"5.5","srmMin":"4","srmMax":"10","ogMin":"1.036","fgMin":"1.006","fgMax":"1.018","createDate":"2012-03-21
160
- 20:06:46"}},{"id":"6NGOv9","name":"420 IPA","description":"This beer is a
243
+ 20:06:45"}},{"id":"aK7YW9","name":"4-Leaf Irish Red Ale","description":"A
244
+ blend of pale, caramel and dark malt creates a medium-bodied beer that has
245
+ a complex malty-sweet flavor, with just a touch of hops to lighten the finish.","abv":"5.5","ibu":"21","glasswareId":5,"srmId":25,"availableId":1,"styleId":22,"isOrganic":"N","status":"verified","statusDisplay":"Verified","servingTemperature":"cool","servingTemperatureDisplay":"Cool
246
+ - (8-12C\/45-54F)","originalGravity":"1.059","createDate":"2013-08-12 19:53:30","updateDate":"2013-08-12
247
+ 23:18:14","glass":{"id":5,"name":"Pint","createDate":"2012-01-03 02:41:33"},"srm":{"id":25,"name":"25","hex":"7B1A00"},"available":{"id":1,"name":"Year
248
+ Round","description":"Available year round as a staple beer."},"style":{"id":22,"categoryId":2,"category":{"id":2,"name":"Irish
249
+ Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"Irish-Style Red Ale","description":"Irish-style
250
+ red ales range from light red-amber-copper to light brown in color. These
251
+ ales have a medium hop bitterness and flavor. They often don''t have hop aroma.
252
+ Irish-style red ales have low to medium candy-like caramel malt sweetness
253
+ and may have a balanced subtle degree of roast barley or roast malt character
254
+ and complexity. Irish-style Red Ales have a medium body. The style may have
255
+ low levels of fruity-ester flavor and aroma. Diacetyl should be absent or
256
+ at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
257
+ haze is acceptable for bottle-conditioned products.","ibuMin":"20","ibuMax":"28","abvMin":"4","abvMax":"4.5","srmMin":"11","srmMax":"18","ogMin":"1.04","fgMin":"1.01","fgMax":"1.014","createDate":"2012-03-21
258
+ 20:06:45"}},{"id":"6NGOv9","name":"420 IPA","description":"This beer is a
161
259
  very bitter West CoastIPA. It has very low malt character and lots of citrus
162
260
  flavor. It creates an explosion of hops in your mouth!","abv":"5.5","ibu":"100","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
163
261
  02:42:37","updateDate":"2012-03-22 13:05:38","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
@@ -196,29 +294,7 @@ http_interactions:
196
294
  barley. There should not be any caramel character. Color is light straw to
197
295
  golden. Fruity esters and diacetyl should not be perceived. There should be
198
296
  no chill haze.","ibuMin":"18","ibuMax":"25","abvMin":"4.5","abvMax":"5.5","srmMin":"4","srmMax":"6","ogMin":"1.044","fgMin":"1.008","fgMax":"1.012","createDate":"2012-03-21
199
- 20:06:46"}},{"id":"lTRmiH","name":"6 Shooter IPA","abv":"5.5","ibu":"47","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-10-10
200
- 12:25:50","updateDate":"2012-10-10 12:25:50","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
201
- 02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
202
- year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
203
- American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
204
- India Pale Ale","description":"American-style India pale ales are perceived
205
- to have medium-high to intense hop bitterness, flavor and aroma with medium-high
206
- alcohol content. The style is further characterized by floral, fruity, citrus-like,
207
- piney, resinous, or sulfur-like American-variety hop character. Note that
208
- one or more of these American-variety hop characters is the perceived end,
209
- but the hop characters may be a result of the skillful use of hops of other
210
- national origins. The use of water with high mineral content results in a
211
- crisp, dry beer. This pale gold to deep copper-colored ale has a full, flowery
212
- hop aroma and may have a strong hop flavor (in addition to the perception
213
- of hop bitterness). India pale ales possess medium maltiness which contributes
214
- to a medium body. Fruity-ester flavors and aromas are moderate to very strong.
215
- Diacetyl can be absent or may be perceived at very low levels. Chill and\/or
216
- hop haze is allowable at cold temperatures. (English and citrus-like American
217
- hops are considered enough of a distinction justifying separate American-style
218
- IPA and English-style IPA categories or subcategories. Hops of other origins
219
- may be used for bitterness or approximating traditional American or English
220
- 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
221
- 20:06:45"}},{"id":"TZ07QQ","name":"80-Acre Hoppy Wheat Beer","description":"With
297
+ 20:06:46"}},{"id":"TZ07QQ","name":"80-Acre Hoppy Wheat Beer","description":"With
222
298
  roots in two of today''s most popular brewing styles, 80-Acre Hoppy Wheat
223
299
  Beer is the result of careful cultivation by our brewers and cellarmen. Their
224
300
  efforts to craft a hybrid yielded a bumper crop of flavor; a delightfully
@@ -413,6 +489,38 @@ http_interactions:
413
489
  maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
414
490
  should be moderate to strong. Diacetyl should be absent or present at very
415
491
  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
492
+ 20:06:45"}},{"id":"fbPbjZ","name":"Alfred Brown","description":"In 1859, Alfred
493
+ Brown Peticolas opened the first Peticolas law firm in the State of Texas.
494
+ After briefly leaving his practice to fight in the Civil War, A.B. returned
495
+ to the practice of law in 1866. Since that time, A.B., his son (Warner Marion),
496
+ grandson (William Craig), great grandson (Edward Kent), and\/or great-great
497
+ grandson ( Michael) have continuously practiced law in the State of Texas.
498
+ \r\n\r\n Named after Alfred Brown Peticolas, our English brown ale is a dialed
499
+ back version of the American interpretation. It\u2019s copper in color with
500
+ a pleasantly light hop aroma, which is balanced with a delicate roasty maltiness.
501
+ Notes of nut and chocolate are subdued, but clearly present in flavor. This
502
+ beer\u2019s body is medium-light and possesses a smooth texture with a hint
503
+ of residual sweetness. \r\n\r\n The roasted characteristics of this beer make
504
+ it the perfect match for any meats or vegetables prepared on the grill.\r\n\r\n
505
+ A little more on A.B. Peticolas? He was born in Richmond, Virginia, on May
506
+ 27, 1838. As a young man, he studied law and taught school. He began his practice
507
+ in Virginia, but ultimately moved west to Victoria, Texas. In 1859, he opened
508
+ up a law practice with Samuel A. White. A.B. Peticolas may be best remembered
509
+ today for his published Civil War journals and detailed pencil sketches, having
510
+ served during the Sibley Campaign in New Mexico with Co. C., 4th Regiment,
511
+ Texas Mounted Volunteers. After his discharge in 1865, he returned to Victoria
512
+ to practice law. In 1894, A.B. Peticolas authored an index-digest to all civil
513
+ cases contained in the Texas Report. This catalog became standard text of
514
+ the Texas Bar Association for years. In his later years, A.B. Peticolas was
515
+ known simply as the \u201cJudge.\u201d","abv":"5.5","ibu":"25","availableId":2,"styleId":12,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/fbPbjZ\/upload_yPKYxR-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/fbPbjZ\/upload_yPKYxR-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/fbPbjZ\/upload_yPKYxR-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2013-08-10
516
+ 20:16:14","updateDate":"2013-08-13 00:06:47","available":{"id":2,"name":"Limited","description":"Limited
517
+ availability."},"style":{"id":12,"categoryId":1,"category":{"id":1,"name":"British
518
+ Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"English-Style Brown
519
+ Ale","description":"English brown ales range from copper to brown in color.
520
+ They have medium body and range from dry to sweet maltiness with very little
521
+ hop flavor or aroma. Roast malt tones may sometimes contribute to the flavor
522
+ and aroma profile. Low to medium-low levels of fruity-ester flavors are appropriate.
523
+ Diacetyl should be very low, if evident. Chill haze is allowable at cold temperatures.","ibuMin":"15","ibuMax":"25","abvMin":"4","abvMax":"5.5","srmMin":"13","srmMax":"25","ogMin":"1.04","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
416
524
  20:06:45"}},{"id":"FnhTPl","name":"Allegheny Pale Ale","description":"Our
417
525
  first American-style ale. An international pale ale using Europils and Caramel
418
526
  malts, blanced with three distinct hop varieties to create a unique amber
@@ -446,7 +554,24 @@ http_interactions:
446
554
  of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
447
555
  at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
448
556
  haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
449
- 20:06:45"}},{"id":"8Tjlsy","name":"Alpine Weiss","description":"The quintessential
557
+ 20:06:45"}},{"id":"JG9FjK","name":"Alpha Storter","description":"The difference
558
+ between a stout and a porter is a fuzzy grey area. We are not quite sure
559
+ if this is either\u2026 This dry beer is deliciously brewed with chocolate
560
+ malt and two crystal malts to give it a strong malty backbone. If you like
561
+ dark chocolate, you will love this beer.","abv":"5.5","ibu":"10","glasswareId":5,"styleId":42,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2013-11-21
562
+ 16:51:23","updateDate":"2013-11-21 16:51:23","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
563
+ 02:41:33"},"style":{"id":42,"categoryId":3,"category":{"id":3,"name":"North
564
+ American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
565
+ Stout","description":"Initial low to medium malt sweetness with a degree of
566
+ caramel, chocolate and\/or roasted coffee flavor with a distinctive dryroasted
567
+ bitterness in the finish. Coffee-like roasted barley and roasted malt aromas
568
+ are prominent. Some slight roasted malt acidity is permissible and a medium-
569
+ to full-bodied mouthfeel is appropriate. Hop bitterness may be moderate to
570
+ high. Hop aroma and flavor is moderate to high, often with American citrus-type
571
+ and\/or resiny hop character. The perception of fruity esters is low. Roasted
572
+ malt\/barley astringency may be low but not excessive. Diacetyl (butterscotch)
573
+ should be negligible or not perceived. Head retention is excellent.","ibuMin":"35","ibuMax":"60","abvMin":"5.7","abvMax":"8.8","srmMin":"40","srmMax":"40","ogMin":"1.05","fgMin":"1.01","fgMax":"1.022","createDate":"2012-03-21
574
+ 20:06:46"}},{"id":"8Tjlsy","name":"Alpine Weiss","description":"The quintessential
450
575
  summer thirst-quencher, light but flavorful, often called \"breakfast beer\"
451
576
  by southern Germans. Made with crystal wheat malt. The dominant flavors are
452
577
  banana and clove, products of the unique yeast imported from Bavaria","abv":"5.5","glasswareId":5,"availableId":4,"styleId":48,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-12-23
@@ -494,6 +619,21 @@ http_interactions:
494
619
  may be used. Hop character may be low to medium in the flavor and aroma. The
495
620
  overall impression is clean, crisp, and flavorful often with a dry finish.
496
621
  Fruity esters can be low. No diacetyl or chill haze should be perceived.","ibuMin":"25","ibuMax":"52","abvMin":"4.3","abvMax":"5.5","srmMin":"11","srmMax":"19","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
622
+ 20:06:46"}},{"id":"fHbpR6","name":"Alter Your Brew","description":"From German
623
+ roots, you\u2019ll taste brown bread crust, brown sugar, coupled with mellow
624
+ nuttiness and faint herbal and grassy hops. Finishes with cocoa-like bitterness
625
+ and a tad of pepper to round out the toast notes.","abv":"5.5","ibu":"30","glasswareId":5,"availableId":1,"styleId":55,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/fHbpR6\/upload_U6gDh8-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/fHbpR6\/upload_U6gDh8-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/fHbpR6\/upload_U6gDh8-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2014-01-31
626
+ 13:40:49","updateDate":"2014-01-31 13:58:28","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
627
+ 02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
628
+ year round as a staple beer."},"style":{"id":55,"categoryId":4,"category":{"id":4,"name":"German
629
+ Origin Ales","createDate":"2012-03-21 20:06:46"},"name":"German-Style Brown
630
+ Ale \/ D\u00fcsseldorf-Style Altbier","description":"Copper to brown in color,
631
+ this German ale may be highly hopped and intensely bitter (although the 25
632
+ to 35 IBU range is more normal for the majority of Altbiers from D\u00fcsseldorf)
633
+ and has a medium body and malty flavor. A variety of malts, including wheat,
634
+ may be used. Hop character may be low to medium in the flavor and aroma. The
635
+ overall impression is clean, crisp, and flavorful often with a dry finish.
636
+ Fruity esters can be low. No diacetyl or chill haze should be perceived.","ibuMin":"25","ibuMax":"52","abvMin":"4.3","abvMax":"5.5","srmMin":"11","srmMax":"19","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
497
637
  20:06:46"}},{"id":"EbWTI2","name":"ALTered Spring","description":"Using a
498
638
  German Ale yeast strain, Tyler West and Brett Thomas bring you this fun malty
499
639
  ALT style beer just in time for spring. ALTered Spring is a deep rich mahogany
@@ -610,6 +750,18 @@ http_interactions:
610
750
  of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
611
751
  at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
612
752
  haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
753
+ 20:06:45"}},{"id":"tDsQ1d","name":"Amber Ale","abv":"5.5","availableId":4,"styleId":32,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/tDsQ1d\/upload_91vp2E-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/tDsQ1d\/upload_91vp2E-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/tDsQ1d\/upload_91vp2E-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2014-02-12
754
+ 12:57:35","updateDate":"2014-02-12 13:06:58","available":{"id":4,"name":"Seasonal","description":"Available
755
+ at the same time of year, every year."},"style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
756
+ American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
757
+ Amber\/Red Ale","description":"American amber\/red ales range from light copper
758
+ to light brown in color. They are characterized by American-variety hops used
759
+ to produce the perception of medium hop bitterness, flavor, and medium aroma.
760
+ Amber ales have medium-high to high maltiness with medium to low caramel character.
761
+ They should have medium to medium-high body. The style may have low levels
762
+ of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
763
+ at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
764
+ haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
613
765
  20:06:45"}},{"id":"uwlZj9","name":"Amber Ale","description":"There is no better
614
766
  way to celebrate the repeal of prohibition than with a cold glass of Tap Room
615
767
  No. 21 Amber Ale. No longer bound by law to secretly sip away in speakeasies,
@@ -681,10 +833,9 @@ http_interactions:
681
833
  are often used. Hop bitterness, flavor and aroma are negligible to very light.
682
834
  Light fruity esters are acceptable. Chill haze and diacetyl should be absent.","ibuMin":"5","ibuMax":"13","abvMin":"3.8","abvMax":"5","srmMin":"2","srmMax":"4","ogMin":"1.04","fgMin":"1.006","fgMax":"1.01","createDate":"2012-03-21
683
835
  20:06:46"}},{"id":"uIDjJP","name":"Amber Reign","description":"A malty amber
684
- ale.","abv":"5.5","ibu":"30","glasswareId":5,"availableId":1,"styleId":32,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
685
- 02:42:41","updateDate":"2012-03-22 13:05:13","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
686
- 02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
687
- year round as a staple beer."},"style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
836
+ ale.","abv":"5.5","ibu":"30","glasswareId":5,"availableId":2,"styleId":32,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
837
+ 02:42:41","updateDate":"2013-08-08 19:26:21","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
838
+ 02:41:33"},"available":{"id":2,"name":"Limited","description":"Limited availability."},"style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
688
839
  American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
689
840
  Amber\/Red Ale","description":"American amber\/red ales range from light copper
690
841
  to light brown in color. They are characterized by American-variety hops used
@@ -706,8 +857,9 @@ http_interactions:
706
857
  of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
707
858
  at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
708
859
  haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
709
- 20:06:45"}},{"id":"jtfHdd","name":"Amber Weizen","abv":"5.5","styleId":97,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
710
- 02:42:41","updateDate":"2012-03-22 13:04:35","style":{"id":97,"categoryId":8,"category":{"id":8,"name":"North
860
+ 20:06:45"}},{"id":"jtfHdd","name":"Amber Weizen","abv":"5.5","availableId":3,"styleId":97,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
861
+ 02:42:41","updateDate":"2013-08-14 18:37:45","available":{"id":3,"name":"Not
862
+ Available","description":"Beer is not available."},"style":{"id":97,"categoryId":8,"category":{"id":8,"name":"North
711
863
  American Lager","createDate":"2012-03-21 20:06:46"},"name":"American-Style
712
864
  Premium Lager","description":"This style has low malt (and adjunct) sweetness,
713
865
  is medium bodied, and should contain no or a low percentage (less than 25%)
@@ -715,175 +867,7 @@ http_interactions:
715
867
  may also be greater. Hop aroma and flavor is low or negligible. Light fruity
716
868
  esters are acceptable. Chill haze and diacetyl should be absent. Note: Some
717
869
  beers marketed as \"premium\" (based on price) may not fit this definition.","ibuMin":"6","ibuMax":"15","abvMin":"4.3","abvMax":"5","srmMin":"2","srmMax":"6","ogMin":"1.044","fgMin":"1.01","fgMax":"1.014","createDate":"2012-03-21
718
- 20:06:46"}},{"id":"dEE8py","name":"American Brown","description":"Brew a nice
719
- well balanced America Brown ale. Then Dry hop it like a IPA! with the new
720
- experimental hop #5256 and you get this beer. Amazing smell from the Chocolate
721
- malt and the hops. The finish is not to sweet so you can have a few.","abv":"5.5","styleId":37,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2013-07-14
722
- 01:11:27","updateDate":"2013-07-14 01:11:27","style":{"id":37,"categoryId":3,"category":{"id":3,"name":"North
723
- American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
724
- Brown Ale","description":"American brown ales range from deep copper to brown
725
- in color. Roasted malt caramel-like and chocolate-like characters should be
726
- of medium intensity in both flavor and aroma. American brown ales have evident
727
- low to medium hop flavor and aroma, medium to high hop bitterness, and a medium
728
- body. Estery and fruity-ester characters should be subdued. Diacetyl should
729
- not be perceived. Chill haze is allowable at cold temperatures.","ibuMin":"25","ibuMax":"45","abvMin":"4","abvMax":"6.4","srmMin":"15","srmMax":"26","ogMin":"1.04","fgMin":"1.01","fgMax":"1.018","createDate":"2012-03-21
730
- 20:06:46"}},{"id":"gBRhD6","name":"American Pale Ale","description":"A building
731
- is only as good as it''s foundation. That''s why we consider Pale Ale to
732
- be our bedrock. \r\n\r\nWe wanted to create a well balanced beer that anybody
733
- can enjoy. Our Pale Ale is a full-bodied ale that''s deep copper in color. The
734
- malty sweetness of the mash is offset by a generous amount of Magnum bittering
735
- hops. The remainder of the late addition hops contribute a delightful citrus\/floral
736
- note that will lighten anybody''s spirits.\r\n\r\nIt''s a great introduction
737
- for people who are interested in trying something other than the \u201cstandard\u201d
738
- beers in the marketplace.","abv":"5.5","ibu":"40","glasswareId":5,"srmId":7,"styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-08-12
739
- 11:32:20","updateDate":"2012-08-12 11:37:02","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
740
- 02:41:33"},"srm":{"id":7,"name":"7","hex":"F39C00"},"style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
741
- American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
742
- Pale Ale","description":"American pale ales range from deep golden to copper
743
- in color. The style is characterized by fruity, floral and citrus-like American-variety
744
- hop character producing medium to medium-high hop bitterness, flavor, and
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"}},{"id":"XGyAdI","name":"American Wheat","description":"The American
754
- Wheat Ale is a clean, refreshing golden ale made with Northwest Two-Row and
755
- White Wheat Malts. A low hop character allows the grain flavors to dominate.
756
- Served unfiltered with or without a citrus balance (lemon wedge). 5.5% Volume","abv":"5.5","glasswareId":5,"availableId":4,"styleId":112,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
757
- 02:42:42","updateDate":"2012-03-22 13:05:35","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
758
- 02:41:33"},"available":{"id":4,"name":"Seasonal","description":"Available
759
- at the same time of year, every year."},"style":{"id":112,"categoryId":11,"category":{"id":11,"name":"Hybrid\/mixed
760
- Beer","createDate":"2012-03-21 20:06:46"},"name":"Light American Wheat Ale
761
- or Lager with Yeast","description":"This beer can be made using either ale
762
- or lager yeast. It can be brewed with 30 to 75 percent wheat malt, and hop
763
- rates may be low to medium. Hop characters may be light to moderate in bitterness,
764
- flavor and aroma. Fruity-estery aroma and flavor are typical but at low levels
765
- however, phenolic, clove-like characteristics should not be perceived. Color
766
- is usually straw to light amber, and the body should be light to medium in
767
- character. Diacetyl should not be perceived. Because this style is served
768
- with yeast the character should portray a full yeasty mouthfeel and appear
769
- hazy to very cloudy. Chill haze is also acceptable. Yeast flavor and aroma
770
- should be low to medium but not overpowering the balance and character of
771
- malt and hops. These beers are typically served with the yeast in the bottle,
772
- and are cloudy when served.","ibuMin":"10","ibuMax":"35","abvMin":"3.5","abvMax":"5.5","srmMin":"4","srmMax":"10","ogMin":"1.036","fgMin":"1.006","fgMax":"1.018","createDate":"2012-03-21
773
- 20:06:46"}},{"id":"rZoPXp","name":"Anchor Bock","description":"The dark satiny
774
- texture of Anchor Bock\u00ae, with its rich hints of chocolate, caramel and
775
- roasted barley, is our interpretation of the strong German beers that signal
776
- the coming of spring.\r\n\r\nAnchor Bock\u00ae Beer is brewed from a complex
777
- blend of malts, and fresh, whole-cone hops. In the ancient bock tradition,
778
- the dark-colored brew is released in time for springtime celebrations. Bock
779
- beers are believed to have originated in the town of Einbeck, Germany and
780
- traditionally feature a goat on their labels. The term, \u201cbock\u201d occurs
781
- in several Germanic languages and roughly translates to \u201cbilly goat\u201d,
782
- but there are some unlikely alternatives. Followers of the zodiac have described
783
- it as a beer for Capricorn, the time when, as the days grow longer, brewers
784
- brew their bock beers in anticipation of the coming of spring.\r\n\r\nOver
785
- time, bock has come to mean a beer darker and stronger than a brewery''s \u201cregular\u201d
786
- brew. One with, you might say, the kick of a goat behind it.","abv":"5.5","glasswareId":5,"availableId":5,"styleId":88,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/rZoPXp\/upload_YBb1s2-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/rZoPXp\/upload_YBb1s2-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/rZoPXp\/upload_YBb1s2-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
787
- 02:42:42","updateDate":"2012-09-11 23:18:59","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
788
- 02:41:33"},"available":{"id":5,"name":"Spring","description":"Available during
789
- the spring months."},"style":{"id":88,"categoryId":7,"category":{"id":7,"name":"European-germanic
790
- Lager","createDate":"2012-03-21 20:06:46"},"name":"Traditional German-Style
791
- Bock","description":"Traditional bocks are made with all malt and are strong,
792
- malty, medium- to full-bodied, bottom-fermented beers with moderate hop bitterness
793
- that should increase proportionately with the starting gravity. Malt character
794
- should be a balance of sweetness and toasted\/nut-like malt; not caramel.
795
- Hop flavor should be low and hop aroma should be very low. Bocks can range
796
- in color from deep copper to dark brown. Fruity esters should be minimal.
797
- Diacetyl should be absent.","ibuMin":"20","ibuMax":"30","abvMin":"6.3","abvMax":"7.5","srmMin":"20","srmMax":"30","ogMin":"1.066","fgMin":"1.018","fgMax":"1.024","createDate":"2012-03-21
798
- 20:06:46"}},{"id":"rqTw6N","name":"Andes","abv":"5.5","styleId":94,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2013-05-02
799
- 23:32:31","updateDate":"2013-05-03 01:07:12","style":{"id":94,"categoryId":8,"category":{"id":8,"name":"North
800
- American Lager","createDate":"2012-03-21 20:06:46"},"name":"American-Style
801
- Light (Low Calorie) Lager","description":"These beers are extremely light
802
- colored, light in body, and high in carbonation. Calorie level should not
803
- exceed 125 per 12 ounce serving. Corn, rice, or other grain or sugar adjuncts
804
- are often used. Flavor is mild and hop bitterness and aroma is negligible
805
- to very low. Light fruity esters are acceptable. Chill haze and diacetyl should
806
- be absent.","ibuMin":"5","ibuMax":"10","abvMin":"3.5","abvMax":"4.4","srmMin":"2","srmMax":"4","ogMin":"1.024","fgMin":"1.002","fgMax":"1.008","createDate":"2012-03-21
807
- 20:06:46"}},{"id":"kgZB1G","name":"Anvil ESB","description":"Anvil ESB Ale
808
- was the first beer produced when the brewery opened, and remains our flagship
809
- ale.\r\n\r\nBright copper color with light tan head. Malty slightly hoppy
810
- aroma. Caramel and malty flavors with a perfect balance of imported English
811
- hops.","abv":"5.5","glasswareId":5,"availableId":1,"styleId":5,"isOrganic":"N","labels":{"icon":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/kgZB1G\/upload_DgFR9t-icon.png","medium":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/kgZB1G\/upload_DgFR9t-medium.png","large":"https:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/kgZB1G\/upload_DgFR9t-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
812
- 02:42:42","updateDate":"2012-09-29 21:49:10","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
813
- 02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
814
- year round as a staple beer."},"style":{"id":5,"categoryId":1,"category":{"id":1,"name":"British
815
- Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"Extra Special Bitter","description":"Extra
816
- special bitter possesses medium to strong hop aroma, flavor, and bitterness.
817
- The residual malt and defining sweetness of this richly flavored, full-bodied
818
- bitter is more pronounced than in other styles of bitter. It is light amber
819
- to copper colored with medium to medium-high bitterness. Mild carbonation
820
- traditionally characterizes draft-cask versions, but in bottled versions,
821
- a slight increase in carbon dioxide content is acceptable. Fruity-ester character
822
- is acceptable in aroma and flavor. Diacetyl (butterscotch character) is acceptable
823
- and characteristic when at very low levels. The absence of diacetyl is also
824
- acceptable. Chill haze is allowable at cold temperatures. English or American
825
- hops may be used. (English and American hop character may be specified in
826
- subcategories.)","ibuMin":"30","ibuMax":"45","abvMin":"4.8","abvMax":"5.8","srmMin":"8","srmMax":"14","ogMin":"1.046","fgMin":"1.01","fgMax":"1.016","createDate":"2012-03-21
827
- 20:06:45"}},{"id":"IgNzA4","name":"Apline Ale","description":"Our namesake
828
- ale represents everything a good, well balanced pale ale should be: malty
829
- but not too sweet, refreshing but not too bitter, full-bodied but not too
830
- heavy, lively but not over carbonated. A clean, everyday beer that leaves
831
- your palate begging for more.","abv":"5.5","ibu":"32","glasswareId":5,"availableId":1,"styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
832
- 02:42:42","updateDate":"2012-03-22 13:05:38","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
833
- 02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
834
- year round as a staple beer."},"style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
835
- American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
836
- Pale Ale","description":"American pale ales range from deep golden to copper
837
- in color. The style is characterized by fruity, floral and citrus-like American-variety
838
- hop character producing medium to medium-high hop bitterness, flavor, and
839
- aroma. Note that the \"traditional\" style of this beer has its origins with
840
- certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
841
- hop varietals. One or more of these hop characters is the perceived end, but
842
- the perceived hop characters may be a result of the skillful use of hops of
843
- other national origins. American pale ales have medium body and low to medium
844
- maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
845
- should be moderate to strong. Diacetyl should be absent or present at very
846
- 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
847
- 20:06:45"}},{"id":"ajBhPo","name":"Appalachian Amber Ale","description":"Thomas
848
- Creek Amber is a full-bodied ale with malty flavor, rich caramel color, and
849
- a smooth aromatic finish. \r\n\r\nMalts: 2 Row Pale, Carapils, Carmel 40,
850
- Carmel 60, Black Patent\r\nHops: Hallertauer, Tettenger, East Kent Golding\r\n\r\nSilver
851
- - 2008 Carolinas Championship of Beers\r\nGold - 2006 Carolinas Championship
852
- of Beers\r\nSilver - 2003 Carolinas Championship of Beers","abv":"5.5","ibu":"32","glasswareId":5,"availableId":1,"styleId":32,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
853
- 02:42:42","updateDate":"2012-03-22 13:05:34","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
854
- 02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
855
- year round as a staple beer."},"style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
856
- American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
857
- Amber\/Red Ale","description":"American amber\/red ales range from light copper
858
- to light brown in color. They are characterized by American-variety hops used
859
- to produce the perception of medium hop bitterness, flavor, and medium aroma.
860
- Amber ales have medium-high to high maltiness with medium to low caramel character.
861
- They should have medium to medium-high body. The style may have low levels
862
- of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
863
- at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
864
- haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
865
- 20:06:45"}},{"id":"N8OUuv","name":"Apricot Honey Wheat","description":"Great
866
- aroma and flavor","abv":"5.5","glasswareId":5,"availableId":1,"styleId":125,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
867
- 02:42:42","updateDate":"2012-03-22 13:05:11","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
868
- 02:41:33"},"available":{"id":1,"name":"Year Round","description":"Available
869
- year round as a staple beer."},"style":{"id":125,"categoryId":11,"category":{"id":11,"name":"Hybrid\/mixed
870
- Beer","createDate":"2012-03-21 20:06:46"},"name":"Specialty Beer","description":"These
871
- beers are brewed using unusual fermentable sugars, grains and starches that
872
- contribute to alcohol content other than, or in addition to, malted barley.
873
- Nuts generally have some degree of fermentables, thus beers brewed with nuts
874
- would appropriately be entered in this category. The distinctive characters
875
- of these special ingredients should be evident either in the aroma, flavor
876
- or overall balance of the beer, but not necessarily in overpowering quantities.
877
- For example, maple syrup or potatoes would be considered unusual. Rice, corn,
878
- or wheat are not considered unusual. Special ingredients must be listed when
879
- competing. A statement by the brewer explaining the special nature of the
880
- beer, ingredient(s) and achieved character is essential in order for fair
881
- assessment in competitions. If this beer is a classic style with some specialty
882
- ingredient(s), the brewer should also specify the classic style. Guidelines
883
- for competing: Spiced beers using unusual fermentables should be entered in
884
- the experimental category. Fruit beers using unusual fermentables should be
885
- entered in the fruit beer category.","ibuMax":"100","abvMin":"2.5","abvMax":"25","srmMin":"1","srmMax":"100","ogMin":"1.03","fgMin":"1.006","fgMax":"1.03","createDate":"2012-03-21
886
870
  20:06:46"}}],"status":"success"}'
887
871
  http_version:
888
- recorded_at: Mon, 22 Jul 2013 00:05:47 GMT
872
+ recorded_at: Mon, 31 Mar 2014 20:13:21 GMT
889
873
  recorded_with: VCR 2.4.0