brewery_db 0.0.1 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +2 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +5 -0
  5. data/CHANGELOG.md +15 -0
  6. data/README.md +81 -29
  7. data/Rakefile +5 -0
  8. data/brewery_db.gemspec +6 -5
  9. data/lib/brewery_db.rb +15 -19
  10. data/lib/brewery_db/client.rb +19 -7
  11. data/lib/brewery_db/collection.rb +42 -0
  12. data/lib/brewery_db/config.rb +7 -6
  13. data/lib/brewery_db/mash.rb +18 -0
  14. data/lib/brewery_db/middleware/error_handler.rb +28 -0
  15. data/lib/brewery_db/request.rb +27 -0
  16. data/lib/brewery_db/resource.rb +16 -22
  17. data/lib/brewery_db/resources/beers.rb +2 -2
  18. data/lib/brewery_db/resources/breweries.rb +2 -2
  19. data/lib/brewery_db/resources/brewery.rb +16 -0
  20. data/lib/brewery_db/resources/categories.rb +2 -2
  21. data/lib/brewery_db/resources/glassware.rb +2 -2
  22. data/lib/brewery_db/resources/search.rb +1 -1
  23. data/lib/brewery_db/resources/styles.rb +2 -2
  24. data/lib/brewery_db/response.rb +26 -12
  25. data/lib/brewery_db/version.rb +1 -1
  26. data/lib/brewery_db/web_hook.rb +32 -0
  27. data/spec/brewery_db/client_spec.rb +41 -30
  28. data/spec/brewery_db/config_spec.rb +25 -28
  29. data/spec/brewery_db/{response_spec.rb → mash_spec.rb} +1 -1
  30. data/spec/brewery_db/middleware/error_handler_spec.rb +49 -0
  31. data/spec/brewery_db/resource_spec.rb +35 -22
  32. data/spec/brewery_db/resources/beers_spec.rb +10 -82
  33. data/spec/brewery_db/resources/breweries_spec.rb +10 -54
  34. data/spec/brewery_db/resources/brewery_spec.rb +27 -0
  35. data/spec/brewery_db/resources/categories_spec.rb +10 -38
  36. data/spec/brewery_db/resources/glassware_spec.rb +10 -36
  37. data/spec/brewery_db/resources/search_spec.rb +19 -61
  38. data/spec/brewery_db/resources/styles_spec.rb +10 -72
  39. data/spec/brewery_db/web_hook_spec.rb +79 -0
  40. data/spec/fixtures/BreweryDB_Resource/_get/a_list_of_resources/can_be_enumerated.yml +515 -0
  41. data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/raises_an_exception.yml +38 -0
  42. data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/sets_the_exception_message_to_the_error_message_in_the_response.yml +38 -0
  43. data/spec/fixtures/BreweryDB_Resource/_get/an_OK_request/name/.yml +54 -0
  44. data/spec/fixtures/BreweryDB_Resources_Beers/_all/fetches_all_of_the_beers_at_once.yml +889 -0
  45. data/spec/fixtures/BreweryDB_Resources_Beers/_find/fetches_only_the_beer_asked_for.yml +61 -0
  46. data/spec/fixtures/BreweryDB_Resources_Breweries/_all/fetches_all_of_the_breweries_at_once.yml +430 -0
  47. data/spec/fixtures/BreweryDB_Resources_Breweries/_find/fetches_only_the_brewery_asked_for.yml +57 -0
  48. data/spec/fixtures/BreweryDB_Resources_Categories/_all/fetches_all_of_the_cagtegories_at_once.yml +49 -0
  49. data/spec/fixtures/BreweryDB_Resources_Categories/_find/fetches_only_the_category_asked_for.yml +39 -0
  50. data/spec/fixtures/BreweryDB_Resources_Glassware/_all/fetches_all_of_the_glassware_at_once.yml +45 -0
  51. data/spec/fixtures/BreweryDB_Resources_Glassware/_find/fetches_only_the_glassware_asked_for.yml +39 -0
  52. data/spec/fixtures/BreweryDB_Resources_Search/_all/fetches_all_of_the_search_results_at_once.yml +1132 -0
  53. data/spec/fixtures/BreweryDB_Resources_Styles/_all/fetches_all_of_the_styles_at_once.yml +1866 -0
  54. data/spec/fixtures/BreweryDB_Resources_Styles/_find/fetches_only_the_style_asked_for.yml +50 -0
  55. data/spec/spec_helper.rb +4 -4
  56. data/spec/support/shared/a_resource.rb +3 -9
  57. data/spec/support/vcr.rb +6 -1
  58. metadata +82 -42
  59. data/spec/brewery_db_spec.rb +0 -18
  60. data/spec/fixtures/beers.yml +0 -445
  61. data/spec/fixtures/breweries.yml +0 -409
  62. data/spec/fixtures/categories.yml +0 -102
  63. data/spec/fixtures/glassware.yml +0 -65
  64. data/spec/fixtures/search.yml +0 -314
  65. data/spec/fixtures/styles.yml +0 -317
@@ -0,0 +1,50 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.brewerydb.com/v2/style/1?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
+ - Sat, 11 Aug 2012 23:35:45 GMT
19
+ server:
20
+ - Apache/2.2.22 (Amazon)
21
+ x-powered-by:
22
+ - PHP/5.3.13
23
+ x-ratelimit-limit:
24
+ - Unlimited
25
+ x-ratelimit-remaining:
26
+ - Unlimited
27
+ content-length:
28
+ - '1102'
29
+ connection:
30
+ - close
31
+ content-type:
32
+ - application/json
33
+ body:
34
+ encoding: US-ASCII
35
+ string: ! '{"message":"READ ONLY MODE: Request Successful","data":{"id":1,"categoryId":1,"category":{"id":1,"name":"British
36
+ Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"Classic English-Style
37
+ Pale Ale","description":"Classic English pale ales are golden to copper colored
38
+ and display earthy, herbal English-variety hop character. Note that \"earthy,
39
+ herbal English-variety hop character\" is the perceived end, but may be a
40
+ result of the skillful use of hops of other national origins. Medium to high
41
+ hop bitterness, flavor, and aroma should be evident. This medium-bodied pale
42
+ ale has low to medium malt flavor and aroma. Low caramel character is allowable.
43
+ Fruity-ester flavors and aromas are moderate to strong. Chill haze may be
44
+ in evidence only at very cold temperatures. The absence of diacetyl is desirable,
45
+ though, diacetyl (butterscotch character) is acceptable and characteristic
46
+ when at very low levels.","ibuMin":"20","ibuMax":"40","abvMin":"4.5","abvMax":"5.5","srmMin":"5","srmMax":"5","ogMin":"1.04","fgMin":"1.008","fgMax":"1.016","createDate":"2012-03-21
47
+ 20:06:45"},"status":"success"}'
48
+ http_version:
49
+ recorded_at: Sat, 11 Aug 2012 23:35:45 GMT
50
+ recorded_with: VCR 2.2.2
data/spec/spec_helper.rb CHANGED
@@ -5,12 +5,12 @@ require 'brewery_db'
5
5
  # http://www.brewerydb.com/developers
6
6
  ENV['BREWERY_DB_API_KEY'] ||= '1c394d8947e4a5873920d2333c9e9364'
7
7
 
8
- Dir[File.expand_path('../support/**/*.rb', __FILE__)].each do |file|
9
- require(file)
10
- end
11
-
12
8
  RSpec.configure do |config|
13
9
  config.treat_symbols_as_metadata_keys_with_true_values = true
14
10
  config.run_all_when_everything_filtered = true
15
11
  config.filter_run :focus
16
12
  end
13
+
14
+ Dir[File.expand_path('../support/**/*.rb', __FILE__)].each do |file|
15
+ require(file)
16
+ end
@@ -1,11 +1,5 @@
1
- shared_examples_for 'a resource' do
2
- let(:client) { BreweryDB::Client.new }
1
+ shared_examples_for 'a resource', :resource do
3
2
  let(:api_key) { ENV['BREWERY_DB_API_KEY'] }
4
-
5
- before { client.config.api_key = api_key }
6
-
7
- around do |example|
8
- name = described_class.name.split(/::/).last.downcase
9
- VCR.use_cassette(name, erb: { api_key: api_key }, &example)
10
- end
3
+ let(:client) { BreweryDB::Client.new { |config| config.api_key = api_key } }
4
+ let(:config) { client.config }
11
5
  end
data/spec/support/vcr.rb CHANGED
@@ -1,6 +1,11 @@
1
1
  require 'vcr'
2
2
 
3
3
  VCR.configure do |config|
4
- config.cassette_library_dir = File.expand_path('../../fixtures', __FILE__)
5
4
  config.hook_into(:faraday)
5
+ config.configure_rspec_metadata!
6
+
7
+ config.cassette_library_dir = File.expand_path('../../fixtures', __FILE__)
8
+
9
+ config.filter_sensitive_data('API_KEY') { ENV['BREWERY_DB_API_KEY'] }
6
10
  end
11
+
metadata CHANGED
@@ -1,20 +1,19 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brewery_db
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
5
- prerelease:
4
+ version: 0.1.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Tyler Hunt
8
+ - Steven Harman
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-02 00:00:00.000000000 Z
12
+ date: 2013-05-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: faraday
16
16
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
17
  requirements:
19
18
  - - ~>
20
19
  - !ruby/object:Gem::Version
@@ -22,7 +21,6 @@ dependencies:
22
21
  type: :runtime
23
22
  prerelease: false
24
23
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
24
  requirements:
27
25
  - - ~>
28
26
  - !ruby/object:Gem::Version
@@ -30,55 +28,68 @@ dependencies:
30
28
  - !ruby/object:Gem::Dependency
31
29
  name: faraday_middleware
32
30
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
31
  requirements:
35
- - - ! '>='
32
+ - - ~>
36
33
  - !ruby/object:Gem::Version
37
- version: '0'
34
+ version: '0.8'
38
35
  type: :runtime
39
36
  prerelease: false
40
37
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
38
  requirements:
43
- - - ! '>='
39
+ - - ~>
44
40
  - !ruby/object:Gem::Version
45
- version: '0'
41
+ version: '0.8'
46
42
  - !ruby/object:Gem::Dependency
47
43
  name: hashie
48
44
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
45
  requirements:
51
- - - ~>
46
+ - - ! '>='
52
47
  - !ruby/object:Gem::Version
53
48
  version: '1.1'
49
+ - - <
50
+ - !ruby/object:Gem::Version
51
+ version: '3'
54
52
  type: :runtime
55
53
  prerelease: false
56
54
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
55
  requirements:
59
- - - ~>
56
+ - - ! '>='
60
57
  - !ruby/object:Gem::Version
61
58
  version: '1.1'
59
+ - - <
60
+ - !ruby/object:Gem::Version
61
+ version: '3'
62
+ - !ruby/object:Gem::Dependency
63
+ name: pry
64
+ requirement: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ! '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ type: :development
70
+ prerelease: false
71
+ version_requirements: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ! '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
62
76
  - !ruby/object:Gem::Dependency
63
77
  name: rspec
64
78
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
79
  requirements:
67
80
  - - ~>
68
81
  - !ruby/object:Gem::Version
69
- version: '2.0'
82
+ version: '2.11'
70
83
  type: :development
71
84
  prerelease: false
72
85
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
86
  requirements:
75
87
  - - ~>
76
88
  - !ruby/object:Gem::Version
77
- version: '2.0'
89
+ version: '2.11'
78
90
  - !ruby/object:Gem::Dependency
79
91
  name: vcr
80
92
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
93
  requirements:
83
94
  - - ~>
84
95
  - !ruby/object:Gem::Version
@@ -86,7 +97,6 @@ dependencies:
86
97
  type: :development
87
98
  prerelease: false
88
99
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
100
  requirements:
91
101
  - - ~>
92
102
  - !ruby/object:Gem::Version
@@ -99,6 +109,8 @@ extra_rdoc_files: []
99
109
  files:
100
110
  - .gitignore
101
111
  - .rspec
112
+ - .travis.yml
113
+ - CHANGELOG.md
102
114
  - Gemfile
103
115
  - LICENSE
104
116
  - README.md
@@ -106,78 +118,106 @@ files:
106
118
  - brewery_db.gemspec
107
119
  - lib/brewery_db.rb
108
120
  - lib/brewery_db/client.rb
121
+ - lib/brewery_db/collection.rb
109
122
  - lib/brewery_db/config.rb
123
+ - lib/brewery_db/mash.rb
124
+ - lib/brewery_db/middleware/error_handler.rb
125
+ - lib/brewery_db/request.rb
110
126
  - lib/brewery_db/resource.rb
111
127
  - lib/brewery_db/resources/beers.rb
112
128
  - lib/brewery_db/resources/breweries.rb
129
+ - lib/brewery_db/resources/brewery.rb
113
130
  - lib/brewery_db/resources/categories.rb
114
131
  - lib/brewery_db/resources/glassware.rb
115
132
  - lib/brewery_db/resources/search.rb
116
133
  - lib/brewery_db/resources/styles.rb
117
134
  - lib/brewery_db/response.rb
118
135
  - lib/brewery_db/version.rb
136
+ - lib/brewery_db/web_hook.rb
119
137
  - spec/brewery_db/client_spec.rb
120
138
  - spec/brewery_db/config_spec.rb
139
+ - spec/brewery_db/mash_spec.rb
140
+ - spec/brewery_db/middleware/error_handler_spec.rb
121
141
  - spec/brewery_db/resource_spec.rb
122
142
  - spec/brewery_db/resources/beers_spec.rb
123
143
  - spec/brewery_db/resources/breweries_spec.rb
144
+ - spec/brewery_db/resources/brewery_spec.rb
124
145
  - spec/brewery_db/resources/categories_spec.rb
125
146
  - spec/brewery_db/resources/glassware_spec.rb
126
147
  - spec/brewery_db/resources/search_spec.rb
127
148
  - spec/brewery_db/resources/styles_spec.rb
128
- - spec/brewery_db/response_spec.rb
129
- - spec/brewery_db_spec.rb
130
- - spec/fixtures/beers.yml
131
- - spec/fixtures/breweries.yml
132
- - spec/fixtures/categories.yml
133
- - spec/fixtures/glassware.yml
134
- - spec/fixtures/search.yml
135
- - spec/fixtures/styles.yml
149
+ - spec/brewery_db/web_hook_spec.rb
150
+ - spec/fixtures/BreweryDB_Resource/_get/a_list_of_resources/can_be_enumerated.yml
151
+ - spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/raises_an_exception.yml
152
+ - spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/sets_the_exception_message_to_the_error_message_in_the_response.yml
153
+ - spec/fixtures/BreweryDB_Resource/_get/an_OK_request/name/.yml
154
+ - spec/fixtures/BreweryDB_Resources_Beers/_all/fetches_all_of_the_beers_at_once.yml
155
+ - spec/fixtures/BreweryDB_Resources_Beers/_find/fetches_only_the_beer_asked_for.yml
156
+ - spec/fixtures/BreweryDB_Resources_Breweries/_all/fetches_all_of_the_breweries_at_once.yml
157
+ - spec/fixtures/BreweryDB_Resources_Breweries/_find/fetches_only_the_brewery_asked_for.yml
158
+ - spec/fixtures/BreweryDB_Resources_Categories/_all/fetches_all_of_the_cagtegories_at_once.yml
159
+ - spec/fixtures/BreweryDB_Resources_Categories/_find/fetches_only_the_category_asked_for.yml
160
+ - spec/fixtures/BreweryDB_Resources_Glassware/_all/fetches_all_of_the_glassware_at_once.yml
161
+ - spec/fixtures/BreweryDB_Resources_Glassware/_find/fetches_only_the_glassware_asked_for.yml
162
+ - spec/fixtures/BreweryDB_Resources_Search/_all/fetches_all_of_the_search_results_at_once.yml
163
+ - spec/fixtures/BreweryDB_Resources_Styles/_all/fetches_all_of_the_styles_at_once.yml
164
+ - spec/fixtures/BreweryDB_Resources_Styles/_find/fetches_only_the_style_asked_for.yml
136
165
  - spec/spec_helper.rb
137
166
  - spec/support/shared/a_resource.rb
138
167
  - spec/support/vcr.rb
139
168
  homepage: http://github.com/tylerhunt/brewery_db
140
169
  licenses: []
170
+ metadata: {}
141
171
  post_install_message:
142
172
  rdoc_options: []
143
173
  require_paths:
144
174
  - lib
145
175
  required_ruby_version: !ruby/object:Gem::Requirement
146
- none: false
147
176
  requirements:
148
177
  - - ! '>='
149
178
  - !ruby/object:Gem::Version
150
179
  version: '1.9'
151
180
  required_rubygems_version: !ruby/object:Gem::Requirement
152
- none: false
153
181
  requirements:
154
182
  - - ! '>='
155
183
  - !ruby/object:Gem::Version
156
184
  version: '0'
157
185
  requirements: []
158
186
  rubyforge_project:
159
- rubygems_version: 1.8.24
187
+ rubygems_version: 2.0.3
160
188
  signing_key:
161
- specification_version: 3
162
- summary: A Ruby library for interfacing with the BreweryDB API.
189
+ specification_version: 4
190
+ summary: A Ruby library for using the BreweryDB API.
163
191
  test_files:
164
192
  - spec/brewery_db/client_spec.rb
165
193
  - spec/brewery_db/config_spec.rb
194
+ - spec/brewery_db/mash_spec.rb
195
+ - spec/brewery_db/middleware/error_handler_spec.rb
166
196
  - spec/brewery_db/resource_spec.rb
167
197
  - spec/brewery_db/resources/beers_spec.rb
168
198
  - spec/brewery_db/resources/breweries_spec.rb
199
+ - spec/brewery_db/resources/brewery_spec.rb
169
200
  - spec/brewery_db/resources/categories_spec.rb
170
201
  - spec/brewery_db/resources/glassware_spec.rb
171
202
  - spec/brewery_db/resources/search_spec.rb
172
203
  - spec/brewery_db/resources/styles_spec.rb
173
- - spec/brewery_db/response_spec.rb
174
- - spec/brewery_db_spec.rb
175
- - spec/fixtures/beers.yml
176
- - spec/fixtures/breweries.yml
177
- - spec/fixtures/categories.yml
178
- - spec/fixtures/glassware.yml
179
- - spec/fixtures/search.yml
180
- - spec/fixtures/styles.yml
204
+ - spec/brewery_db/web_hook_spec.rb
205
+ - spec/fixtures/BreweryDB_Resource/_get/a_list_of_resources/can_be_enumerated.yml
206
+ - spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/raises_an_exception.yml
207
+ - spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/sets_the_exception_message_to_the_error_message_in_the_response.yml
208
+ - spec/fixtures/BreweryDB_Resource/_get/an_OK_request/name/.yml
209
+ - spec/fixtures/BreweryDB_Resources_Beers/_all/fetches_all_of_the_beers_at_once.yml
210
+ - spec/fixtures/BreweryDB_Resources_Beers/_find/fetches_only_the_beer_asked_for.yml
211
+ - spec/fixtures/BreweryDB_Resources_Breweries/_all/fetches_all_of_the_breweries_at_once.yml
212
+ - spec/fixtures/BreweryDB_Resources_Breweries/_find/fetches_only_the_brewery_asked_for.yml
213
+ - spec/fixtures/BreweryDB_Resources_Categories/_all/fetches_all_of_the_cagtegories_at_once.yml
214
+ - spec/fixtures/BreweryDB_Resources_Categories/_find/fetches_only_the_category_asked_for.yml
215
+ - spec/fixtures/BreweryDB_Resources_Glassware/_all/fetches_all_of_the_glassware_at_once.yml
216
+ - spec/fixtures/BreweryDB_Resources_Glassware/_find/fetches_only_the_glassware_asked_for.yml
217
+ - spec/fixtures/BreweryDB_Resources_Search/_all/fetches_all_of_the_search_results_at_once.yml
218
+ - spec/fixtures/BreweryDB_Resources_Styles/_all/fetches_all_of_the_styles_at_once.yml
219
+ - spec/fixtures/BreweryDB_Resources_Styles/_find/fetches_only_the_style_asked_for.yml
181
220
  - spec/spec_helper.rb
182
221
  - spec/support/shared/a_resource.rb
183
222
  - spec/support/vcr.rb
223
+ has_rdoc:
@@ -1,18 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe BreweryDB do
4
- subject { described_class }
5
-
6
- BreweryDB::Client.instance_methods(false).sort.each do |method|
7
- context "##{method}" do
8
- it 'responds to method' do
9
- described_class.should respond_to(method)
10
- end
11
-
12
- it 'delegates to #client' do
13
- BreweryDB::Client.any_instance.should_receive(method)
14
- described_class.send(method)
15
- end
16
- end
17
- end
18
- end
@@ -1,445 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: http://api.brewerydb.com/v2/beers?key=<%= api_key %>&abv=5.5
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
- - Mon, 26 Mar 2012 16:40:25 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":8,"data":[{"id":"VjQIQW","name":"2011
36
- Christmas Ale","description":"Every year since 1975 the brewers at Anchor
37
- have brewed a distinctive and unique Christmas Ale, which is available from
38
- early November to mid-January. The Ale''s recipe is different every year\u2014as
39
- is the tree on the label\u2014but the intent with which we offer it remains
40
- the same: joy and celebration of the newness of life.","abv":"5.5","glasswareId":5,"availableId":4,"styleId":98,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
41
- 04:00:59","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Seasonal","description":"Available
42
- at the same time of year, every year."},"style":{"id":98,"categoryId":23,"category":{"id":23,"name":"Specialty
43
- Beer","bjcpCategory":"23","createDate":"2012-03-26 04:00:04"},"name":"Specialty
44
- Beer","simpleUrl":"specialty-beer","createDate":"2012-03-26 04:00:04"}},{"id":"UwavWp","name":"40K
45
- Honey Wheat Ale","description":"This dry, crisp wheat ale is delicately spiced
46
- with coriander and orange peel and has complex floral aroma. The addition
47
- of orange blossom honey contributes to its light body and clean finish. It
48
- is easy drinking and pairs well with spicy foods.","abv":"5.5","ibu":"18","glasswareId":5,"availableId":1,"styleId":21,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
49
- 04:00:59","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
50
- Round","description":"Available year round as a staple beer."},"style":{"id":21,"categoryId":6,"category":{"id":6,"name":"Light
51
- Hybrid Beer","bjcpCategory":"6","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"D","name":"American
52
- 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-03-26
53
- 04:00:04"}},{"id":"6MWQlT","name":"420 IPA","description":"This beer is a
54
- very bitter West CoastIPA. It has very low malt character and lots of citrus
55
- flavor. It creates an explosion of hops in your mouth!","abv":"5.5","ibu":"100","glasswareId":5,"availableId":1,"styleId":49,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
56
- 04:00:59","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
57
- Round","description":"Available year round as a staple beer."},"style":{"id":49,"categoryId":14,"category":{"id":14,"name":"India
58
- Pale Ale (IPA)","bjcpCategory":"14","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"American
59
- 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-03-26
60
- 04:00:04"}},{"id":"bhV7OW","name":"Adnams Explorer","description":"A golden
61
- bitter suffused with the aromas of a grapefruit grove. The massive citrus
62
- attack will burst on your palate allowing all the flavours of the imported
63
- New World hops to deliver their fruity bitterness.","abv":"5.5","styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
64
- 04:01:00","style":{"id":25,"categoryId":8,"category":{"id":8,"name":"English
65
- Pale Ale","bjcpCategory":"8","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"A","name":"Standard\/Ordinary
66
- 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-03-26
67
- 04:00:04"}},{"id":"pOkCxU","name":"Airdale Homecoming","description":"Airdale
68
- Homecoming, is a classic brown porter spiced with cinnamon, nutmeg, and vanilla.
69
- It starts with hints of espresso on the nose and a light malt sweetness with
70
- faint traces of chocolate and vanilla. Caramel notes come through as well.
71
- The Holiday spices are faint, allowing the porter''s flavor to dominate while
72
- the spices enhance the chocolate notes. A light-bodied beer, the finish is
73
- smooth with a subtle hoppy bitterness. A wonderful warming effect makes this
74
- beer a perfect holiday treat! Available from October thru December.","abv":"5.5","ibu":"25","glasswareId":5,"srmId":35,"availableId":4,"styleId":74,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
75
- 04:01:01","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"srm":{"name":"35","hex":"470606"},"available":{"name":"Seasonal","description":"Available
76
- at the same time of year, every year."},"style":{"id":74,"categoryId":21,"category":{"id":21,"name":"Spice\/Herb\/Vegetable
77
- Beer","bjcpCategory":"21","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"A","name":"Spice,
78
- Herb, or Vegetable Beer","simpleUrl":"spice-herb-or-vegetable-beer","createDate":"2012-03-26
79
- 04:00:04"}},{"id":"9iHVoX","name":"Alembic Pale","abv":"5.5","styleId":33,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
80
- 04:01:01","style":{"id":33,"categoryId":10,"category":{"id":10,"name":"American
81
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"A","name":"American
82
- 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-03-26
83
- 04:00:04"}},{"id":"ajYcGf","name":"Alpine Spring","description":"Brewed especially
84
- for the season, this bright citrusy unfiltered lager is both satisfying and
85
- refreshing. It\u2019s the perfect transition from winter\u2019s heavier brews
86
- to the lighter beers of summer. Borne of our brewers\u2019 many trips to Germany,
87
- Alpine Spring features a unique blend of lager attributes: the balanced maltiness
88
- and hoppiness of a Helles, the smoothness and slightly higher alcohol of a
89
- traditional spring bock, and the unfiltered appearance of a Kellerbier. The
90
- beer is brewed with Tettnang Noble hops to add a unique, bright orange-citrusy
91
- aroma and flavor.","abv":"5.5","ibu":"19","glasswareId":5,"srmId":9,"availableId":5,"styleId":4,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
92
- 04:01:02","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"srm":{"name":"9","hex":"E58500"},"available":{"name":"Spring","description":"Available
93
- during the spring months."},"style":{"id":4,"categoryId":1,"category":{"id":1,"name":"Light
94
- Lager","bjcpCategory":"1","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"D","name":"Munich
95
- 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-03-26
96
- 04:00:04"}},{"id":"rmoVms","name":"Altbairisch Dunkel","abv":"5.5","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
97
- 04:01:02"},{"id":"EamfIY","name":"ALTered Spring","description":"Using a German
98
- Ale yeast strain, Tyler West and Brett Thomas bring you this fun malty ALT
99
- style beer just in time for spring. ALTered Spring is a deep rich mahogany
100
- ale fermented at lager (cold) temps. It has a smooth hop bite and slightly
101
- sweet malt offering.","abv":"5.5","ibu":"50","glasswareId":5,"availableId":4,"styleId":22,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
102
- 04:01:02","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Seasonal","description":"Available
103
- at the same time of year, every year."},"style":{"id":22,"categoryId":7,"category":{"id":7,"name":"Amber
104
- Hybrid Beer","bjcpCategory":"7","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"A","name":"North
105
- 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-03-26
106
- 04:00:04"}},{"id":"6pcgrO","name":"Altitude Amber Ale","description":"A medium
107
- bodied ale, Altitude Amber is light amber in color with a medium caramel tone.
108
- Hops contribute a mild pine and citrus flavor.","abv":"5.5","glasswareId":5,"availableId":1,"styleId":34,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
109
- 04:01:02","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
110
- Round","description":"Available year round as a staple beer."},"style":{"id":34,"categoryId":10,"category":{"id":10,"name":"American
111
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"American
112
- 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-03-26
113
- 04:00:04"}},{"id":"EBAN4f","name":"Amber Ale","description":"There is no better
114
- way to celebrate the repeal of prohibition than with a cold glass of Tap Room
115
- No. 21 Amber Ale. No longer bound by law to secretly sip away in speakeasies,
116
- Moe\u2019s Backroom Amber Ale can now be enjoyed in any setting, so raise
117
- a glass to celebrate our freedoms.","abv":"5.5","ibu":"18","availableId":1,"styleId":34,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
118
- 04:01:02","available":{"name":"Year Round","description":"Available year round
119
- as a staple beer."},"style":{"id":34,"categoryId":10,"category":{"id":10,"name":"American
120
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"American
121
- 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-03-26
122
- 04:00:04"}},{"id":"75SK5F","name":"Amber Ale","description":"An American amber.
123
- This beer is slightly malty on the palate with a very balancing hop bitterness.
124
- A drinkable beer, one of the Empire''s top-selling brews.","abv":"5.5","glasswareId":5,"availableId":1,"styleId":34,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
125
- 04:01:03","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
126
- Round","description":"Available year round as a staple beer."},"style":{"id":34,"categoryId":10,"category":{"id":10,"name":"American
127
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"American
128
- 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-03-26
129
- 04:00:04"}},{"id":"0neOJT","name":"Amber Lager","description":"Hardtail Lager
130
- is an Amber American Lager with a moderate caramel sweetness coming from the
131
- generous use of munich and caramel malts, and balanced with moderate use of
132
- European noble hops for flavor and bitterness. Hardtail is fermented cold
133
- and lagered for 30 day thus providing the active hardtail consumer a crisp
134
- full body drinkable beer, not too heavy, not too light, just right. I\u2019ll
135
- have another.","abv":"5.5","glasswareId":5,"styleId":2,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
136
- 04:01:03","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"style":{"id":2,"categoryId":1,"category":{"id":1,"name":"Light
137
- Lager","bjcpCategory":"1","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"Standard
138
- 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-03-26
139
- 04:00:04"}},{"id":"uHkoFr","name":"Amber Reign","description":"A malty amber
140
- ale.","abv":"5.5","ibu":"30","glasswareId":5,"availableId":1,"styleId":34,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
141
- 04:01:03","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
142
- Round","description":"Available year round as a staple beer."},"style":{"id":34,"categoryId":10,"category":{"id":10,"name":"American
143
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"American
144
- 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-03-26
145
- 04:00:04"}},{"id":"IP8YdB","name":"Amber Road","abv":"5.5","ibu":"35","glasswareId":5,"styleId":34,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
146
- 04:01:03","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"style":{"id":34,"categoryId":10,"category":{"id":10,"name":"American
147
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"American
148
- 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-03-26
149
- 04:00:04"}},{"id":"jtbrHh","name":"Amber Weizen","abv":"5.5","styleId":3,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
150
- 04:01:03","style":{"id":3,"categoryId":1,"category":{"id":1,"name":"Light
151
- Lager","bjcpCategory":"1","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"C","name":"Premium
152
- 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-03-26
153
- 04:00:04"}},{"id":"XGGIxw","name":"American Wheat","description":"The American
154
- Wheat Ale is a clean, refreshing golden ale made with Northwest Two-Row and
155
- White Wheat Malts. A low hop character allows the grain flavors to dominate.
156
- Served unfiltered with or without a citrus balance (lemon wedge). 5.5% Volume","abv":"5.5","glasswareId":5,"availableId":4,"styleId":21,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
157
- 04:01:03","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Seasonal","description":"Available
158
- at the same time of year, every year."},"style":{"id":21,"categoryId":6,"category":{"id":6,"name":"Light
159
- Hybrid Beer","bjcpCategory":"6","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"D","name":"American
160
- 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-03-26
161
- 04:00:04"}},{"id":"rZnboz","name":"Anchor Bock","description":"San Francisco''s
162
- Anchor Bock Beer is virtually handmade by the brewers of Anchor Steam\u00ae
163
- Beer, in one of the most traditional small breweries in the world. It is brewed
164
- from a complex blend of the finest barley malts, wheat malts, and fresh, whole
165
- hops.","abv":"5.5","availableId":5,"styleId":15,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
166
- 04:01:03","available":{"name":"Spring","description":"Available during the
167
- spring months."},"style":{"id":15,"categoryId":5,"category":{"id":5,"name":"Bock","bjcpCategory":"5","createDate":"2012-03-26
168
- 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-03-26
169
- 04:00:04"}},{"id":"kgREBO","name":"Anvil ESB","description":"Anvil ESB Ale
170
- was the first beer produced when the brewery opened, and remains our flagship
171
- ale.\r\n\r\nBright copper color with light tan head. Malty slightly hoppy
172
- aroma. Caramel and malty flavors with a perfect balance of imported English
173
- hops.","abv":"5.5","glasswareId":5,"availableId":1,"styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
174
- 04:01:04","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
175
- Round","description":"Available year round as a staple beer."},"style":{"id":25,"categoryId":8,"category":{"id":8,"name":"English
176
- Pale Ale","bjcpCategory":"8","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"A","name":"Standard\/Ordinary
177
- 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-03-26
178
- 04:00:04"}},{"id":"IfdQT6","name":"Apline Ale","description":"Our namesake
179
- ale represents everything a good, well balanced pale ale should be: malty
180
- but not too sweet, refreshing but not too bitter, full-bodied but not too
181
- heavy, lively but not over carbonated. A clean, everyday beer that leaves
182
- your palate begging for more.","abv":"5.5","ibu":"32","glasswareId":5,"availableId":1,"styleId":33,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
183
- 04:01:04","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
184
- Round","description":"Available year round as a staple beer."},"style":{"id":33,"categoryId":10,"category":{"id":10,"name":"American
185
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"A","name":"American
186
- 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-03-26
187
- 04:00:04"}},{"id":"aiTrwi","name":"Appalachian Amber Ale","description":"Thomas
188
- Creek Amber is a full-bodied ale with malty flavor, rich caramel color, and
189
- a smooth aromatic finish. \r\n\r\nMalts: 2 Row Pale, Carapils, Carmel 40,
190
- Carmel 60, Black Patent\r\nHops: Hallertauer, Tettenger, East Kent Golding\r\n\r\nSilver
191
- - 2008 Carolinas Championship of Beers\r\nGold - 2006 Carolinas Championship
192
- of Beers\r\nSilver - 2003 Carolinas Championship of Beers","abv":"5.5","ibu":"32","glasswareId":5,"availableId":1,"styleId":34,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
193
- 04:01:04","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
194
- Round","description":"Available year round as a staple beer."},"style":{"id":34,"categoryId":10,"category":{"id":10,"name":"American
195
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"American
196
- 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-03-26
197
- 04:00:04"}},{"id":"N7wzDd","name":"Apricot Honey Wheat","description":"Great
198
- aroma and flavor","abv":"5.5","glasswareId":5,"availableId":1,"styleId":98,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
199
- 04:01:04","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
200
- Round","description":"Available year round as a staple beer."},"style":{"id":98,"categoryId":23,"category":{"id":23,"name":"Specialty
201
- Beer","bjcpCategory":"23","createDate":"2012-03-26 04:00:04"},"name":"Specialty
202
- Beer","simpleUrl":"specialty-beer","createDate":"2012-03-26 04:00:04"}},{"id":"nkWky7","name":"Arber
203
- Spezial","abv":"5.5","glasswareId":5,"styleId":14,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
204
- 04:01:04","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"style":{"id":14,"categoryId":5,"category":{"id":5,"name":"Bock","bjcpCategory":"5","createDate":"2012-03-26
205
- 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-03-26
206
- 04:00:04"}},{"id":"5KGwLo","name":"Archtop Amber","description":"The Archtop
207
- Amber is named after the classic jazz and swing style guitars made famous
208
- back in the 1930\u2019s. Archtop amber is a medium hopped amber with a nice
209
- rich malty character. Not your average amber the Archtop utilizes Columbus, Liberty
210
- and Perle hops. ABV is around 5.5%.","abv":"5.5","ibu":"35","glasswareId":5,"availableId":1,"styleId":34,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
211
- 04:01:04","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
212
- Round","description":"Available year round as a staple beer."},"style":{"id":34,"categoryId":10,"category":{"id":10,"name":"American
213
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"American
214
- 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-03-26
215
- 04:00:04"}},{"id":"BYR7Rq","name":"Artist Colony Ale","abv":"5.5","styleId":34,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
216
- 04:01:05","style":{"id":34,"categoryId":10,"category":{"id":10,"name":"American
217
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"American
218
- 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-03-26
219
- 04:00:04"}},{"id":"yzu0EF","name":"Ashland Amber","description":"A crisp,
220
- well-balanced, refreshing amber. Simplicity is the key to this recipe.","abv":"5.5","styleId":34,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
221
- 04:01:05","style":{"id":34,"categoryId":10,"category":{"id":10,"name":"American
222
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"American
223
- 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-03-26
224
- 04:00:04"}},{"id":"m6JIyk","name":"Atwater Ale","abv":"5.5","glasswareId":5,"availableId":1,"styleId":33,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
225
- 04:01:05","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
226
- Round","description":"Available year round as a staple beer."},"style":{"id":33,"categoryId":10,"category":{"id":10,"name":"American
227
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"A","name":"American
228
- 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-03-26
229
- 04:00:04"}},{"id":"qIXVbF","name":"B.F. Ete","description":"This light & refreshing
230
- saison was brewed to go down easy for the hot summer months. With a golden
231
- straw color and an ABV at a session-worthy 5%, this ale is as enjoyable as
232
- a cool dip in the pool on a sultry night.","abv":"5.5","ibu":"24","glasswareId":5,"availableId":1,"styleId":57,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
233
- 04:01:05","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
234
- Round","description":"Available year round as a staple beer."},"style":{"id":57,"categoryId":16,"category":{"id":16,"name":"Belgian
235
- & French Ale","bjcpCategory":"16","createDate":"2012-03-26 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-03-26
236
- 04:00:04"}},{"id":"xcavmg","name":"Back Forty","description":"Back FortyThe
237
- \u201cBack Forty\u201d is property commonly found on the outskirts of the
238
- Wisconsin family farm. Here uncultivated acres wait prime for adventure- forts,
239
- tree houses, rope swings and first kisses! A place to run away, to camp, to
240
- climb, to build, to play. Not actually home but not too far away. That\u2019s
241
- the Back Forty. The beer you hold is similar both dark and adventurous still
242
- smooth and familiar. Here\u2019s a beer you can enjoy without pretense or
243
- explanation. Every mind requires some acres of possibility, space for dreams,
244
- the great escape, everyone needs a Back Forty.","abv":"5.5","glasswareId":5,"availableId":4,"styleId":15,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
245
- 04:01:05","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Seasonal","description":"Available
246
- at the same time of year, every year."},"style":{"id":15,"categoryId":5,"category":{"id":5,"name":"Bock","bjcpCategory":"5","createDate":"2012-03-26
247
- 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-03-26
248
- 04:00:04"}},{"id":"eNy3nY","name":"Bad Penny","description":"This dark brown
249
- ale is slightly sweet with a caramel and dark fruit finish. A show case of
250
- fine English malts, floor-malted the old way. We use pale, chocolate and crystal
251
- malts to produce a complex but easy drinking dark ale. Very reminiscent of
252
- northern English ales.","abv":"5.5","ibu":"25","glasswareId":5,"availableId":1,"styleId":35,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
253
- 04:01:05","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
254
- Round","description":"Available year round as a staple beer."},"style":{"id":35,"categoryId":10,"category":{"id":10,"name":"American
255
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"C","name":"American
256
- 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-03-26
257
- 04:00:04"}},{"id":"j9LUjn","name":"Bearpaw Brown Ale","description":"Dark
258
- and hoppy with a balance towards malt\r\n\r\nOur brown ale is similar to the
259
- Amber Ale but with more malt flavor. This beer is slightly roasted with resinous
260
- and citrus hop flavors, always on tap at Altitude.","abv":"5.5","glasswareId":5,"availableId":1,"styleId":35,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
261
- 04:01:07","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
262
- Round","description":"Available year round as a staple beer."},"style":{"id":35,"categoryId":10,"category":{"id":10,"name":"American
263
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"C","name":"American
264
- 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-03-26
265
- 04:00:04"}},{"id":"lb3YEv","name":"Beastie Barrel Stout","description":"Our
266
- Oatmeal Stout aged in bourbon barrels from Buffalo Trace Distillery in Frankfort
267
- Kentucky. Aging the barrels in our brewery cold room results in a smooth bourbon
268
- aroma and flavor that enhances the base oatmeal stout.","abv":"5.5","ibu":"27","glasswareId":6,"srmId":41,"availableId":1,"styleId":78,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
269
- 04:01:07","glass":{"id":6,"name":"Snifter","createDate":"2012-03-26 04:00:04"},"srm":{"name":"Over
270
- 40","hex":"000000"},"available":{"name":"Year Round","description":"Available
271
- year round as a staple beer."},"style":{"id":78,"categoryId":22,"category":{"id":22,"name":"Smoke-Flavored
272
- & Wood-Aged Beer","bjcpCategory":"22","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"C","name":"Wood-Aged
273
- Beer","simpleUrl":"wood-aged-beer","createDate":"2012-03-26 04:00:04"}},{"id":"gtz6aU","name":"Belgian
274
- White","description":"A light refreshing Belgian style wheat beer brewed with
275
- un-malted wheat, orange peel & coriander. A very old style of beer originally
276
- brewed by Belgian farmers.\r\n\r\nMalt Varieties: Pale Malt, Wheat\r\nHop
277
- Varieties: Perle, Hallertau","abv":"5.5","ibu":"21","glasswareId":5,"styleId":55,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
278
- 04:01:08","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"style":{"id":55,"categoryId":16,"category":{"id":16,"name":"Belgian
279
- & French Ale","bjcpCategory":"16","createDate":"2012-03-26 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-03-26
280
- 04:00:04"}},{"id":"s6Xcae","name":"Belgian-Style Wit","description":"Belgian-style
281
- beers have become popular with craft beer drinkers because of their dynamic
282
- offbeat flavors. They can range from fruity to tangy tart in one sip. Our
283
- Belgian-style wit (white) has pilzen malt as well as malted and unmalted wheat
284
- to produce that classic hazzy canary colors and soft palate. Corriander (seed
285
- of cilantro) and orange peel are used in the brewing process to develop a
286
- delicious taste best described as citrus\/celery like. This beer drinks easy
287
- and finishes with a refreshing tartness.","abv":"5.5","glasswareId":5,"availableId":4,"styleId":55,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
288
- 04:01:08","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Seasonal","description":"Available
289
- at the same time of year, every year."},"style":{"id":55,"categoryId":16,"category":{"id":16,"name":"Belgian
290
- & French Ale","bjcpCategory":"16","createDate":"2012-03-26 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-03-26
291
- 04:00:04"}},{"id":"YlCXld","name":"Bellegems Bruin","abv":"5.5","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
292
- 04:01:08"},{"id":"LDeB6E","name":"Belly River Oat Meal Stout","description":"A
293
- full bodied, dark stout with creamy texture balanced by a slightly roasty
294
- taste. Pale, Chocolate, Crystal malts and oatmeal contribute a delicious
295
- caramel flavor. Traditionally mild UK Kent Golding Hops help to balance to
296
- the malty body of this brew.","abv":"5.5","ibu":"30","glasswareId":5,"srmId":28,"availableId":1,"styleId":46,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
297
- 04:01:08","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"srm":{"name":"28","hex":"6A0E00"},"available":{"name":"Year
298
- Round","description":"Available year round as a staple beer."},"style":{"id":46,"categoryId":13,"category":{"id":13,"name":"Stout","bjcpCategory":"13","createDate":"2012-03-26
299
- 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-03-26
300
- 04:00:04"}},{"id":"lq4A30","name":"Best Bitter","abv":"5.5","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
301
- 04:01:08"},{"id":"WHUmQJ","name":"Bink Blond","description":"The \u2018Bink
302
- blond\u2019 was the first who came out of the barrels. It\u2019s a beer of
303
- high fermentation, unfiltered and not pasteurized, with secondary fermentation
304
- in the bottle. This beer with a hoppy character is the perfect thirst-quencher.
305
- The ingredients are: two types of malt, two Belgian types of hop, brewing
306
- liquor and yeast. Our \u2018Bink blond\u2019 is a fresh and lightly digestible
307
- beer with a hoppy flavor and a bitter aftertaste.","abv":"5.5","glasswareId":8,"styleId":66,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
308
- 04:01:10","glass":{"id":8,"name":"Tulip","createDate":"2012-03-26 04:00:04"},"style":{"id":66,"categoryId":18,"category":{"id":18,"name":"Belgian
309
- Strong Ale","bjcpCategory":"18","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"A","name":"Belgian
310
- 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-03-26
311
- 04:00:04"}},{"id":"txlyXu","name":"Bink Bruin","description":"The \u2018Bink
312
- brown\u2019 is the most known \u2018Bink beer\u2019. It\u2019s a beer of high
313
- fermentation, unfiltered and not pasteurized, with secondary fermentation
314
- in the bottle. This tasty beer is appreciated by the lover of brown beers.
315
- The ingredients are: four types of malt, one Belgian type of hop, brewing
316
- liquor and yeast. Our \u2018Bink brown\u2019 is a full and softly bitter beer
317
- with an aftertaste of sweets and malt.","abv":"5.5","glasswareId":8,"availableId":1,"styleId":56,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
318
- 04:01:10","glass":{"id":8,"name":"Tulip","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
319
- Round","description":"Available year round as a staple beer."},"style":{"id":56,"categoryId":16,"category":{"id":16,"name":"Belgian
320
- & French Ale","bjcpCategory":"16","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"Belgian
321
- 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-03-26
322
- 04:00:04"}},{"id":"SX2Mfb","name":"Black Beard\u2019s Delight","abv":"5.5","glasswareId":5,"styleId":12,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
323
- 04:01:10","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"style":{"id":12,"categoryId":4,"category":{"id":4,"name":"Dark
324
- Lager","bjcpCategory":"4","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"Munich
325
- 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-03-26
326
- 04:00:04"}},{"id":"Z94r3V","name":"Black Lab Stout","description":"Delicious
327
- and satisfying anytime of year! A rich, dark ale brewed with nine different
328
- malts along with roasted barley, with hints of coffee and cocoa.","abv":"5.5","glasswareId":5,"availableId":1,"styleId":46,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
329
- 04:01:11","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
330
- Round","description":"Available year round as a staple beer."},"style":{"id":46,"categoryId":13,"category":{"id":13,"name":"Stout","bjcpCategory":"13","createDate":"2012-03-26
331
- 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-03-26
332
- 04:00:04"}},{"id":"fZ5Fh0","name":"Blast Furnace","abv":"5.5","glasswareId":5,"styleId":19,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
333
- 04:01:12","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"style":{"id":19,"categoryId":6,"category":{"id":6,"name":"Light
334
- Hybrid Beer","bjcpCategory":"6","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"B","name":"Blonde
335
- 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-03-26
336
- 04:00:04"}},{"id":"OxRMEs","name":"Bluff Creek Pale Ale","description":"An
337
- American Pale Ale. Citrus notes, well balanced, crisp with a hoppy aroma.","abv":"5.5","glasswareId":5,"availableId":1,"styleId":33,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
338
- 04:01:13","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
339
- Round","description":"Available year round as a staple beer."},"style":{"id":33,"categoryId":10,"category":{"id":10,"name":"American
340
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"A","name":"American
341
- 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-03-26
342
- 04:00:04"}},{"id":"WGQ26M","name":"BMB Brown Ale","description":"Anglo-American-style
343
- Brown Ale.","abv":"5.5","glasswareId":5,"availableId":1,"styleId":35,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
344
- 04:01:13","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
345
- Round","description":"Available year round as a staple beer."},"style":{"id":35,"categoryId":10,"category":{"id":10,"name":"American
346
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"C","name":"American
347
- 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-03-26
348
- 04:00:04"}},{"id":"rfqa2o","name":"Bonaventure Pale Ale","description":"Light
349
- amber color and a mild malty background. Well-hopped featuring Cascade hops
350
- with a distinct floral finish.","abv":"5.5","styleId":33,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
351
- 04:01:14","style":{"id":33,"categoryId":10,"category":{"id":10,"name":"American
352
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"A","name":"American
353
- 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-03-26
354
- 04:00:04"}},{"id":"fLP773","name":"Bone-A-Fide Pale Ale","description":"This
355
- West Coast Style Pale Ale is brewed for a big hoppy finish. Golden to copper
356
- in color. The mals used to create the beer will balance nicely with some
357
- of the Yakima Valley''s most bonafide hop varieties: cascade, centennial &
358
- chinook. The floral aroma should jump out of the glass thanks to the copious
359
- quantities of hops used in the dry hop process. If you are a \"hop head\",
360
- hop on!!!","abv":"5.5","ibu":"38","glasswareId":5,"availableId":1,"styleId":33,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
361
- 04:01:14","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
362
- Round","description":"Available year round as a staple beer."},"style":{"id":33,"categoryId":10,"category":{"id":10,"name":"American
363
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"A","name":"American
364
- 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-03-26
365
- 04:00:04"}},{"id":"HzMTba","name":"Bottle Conditioned Porter","abv":"5.5","styleId":39,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
366
- 04:01:14","style":{"id":39,"categoryId":12,"category":{"id":12,"name":"Porter","bjcpCategory":"12","createDate":"2012-03-26
367
- 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-03-26
368
- 04:00:04"}},{"id":"6TtsDQ","name":"Breaker","description":"A hopped up American
369
- pale ale (APA) with a generous dose of Pacific Northwest hops. Brewed with
370
- American 2-row malt and a touch of light caramel malt, this APA is dry hopped
371
- with Columbus, Centennial, and Cascade hops for a burst of fresh aromatics
372
- that greets every sip.","abv":"5.5","ibu":"51","glasswareId":5,"availableId":1,"styleId":33,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
373
- 04:01:15","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Year
374
- Round","description":"Available year round as a staple beer."},"style":{"id":33,"categoryId":10,"category":{"id":10,"name":"American
375
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"A","name":"American
376
- 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-03-26
377
- 04:00:04"}},{"id":"wGMbf4","name":"Brian Boru","description":"Ireland\u2019s
378
- first and last Ard Ri (high king) of the whole Gaelic race, Brian Boru was
379
- born in Munster, Ireland around 940. Brian Boru\u2019s mother was killed by
380
- Vikings when he was a child. He spent his life uniting the Irish tribes to
381
- become the first king of Ireland only to be killed at Clontarf on Good Friday
382
- 1014 putting down a rebellion by the king of the province of Leinster. Brian
383
- Boru Irish Brand Red Ale is a very rich ale with toffee, caramel, citrus and
384
- pineapple notes. Brian Boru is brewed with several malts and Amarillo hops.
385
- February release.","abv":"5.5","ibu":"40","glasswareId":5,"availableId":4,"styleId":31,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
386
- 04:01:15","glass":{"id":5,"name":"Pint","createDate":"2012-03-26 04:00:04"},"available":{"name":"Seasonal","description":"Available
387
- at the same time of year, every year."},"style":{"id":31,"categoryId":9,"category":{"id":9,"name":"Scottish
388
- & Irish Ale","bjcpCategory":"9","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"D","name":"Irish
389
- 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-03-26
390
- 04:00:04"}},{"id":"LVDnG6","name":"Bridge Creek Pilsner","description":"The
391
- Bridge Creek Pilsner is a crisp Czech Style lager brewed cold. Using European
392
- hops and traditional yeast and malts, our Pilsner is light, pleasing and plentiful.
393
- Prost! \r\n\r\nSILVER MEDAL 2011 North American Beer Awards - Bohemian Pilsner\r\nBRONZE
394
- MEDAL 2010 Great American Breer Fest","abv":"5.5","ibu":"45","glasswareId":4,"styleId":7,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
395
- 04:01:15","glass":{"id":4,"name":"Pilsner","createDate":"2012-03-26 04:00:04"},"style":{"id":7,"categoryId":2,"category":{"id":2,"name":"Pilsner","bjcpCategory":"2","createDate":"2012-03-26
396
- 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-03-26
397
- 04:00:04"}}],"status":"success"}'
398
- http_version:
399
- recorded_at: Mon, 26 Mar 2012 16:40:27 GMT
400
- - request:
401
- method: get
402
- uri: http://api.brewerydb.com/v2/beer/vYlBZQ?key=<%= api_key %>
403
- body:
404
- encoding: US-ASCII
405
- string: ''
406
- headers:
407
- User-Agent:
408
- - BreweryDB Ruby Gem 0.0.1
409
- response:
410
- status:
411
- code: 200
412
- message:
413
- headers:
414
- date:
415
- - Mon, 26 Mar 2012 16:58:21 GMT
416
- server:
417
- - Apache/2.2.21 (Amazon)
418
- x-powered-by:
419
- - PHP/5.3.10
420
- x-ratelimit-limit:
421
- - Unlimited
422
- x-ratelimit-remaining:
423
- - Unlimited
424
- content-length:
425
- - '1414'
426
- connection:
427
- - close
428
- content-type:
429
- - application/json
430
- body:
431
- encoding: US-ASCII
432
- string: ! '{"message":"Request Successful","data":{"id":"vYlBZQ","name":"Peacemaker","description":"Peace
433
- is a dangerous thing. Peacemaker is a west coast style American Pale Ale
434
- that uses several hop varieties to produces a unique and bountiful hop aroma
435
- with well balanced bitterness. A special blend of American and European malts
436
- make this a very well rounded, characterful beer.","abv":"5.7","glasswareId":5,"availableId":1,"styleId":33,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/vYlBZQ\/upload_TD7ipr-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/vYlBZQ\/upload_TD7ipr-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/vYlBZQ\/upload_TD7ipr-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-03-26
437
- 04:02:10","updateDate":"2012-03-26 04:38:49","glass":{"id":5,"name":"Pint","createDate":"2012-03-26
438
- 04:00:04"},"available":{"name":"Year Round","description":"Available year
439
- round as a staple beer."},"style":{"id":33,"categoryId":10,"category":{"id":10,"name":"American
440
- Ale","bjcpCategory":"10","createDate":"2012-03-26 04:00:04"},"bjcpSubcategory":"A","name":"American
441
- 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-03-26
442
- 04:00:04"}},"status":"success"}'
443
- http_version:
444
- recorded_at: Mon, 26 Mar 2012 16:58:22 GMT
445
- recorded_with: VCR 2.0.0