brewery_db 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. data/.gitignore +20 -0
  2. data/.rspec +2 -0
  3. data/Gemfile +3 -0
  4. data/LICENSE +22 -0
  5. data/README.md +93 -0
  6. data/Rakefile +3 -0
  7. data/brewery_db.gemspec +22 -0
  8. data/lib/brewery_db.rb +36 -0
  9. data/lib/brewery_db/client.rb +36 -0
  10. data/lib/brewery_db/config.rb +21 -0
  11. data/lib/brewery_db/resource.rb +36 -0
  12. data/lib/brewery_db/resources/beers.rb +13 -0
  13. data/lib/brewery_db/resources/breweries.rb +13 -0
  14. data/lib/brewery_db/resources/categories.rb +13 -0
  15. data/lib/brewery_db/resources/glassware.rb +13 -0
  16. data/lib/brewery_db/resources/search.rb +25 -0
  17. data/lib/brewery_db/resources/styles.rb +13 -0
  18. data/lib/brewery_db/response.rb +18 -0
  19. data/lib/brewery_db/version.rb +3 -0
  20. data/spec/brewery_db/client_spec.rb +44 -0
  21. data/spec/brewery_db/config_spec.rb +54 -0
  22. data/spec/brewery_db/resource_spec.rb +33 -0
  23. data/spec/brewery_db/resources/beers_spec.rb +93 -0
  24. data/spec/brewery_db/resources/breweries_spec.rb +65 -0
  25. data/spec/brewery_db/resources/categories_spec.rb +49 -0
  26. data/spec/brewery_db/resources/glassware_spec.rb +47 -0
  27. data/spec/brewery_db/resources/search_spec.rb +72 -0
  28. data/spec/brewery_db/resources/styles_spec.rb +83 -0
  29. data/spec/brewery_db/response_spec.rb +19 -0
  30. data/spec/brewery_db_spec.rb +18 -0
  31. data/spec/fixtures/beers.yml +445 -0
  32. data/spec/fixtures/breweries.yml +409 -0
  33. data/spec/fixtures/categories.yml +102 -0
  34. data/spec/fixtures/glassware.yml +65 -0
  35. data/spec/fixtures/search.yml +314 -0
  36. data/spec/fixtures/styles.yml +317 -0
  37. data/spec/spec_helper.rb +16 -0
  38. data/spec/support/shared/a_resource.rb +11 -0
  39. data/spec/support/vcr.rb +6 -0
  40. metadata +183 -0
@@ -0,0 +1,65 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.brewerydb.com/v2/glassware?key=<%= api_key %>
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - BreweryDB Ruby Gem 0.0.1
12
+ response:
13
+ status:
14
+ code: 200
15
+ message:
16
+ headers:
17
+ date:
18
+ - Thu, 05 Apr 2012 15:54:22 GMT
19
+ server:
20
+ - Apache/2.2.21 (Amazon)
21
+ x-powered-by:
22
+ - PHP/5.3.10
23
+ content-length:
24
+ - '974'
25
+ connection:
26
+ - close
27
+ content-type:
28
+ - application/json
29
+ body:
30
+ encoding: US-ASCII
31
+ string: ! '{"message":"Request Successful","data":[{"id":1,"name":"Flute","createDate":"2012-01-03 02:41:33"},{"id":2,"name":"Goblet","createDate":"2012-01-03 02:41:33"},{"id":3,"name":"Mug","createDate":"2012-01-03 02:41:33"},{"id":4,"name":"Pilsner","createDate":"2012-01-03 02:41:33"},{"id":5,"name":"Pint","createDate":"2012-01-03 02:41:33"},{"id":6,"name":"Snifter","createDate":"2012-01-03 02:41:33"},{"id":7,"name":"Stange","createDate":"2012-01-03 02:41:33"},{"id":8,"name":"Tulip","createDate":"2012-01-03 02:41:33"},{"id":9,"name":"Weizen","createDate":"2012-01-03 02:41:33"},{"id":10,"name":"Oversized Wine Glass","createDate":"2012-01-03 02:41:33"},{"id":11,"name":"Bottle","createDate":"2012-01-03 02:41:33"},{"id":12,"name":"Can","createDate":"2012-01-03 02:41:33"},{"id":13,"name":"Willi","createDate":"2012-01-03 02:41:33"},{"id":14,"name":"Thistle","createDate":"2012-01-03 02:41:33"},{"id":15,"name":"Tall Mug","createDate":"2012-01-03 02:41:33"}],"status":"success"}'
32
+ http_version:
33
+ recorded_at: Thu, 05 Apr 2012 15:54:23 GMT
34
+ - request:
35
+ method: get
36
+ uri: http://api.brewerydb.com/v2/glass/1?key=<%= api_key %>
37
+ body:
38
+ encoding: US-ASCII
39
+ string: ''
40
+ headers:
41
+ User-Agent:
42
+ - BreweryDB Ruby Gem 0.0.1
43
+ response:
44
+ status:
45
+ code: 200
46
+ message:
47
+ headers:
48
+ date:
49
+ - Thu, 05 Apr 2012 15:56:06 GMT
50
+ server:
51
+ - Apache/2.2.21 (Amazon)
52
+ x-powered-by:
53
+ - PHP/5.3.10
54
+ content-length:
55
+ - '117'
56
+ connection:
57
+ - close
58
+ content-type:
59
+ - application/json
60
+ body:
61
+ encoding: US-ASCII
62
+ string: ! '{"message":"Request Successful","data":{"id":1,"name":"Flute","createDate":"2012-01-03 02:41:33"},"status":"success"}'
63
+ http_version:
64
+ recorded_at: Thu, 05 Apr 2012 15:56:07 GMT
65
+ recorded_with: VCR 2.0.0
@@ -0,0 +1,314 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.brewerydb.com/v2/search?key=<%= api_key %>&q=IPA
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - BreweryDB Ruby Gem 0.0.1
12
+ response:
13
+ status:
14
+ code: 200
15
+ message:
16
+ headers:
17
+ date:
18
+ - Thu, 05 Apr 2012 16:30:03 GMT
19
+ server:
20
+ - Apache/2.2.21 (Amazon)
21
+ x-powered-by:
22
+ - PHP/5.3.10
23
+ x-ratelimit-limit:
24
+ - Unlimited
25
+ x-ratelimit-remaining:
26
+ - Unlimited
27
+ connection:
28
+ - close
29
+ transfer-encoding:
30
+ - chunked
31
+ content-type:
32
+ - application/json
33
+ body:
34
+ encoding: US-ASCII
35
+ string: ! '{"currentPage":1,"numberOfPages":14,"data":[{"id":"ZnS2BI","name":"IPA","abv":"6","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
36
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
37
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
38
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
39
+ 04:00:04"}},{"id":"AKui0J","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
40
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
41
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
42
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
43
+ 04:00:04"}},{"id":"D5wMbK","name":"IPA","abv":"6.9","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
44
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
45
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
46
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
47
+ 04:00:04"}},{"id":"Te6IBQ","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
48
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
49
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
50
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
51
+ 04:00:04"}},{"id":"E09Awy","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
52
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
53
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
54
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
55
+ 04:00:04"}},{"id":"lpOvQw","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
56
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
57
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
58
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
59
+ 04:00:04"}},{"id":"REXjKC","name":"IPA","description":"A hophead''s delight!
60
+ Our proud flagship ale, big and flowery with a long and lingering finish.","abv":"7.2","glasswareId":5,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
61
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"available":{"name":"Year
62
+ Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
63
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
64
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
65
+ 04:00:04"}},{"id":"A0GdgI","name":"IPA","description":"Brewed with Centennial,
66
+ Galena and Ahtanum for dry hopping, this unfiltered American-style IPA packs
67
+ a big hop character from start to finish. Big floral\/citrus aroma with a
68
+ satisfying hop bitterness.","abv":"7.3","ibu":"89","glasswareId":5,"availableId":4,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
69
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"available":{"name":"Seasonal","description":"Available
70
+ at the same time of year, every year."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
71
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
72
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
73
+ 04:00:04"}},{"id":"aRZUOu","name":"IPA","description":"Authentic India Pale
74
+ Ale\r\nWild Rose IPA (India Pale Ale) is a beautiful copper- coloured ale,
75
+ rich in caramel malt character and well balanced with plenty of hops.\r\n\r\nAn
76
+ authentic India Pale Ale, this IPA is handcrafted for the true ale drinker.","abv":"6","ibu":"45","glasswareId":5,"srmId":15,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
77
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"srm":{"name":"15","hex":"BB5100"},"available":{"name":"Year
78
+ Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
79
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
80
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
81
+ 04:00:04"}},{"id":"LM6Ms8","name":"IPA","description":"This unique India Pale
82
+ Ale features our favorite hops\u2014Simcoe\u00ae, Amarillo\u00ae and Nugget.
83
+ A generous Amarillo and Simcoe dry hop provide for an assertive, hop-forward
84
+ nose and front palate. We don\u2019t use traditional bittering hops in our
85
+ IPA, providing nothing but stimulating citrus and floral characteristics.\r\n\r\nInspired
86
+ by a recipe from our good friend and fellow homebrewer Tim from the North
87
+ Shore Homebrewers Club.","abv":"7.2","ibu":"76","glasswareId":5,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
88
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"available":{"name":"Year
89
+ Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
90
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
91
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
92
+ 04:00:04"}},{"id":"aQF1Am","name":"IPA","description":"Copper in color with
93
+ herbal and earthy hops being most prevalent. Light caramel flavors balance
94
+ out this unique ale. Hop lovers will enjoy this unfiltered, dry-hopped IPA","abv":"7.2","ibu":"64","glasswareId":5,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
95
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"available":{"name":"Year
96
+ Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
97
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
98
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
99
+ 04:00:04"}},{"id":"DfkpX8","name":"IPA","description":"OUR FLAGSHIP BEER,
100
+ the one for which we''re known throughout the Puget Sound. Copper-colored
101
+ with a malty character up front. Intensely bitter with hits of grapefruit
102
+ & cedar imparted by multiple heavy-handed additions of Galena & Columbus hops.","abv":"6.2","ibu":"40","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
103
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
104
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
105
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
106
+ 04:00:04"}},{"id":"k6clFa","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
107
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
108
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
109
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
110
+ 04:00:04"}},{"id":"PQ86cu","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
111
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
112
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
113
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
114
+ 04:00:04"}},{"id":"3j7wWa","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
115
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
116
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
117
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
118
+ 04:00:04"}},{"id":"4HbwEG","name":"IPA","abv":"7.5","ibu":"75","glasswareId":5,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
119
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
120
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
121
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
122
+ 04:00:04"}},{"id":"KMG60Y","name":"IPA","glasswareId":5,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
123
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
124
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
125
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
126
+ 04:00:04"}},{"id":"u2Kgjt","name":"IPA","glasswareId":5,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
127
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
128
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
129
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
130
+ 04:00:04"}},{"id":"LnSe22","name":"IPA","abv":"7","glasswareId":5,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
131
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
132
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
133
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
134
+ 04:00:04"}},{"id":"oLPyDs","name":"IPA","description":"Characterized by its
135
+ intense hop profile, flavor and aroma, this beer has medium alcohol content. It
136
+ is further characterized by its fruity, floral and citrus-like hop character. It
137
+ is crisp and dry and deep copper in color.","abv":"5.7","glasswareId":5,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
138
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"available":{"name":"Year
139
+ Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
140
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
141
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
142
+ 04:00:04"}},{"id":"WqUDwL","name":"IPA","abv":"5.5","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
143
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
144
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
145
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
146
+ 04:00:04"}},{"id":"NxqoHT","name":"IPA","abv":"6.7","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
147
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
148
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
149
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
150
+ 04:00:04"}},{"id":"OmQA7B","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
151
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
152
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
153
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
154
+ 04:00:04"}},{"id":"1jquVJ","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
155
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
156
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
157
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
158
+ 04:00:04"}},{"id":"VMDDki","name":"IPA","description":"A Northwest style IPA
159
+ utilizing locally grown hops with plenty of malt backbone to give a smooth
160
+ and pleasant finish.","abv":"6.5","ibu":"75","glasswareId":5,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
161
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"available":{"name":"Year
162
+ Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
163
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
164
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
165
+ 04:00:04"}},{"id":"RW7LU4","name":"IPA","description":"A honey-amber colored
166
+ India Pale Ale with good body, fairly strong alcohol content and an aggressive
167
+ \"fresh hop\" quality. This is a very refreshing beer that can be enjoyed
168
+ by itself for its many interesting flavor highlights.","abv":"7","glasswareId":5,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
169
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
170
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
171
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
172
+ 04:00:04"}},{"id":"FqiIIA","name":"IPA","abv":"6.8","glasswareId":5,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
173
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
174
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
175
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
176
+ 04:00:04"}},{"id":"FPM18G","name":"IPA","description":"A complex, layered
177
+ hop mixture makes this a well rounded IPA with strong grapefruit and pine
178
+ flavors with a hint of pepper. This beer has great head retention and strong
179
+ hop aroma. 2010 New Mexico State Fair Winner: Bronze in the IPA category","abv":"5.8","ibu":"78","glasswareId":5,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
180
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"available":{"name":"Year
181
+ Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
182
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
183
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
184
+ 04:00:04"}},{"id":"3t4OKK","name":"IPA","description":"A smooth amber malt
185
+ Cascading with hops. It''s an East Coast style with a European touch that
186
+ packs a real punch.","glasswareId":5,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
187
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"available":{"name":"Year
188
+ Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
189
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
190
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
191
+ 04:00:04"}},{"id":"XCcYIC","name":"IPA","abv":"5.5","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
192
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
193
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
194
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
195
+ 04:00:04"}},{"id":"1SHILR","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
196
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
197
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
198
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
199
+ 04:00:04"}},{"id":"ghDvWm","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
200
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
201
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
202
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
203
+ 04:00:04"}},{"id":"zNWabw","name":"IPA","glasswareId":5,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
204
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"available":{"name":"Year
205
+ Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
206
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
207
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
208
+ 04:00:04"}},{"id":"IuEWZI","name":"IPA","description":"We took the traditional
209
+ IPA, originally shipped from England to India in the 1700''s, and made it
210
+ bolder and more flavorful \u2013 American Style. We\u2019ve added new varieties
211
+ of highly aromatic American hops to create a distinctive bitterness profile
212
+ and an incredible hop character.","abv":"7","ibu":"60","glasswareId":5,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
213
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"available":{"name":"Year
214
+ Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
215
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
216
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
217
+ 04:00:04"}},{"id":"MPGoo2","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
218
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
219
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
220
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
221
+ 04:00:04"}},{"id":"XOYhw8","name":"IPA","abv":"5.5","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
222
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
223
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
224
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
225
+ 04:00:04"}},{"id":"8MiQIz","name":"IPA","description":"Deep golden to light
226
+ amber color, and a nice off-white head, with good retention when properly
227
+ served. Starts off with pleasantly strong hop flavors, balanced by a firm
228
+ malt backdrop, then fades to a dry finish with a lingering hoppiness.\r\n\r\nMedium
229
+ straw color, pale tan head. Rich malty aroma with a HUGE dose of hops. Medium-full
230
+ body with sweet malty flavors and a delicious abundance of aromatic a bittering
231
+ hops.","abv":"7.25","glasswareId":5,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
232
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"available":{"name":"Year
233
+ Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
234
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
235
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
236
+ 04:00:04"}},{"id":"NJTd9g","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
237
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
238
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
239
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
240
+ 04:00:04"}},{"id":"jbN0Vl","name":"IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
241
+ 04:01:50","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
242
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
243
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
244
+ 04:00:04"}},{"id":"iLRNW9","name":"IPA","description":"This is our unique
245
+ version of an ancient style. A style as old as the ocean trade routes of the
246
+ last centuries Great Ships. Not as old as the equator they had to cross twice
247
+ enroute, nor as old as the 10,000 or so miles of Di-Hydrogen Oxide and Sodium
248
+ upon which they sailed, but older than the Circulithium-4 Lentloid that binds
249
+ the Lupulin Quartnate onto your taste buds. Weird. Think about it. Now stop.
250
+ OK, go again, now stop. Think again, and stop. But we digress. Made with 43
251
+ different hops and 65 various malts, this redolent ale will likely float your
252
+ boat, whatever planet you''re on.","abv":"5.7","glasswareId":5,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
253
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"available":{"name":"Year
254
+ Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
255
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
256
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
257
+ 04:00:04"}},{"id":"KO04wZ","name":"IPA","description":"Not for the faint of
258
+ heart. True India Pale Ales had to withstand long sea voyages before quenching
259
+ the thirst of cranky British troops stationed in India. Our IPA is true to
260
+ this style, it\u2019s bracing, bitter and higher in alcohol (6.5%alc.\/vol)
261
+ and made with the trademark Propeller quality. It\u2019s full-bodied ale for
262
+ full throttle beer lovers!","abv":"6.5","ibu":"68","glasswareId":5,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
263
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"available":{"name":"Year
264
+ Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
265
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
266
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
267
+ 04:00:04"}},{"id":"Z4GPxL","name":"IPA","glasswareId":5,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
268
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
269
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
270
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
271
+ 04:00:04"}},{"id":"v2qCDX","name":"IPA","glasswareId":5,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
272
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
273
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
274
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
275
+ 04:00:04"}},{"id":"TP5gNL","name":"IPA","description":"The Big Up Music &
276
+ Arts Festival","glasswareId":5,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
277
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
278
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
279
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
280
+ 04:00:04"}},{"id":"TlE0jC","name":"IPA","abv":"6.2","ibu":"60","glasswareId":5,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
281
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
282
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
283
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
284
+ 04:00:04"}},{"id":"ClhnzC","name":"IPA","abv":"7.5","glasswareId":5,"styleId":48,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
285
+ 04:01:50","glass":{"id":5,"name":"Pint","createDate":"2012-04-05 04:00:04"},"style":{"id":48,"categoryId":14,"category":{"id":14,"name":"India
286
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"A","name":"English
287
+ IPA","simpleUrl":"english-ipa","ibuMin":"40","ibuMax":"60","abvMin":"5","abvMax":"7.5","srmMin":"8","srmMax":"14","ogMin":"1.05","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
288
+ 04:00:04"}},{"id":"MAVvu8","name":"Duke IPA","abv":"5.1","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
289
+ 04:01:32","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
290
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
291
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
292
+ 04:00:04"}},{"id":"rABJb6","name":"Centennial IPA","description":"Selected
293
+ as a benchmark for the Beer Judge Certification Program used in all American
294
+ based beer judging. Centennial IPA has quickly become the IPA of choice. Pour
295
+ yourself a pint of this complex flavorful ale and bask in the frothy head''s
296
+ floral bouquet. Relish the immense citrus accents, achieved by the abundance
297
+ of dry hopping. This ale''s sweet, malty undertones balance the hop character
298
+ with a finish that never turns too bitter.","abv":"7.2","ibu":"65","availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
299
+ 04:01:23","available":{"name":"Year Round","description":"Available year round
300
+ as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
301
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
302
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
303
+ 04:00:04"}},{"id":"cq3IwB","name":"Imperial IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
304
+ 04:01:48","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
305
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
306
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
307
+ 04:00:04"}},{"id":"WiRXsK","name":"Underground IPA","styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-05
308
+ 04:02:40","style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
309
+ Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-05 04:00:04"},"bjcpSubcategory":"B","name":"American
310
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-05
311
+ 04:00:04"}}],"status":"success"}'
312
+ http_version:
313
+ recorded_at: Thu, 05 Apr 2012 16:30:03 GMT
314
+ recorded_with: VCR 2.0.0
@@ -0,0 +1,317 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.brewerydb.com/v2/styles?key=<%= api_key %>
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - BreweryDB Ruby Gem 0.0.1
12
+ response:
13
+ status:
14
+ code: 200
15
+ message:
16
+ headers:
17
+ date:
18
+ - Wed, 04 Apr 2012 15:25:02 GMT
19
+ server:
20
+ - Apache/2.2.21 (Amazon)
21
+ x-powered-by:
22
+ - PHP/5.3.10
23
+ x-ratelimit-limit:
24
+ - Unlimited
25
+ x-ratelimit-remaining:
26
+ - Unlimited
27
+ connection:
28
+ - close
29
+ transfer-encoding:
30
+ - chunked
31
+ content-type:
32
+ - application/json
33
+ body:
34
+ encoding: US-ASCII
35
+ string: ! '{"message":"Request Successful","data":[{"id":1,"categoryId":1,"category":{"id":1,"name":"Light
36
+ Lager","bjcpCategory":"1","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Lite
37
+ American Lager","simpleUrl":"lite-american-lager","ibuMin":"8","ibuMax":"12","abvMin":"2.8","abvMax":"4.2","srmMin":"2","srmMax":"3","ogMin":"1.028","ogMax":"1.04","fgMin":"0.998","fgMax":"1.008","createDate":"2012-04-04
38
+ 04:00:04"},{"id":2,"categoryId":1,"category":{"id":1,"name":"Light Lager","bjcpCategory":"1","createDate":"2012-04-04
39
+ 04:00:04"},"bjcpSubcategory":"B","name":"Standard American Lager","simpleUrl":"standard-american-lager","ibuMin":"8","ibuMax":"15","abvMin":"4.2","abvMax":"5.3","srmMin":"2","srmMax":"4","ogMin":"1.04","ogMax":"1.05","fgMin":"1.004","fgMax":"1.01","createDate":"2012-04-04
40
+ 04:00:04"},{"id":3,"categoryId":1,"category":{"id":1,"name":"Light Lager","bjcpCategory":"1","createDate":"2012-04-04
41
+ 04:00:04"},"bjcpSubcategory":"C","name":"Premium American Lager","simpleUrl":"premium-american-lager","ibuMin":"15","ibuMax":"25","abvMin":"4.6","abvMax":"6","srmMin":"2","srmMax":"6","ogMin":"1.046","ogMax":"1.056","fgMin":"1.008","fgMax":"1.012","createDate":"2012-04-04
42
+ 04:00:04"},{"id":4,"categoryId":1,"category":{"id":1,"name":"Light Lager","bjcpCategory":"1","createDate":"2012-04-04
43
+ 04:00:04"},"bjcpSubcategory":"D","name":"Munich Helles","simpleUrl":"munich-helles","ibuMin":"16","ibuMax":"22","abvMin":"4.7","abvMax":"5.4","srmMin":"3","srmMax":"5","ogMin":"1.045","ogMax":"1.051","fgMin":"1.008","fgMax":"1.012","createDate":"2012-04-04
44
+ 04:00:04"},{"id":5,"categoryId":1,"category":{"id":1,"name":"Light Lager","bjcpCategory":"1","createDate":"2012-04-04
45
+ 04:00:04"},"bjcpSubcategory":"E","name":"Dortmunder Export","simpleUrl":"dortmunder-export","ibuMin":"23","ibuMax":"30","abvMin":"4.8","abvMax":"6","srmMin":"4","srmMax":"6","ogMin":"1.048","ogMax":"1.056","fgMin":"1.01","fgMax":"1.015","createDate":"2012-04-04
46
+ 04:00:04"},{"id":6,"categoryId":2,"category":{"id":2,"name":"Pilsner","bjcpCategory":"2","createDate":"2012-04-04
47
+ 04:00:04"},"bjcpSubcategory":"A","name":"German Pilsner (Pils)","simpleUrl":"german-pilsner","ibuMin":"25","ibuMax":"45","abvMin":"4.4","abvMax":"5.2","srmMin":"2","srmMax":"5","ogMin":"1.044","ogMax":"1.05","fgMin":"1.008","fgMax":"1.013","createDate":"2012-04-04
48
+ 04:00:04"},{"id":7,"categoryId":2,"category":{"id":2,"name":"Pilsner","bjcpCategory":"2","createDate":"2012-04-04
49
+ 04:00:04"},"bjcpSubcategory":"B","name":"Bohemian Pilsener","simpleUrl":"bohemian-pilsener","ibuMin":"35","ibuMax":"45","abvMin":"4.2","abvMax":"5.4","srmMin":"4","srmMax":"6","ogMin":"1.044","ogMax":"1.056","fgMin":"1.013","fgMax":"1.017","createDate":"2012-04-04
50
+ 04:00:04"},{"id":8,"categoryId":2,"category":{"id":2,"name":"Pilsner","bjcpCategory":"2","createDate":"2012-04-04
51
+ 04:00:04"},"bjcpSubcategory":"C","name":"Classic American Pilsner","simpleUrl":"classic-american-pilsner","ibuMin":"25","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"3","srmMax":"6","ogMin":"1.044","ogMax":"1.06","fgMin":"1.01","fgMax":"1.015","createDate":"2012-04-04
52
+ 04:00:04"},{"id":9,"categoryId":3,"category":{"id":3,"name":"European Amber
53
+ Lager","bjcpCategory":"3","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Vienna
54
+ Lager","simpleUrl":"vienna-lager","ibuMin":"18","ibuMax":"30","abvMin":"4.5","abvMax":"5.5","srmMin":"10","srmMax":"16","ogMin":"1.046","ogMax":"1.052","fgMin":"1.01","fgMax":"1.014","createDate":"2012-04-04
55
+ 04:00:04"},{"id":10,"categoryId":3,"category":{"id":3,"name":"European Amber
56
+ Lager","bjcpCategory":"3","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"Oktoberfest\/M\u00e4rzen","simpleUrl":"oktoberfest-marzen","ibuMin":"20","ibuMax":"28","abvMin":"4.8","abvMax":"5.7","srmMin":"7","srmMax":"14","ogMin":"1.05","ogMax":"1.057","fgMin":"1.012","fgMax":"1.016","createDate":"2012-04-04
57
+ 04:00:04"},{"id":11,"categoryId":4,"category":{"id":4,"name":"Dark Lager","bjcpCategory":"4","createDate":"2012-04-04
58
+ 04:00:04"},"bjcpSubcategory":"A","name":"Dark American Lager","simpleUrl":"dark-american-lager","ibuMin":"8","ibuMax":"20","abvMin":"4.2","abvMax":"6","srmMin":"14","srmMax":"22","ogMin":"1.044","ogMax":"1.056","fgMin":"1.008","fgMax":"1.012","createDate":"2012-04-04
59
+ 04:00:04"},{"id":12,"categoryId":4,"category":{"id":4,"name":"Dark Lager","bjcpCategory":"4","createDate":"2012-04-04
60
+ 04:00:04"},"bjcpSubcategory":"B","name":"Munich Dunkel","simpleUrl":"munich-dunkel","ibuMin":"18","ibuMax":"28","abvMin":"4.5","abvMax":"5.6","srmMin":"14","srmMax":"28","ogMin":"1.048","ogMax":"1.056","fgMin":"1.01","fgMax":"1.016","createDate":"2012-04-04
61
+ 04:00:04"},{"id":13,"categoryId":4,"category":{"id":4,"name":"Dark Lager","bjcpCategory":"4","createDate":"2012-04-04
62
+ 04:00:04"},"bjcpSubcategory":"C","name":"Schwarzbier","simpleUrl":"schwarzbier","ibuMin":"22","ibuMax":"32","abvMin":"4.4","abvMax":"5.4","srmMin":"17","srmMax":"30","ogMin":"1.046","ogMax":"1.052","fgMin":"1.01","fgMax":"1.016","createDate":"2012-04-04
63
+ 04:00:04"},{"id":14,"categoryId":5,"category":{"id":5,"name":"Bock","bjcpCategory":"5","createDate":"2012-04-04
64
+ 04:00:04"},"bjcpSubcategory":"A","name":"Maibock\/Helles Bock","simpleUrl":"maibock\/helles-bock","ibuMin":"23","ibuMax":"35","abvMin":"6.3","abvMax":"7.4","srmMin":"6","srmMax":"11","ogMin":"1.064","ogMax":"1.072","fgMin":"1.011","fgMax":"1.018","createDate":"2012-04-04
65
+ 04:00:04"},{"id":15,"categoryId":5,"category":{"id":5,"name":"Bock","bjcpCategory":"5","createDate":"2012-04-04
66
+ 04:00:04"},"bjcpSubcategory":"B","name":"Traditional Bock","simpleUrl":"traditional-bock","ibuMin":"20","ibuMax":"27","abvMin":"6.3","abvMax":"7.2","srmMin":"14","srmMax":"22","ogMin":"1.064","ogMax":"1.072","fgMin":"1.013","fgMax":"1.019","createDate":"2012-04-04
67
+ 04:00:04"},{"id":16,"categoryId":5,"category":{"id":5,"name":"Bock","bjcpCategory":"5","createDate":"2012-04-04
68
+ 04:00:04"},"bjcpSubcategory":"C","name":"Doppelbock","simpleUrl":"doppelbock","ibuMin":"16","ibuMax":"26","abvMin":"7","abvMax":"10","srmMin":"6","srmMax":"25","ogMin":"1.072","ogMax":"1.112","fgMin":"1.016","fgMax":"1.024","createDate":"2012-04-04
69
+ 04:00:04"},{"id":17,"categoryId":5,"category":{"id":5,"name":"Bock","bjcpCategory":"5","createDate":"2012-04-04
70
+ 04:00:04"},"bjcpSubcategory":"D","name":"Eisbock","simpleUrl":"eisbock","ibuMin":"25","ibuMax":"35","abvMin":"9","abvMax":"14","srmMin":"18","srmMax":"30","ogMin":"1.078","ogMax":"1.12","fgMin":"1.02","fgMax":"1.035","createDate":"2012-04-04
71
+ 04:00:04"},{"id":18,"categoryId":6,"category":{"id":6,"name":"Light Hybrid
72
+ Beer","bjcpCategory":"6","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Cream
73
+ Ale","simpleUrl":"cream-ale","ibuMin":"15","ibuMax":"20","abvMin":"4.2","abvMax":"5.6","srmMin":"3","srmMax":"5","ogMin":"1.042","ogMax":"1.055","fgMin":"1.006","fgMax":"1.012","createDate":"2012-04-04
74
+ 04:00:04"},{"id":19,"categoryId":6,"category":{"id":6,"name":"Light Hybrid
75
+ Beer","bjcpCategory":"6","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"Blonde
76
+ Ale","simpleUrl":"blonde-ale","ibuMin":"15","ibuMax":"28","abvMin":"3.8","abvMax":"5.5","srmMin":"3","srmMax":"6","ogMin":"1.038","ogMax":"1.054","fgMin":"1.008","fgMax":"1.013","createDate":"2012-04-04
77
+ 04:00:04"},{"id":20,"categoryId":6,"category":{"id":6,"name":"Light Hybrid
78
+ Beer","bjcpCategory":"6","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"K\u00f6lsch","simpleUrl":"kolsch","ibuMin":"20","ibuMax":"30","abvMin":"4.4","abvMax":"5.2","srmMin":"4","srmMax":"5","ogMin":"1.044","ogMax":"1.05","fgMin":"1.007","fgMax":"1.011","createDate":"2012-04-04
79
+ 04:00:04"},{"id":21,"categoryId":6,"category":{"id":6,"name":"Light Hybrid
80
+ Beer","bjcpCategory":"6","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"D","name":"American
81
+ Wheat or Rye Beer","simpleUrl":"american-wheat-or-rye-beer","ibuMin":"15","ibuMax":"30","abvMin":"4","abvMax":"5.5","srmMin":"3","srmMax":"6","ogMin":"1.04","ogMax":"1.055","fgMin":"1.008","fgMax":"1.013","createDate":"2012-04-04
82
+ 04:00:04"},{"id":22,"categoryId":7,"category":{"id":7,"name":"Amber Hybrid
83
+ Beer","bjcpCategory":"7","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"North
84
+ German Altbier","simpleUrl":"north-german-altbier","ibuMin":"25","ibuMax":"40","abvMin":"4.5","abvMax":"5.2","srmMin":"13","srmMax":"19","ogMin":"1.046","ogMax":"1.054","fgMin":"1.01","fgMax":"1.015","createDate":"2012-04-04
85
+ 04:00:04"},{"id":23,"categoryId":7,"category":{"id":7,"name":"Amber Hybrid
86
+ Beer","bjcpCategory":"7","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"California
87
+ Common Beer","simpleUrl":"california-common-beer","ibuMin":"30","ibuMax":"45","abvMin":"4.5","abvMax":"5.5","srmMin":"10","srmMax":"14","ogMin":"1.048","ogMax":"1.054","fgMin":"1.011","fgMax":"1.014","createDate":"2012-04-04
88
+ 04:00:04"},{"id":24,"categoryId":7,"category":{"id":7,"name":"Amber Hybrid
89
+ Beer","bjcpCategory":"7","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"D\u00fcsseldorf
90
+ Altbier","simpleUrl":"dusseldorf-altbier","ibuMin":"35","ibuMax":"50","abvMin":"4.5","abvMax":"5.2","srmMin":"11","srmMax":"17","ogMin":"1.046","ogMax":"1.054","fgMin":"1.01","fgMax":"1.015","createDate":"2012-04-04
91
+ 04:00:04"},{"id":25,"categoryId":8,"category":{"id":8,"name":"English Pale
92
+ Ale","bjcpCategory":"8","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Standard\/Ordinary
93
+ Bitter","simpleUrl":"standard-ordinary-bitter","ibuMin":"25","ibuMax":"35","abvMin":"3.2","abvMax":"3.8","srmMin":"4","srmMax":"14","ogMin":"1.032","ogMax":"1.04","fgMin":"1.007","fgMax":"1.011","createDate":"2012-04-04
94
+ 04:00:04"},{"id":26,"categoryId":8,"category":{"id":8,"name":"English Pale
95
+ Ale","bjcpCategory":"8","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"Special\/Best\/Premium
96
+ Bitter","simpleUrl":"special-best-premium-bitter","ibuMin":"25","ibuMax":"40","abvMin":"3.8","abvMax":"4.6","srmMin":"5","srmMax":"16","ogMin":"1.04","ogMax":"1.048","fgMin":"1.008","fgMax":"1.012","createDate":"2012-04-04
97
+ 04:00:04"},{"id":27,"categoryId":8,"category":{"id":8,"name":"English Pale
98
+ Ale","bjcpCategory":"8","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"Extra
99
+ Special\/Strong Bitter (English Pale Ale)","simpleUrl":"extra-special-strong-bitter-english-pale-ale","ibuMin":"30","ibuMax":"50","abvMin":"4.6","abvMax":"6.2","srmMin":"6","srmMax":"18","ogMin":"1.048","ogMax":"1.06","fgMin":"1.01","fgMax":"1.016","createDate":"2012-04-04
100
+ 04:00:04"},{"id":28,"categoryId":9,"category":{"id":9,"name":"Scottish & Irish
101
+ Ale","bjcpCategory":"9","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Scottish
102
+ Light 60\/-","simpleUrl":"scottish-light-60","ibuMin":"10","ibuMax":"20","abvMin":"2.5","abvMax":"3.2","srmMin":"9","srmMax":"17","ogMin":"1.03","ogMax":"1.035","fgMin":"1.01","fgMax":"1.013","createDate":"2012-04-04
103
+ 04:00:04"},{"id":29,"categoryId":9,"category":{"id":9,"name":"Scottish & Irish
104
+ Ale","bjcpCategory":"9","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"Scottish
105
+ Heavy 70\/-","simpleUrl":"scottish-heavy-70","ibuMin":"10","ibuMax":"25","abvMin":"3.2","abvMax":"3.9","srmMin":"9","srmMax":"17","ogMin":"1.035","ogMax":"1.04","fgMin":"1.01","fgMax":"1.015","createDate":"2012-04-04
106
+ 04:00:04"},{"id":30,"categoryId":9,"category":{"id":9,"name":"Scottish & Irish
107
+ Ale","bjcpCategory":"9","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"Scottish
108
+ Export 80\/-","simpleUrl":"scottish-export-80","ibuMin":"15","ibuMax":"30","abvMin":"3.9","abvMax":"5","srmMin":"9","srmMax":"17","ogMin":"1.04","ogMax":"1.054","fgMin":"1.01","fgMax":"1.016","createDate":"2012-04-04
109
+ 04:00:04"},{"id":31,"categoryId":9,"category":{"id":9,"name":"Scottish & Irish
110
+ Ale","bjcpCategory":"9","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"D","name":"Irish
111
+ Red Ale","simpleUrl":"irish-red-ale","ibuMin":"17","ibuMax":"28","abvMin":"4","abvMax":"6","srmMin":"9","srmMax":"18","ogMin":"1.044","ogMax":"1.06","fgMin":"1.01","fgMax":"1.014","createDate":"2012-04-04
112
+ 04:00:04"},{"id":32,"categoryId":9,"category":{"id":9,"name":"Scottish & Irish
113
+ Ale","bjcpCategory":"9","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"E","name":"Strong
114
+ Scotch Ale","simpleUrl":"strong-scotch-ale","ibuMin":"17","ibuMax":"35","abvMin":"6.5","abvMax":"10","srmMin":"14","srmMax":"25","ogMin":"1.07","ogMax":"1.13","fgMin":"1.018","fgMax":"1.056","createDate":"2012-04-04
115
+ 04:00:04"},{"id":33,"categoryId":10,"category":{"id":10,"name":"American Ale","bjcpCategory":"10","createDate":"2012-04-04
116
+ 04:00:04"},"bjcpSubcategory":"A","name":"American Pale Ale","simpleUrl":"american-pale-ale","ibuMin":"30","ibuMax":"45","abvMin":"4.5","abvMax":"6.2","srmMin":"5","srmMax":"14","ogMin":"1.045","ogMax":"1.06","fgMin":"1.01","fgMax":"1.015","createDate":"2012-04-04
117
+ 04:00:04"},{"id":34,"categoryId":10,"category":{"id":10,"name":"American Ale","bjcpCategory":"10","createDate":"2012-04-04
118
+ 04:00:04"},"bjcpSubcategory":"B","name":"American Amber Ale","simpleUrl":"american-amber-ale","ibuMin":"25","ibuMax":"40","abvMin":"4.5","abvMax":"6.2","srmMin":"10","srmMax":"17","ogMin":"1.045","ogMax":"1.06","fgMin":"1.01","fgMax":"1.015","createDate":"2012-04-04
119
+ 04:00:04"},{"id":35,"categoryId":10,"category":{"id":10,"name":"American Ale","bjcpCategory":"10","createDate":"2012-04-04
120
+ 04:00:04"},"bjcpSubcategory":"C","name":"American Brown Ale","simpleUrl":"american-brown-ale","ibuMin":"20","ibuMax":"40","abvMin":"4.3","abvMax":"6.2","srmMin":"18","srmMax":"35","ogMin":"1.045","ogMax":"1.06","fgMin":"1.01","fgMax":"1.016","createDate":"2012-04-04
121
+ 04:00:04"},{"id":36,"categoryId":11,"category":{"id":11,"name":"English Brown
122
+ Ale","bjcpCategory":"11","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Mild","simpleUrl":"mild","ibuMin":"10","ibuMax":"25","abvMin":"2.8","abvMax":"4.5","srmMin":"12","srmMax":"25","ogMin":"1.03","ogMax":"1.038","fgMin":"1.008","fgMax":"1.013","createDate":"2012-04-04
123
+ 04:00:04"},{"id":37,"categoryId":11,"category":{"id":11,"name":"English Brown
124
+ Ale","bjcpCategory":"11","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"Southern
125
+ English Brown Ale","simpleUrl":"southern-english-brown-ale","ibuMin":"12","ibuMax":"20","abvMin":"2.8","abvMax":"4.1","srmMin":"19","srmMax":"35","ogMin":"1.033","ogMax":"1.042","fgMin":"1.011","fgMax":"1.014","createDate":"2012-04-04
126
+ 04:00:04"},{"id":38,"categoryId":11,"category":{"id":11,"name":"English Brown
127
+ Ale","bjcpCategory":"11","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"Northern
128
+ English Brown Ale","simpleUrl":"northern-english-brown-ale","ibuMin":"20","ibuMax":"30","abvMin":"4.2","abvMax":"5.4","srmMin":"12","srmMax":"22","ogMin":"1.04","ogMax":"1.052","fgMin":"1.008","fgMax":"1.013","createDate":"2012-04-04
129
+ 04:00:04"},{"id":39,"categoryId":12,"category":{"id":12,"name":"Porter","bjcpCategory":"12","createDate":"2012-04-04
130
+ 04:00:04"},"bjcpSubcategory":"A","name":"Brown Porter","simpleUrl":"brown-porter","ibuMin":"18","ibuMax":"35","abvMin":"4","abvMax":"5.4","srmMin":"20","srmMax":"30","ogMin":"1.04","ogMax":"1.052","fgMin":"1.008","fgMax":"1.014","createDate":"2012-04-04
131
+ 04:00:04"},{"id":40,"categoryId":12,"category":{"id":12,"name":"Porter","bjcpCategory":"12","createDate":"2012-04-04
132
+ 04:00:04"},"bjcpSubcategory":"B","name":"Robust Porter","simpleUrl":"robust-porter","ibuMin":"25","ibuMax":"50","abvMin":"4.8","abvMax":"6.5","srmMin":"22","srmMax":"35","ogMin":"1.048","ogMax":"1.065","fgMin":"1.012","fgMax":"1.016","createDate":"2012-04-04
133
+ 04:00:04"},{"id":41,"categoryId":12,"category":{"id":12,"name":"Porter","bjcpCategory":"12","createDate":"2012-04-04
134
+ 04:00:04"},"bjcpSubcategory":"C","name":"Baltic Porter","simpleUrl":"baltic-porter","ibuMin":"20","ibuMax":"40","abvMin":"5.5","abvMax":"9.5","srmMin":"17","srmMax":"30","ogMin":"1.06","ogMax":"1.09","fgMin":"1.016","fgMax":"1.024","createDate":"2012-04-04
135
+ 04:00:04"},{"id":42,"categoryId":13,"category":{"id":13,"name":"Stout","bjcpCategory":"13","createDate":"2012-04-04
136
+ 04:00:04"},"bjcpSubcategory":"A","name":"Dry Stout","simpleUrl":"dry-stout","ibuMin":"30","ibuMax":"45","abvMin":"4","abvMax":"5","srmMin":"25","srmMax":"40","ogMin":"1.036","ogMax":"1.05","fgMin":"1.007","fgMax":"1.011","createDate":"2012-04-04
137
+ 04:00:04"},{"id":43,"categoryId":13,"category":{"id":13,"name":"Stout","bjcpCategory":"13","createDate":"2012-04-04
138
+ 04:00:04"},"bjcpSubcategory":"B","name":"Sweet Stout","simpleUrl":"sweet-stout","ibuMin":"20","ibuMax":"40","abvMin":"4","abvMax":"6","srmMin":"30","srmMax":"40","ogMin":"1.044","ogMax":"1.06","fgMin":"1.012","fgMax":"1.024","createDate":"2012-04-04
139
+ 04:00:04"},{"id":44,"categoryId":13,"category":{"id":13,"name":"Stout","bjcpCategory":"13","createDate":"2012-04-04
140
+ 04:00:04"},"bjcpSubcategory":"C","name":"Oatmeal Stout","simpleUrl":"oatmeal-stout","ibuMin":"25","ibuMax":"40","abvMin":"4.2","abvMax":"5.9","srmMin":"22","srmMax":"40","ogMin":"1.048","ogMax":"1.065","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-04
141
+ 04:00:04"},{"id":45,"categoryId":13,"category":{"id":13,"name":"Stout","bjcpCategory":"13","createDate":"2012-04-04
142
+ 04:00:04"},"bjcpSubcategory":"D","name":"Foreign Extra Stout","simpleUrl":"foreign-extra-stout","ibuMin":"30","ibuMax":"70","abvMin":"5.5","abvMax":"8","srmMin":"30","srmMax":"40","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-04
143
+ 04:00:04"},{"id":46,"categoryId":13,"category":{"id":13,"name":"Stout","bjcpCategory":"13","createDate":"2012-04-04
144
+ 04:00:04"},"bjcpSubcategory":"E","name":"American Stout","simpleUrl":"american-stout","ibuMin":"35","ibuMax":"75","abvMin":"5","abvMax":"7","srmMin":"30","srmMax":"40","ogMin":"1.05","ogMax":"1.075","fgMin":"1.01","fgMax":"1.022","createDate":"2012-04-04
145
+ 04:00:04"},{"id":47,"categoryId":13,"category":{"id":13,"name":"Stout","bjcpCategory":"13","createDate":"2012-04-04
146
+ 04:00:04"},"bjcpSubcategory":"F","name":"Imperial Stout","simpleUrl":"imperial-stout","ibuMin":"50","ibuMax":"90","abvMin":"8","abvMax":"12","srmMin":"30","srmMax":"40","ogMin":"1.075","ogMax":"1.115","fgMin":"1.018","fgMax":"1.03","createDate":"2012-04-04
147
+ 04:00:04"},{"id":48,"categoryId":14,"category":{"id":14,"name":"India Pale
148
+ Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"English
149
+ IPA","simpleUrl":"english-ipa","ibuMin":"40","ibuMax":"60","abvMin":"5","abvMax":"7.5","srmMin":"8","srmMax":"14","ogMin":"1.05","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-04
150
+ 04:00:04"},{"id":49,"categoryId":14,"category":{"id":14,"name":"India Pale
151
+ Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"American
152
+ IPA","simpleUrl":"american-ipa","ibuMin":"40","ibuMax":"70","abvMin":"5.5","abvMax":"7.5","srmMin":"6","srmMax":"15","ogMin":"1.056","ogMax":"1.075","fgMin":"1.01","fgMax":"1.018","createDate":"2012-04-04
153
+ 04:00:04"},{"id":50,"categoryId":14,"category":{"id":14,"name":"India Pale
154
+ Ale (IPA)","bjcpCategory":"14","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"Imperial
155
+ IPA","simpleUrl":"imperial-ipa","ibuMin":"60","ibuMax":"120","abvMin":"7.5","abvMax":"10","srmMin":"8","srmMax":"15","ogMin":"1.07","ogMax":"1.09","fgMin":"1.01","fgMax":"1.02","createDate":"2012-04-04
156
+ 04:00:04"},{"id":51,"categoryId":15,"category":{"id":15,"name":"German Wheat
157
+ & Rye Beer","bjcpCategory":"15","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Weizen\/Weissbier","simpleUrl":"weizen-weissbier","ibuMin":"8","ibuMax":"15","abvMin":"4.3","abvMax":"5.6","srmMin":"2","srmMax":"8","ogMin":"1.044","ogMax":"1.052","fgMin":"1.01","fgMax":"1.014","createDate":"2012-04-04
158
+ 04:00:04"},{"id":52,"categoryId":15,"category":{"id":15,"name":"German Wheat
159
+ & Rye Beer","bjcpCategory":"15","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"Dunkelweizen","simpleUrl":"dunkelweizen","ibuMin":"10","ibuMax":"18","abvMin":"4.3","abvMax":"5.6","srmMin":"14","srmMax":"23","ogMin":"1.044","ogMax":"1.056","fgMin":"1.01","fgMax":"1.014","createDate":"2012-04-04
160
+ 04:00:04"},{"id":53,"categoryId":15,"category":{"id":15,"name":"German Wheat
161
+ & Rye Beer","bjcpCategory":"15","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"Weizenbock","simpleUrl":"weizenbock","ibuMin":"15","ibuMax":"30","abvMin":"6.5","abvMax":"8","srmMin":"12","srmMax":"25","ogMin":"1.064","ogMax":"1.09","fgMin":"1.015","fgMax":"1.022","createDate":"2012-04-04
162
+ 04:00:04"},{"id":54,"categoryId":15,"category":{"id":15,"name":"German Wheat
163
+ & Rye Beer","bjcpCategory":"15","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"D","name":"Roggenbier
164
+ (German Rye Beer)","simpleUrl":"roggenbier-german-rye-beer","ibuMin":"10","ibuMax":"20","abvMin":"4.5","abvMax":"6","srmMin":"14","srmMax":"19","ogMin":"1.046","ogMax":"1.056","fgMin":"1.01","fgMax":"1.014","createDate":"2012-04-04
165
+ 04:00:04"},{"id":55,"categoryId":16,"category":{"id":16,"name":"Belgian &
166
+ French Ale","bjcpCategory":"16","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Witbier","simpleUrl":"witbier","ibuMin":"10","ibuMax":"20","abvMin":"4.5","abvMax":"5.5","srmMin":"2","srmMax":"4","ogMin":"1.044","ogMax":"1.052","fgMin":"1.008","fgMax":"1.012","createDate":"2012-04-04
167
+ 04:00:04"},{"id":56,"categoryId":16,"category":{"id":16,"name":"Belgian &
168
+ French Ale","bjcpCategory":"16","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"Belgian
169
+ Pale Ale","simpleUrl":"belgian-pale-ale","ibuMin":"20","ibuMax":"30","abvMin":"4.8","abvMax":"5.5","srmMin":"8","srmMax":"14","ogMin":"1.048","ogMax":"1.054","fgMin":"1.01","fgMax":"1.014","createDate":"2012-04-04
170
+ 04:00:04"},{"id":57,"categoryId":16,"category":{"id":16,"name":"Belgian &
171
+ French Ale","bjcpCategory":"16","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"Saison","simpleUrl":"saison","ibuMin":"20","ibuMax":"35","abvMin":"5","abvMax":"7","srmMin":"5","srmMax":"14","ogMin":"1.048","ogMax":"1.065","fgMin":"1.002","fgMax":"1.012","createDate":"2012-04-04
172
+ 04:00:04"},{"id":58,"categoryId":16,"category":{"id":16,"name":"Belgian &
173
+ French Ale","bjcpCategory":"16","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"D","name":"Bi\u00e8re
174
+ de Garde","simpleUrl":"biere-de-garde","ibuMin":"18","ibuMax":"28","abvMin":"6","abvMax":"8.5","srmMin":"6","srmMax":"19","ogMin":"1.06","ogMax":"1.08","fgMin":"1.008","fgMax":"1.016","createDate":"2012-04-04
175
+ 04:00:04"},{"id":59,"categoryId":16,"category":{"id":16,"name":"Belgian &
176
+ French Ale","bjcpCategory":"16","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"E","name":"Belgian
177
+ Specialty Ale","simpleUrl":"belgian-specialty-ale","createDate":"2012-04-04
178
+ 04:00:04"},{"id":60,"categoryId":17,"category":{"id":17,"name":"Sour Ale","bjcpCategory":"17","createDate":"2012-04-04
179
+ 04:00:04"},"bjcpSubcategory":"A","name":"Berliner Weisse","simpleUrl":"berliner-weisse","ibuMin":"3","ibuMax":"8","abvMin":"2.8","abvMax":"3.8","srmMin":"2","srmMax":"3","ogMin":"1.028","ogMax":"1.032","fgMin":"1.003","fgMax":"1.006","createDate":"2012-04-04
180
+ 04:00:04"},{"id":61,"categoryId":17,"category":{"id":17,"name":"Sour Ale","bjcpCategory":"17","createDate":"2012-04-04
181
+ 04:00:04"},"bjcpSubcategory":"B","name":"Flanders Red Ale","simpleUrl":"flanders-red-ale","ibuMin":"10","ibuMax":"25","abvMin":"4.6","abvMax":"6.5","srmMin":"10","srmMax":"16","ogMin":"1.048","ogMax":"1.057","fgMin":"1.002","fgMax":"1.012","createDate":"2012-04-04
182
+ 04:00:04"},{"id":62,"categoryId":17,"category":{"id":17,"name":"Sour Ale","bjcpCategory":"17","createDate":"2012-04-04
183
+ 04:00:04"},"bjcpSubcategory":"C","name":"Flanders Brown Ale\/Oud Bruin","simpleUrl":"flanders-brown-ale-oud-bruin","ibuMin":"20","ibuMax":"25","abvMin":"4","abvMax":"8","srmMin":"15","srmMax":"22","ogMin":"1.04","ogMax":"1.074","fgMin":"1.008","fgMax":"1.012","createDate":"2012-04-04
184
+ 04:00:04"},{"id":63,"categoryId":17,"category":{"id":17,"name":"Sour Ale","bjcpCategory":"17","createDate":"2012-04-04
185
+ 04:00:04"},"bjcpSubcategory":"D","name":"Straight (Unblended) Lambic","simpleUrl":"straight-unblended-lambic","ibuMax":"10","abvMin":"5","abvMax":"6.5","srmMin":"3","srmMax":"7","ogMin":"1.04","ogMax":"1.054","fgMin":"1.001","fgMax":"1.01","createDate":"2012-04-04
186
+ 04:00:04"},{"id":64,"categoryId":17,"category":{"id":17,"name":"Sour Ale","bjcpCategory":"17","createDate":"2012-04-04
187
+ 04:00:04"},"bjcpSubcategory":"E","name":"Gueuze","simpleUrl":"gueuze","ibuMax":"10","abvMin":"5","abvMax":"8","srmMin":"3","srmMax":"7","ogMin":"1.04","ogMax":"1.06","fgMin":"1","fgMax":"1.006","createDate":"2012-04-04
188
+ 04:00:04"},{"id":65,"categoryId":17,"category":{"id":17,"name":"Sour Ale","bjcpCategory":"17","createDate":"2012-04-04
189
+ 04:00:04"},"bjcpSubcategory":"F","name":"Fruit Lambic","simpleUrl":"fruit-lambic","ibuMax":"10","abvMin":"5","abvMax":"7","srmMin":"3","srmMax":"7","ogMin":"1.04","ogMax":"1.06","fgMin":"1","fgMax":"1.01","createDate":"2012-04-04
190
+ 04:00:04"},{"id":66,"categoryId":18,"category":{"id":18,"name":"Belgian Strong
191
+ Ale","bjcpCategory":"18","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Belgian
192
+ Blond Ale","simpleUrl":"belgian-blond-ale","ibuMin":"15","ibuMax":"30","abvMin":"6","abvMax":"7.5","srmMin":"4","srmMax":"7","ogMin":"1.062","ogMax":"1.075","fgMin":"1.008","fgMax":"1.018","createDate":"2012-04-04
193
+ 04:00:04"},{"id":67,"categoryId":18,"category":{"id":18,"name":"Belgian Strong
194
+ Ale","bjcpCategory":"18","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"Belgian
195
+ Dubbel","simpleUrl":"belgian-dubbel","ibuMin":"15","ibuMax":"25","abvMin":"6","abvMax":"7.6","srmMin":"10","srmMax":"17","ogMin":"1.062","ogMax":"1.075","fgMin":"1.008","fgMax":"1.018","createDate":"2012-04-04
196
+ 04:00:04"},{"id":68,"categoryId":18,"category":{"id":18,"name":"Belgian Strong
197
+ Ale","bjcpCategory":"18","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"Belgian
198
+ Tripel","simpleUrl":"belgian-tripel","ibuMin":"20","ibuMax":"40","abvMin":"7.5","abvMax":"9.5","srmMin":"5","srmMax":"7","ogMin":"1.075","ogMax":"1.085","fgMin":"1.008","fgMax":"1.014","createDate":"2012-04-04
199
+ 04:00:04"},{"id":69,"categoryId":18,"category":{"id":18,"name":"Belgian Strong
200
+ Ale","bjcpCategory":"18","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"D","name":"Belgian
201
+ Golden Strong Ale","simpleUrl":"belgian-golden-strong-ale","ibuMin":"22","ibuMax":"35","abvMin":"7.5","abvMax":"10.5","srmMin":"3","srmMax":"6","ogMin":"1.07","ogMax":"1.095","fgMin":"1.005","fgMax":"1.016","createDate":"2012-04-04
202
+ 04:00:04"},{"id":70,"categoryId":18,"category":{"id":18,"name":"Belgian Strong
203
+ Ale","bjcpCategory":"18","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"E","name":"Belgian
204
+ Dark Strong Ale","simpleUrl":"belgian-dark-strong-ale","ibuMin":"20","ibuMax":"35","abvMin":"8","abvMax":"11","srmMin":"12","srmMax":"22","ogMin":"1.075","ogMax":"1.11","fgMin":"1.01","fgMax":"1.024","createDate":"2012-04-04
205
+ 04:00:04"},{"id":71,"categoryId":19,"category":{"id":19,"name":"Strong Ale","bjcpCategory":"19","createDate":"2012-04-04
206
+ 04:00:04"},"bjcpSubcategory":"A","name":"Old Ale","simpleUrl":"old-ale","ibuMin":"30","ibuMax":"60","abvMin":"6","abvMax":"9","srmMin":"10","srmMax":"22","ogMin":"1.06","ogMax":"1.09","fgMin":"1.015","fgMax":"1.022","createDate":"2012-04-04
207
+ 04:00:04"},{"id":72,"categoryId":19,"category":{"id":19,"name":"Strong Ale","bjcpCategory":"19","createDate":"2012-04-04
208
+ 04:00:04"},"bjcpSubcategory":"B","name":"English Barleywine","simpleUrl":"english-barleywine","ibuMin":"35","ibuMax":"70","abvMin":"8","abvMax":"12","srmMin":"8","srmMax":"22","ogMin":"1.08","ogMax":"1.12","fgMin":"1.018","fgMax":"1.03","createDate":"2012-04-04
209
+ 04:00:04"},{"id":73,"categoryId":19,"category":{"id":19,"name":"Strong Ale","bjcpCategory":"19","createDate":"2012-04-04
210
+ 04:00:04"},"bjcpSubcategory":"C","name":"American Barleywine","simpleUrl":"american-barleywine","ibuMin":"50","ibuMax":"120","abvMin":"8","abvMax":"12","srmMin":"10","srmMax":"19","ogMin":"1.08","ogMax":"1.12","fgMin":"1.016","fgMax":"1.03","createDate":"2012-04-04
211
+ 04:00:04"},{"id":74,"categoryId":21,"category":{"id":21,"name":"Spice\/Herb\/Vegetable
212
+ Beer","bjcpCategory":"21","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Spice,
213
+ Herb, or Vegetable Beer","simpleUrl":"spice-herb-or-vegetable-beer","createDate":"2012-04-04
214
+ 04:00:04"},{"id":75,"categoryId":21,"category":{"id":21,"name":"Spice\/Herb\/Vegetable
215
+ Beer","bjcpCategory":"21","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"Christmas\/Winter
216
+ Specialty Spiced Beer","simpleUrl":"christmas-winter-specialty-spiced-beer","createDate":"2012-04-04
217
+ 04:00:04"},{"id":76,"categoryId":22,"category":{"id":22,"name":"Smoke-Flavored
218
+ & Wood-Aged Beer","bjcpCategory":"22","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Classic
219
+ Rauchbier","simpleUrl":"classic-rauchbier","ibuMin":"20","ibuMax":"30","abvMin":"4.8","abvMax":"6","srmMin":"12","srmMax":"22","ogMin":"1.05","ogMax":"1.057","fgMin":"1.012","fgMax":"1.016","createDate":"2012-04-04
220
+ 04:00:04"},{"id":77,"categoryId":22,"category":{"id":22,"name":"Smoke-Flavored
221
+ & Wood-Aged Beer","bjcpCategory":"22","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"Other
222
+ Smoked Beer","simpleUrl":"other-smoked-beer","createDate":"2012-04-04 04:00:04"},{"id":78,"categoryId":22,"category":{"id":22,"name":"Smoke-Flavored
223
+ & Wood-Aged Beer","bjcpCategory":"22","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"Wood-Aged
224
+ Beer","simpleUrl":"wood-aged-beer","createDate":"2012-04-04 04:00:04"},{"id":79,"categoryId":24,"category":{"id":24,"name":"Traditional
225
+ Mead","bjcpCategory":"24","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Dry
226
+ Mead","simpleUrl":"dry-mead","createDate":"2012-04-04 04:00:04"},{"id":80,"categoryId":24,"category":{"id":24,"name":"Traditional
227
+ Mead","bjcpCategory":"24","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"Semi-Sweet
228
+ Mead","simpleUrl":"semi-sweet-mead","createDate":"2012-04-04 04:00:04"},{"id":81,"categoryId":24,"category":{"id":24,"name":"Traditional
229
+ Mead","bjcpCategory":"24","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"Sweet
230
+ Mead","simpleUrl":"sweet-mead","createDate":"2012-04-04 04:00:04"},{"id":82,"categoryId":25,"category":{"id":25,"name":"Melomel
231
+ (Fruit Mead)","bjcpCategory":"25","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Cyser
232
+ (Apple Melomel)","simpleUrl":"cyser-apple-melomel","createDate":"2012-04-04
233
+ 04:00:04"},{"id":83,"categoryId":25,"category":{"id":25,"name":"Melomel (Fruit
234
+ Mead)","bjcpCategory":"25","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"Pyment
235
+ (Grape Melomel)","simpleUrl":"pyment-grape-melomel","createDate":"2012-04-04
236
+ 04:00:04"},{"id":84,"categoryId":25,"category":{"id":25,"name":"Melomel (Fruit
237
+ Mead)","bjcpCategory":"25","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"Other
238
+ Fruit Melomel","simpleUrl":"other-fruit-melomel","createDate":"2012-04-04
239
+ 04:00:04"},{"id":85,"categoryId":26,"category":{"id":26,"name":"Other Mead","bjcpCategory":"26","createDate":"2012-04-04
240
+ 04:00:04"},"bjcpSubcategory":"A","name":"Metheglin","simpleUrl":"metheglin","createDate":"2012-04-04
241
+ 04:00:04"},{"id":86,"categoryId":26,"category":{"id":26,"name":"Other Mead","bjcpCategory":"26","createDate":"2012-04-04
242
+ 04:00:04"},"bjcpSubcategory":"B","name":"Braggot","simpleUrl":"braggot","createDate":"2012-04-04
243
+ 04:00:04"},{"id":87,"categoryId":26,"category":{"id":26,"name":"Other Mead","bjcpCategory":"26","createDate":"2012-04-04
244
+ 04:00:04"},"bjcpSubcategory":"C","name":"Open Category Mead","simpleUrl":"open-category-mead","createDate":"2012-04-04
245
+ 04:00:04"},{"id":88,"categoryId":27,"category":{"id":27,"name":"Standard Cider
246
+ & Perry","bjcpCategory":"27","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Common
247
+ Cider","simpleUrl":"common-cider","abvMin":"5","abvMax":"8","ogMin":"1.045","ogMax":"1.065","fgMin":"1","fgMax":"1.02","createDate":"2012-04-04
248
+ 04:00:04"},{"id":89,"categoryId":27,"category":{"id":27,"name":"Standard Cider
249
+ & Perry","bjcpCategory":"27","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"English
250
+ Cider","simpleUrl":"english-cider","abvMin":"6","abvMax":"9","ogMin":"1.05","ogMax":"1.075","fgMin":"0.995","fgMax":"1.01","createDate":"2012-04-04
251
+ 04:00:04"},{"id":90,"categoryId":27,"category":{"id":27,"name":"Standard Cider
252
+ & Perry","bjcpCategory":"27","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"French
253
+ Cider","simpleUrl":"french-cider","abvMin":"3","abvMax":"6","ogMin":"1.05","ogMax":"1.065","fgMin":"1.01","fgMax":"1.02","createDate":"2012-04-04
254
+ 04:00:04"},{"id":91,"categoryId":27,"category":{"id":27,"name":"Standard Cider
255
+ & Perry","bjcpCategory":"27","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"D","name":"Common
256
+ Perry","simpleUrl":"common-perry","abvMin":"5","abvMax":"7","ogMin":"1.05","ogMax":"1.06","fgMin":"1","fgMax":"1.02","createDate":"2012-04-04
257
+ 04:00:04"},{"id":92,"categoryId":27,"category":{"id":27,"name":"Standard Cider
258
+ & Perry","bjcpCategory":"27","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"E","name":"Traditional
259
+ Perry","simpleUrl":"traditional-perry","abvMin":"5","abvMax":"9","ogMin":"1.05","ogMax":"1.07","fgMin":"1","fgMax":"1.02","createDate":"2012-04-04
260
+ 04:00:04"},{"id":93,"categoryId":28,"category":{"id":28,"name":"Specialty
261
+ Cider & Perry","bjcpCategory":"28","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"New
262
+ England Cider","simpleUrl":"new-england-cider","abvMin":"7","abvMax":"13","ogMin":"1.06","ogMax":"1.1","fgMin":"0.995","fgMax":"1.01","createDate":"2012-04-04
263
+ 04:00:04"},{"id":94,"categoryId":28,"category":{"id":28,"name":"Specialty
264
+ Cider & Perry","bjcpCategory":"28","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"B","name":"Fruit
265
+ Cider","simpleUrl":"fruit-cider","abvMin":"5","abvMax":"9","ogMin":"1.045","ogMax":"1.07","fgMin":"0.995","fgMax":"1.01","createDate":"2012-04-04
266
+ 04:00:04"},{"id":95,"categoryId":28,"category":{"id":28,"name":"Specialty
267
+ Cider & Perry","bjcpCategory":"28","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"C","name":"Apple
268
+ Wine","simpleUrl":"apple-wine","abvMin":"9","abvMax":"12","ogMin":"1.07","ogMax":"1.1","fgMin":"0.995","fgMax":"1.01","createDate":"2012-04-04
269
+ 04:00:04"},{"id":96,"categoryId":28,"category":{"id":28,"name":"Specialty
270
+ Cider & Perry","bjcpCategory":"28","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"D","name":"Other
271
+ Specialty Cider or Perry","simpleUrl":"other-specialty-cider-or-perry","abvMin":"5","abvMax":"12","ogMin":"1.045","ogMax":"1.1","fgMin":"0.995","fgMax":"1.02","createDate":"2012-04-04
272
+ 04:00:04"},{"id":97,"categoryId":20,"category":{"id":20,"name":"Fruit Beer","bjcpCategory":"20","createDate":"2012-04-04
273
+ 04:00:04"},"name":"Fruit Beer","simpleUrl":"fruit-beer","createDate":"2012-04-04
274
+ 04:00:04"},{"id":98,"categoryId":23,"category":{"id":23,"name":"Specialty
275
+ Beer","bjcpCategory":"23","createDate":"2012-04-04 04:00:04"},"name":"Specialty
276
+ Beer","simpleUrl":"specialty-beer","createDate":"2012-04-04 04:00:04"}],"status":"success"}'
277
+ http_version:
278
+ recorded_at: Wed, 04 Apr 2012 15:25:03 GMT
279
+ - request:
280
+ method: get
281
+ uri: http://api.brewerydb.com/v2/style/1?key=<%= api_key %>
282
+ body:
283
+ encoding: US-ASCII
284
+ string: ''
285
+ headers:
286
+ User-Agent:
287
+ - BreweryDB Ruby Gem 0.0.1
288
+ response:
289
+ status:
290
+ code: 200
291
+ message:
292
+ headers:
293
+ date:
294
+ - Wed, 04 Apr 2012 15:30:56 GMT
295
+ server:
296
+ - Apache/2.2.21 (Amazon)
297
+ x-powered-by:
298
+ - PHP/5.3.10
299
+ x-ratelimit-limit:
300
+ - Unlimited
301
+ x-ratelimit-remaining:
302
+ - Unlimited
303
+ content-length:
304
+ - '443'
305
+ connection:
306
+ - close
307
+ content-type:
308
+ - application/json
309
+ body:
310
+ encoding: US-ASCII
311
+ string: ! '{"message":"Request Successful","data":{"id":1,"categoryId":1,"category":{"id":1,"name":"Light
312
+ Lager","bjcpCategory":"1","createDate":"2012-04-04 04:00:04"},"bjcpSubcategory":"A","name":"Lite
313
+ American Lager","simpleUrl":"lite-american-lager","ibuMin":"8","ibuMax":"12","abvMin":"2.8","abvMax":"4.2","srmMin":"2","srmMax":"3","ogMin":"1.028","ogMax":"1.04","fgMin":"0.998","fgMax":"1.008","createDate":"2012-04-04
314
+ 04:00:04"},"status":"success"}'
315
+ http_version:
316
+ recorded_at: Wed, 04 Apr 2012 15:30:56 GMT
317
+ recorded_with: VCR 2.0.0