lita-onewheel-baileys 3.4.0 → 3.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1b4030c73a29f11bfc4d9ab88f1322556f72d044
4
- data.tar.gz: 519cd61841d9cfc846d96437af7403a3b31a54f6
3
+ metadata.gz: 8d7f3a77e5632386242cad3dea416acec650cdce
4
+ data.tar.gz: c85e4caaaaf0c69b930e8b5487d16f9a3b064653
5
5
  SHA512:
6
- metadata.gz: dba29a396e1443c206dc64da0e8a3d51de291b4bbdf0903b9c79983dccaa2ad627b1952bba182052c878cfd78bb5e434a48bfdf6561fc385d630b1729eb57995
7
- data.tar.gz: b9a71b1ce256b06e99bad8576cdfb655599c0c198c8171172f7ff35faefc954211ad1f297d67ff2a01ef53bbdb5f0dae2be152b147cf092eb3fbb2e2a996fca6
6
+ metadata.gz: f3ef79346e8b6dc4944e3665e259973601f39fca103908bb33c716b3523507908aeda1a2bb7afe133cc16590220284997d3dfcc78fc858367b4a4f43a922a5bf
7
+ data.tar.gz: 7bdf4621e3aa5674adc478dd61941af4ff88dea8f4963f94e7b4e5233d3e0fde82f9f240e883fb7099e4a06ba7cc216c5058c2a814c4eedf33a2f950e87b0308
@@ -15,12 +15,12 @@ module Lita
15
15
  command: true,
16
16
  help: {'taps 4' => 'Display the tap 4 deets, including prices.'}
17
17
 
18
- route /^taps ([<>\w.]+)%$/i,
18
+ route /^taps ([<>=\w.\s]+)%$/i,
19
19
  :taps_by_abv,
20
20
  command: true,
21
21
  help: {'taps >4%' => 'Display beers over 4% ABV.'}
22
22
 
23
- route /^taps ([<>\$\w.]+)$/i,
23
+ route /^taps ([<>=\$\w.\s]+)$/i,
24
24
  :taps_by_price,
25
25
  command: true,
26
26
  help: {'taps <$5' => 'Display beers under $5.'}
@@ -65,13 +65,19 @@ module Lita
65
65
  end
66
66
  query = response.matches[0][0].strip
67
67
  # Search directly by abv matcher.
68
- if (abv_matches = query.match(/([><])(\d+\.*\d*)/))
69
- direction = abv_matches.to_s.match(/[<>]/).to_s
68
+ if (abv_matches = query.match(/([><=]+)\s*(\d+\.*\d*)/))
69
+ direction = abv_matches.to_s.match(/[<>=]+/).to_s
70
70
  abv_requested = abv_matches.to_s.match(/\d+.*\d*/).to_s
71
- if direction == '>' and datum[:abv].to_f >= abv_requested.to_f
71
+ if direction == '>' and datum[:abv].to_f > abv_requested.to_f
72
72
  send_response(tap, datum, response)
73
73
  end
74
- if direction == '<' and datum[:abv].to_f <= abv_requested.to_f
74
+ if direction == '<' and datum[:abv].to_f < abv_requested.to_f
75
+ send_response(tap, datum, response)
76
+ end
77
+ if direction == '>=' and datum[:abv].to_f >= abv_requested.to_f
78
+ send_response(tap, datum, response)
79
+ end
80
+ if direction == '<=' and datum[:abv].to_f <= abv_requested.to_f
75
81
  send_response(tap, datum, response)
76
82
  end
77
83
  end
@@ -87,13 +93,19 @@ module Lita
87
93
 
88
94
  query = response.matches[0][0].strip
89
95
  # Search directly by tap number OR full text match.
90
- if (price_matches = query.match(/([><])\$(\d+\.*\d*)/))
91
- direction = price_matches.to_s.match(/[<>]/).to_s
96
+ if (price_matches = query.match(/([><=]+)\s*\$(\d+\.*\d*)/))
97
+ direction = price_matches.to_s.match(/[<>=]+/).to_s
92
98
  price_requested = price_matches.to_s.match(/\d+.*\d*/).to_s
93
- if direction == '>' and datum[:prices][1][:cost].to_f >= price_requested.to_f
99
+ if direction == '>' and datum[:prices][1][:cost].to_f > price_requested.to_f
100
+ send_response(tap, datum, response)
101
+ end
102
+ if direction == '<' and datum[:prices][1][:cost].to_f < price_requested.to_f
103
+ send_response(tap, datum, response)
104
+ end
105
+ if direction == '>=' and datum[:prices][1][:cost].to_f >= price_requested.to_f
94
106
  send_response(tap, datum, response)
95
107
  end
96
- if direction == '<' and datum[:prices][1][:cost].to_f <= price_requested.to_f
108
+ if direction == '<=' and datum[:prices][1][:cost].to_f <= price_requested.to_f
97
109
  send_response(tap, datum, response)
98
110
  end
99
111
  end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'lita-onewheel-baileys'
3
- spec.version = '3.4.0'
3
+ spec.version = '3.6.0'
4
4
  spec.authors = ['Andrew Kreps']
5
5
  spec.email = ['andrew.kreps@gmail.com']
6
6
  spec.description = %q{Lita interface to Bailey's Taproom listings.}
@@ -45,8 +45,26 @@ describe Lita::Handlers::OnewheelBaileys, lita_handler: true do
45
45
  expect(replies.last).to eq("Bailey's tap 22) GoodLife 29er - India Brown Ale 6.0%, 10oz - $3 | 20oz - $5 | 32oz Crowler - $8, 37% remaining")
46
46
  end
47
47
 
48
- it 'searches for abv > 9%' do
48
+ it 'searches for abv >9%' do
49
49
  send_command 'taps >9%'
50
+ expect(replies.count).to eq(4)
51
+ expect(replies[0]).to eq("Bailey's tap 8) Fat Head’s Zeus Juice - Belgian Strong Blonde 10.0%, 4oz - $2 | 12oz - $4 | 32oz Crowler - $9, 44% remaining")
52
+ expect(replies[1]).to eq("Bailey's tap 9) Hopworks Noggin’ Floggin’ - Barleywine 11.0%, 4oz - $3 | 12oz - $6 | 32oz Crowler - $13, 34% remaining")
53
+ expect(replies[2]).to eq("Bailey's tap 18) Knee Deep Hop Surplus - Triple IPA 10.0%, 4oz - $2 | 12oz - $4 | 32oz Crowler - $10, 25% remaining")
54
+ expect(replies[3]).to eq("Bailey's tap 20) Knee Deep Dark Horse - Imperial Stout 12.0%, 4oz - $2 | 12oz - $4 | 32oz Crowler - $10, 39% remaining")
55
+ end
56
+
57
+ it 'searches for abv > 9%' do
58
+ send_command 'taps > 9%'
59
+ expect(replies.count).to eq(4)
60
+ expect(replies[0]).to eq("Bailey's tap 8) Fat Head’s Zeus Juice - Belgian Strong Blonde 10.0%, 4oz - $2 | 12oz - $4 | 32oz Crowler - $9, 44% remaining")
61
+ expect(replies[1]).to eq("Bailey's tap 9) Hopworks Noggin’ Floggin’ - Barleywine 11.0%, 4oz - $3 | 12oz - $6 | 32oz Crowler - $13, 34% remaining")
62
+ expect(replies[2]).to eq("Bailey's tap 18) Knee Deep Hop Surplus - Triple IPA 10.0%, 4oz - $2 | 12oz - $4 | 32oz Crowler - $10, 25% remaining")
63
+ expect(replies[3]).to eq("Bailey's tap 20) Knee Deep Dark Horse - Imperial Stout 12.0%, 4oz - $2 | 12oz - $4 | 32oz Crowler - $10, 39% remaining")
64
+ end
65
+
66
+ it 'searches for abv >= 9%' do
67
+ send_command 'taps >= 9%'
50
68
  expect(replies.count).to eq(5)
51
69
  expect(replies[0]).to eq("Bailey's tap 8) Fat Head’s Zeus Juice - Belgian Strong Blonde 10.0%, 4oz - $2 | 12oz - $4 | 32oz Crowler - $9, 44% remaining")
52
70
  expect(replies[1]).to eq("Bailey's tap 9) Hopworks Noggin’ Floggin’ - Barleywine 11.0%, 4oz - $3 | 12oz - $6 | 32oz Crowler - $13, 34% remaining")
@@ -55,15 +73,36 @@ describe Lita::Handlers::OnewheelBaileys, lita_handler: true do
55
73
  expect(replies.last).to eq("Bailey's tap 24) Oakshire Perfect Storm - Imperial IPA 9.0%, 10oz - $4 | 20oz - $6 | 32oz Crowler - $10, 61% remaining")
56
74
  end
57
75
 
58
- it 'searches for abv < 4%' do
59
- send_command 'taps <4%'
76
+ it 'searches for abv <4.1%' do
77
+ send_command 'taps <4.1%'
60
78
  expect(replies.count).to eq(2)
61
79
  expect(replies[0]).to eq("Bailey's tap 3) (Cask) Machine House Crystal Maze - ESB 4.0%, 10oz - $3 | 20oz - $5, 57% remaining")
62
80
  expect(replies.last).to eq("Bailey's tap 11) Lagunitas Copper Fusion Ale - Copper Ale 4.0%, 10oz - $3 | 20oz - $5 | 32oz Crowler - $8, 19% remaining")
63
81
  end
64
82
 
65
- it 'searches for prices > $6' do
83
+ it 'searches for abv < 4.1%' do
84
+ send_command 'taps < 4.1%'
85
+ expect(replies.count).to eq(2)
86
+ expect(replies[0]).to eq("Bailey's tap 3) (Cask) Machine House Crystal Maze - ESB 4.0%, 10oz - $3 | 20oz - $5, 57% remaining")
87
+ expect(replies.last).to eq("Bailey's tap 11) Lagunitas Copper Fusion Ale - Copper Ale 4.0%, 10oz - $3 | 20oz - $5 | 32oz Crowler - $8, 19% remaining")
88
+ end
89
+
90
+ it 'searches for abv <= 4%' do
91
+ send_command 'taps <= 4%'
92
+ expect(replies.count).to eq(2)
93
+ expect(replies[0]).to eq("Bailey's tap 3) (Cask) Machine House Crystal Maze - ESB 4.0%, 10oz - $3 | 20oz - $5, 57% remaining")
94
+ expect(replies.last).to eq("Bailey's tap 11) Lagunitas Copper Fusion Ale - Copper Ale 4.0%, 10oz - $3 | 20oz - $5 | 32oz Crowler - $8, 19% remaining")
95
+ end
96
+
97
+ it 'searches for prices >$6' do
66
98
  send_command 'taps >$6'
99
+ expect(replies.count).to eq(2)
100
+ expect(replies[0]).to eq("Bailey's tap 1) Cider Riot! Plastic Paddy - Apple Cider w/ Irish tea 6.0%, 10oz - $4 | 20oz - $7 | 32oz Crowler - $10, 48% remaining")
101
+ expect(replies[1]).to eq("Bailey's tap 4) Wild Ride Solidarity - Abbey Dubbel – Barrel Aged (Pinot Noir) 8.2%, 4oz - $4 | 12oz - $7, 26% remaining")
102
+ end
103
+
104
+ it 'searches for prices >=$6' do
105
+ send_command 'taps >=$6'
67
106
  expect(replies.count).to eq(4)
68
107
  expect(replies[0]).to eq("Bailey's tap 1) Cider Riot! Plastic Paddy - Apple Cider w/ Irish tea 6.0%, 10oz - $4 | 20oz - $7 | 32oz Crowler - $10, 48% remaining")
69
108
  expect(replies[1]).to eq("Bailey's tap 4) Wild Ride Solidarity - Abbey Dubbel – Barrel Aged (Pinot Noir) 8.2%, 4oz - $4 | 12oz - $7, 26% remaining")
@@ -71,8 +110,23 @@ describe Lita::Handlers::OnewheelBaileys, lita_handler: true do
71
110
  expect(replies[3]).to eq("Bailey's tap 24) Oakshire Perfect Storm - Imperial IPA 9.0%, 10oz - $4 | 20oz - $6 | 32oz Crowler - $10, 61% remaining")
72
111
  end
73
112
 
74
- it 'searches for prices < $4' do
75
- send_command 'taps <$4'
113
+ it 'searches for prices > $6' do
114
+ send_command 'taps > $6'
115
+ expect(replies.count).to eq(2)
116
+ expect(replies[0]).to eq("Bailey's tap 1) Cider Riot! Plastic Paddy - Apple Cider w/ Irish tea 6.0%, 10oz - $4 | 20oz - $7 | 32oz Crowler - $10, 48% remaining")
117
+ expect(replies[1]).to eq("Bailey's tap 4) Wild Ride Solidarity - Abbey Dubbel – Barrel Aged (Pinot Noir) 8.2%, 4oz - $4 | 12oz - $7, 26% remaining")
118
+ end
119
+
120
+ it 'searches for prices <$4.1' do
121
+ send_command 'taps <$4.1'
122
+ expect(replies.count).to eq(3)
123
+ expect(replies[0]).to eq("Bailey's tap 8) Fat Head’s Zeus Juice - Belgian Strong Blonde 10.0%, 4oz - $2 | 12oz - $4 | 32oz Crowler - $9, 44% remaining")
124
+ expect(replies[1]).to eq("Bailey's tap 18) Knee Deep Hop Surplus - Triple IPA 10.0%, 4oz - $2 | 12oz - $4 | 32oz Crowler - $10, 25% remaining")
125
+ expect(replies[2]).to eq("Bailey's tap 20) Knee Deep Dark Horse - Imperial Stout 12.0%, 4oz - $2 | 12oz - $4 | 32oz Crowler - $10, 39% remaining")
126
+ end
127
+
128
+ it 'searches for prices < $4.01' do
129
+ send_command 'taps < $4.01'
76
130
  expect(replies.count).to eq(3)
77
131
  expect(replies[0]).to eq("Bailey's tap 8) Fat Head’s Zeus Juice - Belgian Strong Blonde 10.0%, 4oz - $2 | 12oz - $4 | 32oz Crowler - $9, 44% remaining")
78
132
  expect(replies[1]).to eq("Bailey's tap 18) Knee Deep Hop Surplus - Triple IPA 10.0%, 4oz - $2 | 12oz - $4 | 32oz Crowler - $10, 25% remaining")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-onewheel-baileys
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.0
4
+ version: 3.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kreps
@@ -166,7 +166,6 @@ files:
166
166
  - lib/lita/handlers/onewheel_baileys.rb
167
167
  - lita-onewheel-baileys.gemspec
168
168
  - spec/fixtures/baileys.html
169
- - spec/fixtures/baileys.json
170
169
  - spec/fixtures/baileys_no_brewery_link.html
171
170
  - spec/lita/handlers/onewheel_baileys_spec.rb
172
171
  - spec/spec_helper.rb
@@ -197,7 +196,6 @@ specification_version: 4
197
196
  summary: See above.
198
197
  test_files:
199
198
  - spec/fixtures/baileys.html
200
- - spec/fixtures/baileys.json
201
199
  - spec/fixtures/baileys_no_brewery_link.html
202
200
  - spec/lita/handlers/onewheel_baileys_spec.rb
203
201
  - spec/spec_helper.rb
@@ -1,304 +0,0 @@
1
- {
2
- "status": "ok",
3
- "cache": "2016-02-18T02:38:12.175Z",
4
- "data": {
5
- "1": {
6
- "glass": "Nonic",
7
- "prices": [
8
- "$6.00",
9
- "$3.00"
10
- ],
11
- "fill": 0.1273266172312076,
12
- "added": "2016-02-13T05:47:42.536Z",
13
- "beer": "Tidebreak",
14
- "style": "Apple Cider "
15
- },
16
- "2": {
17
- "glass": "Snifter",
18
- "prices": [
19
- "$6.00",
20
- "$3.00"
21
- ],
22
- "fill": 0.9498940998487141,
23
- "added": "2016-02-18T01:10:15.807Z",
24
- "beer": "The Sunny Cider",
25
- "style": "Hard Cider w/ lemon juice & fresh ginger"
26
- },
27
- "4": {
28
- "glass": "Nonic",
29
- "prices": [
30
- "$5.00",
31
- "$3.00"
32
- ],
33
- "fill": 0.7365322580645163,
34
- "added": "2016-02-13T23:26:22.57Z",
35
- "beer": "Twisted Barre",
36
- "style": "Dubbel ",
37
- "brewery": "Knee Deep"
38
- },
39
- "5": {
40
- "glass": "Snifter",
41
- "prices": [
42
- "$4.00",
43
- "$2.00"
44
- ],
45
- "fill": 0.3379193548387105,
46
- "added": "2016-02-09T02:03:10.376Z",
47
- "beer": "Barrel-Aged Old Relic",
48
- "style": "Scotch Ale - Barrel Aged (Whisky)",
49
- "brewery": "Golden Valley"
50
- },
51
- "7": {
52
- "glass": "Nonic",
53
- "prices": [
54
- "$5.00",
55
- "$3.00"
56
- ],
57
- "fill": 0.3727580645161292,
58
- "added": "2016-02-16T03:59:31.027Z",
59
- "beer": "Semper FiPA",
60
- "style": "IPA - Hops (Chinook & Equinox)",
61
- "brewery": "Fat Head's"
62
- },
63
- "8": {
64
- "glass": "Snifter",
65
- "prices": [
66
- "$6.00",
67
- "$3.00"
68
- ],
69
- "fill": 0.6952459720699161,
70
- "added": "2016-02-16T01:28:08.066Z",
71
- "beer": "Vertical Epic 11.11.11",
72
- "style": "Belgian Ale ",
73
- "brewery": "Stone"
74
- },
75
- "9": {
76
- "glass": "Snifter",
77
- "prices": [
78
- "$4.00",
79
- "$2.00"
80
- ],
81
- "fill": 0.22889113336023995,
82
- "added": "2016-02-07T04:46:17.168Z",
83
- "beer": "Olde Gnarleywine",
84
- "style": "Barleywine ",
85
- "brewery": "Lagunitas"
86
- },
87
- "10": {
88
- "glass": "Nonic",
89
- "prices": [
90
- "$6.00",
91
- "$4.00"
92
- ],
93
- "fill": 0.2611628319630925,
94
- "added": "2016-02-14T20:16:20.238Z",
95
- "beer": "Vanilla Bourbon Creme Ale",
96
- "style": "Cream Ale - Barrel Aged (Jim Beam)",
97
- "brewery": "Sasquatch"
98
- },
99
- "11": {
100
- "glass": "Nonic",
101
- "prices": [
102
- "$5.00",
103
- "$3.00"
104
- ],
105
- "fill": 0.16575806451612995,
106
- "added": "2016-02-09T23:14:41.903Z",
107
- "beer": "Forbidden Rice",
108
- "style": "Altbier w/ black rice",
109
- "brewery": "Culmination"
110
- },
111
- "12": {
112
- "glass": "Nonic",
113
- "prices": [
114
- "$6.00",
115
- "$3.00"
116
- ],
117
- "fill": 0.7666292068374047,
118
- "added": "2016-02-17T05:39:49.742Z",
119
- "beer": "Test Pilot",
120
- "style": "IPA - Hops (Citra, Mosaic, Cascade)",
121
- "brewery": "Airways"
122
- },
123
- "13": {
124
- "glass": "Nonic",
125
- "prices": [
126
- "$5.00",
127
- "$3.00"
128
- ],
129
- "fill": 0.8766129032258064,
130
- "added": "2016-02-17T02:53:46.493Z",
131
- "beer": "Local Logger",
132
- "style": "Lager ",
133
- "brewery": "Everybody's"
134
- },
135
- "14": {
136
- "glass": "Nonic",
137
- "prices": [
138
- "$6.00",
139
- "$3.00"
140
- ],
141
- "fill": 0.6514627128329763,
142
- "added": "2016-02-15T00:00:52.858Z",
143
- "beer": "Charlie",
144
- "style": "Strong Ale ",
145
- "brewery": "Rogue"
146
- },
147
- "15": {
148
- "glass": "Nonic",
149
- "prices": [
150
- "$5.00",
151
- "$3.00"
152
- ],
153
- "fill": 0.007387096774195471,
154
- "added": "2016-02-13T03:17:47.144Z",
155
- "beer": "Hawaiian Sunburn",
156
- "style": "Sour Ale w/Pineapple & Habanero- Hops (Magnum & Hull Melon)",
157
- "brewery": "Elysian"
158
- },
159
- "16": {
160
- "glass": "Snifter",
161
- "prices": [
162
- "$5.00",
163
- "$3.00"
164
- ],
165
- "fill": 0.7430645161290323,
166
- "added": "2016-02-16T01:03:58.069Z",
167
- "beer": "Straight Up Saison",
168
- "style": "Saison - Hops (Premiant, Tettnang & Sterling)",
169
- "brewery": "Epic"
170
- },
171
- "17": {
172
- "glass": "Nonic",
173
- "prices": [
174
- "$5.00",
175
- "$3.00"
176
- ],
177
- "fill": 0.11692339142475526,
178
- "added": "2016-02-14T18:12:46.97Z",
179
- "beer": "Bulletproof Zest",
180
- "style": "Session IPA w/ Orange & Lemon Peel",
181
- "brewery": "Flat Tail"
182
- },
183
- "18": {
184
- "glass": "Snifter",
185
- "prices": [
186
- "$5.00",
187
- "$2.00"
188
- ],
189
- "fill": 0.4219677419354844,
190
- "added": "2016-02-14T00:46:33.741Z",
191
- "beer": "Watermelon Dorado",
192
- "style": "Double IPA w/ Watermelon",
193
- "brewery": "Ballast Point"
194
- },
195
- "19": {
196
- "glass": "Nonic",
197
- "prices": [
198
- "$5.00",
199
- "$3.00"
200
- ],
201
- "fill": 0.8562903225806452,
202
- "added": "2016-02-17T01:10:42.54Z",
203
- "beer": "Belgian Pale Ale",
204
- "style": "Belgian Pale Ale ",
205
- "brewery": "Three Magnets"
206
- },
207
- "20": {
208
- "glass": "Snifter",
209
- "prices": [
210
- "$8.00",
211
- "$4.00"
212
- ],
213
- "fill": 0.8602985074626865,
214
- "added": "2016-02-17T06:30:41.468Z",
215
- "beer": "Bourbon Stout",
216
- "style": "Imperial Stout - Barrel Aged (Bourbon)",
217
- "brewery": "Backwoods"
218
- },
219
- "21": {
220
- "glass": "Nonic",
221
- "prices": [
222
- "$5.00",
223
- "$3.00"
224
- ],
225
- "fill": 0.19841935483871082,
226
- "added": "2016-02-12T00:21:46.714Z",
227
- "beer": "Coyote Peak Wheat",
228
- "style": "Wheat ",
229
- "brewery": "Barley Brown's"
230
- },
231
- "22": {
232
- "glass": "Nonic",
233
- "prices": [
234
- "$5.00",
235
- "$3.00"
236
- ],
237
- "fill": 0.8877435381794524,
238
- "added": "2016-02-18T00:47:17.615Z",
239
- "beer": "Cascadian Dark Ale",
240
- "style": "Cascadian Dark Ale ",
241
- "brewery": "pFriem"
242
- },
243
- "23": {
244
- "glass": "Nonic",
245
- "prices": [
246
- "$5.00",
247
- "$3.00"
248
- ],
249
- "fill": 0.6965645161290323,
250
- "added": "2016-02-16T03:49:12.981Z",
251
- "beer": "6 A.M. Stout",
252
- "style": "Oatmeal Stout w/ Lactose & Coldpress Coffee",
253
- "brewery": "Flat Tail"
254
- },
255
- "24": {
256
- "glass": "Snifter",
257
- "prices": [
258
- "$5.00",
259
- "$2.00"
260
- ],
261
- "fill": 0.6152741935483872,
262
- "added": "2016-02-16T00:50:39.295Z",
263
- "beer": "Tank Slapper",
264
- "style": "Imperial IPA - Hops (Simcoe, Chinook)",
265
- "brewery": "Barley Brown's"
266
- },
267
- "25": {
268
- "glass": "Nonic",
269
- "prices": [
270
- "$5.00",
271
- "$3.00"
272
- ],
273
- "fill": 0.1399193548387117,
274
- "added": "2016-02-04T03:31:58.237Z",
275
- "beer": "Ready Set Gose",
276
- "style": "Gose ",
277
- "brewery": "Uinta"
278
- },
279
- "Cask 3": {
280
- "glass": "Nonic",
281
- "prices": [
282
- "$5.00",
283
- "$3.00"
284
- ],
285
- "fill": 0.1645967741935495,
286
- "added": "2016-02-05T21:38:05.788Z",
287
- "beer": "Winter Warmer",
288
- "style": "English Strong Ale ",
289
- "brewery": "Machine House"
290
- },
291
- "Nitro 6": {
292
- "glass": "Nonic",
293
- "prices": [
294
- "$5.00",
295
- "$3.00"
296
- ],
297
- "fill": 0.9279032258064517,
298
- "added": "2016-02-17T04:57:56.017Z",
299
- "beer": "Shake",
300
- "style": "Chocolate Porter ",
301
- "brewery": "Boulder"
302
- }
303
- }
304
- }