lita-onewheel-beer-abvpub 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 48c66892c3e8907d48aa2990826a82405471be07
4
+ data.tar.gz: f8ac3aca30b63e11503ec511e2a2072556c8103f
5
+ SHA512:
6
+ metadata.gz: 72837129773caaccac6cf44841b01c7184daf4d8bc59b6f9b878af23251621169ba9d625785d7bb5fecdc268b1cc8474a58157226cdec61adb27b0e3bd02b275
7
+ data.tar.gz: 7b67030253288f93b2cc799a6b095eae6984a00c0c7d17c23c498f635e95a6800dd84ef953e84f63a06c653ff6afad09532274ee0a9bd0448b951a2d7f77bbaa
data/.gitignore ADDED
@@ -0,0 +1,21 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .idea
19
+ lita_config.rb
20
+ .DS_Store
21
+ bin/
data/.travis.yml ADDED
@@ -0,0 +1,16 @@
1
+ language: ruby
2
+
3
+ rvm:
4
+ - 2.2.7
5
+ - 2.3.4
6
+
7
+ script: bundle exec rspec -fp spec
8
+
9
+ # Travis CI has an outdated version of bundler on older versions of ruby.
10
+ # See bundler/bundler#3558 for more information
11
+ #before_install:
12
+ # - gem update --system
13
+ # - gem update bundler
14
+
15
+ services:
16
+ - redis-server
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ # For local development and base testing
6
+ # gem 'lita-onewheel-beer-base', :github => 'onewheelskyward/lita-onewheel-beer-base', branch: :master
data/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # lita-onewheel-apex-bar
2
+
3
+ [![Build Status](https://travis-ci.org/onewheelskyward/lita-onewheel-abvpub.png?branch=master)](https://travis-ci.org/onewheelskyward/lita-onewheel-abvpub)
4
+ [![Coverage Status](https://coveralls.io/repos/onewheelskyward/lita-onewheel-abvpub/badge.png)](https://coveralls.io/r/onewheelskyward/lita-onewheel-abvpub)
5
+
6
+ Searches ABVPub's draft list for data and displays it in IRC.
7
+ http://www.abvpub.com/taps/
8
+
9
+ ## Installation
10
+
11
+ Add lita-onewheel-abvpub to your Lita instance's Gemfile:
12
+
13
+ ``` ruby
14
+ gem 'lita-onewheel-abvpub'
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ abvpub
20
+
21
+ abvpub 4
22
+
23
+ abvpub nitro
24
+
25
+ abvpub >(=)5%
26
+
27
+ abvpub <(=)$5
28
+
29
+ abvpub roulette|random
30
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
@@ -0,0 +1,3 @@
1
+ require 'lita'
2
+
3
+ require 'lita/handlers/onewheel_beer_abvpub'
@@ -0,0 +1,126 @@
1
+ require 'rest-client'
2
+ require 'nokogiri'
3
+ require 'sanitize'
4
+ require 'lita-onewheel-beer-base'
5
+
6
+ module Lita
7
+ module Handlers
8
+ class OnewheelBeerAbvpub < OnewheelBeerBase
9
+ route /^abvpub$/i,
10
+ :taps_list,
11
+ command: true,
12
+ help: {'abvpub' => 'Display the current Abvpub Bar taps.'}
13
+
14
+ route /^abvpub ([\w ]+)$/i,
15
+ :taps_deets,
16
+ command: true,
17
+ help: {'abvpub 4' => 'Display the Abvpub tap 4 deets, including prices.'}
18
+
19
+ route /^abvpub ([<>=\w.\s]+)%$/i,
20
+ :taps_by_abv,
21
+ command: true,
22
+ help: {'abvpub >4%' => 'Display Abvpub beers over 4% ABV.'}
23
+
24
+ route /^abvpub ([<>=\$\w.\s]+)$/i,
25
+ :taps_by_price,
26
+ command: true,
27
+ help: {'abvpub <$5' => 'Display Abvpub beers under $5.'}
28
+
29
+ route /^abvpub (roulette|random|rand|ran|ra|r)$/i,
30
+ :taps_by_random,
31
+ command: true,
32
+ help: {'abvpub roulette' => 'Can\'t decide what to drink at Abvpub? Let me do it for you!'}
33
+
34
+ route /^abvpubabvlow$/i,
35
+ :taps_low_abv,
36
+ command: true,
37
+ help: {'abvpubabvlow' => 'Show me the lowest Abvpub abv keg.'}
38
+
39
+ route /^abvpubabvhigh$/i,
40
+ :taps_high_abv,
41
+ command: true,
42
+ help: {'abvpubabvhigh' => 'Show me the highest Abvpub abv keg.'}
43
+
44
+ def send_response(tap, datum, response)
45
+ reply = "Abvpub tap #{tap}) #{get_tap_type_text(datum[:type])}"
46
+ # reply += "#{datum[:brewery]} "
47
+ reply += "#{datum[:name]} "
48
+ reply += "- #{datum[:desc]}, "
49
+ # reply += "Served in a #{datum[1]['glass']} glass. "
50
+ # reply += "#{datum[:remaining]}"
51
+ reply += "#{datum[:abv]}%"
52
+ if datum[:ibu] > 0
53
+ reply += ", #{datum[:ibu]}"
54
+ end
55
+ # reply += "$#{datum[:price].to_s.sub '.0', ''}"
56
+
57
+ Lita.logger.info "send_response: Replying with #{reply}"
58
+
59
+ response.reply reply
60
+ end
61
+
62
+ def get_source
63
+ Lita.logger.debug 'get_source started'
64
+ unless (response = redis.get('page_response'))
65
+ Lita.logger.info 'No cached result found, fetching.'
66
+ response = RestClient.get('http://www.abvpub.com/taps/')
67
+ redis.setex('page_response', 1800, response)
68
+ end
69
+ parse_response response
70
+ end
71
+
72
+ # This is the worker bee- decoding the html into our "standard" document.
73
+ # Future implementations could simply override this implementation-specific
74
+ # code to help this grow more widely.
75
+ def parse_response(response)
76
+ Lita.logger.debug 'parse_response started.'
77
+ gimme_what_you_got = {}
78
+ noko = Nokogiri.HTML response
79
+ noko.css('li.abvBeerMat').each_with_index do |beer_node, index|
80
+ # gimme_what_you_got
81
+ tap_name = (index + 1).to_s
82
+
83
+ brewery = beer_node.css('span.abvProducerURL').text
84
+ beer_name = beer_node.css('span.abvBeverageName').text.to_s.strip
85
+
86
+ beer_type = beer_node.css('span.abvRateBeer').children[0].to_s.strip
87
+
88
+ beer_desc = ''
89
+
90
+ abv_node = /\d+\.\d+\%/.match(beer_node.css('span.abvABV').text)
91
+ if abv_node
92
+ abv = abv_node[0]
93
+ abv.sub! /\%/, ''
94
+ end
95
+
96
+ ibu_node = /IBU \d+/.match(beer_node.css('span.abvABV').text)
97
+ if ibu_node
98
+ ibu = ibu_node[0]
99
+ ibu.sub! /IBU /, ''
100
+ end
101
+
102
+ full_text_search = "#{brewery} #{beer_name.to_s.gsub /(\d+|')/, ''}" # #{beer_desc.to_s.gsub /\d+\.*\d*%*/, ''}
103
+
104
+ # price_node = beer_node.css('td')[1].children.to_s
105
+ # price = (price_node.sub /\$/, '').to_f
106
+
107
+ gimme_what_you_got[tap_name] = {
108
+ # type: tap_type,
109
+ # remaining: remaining,
110
+ # brewery: brewery.to_s,
111
+ name: beer_name.to_s,
112
+ abv: abv.to_f,
113
+ ibu: ibu.to_i,
114
+ desc: beer_desc.to_s,
115
+ # price: price,
116
+ search: full_text_search
117
+ }
118
+ end
119
+
120
+ gimme_what_you_got
121
+ end
122
+
123
+ Lita.register_handler(self)
124
+ end
125
+ end
126
+ end
@@ -0,0 +1,31 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = 'lita-onewheel-beer-abvpub'
3
+ spec.version = '0.0.0'
4
+ spec.authors = ['Andrew Kreps']
5
+ spec.email = ['andrew.kreps@gmail.com']
6
+ spec.description = %q{Lita interface to ABVPub's Barlistings.}
7
+ spec.summary = %q{See above.}
8
+ spec.homepage = 'https://github.com/onewheelskyward/lita-onewheel-beer-abvpub'
9
+ spec.license = 'MIT'
10
+ spec.metadata = { 'lita_plugin_type' => 'handler' }
11
+
12
+ spec.files = `git ls-files`.split($/)
13
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
14
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
15
+ spec.require_paths = ['lib']
16
+
17
+ spec.add_runtime_dependency 'lita', '~> 4'
18
+ spec.add_runtime_dependency 'rest-client', '~> 1.8'
19
+ spec.add_runtime_dependency 'nokogiri', '~> 1.6'
20
+ spec.add_runtime_dependency 'sanitize', '~> 4.0'
21
+ spec.add_runtime_dependency 'lita-onewheel-beer-base', '~> 2'
22
+
23
+ spec.add_development_dependency 'bundler', '~> 1.3'
24
+
25
+ # spec.add_development_dependency 'pry-byebug', '~> 3.1'
26
+ spec.add_development_dependency 'rake', '~> 10.4'
27
+ spec.add_development_dependency 'rack-test', '~> 0.6'
28
+ spec.add_development_dependency 'rspec', '~> 3.0'
29
+ spec.add_development_dependency 'simplecov', '~> 0.10'
30
+ spec.add_development_dependency 'coveralls', '~> 0.8'
31
+ end
@@ -0,0 +1,329 @@
1
+
2
+ <!doctype html>
3
+ <html class="no-js" lang="en">
4
+ <head>
5
+ <meta charset="utf-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>ABV Public House : Tap List</title>
8
+ <link href='http://fonts.googleapis.com/css?family=Viga' rel='stylesheet' type='text/css'>
9
+ <link rel="stylesheet" href="../css/foundation.css" />
10
+ <link rel="stylesheet" href="../css/app.css" />
11
+ <script src="../js/vendor/modernizr.js"></script>
12
+
13
+
14
+ </head>
15
+ <body>
16
+ <div class="abvHeader show-for-medium-up">
17
+
18
+ <div class="row abvHeaderW">
19
+
20
+ <div class="large-3 medium-3 columns">
21
+ <a href="http://www.abvpub.com/" title="ABV Tap House"><img src="../images/ABV.png" alt="ABV" class="abv"></a>
22
+ </div>
23
+
24
+ <div class="large-9 medium-9 columns">
25
+
26
+ <div class="row headerone">
27
+ <div class="large-9 medium-9 columns">
28
+ <img src="../images/bannerHeader.png" alt="ABV" class="taphouse">
29
+ </div>
30
+ <div class="large-3 medium-3 columns headerOneR">
31
+ <div class="row social">
32
+ <div class="large-3 medium-3 columns"> <a href="https://foursquare.com/v/abv-public-house/52e2b62211d2561b5ab81a23" target="_blank"><img src="../images/iconFoursquare.png" alt=""></a></div>
33
+ <div class="large-3 medium-3 columns"> <a href="http://instagram.com/mainbrew" target="_blank"><img src="../images/iconInstagram.png" alt=""></a></div>
34
+ <div class="large-3 medium-3 columns"> <a href="https://twitter.com/mainbrew" target="_blank"><img src="../images/iconTwitter.png" alt=""></a></div>
35
+ <div class="large-3 medium-3 columns"> <a href="https://www.facebook.com/pages/Mainbrew/125861474128654" target="_blank"><img src="../images/iconFacebook.png" alt=""></a></div>
36
+ </div>
37
+ <div class="row"><a href="http://www.abvpub.com/emaillist/" class="headerEmail">Join Email List</a></div>
38
+ </div>
39
+ </div>
40
+
41
+ <div class="row navLine">
42
+ <div class="large-11 medium-11 columns end mainMenu">
43
+ <div class="row">
44
+ <div class="large-4 medium-4 columns text-center"><a href="http://www.abvpub.com/food-menu/" class="mMenu">Food Menus</a></div>
45
+ <div class="large-4 medium-4 columns text-center"> <a href="http://www.abvpub.com/taps/" class="mMenu">Tap List</a></div>
46
+ <div class="large-4 medium-4 columns text-center"> <a href="http://www.abvpub.com/bottles-kegs/" class="mMenu">Bottles &amp; Kegs</a></div>
47
+ </div>
48
+ </div>
49
+ </div>
50
+
51
+ </div>
52
+
53
+ </div>
54
+
55
+ </div>
56
+
57
+
58
+ <div class="abvHeader show-for-small-only">
59
+
60
+ <div class="row">
61
+ <a href="http://www.abvpub.com/" title="ABV Tap House"><img src="../images/smallHeader.png" alt="ABV Tap House"></a>
62
+ </div>
63
+
64
+ <div class="row social">
65
+ <div class="small-3 columns text-center"><a href="https://foursquare.com/v/abv-public-house/52e2b62211d2561b5ab81a23" target="_blank"><img src="../images/iconFoursquare.png" alt=""></a></div>
66
+ <div class="small-3 columns text-center"><a href="http://instagram.com/mainbrew" target="_blank"><img src="../images/iconInstagram.png" alt=""></a></div>
67
+ <div class="small-3 columns text-center"><a href="https://twitter.com/mainbrew" target="_blank"><img src="../images/iconTwitter.png" alt=""></a></div>
68
+ <div class="small-3 columns text-center"><a href="https://www.facebook.com/pages/Mainbrew/125861474128654" target="_blank"><img src="../images/iconFacebook.png" alt=""></a></div>
69
+ </div>
70
+
71
+ <div class="row"><a href="http://www.abvpub.com/emaillist/" class="headerEmail">Join Email List</a></div>
72
+
73
+ <div class="row">
74
+ <div class="columns text-center"><a href="http://www.abvpub.com/food-menu/" class="smMenu">Food Menus</a></div>
75
+ <div class="columns text-center"><a href="http://www.abvpub.com/taps/" class="smMenu">Tap List</a></div>
76
+ <div class="columns text-center"><a href="http://www.abvpub.com/bottles-kegs/" class="smMenu">Bottles &amp; Kegs</a></div>
77
+ </div>
78
+
79
+ </div>
80
+
81
+
82
+ <div class="row">
83
+ <div class="large-9 medium-9 columns right">
84
+ <p><img src="../images/spot01.png" alt=""></p>
85
+ <div class="mainColumn">
86
+ <h1>Tap List</h1>
87
+ <div id="datafieldcontainer"><ul class="small-block-grid-1 medium-block-grid-2 large-block-grid-2"><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="83% remaining" ><span class="abvItemName" title="Tap: 1">1</span><span class="abvProducerURL"></a>Persnickety</a></span><span class="abvBeverageName"><h3>Pinot Gris</h3></span><span class="abvRateBeer">Pinot Gris</span><br><span class="abvRateBeer"><a
88
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Persnickety
89
+ Pinot Gris" target=_blank title="Click to find a Rate Beer description of
90
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
91
+ Pinot Gris&qt=beer" target=_blank title="Click to find a Beer Advocate
92
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 12.5% | IBU: <br>Sizes and Prices:<br>6oz: $7 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:83px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#57f79a"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">83%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="22% remaining" ><span class="abvItemName" title="Tap: 2">2</span><span class="abvProducerURL"><a href="http://http://www.nectarcreek.com/"
93
+ target="_blank">Nectar Creek</a></span><span class="abvBeverageName"><h3>Apis</h3></span><span class="abvRateBeer">Barrel Aged Session Mead w/ Ceylon black tea and orange peel</span><br><span class="abvRateBeer"><a
94
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Nectar Creek
95
+ Apis" target=_blank title="Click to find a Rate Beer description of
96
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
97
+ Apis&qt=beer" target=_blank title="Click to find a Beer Advocate
98
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 6.8% | IBU: <br>Sizes and Prices:<br>6oz: $6.5 &nbsp; &nbsp; 10oz: $9.5 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:22px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#ff6f7a"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">22%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="15% remaining" ><span class="abvItemName" title="Tap: 3">3</span><span class="abvProducerURL"><a href="http://www.locustcider.com"
99
+ target="_blank">Locust Cider</a></span><span class="abvBeverageName"><h3>Original Dry</h3></span><span class="abvRateBeer">Cider </span><br><span class="abvRateBeer"><a
100
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Locust Cider
101
+ Original Dry" target=_blank title="Click to find a Rate Beer description of
102
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
103
+ Original Dry&qt=beer" target=_blank title="Click to find a Beer Advocate
104
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 6.0% | IBU: <br>Sizes and Prices:<br>16oz: $5.5 &nbsp; &nbsp; 64oz: $15 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:15px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#ff4f2d"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">15%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="52% remaining" ><span class="abvItemName" title="Tap: 4">4</span><span class="abvProducerURL"><a href="http://www.PortlandCider.com"
105
+ target="_blank">Portland Cider Company</a></span><span class="abvBeverageName"><h3>Passion Fruit</h3></span><span class="abvRateBeer">Hard Cider w/ Passionfruit</span><br><span class="abvRateBeer"><a
106
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Portland Cider Company
107
+ Passion Fruit" target=_blank title="Click to find a Rate Beer description of
108
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
109
+ Passion Fruit&qt=beer" target=_blank title="Click to find a Beer Advocate
110
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 6.8% | IBU: <br>Sizes and Prices:<br>16oz: $6 &nbsp; &nbsp; 64oz: $17 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:52px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#f5445e"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">52%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="48% remaining" ><span class="abvItemName" title="Tap: 5">5</span><span class="abvProducerURL"><a href="http://2townsciderhouse.com/"
111
+ target="_blank">2 Towns</a></span><span class="abvBeverageName"><h3>Made Marion</h3></span><span class="abvRateBeer">Hard Cider w/ Marionberries</span><br><span class="abvRateBeer"><a
112
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=2 Towns
113
+ Made Marion" target=_blank title="Click to find a Rate Beer description of
114
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
115
+ Made Marion&qt=beer" target=_blank title="Click to find a Beer Advocate
116
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 6.0% | IBU: <br>Sizes and Prices:<br>16oz: $6 &nbsp; &nbsp; 64oz: $17 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:48px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#fff540"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">48%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="46% remaining" ><span class="abvItemName" title="Tap: 6">6</span><span class="abvProducerURL"></a>Urban Family</a></span><span class="abvBeverageName"><h3>Madam</h3></span><span class="abvRateBeer">Imperial Dry-Hopped Sour </span><br><span class="abvRateBeer"><a
117
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Urban Family
118
+ Madam" target=_blank title="Click to find a Rate Beer description of
119
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
120
+ Madam&qt=beer" target=_blank title="Click to find a Beer Advocate
121
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 8.0% | IBU: <br>Sizes and Prices:<br>6oz: $4 &nbsp; &nbsp; 10oz: $7 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:46px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#ffeb2b"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">46%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="64% remaining" ><span class="abvItemName" title="Tap: 7">7</span><span class="abvProducerURL"><a href="http://http://www.block15.com/"
122
+ target="_blank">Block 15</a></span><span class="abvBeverageName"><h3>Dakota's Oud English</h3></span><span class="abvRateBeer">Barrel-Fermented Oud Bruin </span><br><span class="abvRateBeer"><a
123
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Block 15
124
+ Dakota's Oud English" target=_blank title="Click to find a Rate Beer description of
125
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
126
+ Dakota's Oud English&qt=beer" target=_blank title="Click to find a Beer Advocate
127
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 7.2% | IBU: <br>Sizes and Prices:<br>6oz: $6 &nbsp; &nbsp; 10oz: $10 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:64px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#b718e9"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">64%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="96% remaining" ><span class="abvItemName" title="Tap: 8">8</span><span class="abvProducerURL"><a href="http://http://exnovobrew.com/"
128
+ target="_blank">Ex Novo</a></span><span class="abvBeverageName"><h3>Cactus Wins the Lottery</h3></span><span class="abvRateBeer">Berliner Weisse w/ prickly pear</span><br><span class="abvRateBeer"><a
129
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Ex Novo
130
+ Cactus Wins the Lottery" target=_blank title="Click to find a Rate Beer description of
131
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
132
+ Cactus Wins the Lottery&qt=beer" target=_blank title="Click to find a Beer Advocate
133
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 4.2% | IBU: <br>Sizes and Prices:<br>16oz: $5.5 &nbsp; &nbsp; 64oz: $15 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:96px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#228b22"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">96%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="81% remaining" ><span class="abvItemName" title="Tap: 9">9</span><span class="abvProducerURL"><a href="http://cruxfermentation.com"
134
+ target="_blank">Crux</a></span><span class="abvBeverageName"><h3>'16 Better Off Red</h3></span><span class="abvRateBeer">Flanders Red - Barrel Aged (Oregon Pinot Noir (1 yr))</span><br><span class="abvRateBeer"><a
135
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Crux
136
+ '16 Better Off Red" target=_blank title="Click to find a Rate Beer description of
137
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
138
+ '16 Better Off Red&qt=beer" target=_blank title="Click to find a Beer Advocate
139
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 7.0% | IBU: 18<br>Sizes and Prices:<br>6oz: $6 &nbsp; &nbsp; 10oz: $10 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:81px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#618243"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">81%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="82% remaining" ><span class="abvItemName" title="Tap: 10">10</span><span class="abvProducerURL"><a href="http://http://www.noblealeworks.com/"
140
+ target="_blank">Noble Aleworks</a></span><span class="abvBeverageName"><h3>Sailor Mom</h3></span><span class="abvRateBeer">Double IPA - Hops (Simcoe, Centennial, Chinook)</span><br><span class="abvRateBeer"><a
141
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Noble Aleworks
142
+ Sailor Mom" target=_blank title="Click to find a Rate Beer description of
143
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
144
+ Sailor Mom&qt=beer" target=_blank title="Click to find a Beer Advocate
145
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 9.1% | IBU: <br>Sizes and Prices:<br>16oz: $6.5 &nbsp; &nbsp; 64oz: $17 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:82px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#5a9a1c"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">82%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="8% remaining" ><span class="abvItemName" title="Tap: 11">11</span><span class="abvProducerURL"><a href="http://www.aslanbrewing.com"
146
+ target="_blank">Aslan</a></span><span class="abvBeverageName"><h3>Batch 15</h3></span><span class="abvRateBeer">IPA - Hops (Bravo, Citra, Chinook, Simcoe)</span><br><span class="abvRateBeer"><a
147
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Aslan
148
+ Batch 15" target=_blank title="Click to find a Rate Beer description of
149
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
150
+ Batch 15&qt=beer" target=_blank title="Click to find a Beer Advocate
151
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 7.0% | IBU: 65<br>Sizes and Prices:<br>10oz: $4.5 &nbsp; &nbsp; 16oz: $6 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:8px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#ff29bf"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">8%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="26% remaining" ><span class="abvItemName" title="Tap: 12">12</span><span class="abvProducerURL"><a href="http://http://www.drinkinghorsebeer.com/"
152
+ target="_blank">Drinking Horse</a></span><span class="abvBeverageName"><h3>Quake and Bake</h3></span><span class="abvRateBeer">Oatmeal Pale Ale </span><br><span class="abvRateBeer"><a
153
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Drinking Horse
154
+ Quake and Bake" target=_blank title="Click to find a Rate Beer description of
155
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
156
+ Quake and Bake&qt=beer" target=_blank title="Click to find a Beer Advocate
157
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 5.3% | IBU: 33<br>Sizes and Prices:<br>16oz: $5.5 &nbsp; &nbsp; 64oz: $15 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:26px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#ff86be"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">26%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="95% remaining" ><span class="abvItemName" title="Tap: 13">13</span><span class="abvProducerURL"><a href="http://http://www.epicbrewing.com/"
158
+ target="_blank">Epic</a></span><span class="abvBeverageName"><h3>Copper Cone Pale</h3></span><span class="abvRateBeer">Extra Strong Pale - Hops (New Zealand- Pacific Jade & Pacifica)</span><br><span class="abvRateBeer"><a
159
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Epic
160
+ Copper Cone Pale" target=_blank title="Click to find a Rate Beer description of
161
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
162
+ Copper Cone Pale&qt=beer" target=_blank title="Click to find a Beer Advocate
163
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 6.5% | IBU: <br>Sizes and Prices:<br>16oz: $5.5 &nbsp; &nbsp; 64oz: $15 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:95px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#1b02a3"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">95%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="97% remaining" ><span class="abvItemName" title="Tap: 14">14</span><span class="abvProducerURL"><a href="http://www.everybodysbrewing.com"
164
+ target="_blank">Everybody's</a></span><span class="abvBeverageName"><h3>Cryo-Chronic IPA</h3></span><span class="abvRateBeer">IPA </span><br><span class="abvRateBeer"><a
165
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Everybody's
166
+ Cryo-Chronic IPA" target=_blank title="Click to find a Rate Beer description of
167
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
168
+ Cryo-Chronic IPA&qt=beer" target=_blank title="Click to find a Beer Advocate
169
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 6.8% | IBU: 80<br>Sizes and Prices:<br>16oz: $5 &nbsp; &nbsp; 64oz: $13 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:97px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#228b22"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">97%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="14% remaining" ><span class="abvItemName" title="Tap: 15">15</span><span class="abvProducerURL"><a href="http://www.georgetownbeer.com"
170
+ target="_blank">Georgetown</a></span><span class="abvBeverageName"><h3>Meowsa</h3></span><span class="abvRateBeer">Double IPA - Hops (Columbus, Citra, Simcoe, & El Dorado)</span><br><span class="abvRateBeer"><a
171
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Georgetown
172
+ Meowsa" target=_blank title="Click to find a Rate Beer description of
173
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
174
+ Meowsa&qt=beer" target=_blank title="Click to find a Beer Advocate
175
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 8.2% | IBU: 70<br>Sizes and Prices:<br>16oz: $6.5 &nbsp; &nbsp; 64oz: $17 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:14px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#ff4996"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">14%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="70% remaining" ><span class="abvItemName" title="Tap: 16">16</span><span class="abvProducerURL"><a href="http://www.ordnance.com"
176
+ target="_blank">Ordnance</a></span><span class="abvBeverageName"><h3>Full Metal Jacket IPA</h3></span><span class="abvRateBeer">IPA </span><br><span class="abvRateBeer"><a
177
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Ordnance
178
+ Full Metal Jacket IPA" target=_blank title="Click to find a Rate Beer description of
179
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
180
+ Full Metal Jacket IPA&qt=beer" target=_blank title="Click to find a Beer Advocate
181
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 6.6% | IBU: 53<br>Sizes and Prices:<br>16oz: $5.5 &nbsp; &nbsp; 64oz: $15 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:70px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#99725e"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">70%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="11% remaining" ><span class="abvItemName" title="Tap: 17">17</span><span class="abvProducerURL"><a href="http://http://www.block15.com/"
182
+ target="_blank">Block 15</a></span><span class="abvBeverageName"><h3>Atmosphere</h3></span><span class="abvRateBeer">Dry-Hopped Pale Ale </span><br><span class="abvRateBeer"><a
183
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Block 15
184
+ Atmosphere" target=_blank title="Click to find a Rate Beer description of
185
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
186
+ Atmosphere&qt=beer" target=_blank title="Click to find a Beer Advocate
187
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 5.0% | IBU: 0<br>Sizes and Prices:<br>16oz: $5 &nbsp; &nbsp; 64oz: $14 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:11px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#ff3a09"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">11%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="32% remaining" ><span class="abvItemName" title="Tap: 18">18</span><span class="abvProducerURL"></a>ColdFire</a></span><span class="abvBeverageName"><h3>IPA X Series: West Coast</h3></span><span class="abvRateBeer">IPA </span><br><span class="abvRateBeer"><a
188
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=ColdFire
189
+ IPA X Series: West Coast" target=_blank title="Click to find a Rate Beer description of
190
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
191
+ IPA X Series: West Coast&qt=beer" target=_blank title="Click to find a Beer Advocate
192
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 6.7% | IBU: 68<br>Sizes and Prices:<br>16oz: $6 &nbsp; &nbsp; 64oz: $17 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:32px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#ffa3e3"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">32%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="90% remaining" ><span class="abvItemName" title="Tap: 19">19</span><span class="abvProducerURL"><a href="http://http://www.lostabbey.com"
193
+ target="_blank">Lost Abbey</a></span><span class="abvBeverageName"><h3>Avant Garde</h3></span><span class="abvRateBeer">Biere de Garde </span><br><span class="abvRateBeer"><a
194
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Lost Abbey
195
+ Avant Garde" target=_blank title="Click to find a Rate Beer description of
196
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
197
+ Avant Garde&qt=beer" target=_blank title="Click to find a Beer Advocate
198
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 7.0% | IBU: 12<br>Sizes and Prices:<br>16oz: $6 &nbsp; &nbsp; 64oz: $16 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:90px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#33fe61"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">90%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="97% remaining" ><span class="abvItemName" title="Tap: 20">20</span><span class="abvProducerURL"><a href="http://https://www.deschutesbrewery.com/"
199
+ target="_blank">Deschutes</a></span><span class="abvBeverageName"><h3>Pacific Wonderland</h3></span><span class="abvRateBeer">Pale Lager </span><br><span class="abvRateBeer"><a
200
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Deschutes
201
+ Pacific Wonderland" target=_blank title="Click to find a Rate Beer description of
202
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
203
+ Pacific Wonderland&qt=beer" target=_blank title="Click to find a Beer Advocate
204
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 5.5% | IBU: 40<br>Sizes and Prices:<br>16oz: $5 &nbsp; &nbsp; 64oz: $13 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:97px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#228b22"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">97%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="85% remaining" ><span class="abvItemName" title="Tap: 21">21</span><span class="abvProducerURL"></a>Baerlic</a></span><span class="abvBeverageName"><h3>Merville</h3></span><span class="abvRateBeer">Hoppy Wheat - Hops (Meridian)- Yeast (Imperial Independence)</span><br><span class="abvRateBeer"><a
205
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Baerlic
206
+ Merville" target=_blank title="Click to find a Rate Beer description of
207
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
208
+ Merville&qt=beer" target=_blank title="Click to find a Beer Advocate
209
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 5.7% | IBU: 30<br>Sizes and Prices:<br>16oz: $5.5 &nbsp; &nbsp; 64oz: $15 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:85px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#4d147f"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">85%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="80% remaining" ><span class="abvItemName" title="Tap: 22">22</span><span class="abvProducerURL"><a href="http://http://eclipticbrewing.com/"
210
+ target="_blank">Ecliptic</a></span><span class="abvBeverageName"><h3>Phobos</h3></span><span class="abvRateBeer">Red Ale </span><br><span class="abvRateBeer"><a
211
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Ecliptic
212
+ Phobos" target=_blank title="Click to find a Rate Beer description of
213
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
214
+ Phobos&qt=beer" target=_blank title="Click to find a Beer Advocate
215
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 5.6% | IBU: 34<br>Sizes and Prices:<br>16oz: $5.5 &nbsp; &nbsp; 64oz: $15 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:80px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#6850ed"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">80%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="27% remaining" ><span class="abvItemName" title="Tap: 23">23</span><span class="abvProducerURL"><a href="http://http://www.foundersbrewing.com"
216
+ target="_blank">Founders</a></span><span class="abvBeverageName"><h3>Frootwood</h3></span><span class="abvRateBeer">Cherry Fruit Beer - Barrel Aged (Maple Bourbon)</span><br><span class="abvRateBeer"><a
217
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Founders
218
+ Frootwood" target=_blank title="Click to find a Rate Beer description of
219
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
220
+ Frootwood&qt=beer" target=_blank title="Click to find a Beer Advocate
221
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 8.0% | IBU: <br>Sizes and Prices:<br>6oz: $5 &nbsp; &nbsp; 10oz: $9 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:27px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#ff896f"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">27%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="51% remaining" ><span class="abvItemName" title="Tap: 24">24</span><span class="abvProducerURL"><a href="http://http://www.foundersbrewing.com"
222
+ target="_blank">Founders</a></span><span class="abvBeverageName"><h3>Curmudgeon Old Ale</h3></span><span class="abvRateBeer">Old Ale w/ molasses and oak chips</span><br><span class="abvRateBeer"><a
223
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Founders
224
+ Curmudgeon Old Ale" target=_blank title="Click to find a Rate Beer description of
225
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
226
+ Curmudgeon Old Ale&qt=beer" target=_blank title="Click to find a Beer Advocate
227
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 9.8% | IBU: 50<br>Sizes and Prices:<br>6oz: $4 &nbsp; &nbsp; 10oz: $7 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:51px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#fad493"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">51%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="62% remaining" ><span class="abvItemName" title="Tap: 25">25</span><span class="abvProducerURL"><a href="http://https://www.deschutesbrewery.com/"
228
+ target="_blank">Deschutes</a></span><span class="abvBeverageName"><h3>Pinot Suave</h3></span><span class="abvRateBeer">Belgian Strong Ale w/ grape must - Barrel Aged (Pinot Noir)</span><br><span class="abvRateBeer"><a
229
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Deschutes
230
+ Pinot Suave" target=_blank title="Click to find a Rate Beer description of
231
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
232
+ Pinot Suave&qt=beer" target=_blank title="Click to find a Beer Advocate
233
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 11.8% | IBU: 15<br>Sizes and Prices:<br>6oz: $6 &nbsp; &nbsp; 10oz: $9 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:62px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#c3099c"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">62%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="77% remaining" ><span class="abvItemName" title="Tap: 26">26</span><span class="abvProducerURL"></a>Melvin</a></span><span class="abvBeverageName"><h3>Scenario</h3></span><span class="abvRateBeer">Robust Porter </span><br><span class="abvRateBeer"><a
234
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Melvin
235
+ Scenario" target=_blank title="Click to find a Rate Beer description of
236
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
237
+ Scenario&qt=beer" target=_blank title="Click to find a Beer Advocate
238
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 6.4% | IBU: <br>Sizes and Prices:<br>16oz: $6 &nbsp; &nbsp; 64oz: $16 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:77px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#75426f"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">77%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="21% remaining" ><span class="abvItemName" title="Tap: 27">27</span><span class="abvProducerURL"><a href="http://www.hereticbrewing.com"
239
+ target="_blank">Heretic</a></span><span class="abvBeverageName"><h3>Bourbon Shallow Grave</h3></span><span class="abvRateBeer">Porter - Barrel Aged (Bourbon)</span><br><span class="abvRateBeer"><a
240
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Heretic
241
+ Bourbon Shallow Grave" target=_blank title="Click to find a Rate Beer description of
242
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
243
+ Bourbon Shallow Grave&qt=beer" target=_blank title="Click to find a Beer Advocate
244
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 7.0% | IBU: <br>Sizes and Prices:<br>6oz: $5 &nbsp; &nbsp; 10oz: $7 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:21px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#ff6bff"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">21%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="76% remaining" ><span class="abvItemName" title="Tap: 28">28</span><span class="abvProducerURL"><a href="http://http://www.block15.com/"
245
+ target="_blank">Block 15</a></span><span class="abvBeverageName"><h3>Love Potion #9</h3></span><span class="abvRateBeer">Stout w/ chocolate & black cap raspberries</span><br><span class="abvRateBeer"><a
246
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Block 15
247
+ Love Potion #9" target=_blank title="Click to find a Rate Beer description of
248
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
249
+ Love Potion #9&qt=beer" target=_blank title="Click to find a Beer Advocate
250
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 7.0% | IBU: <br>Sizes and Prices:<br>16oz: $5.5 &nbsp; &nbsp; 64oz: $15 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:76px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#7c7661"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">76%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="83% remaining" ><span class="abvItemName" title="Tap: 29">29</span><span class="abvProducerURL"><a href="http://www.ballastpoint.com/"
251
+ target="_blank">Ballast Point</a></span><span class="abvBeverageName"><h3>'15 Three Sheets</h3></span><span class="abvRateBeer">Barleywine </span><br><span class="abvRateBeer"><a
252
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Ballast Point
253
+ '15 Three Sheets" target=_blank title="Click to find a Rate Beer description of
254
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
255
+ '15 Three Sheets&qt=beer" target=_blank title="Click to find a Beer Advocate
256
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 10.0% | IBU: 55<br>Sizes and Prices:<br>6oz: $4 &nbsp; &nbsp; 10oz: $7 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:83px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#58bd82"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">83%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="36% remaining" ><span class="abvItemName" title="Tap: 30">30</span><span class="abvProducerURL"><a href="http://http://www.drinkinghorsebeer.com/"
257
+ target="_blank">Drinking Horse/ABV/ Mainbrew</a></span><span class="abvBeverageName"><h3>The Beer</h3></span><span class="abvRateBeer">Robust Porter w/ Palo Santo Wood - Hops (Horizon, Perle)- Yeast (US-05)</span><br><span class="abvRateBeer"><a
258
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Drinking Horse/ABV/ Mainbrew
259
+ The Beer" target=_blank title="Click to find a Rate Beer description of
260
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
261
+ The Beer&qt=beer" target=_blank title="Click to find a Beer Advocate
262
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 7.3% | IBU: 25<br>Sizes and Prices:<br>16oz: $5.5 &nbsp; &nbsp; 64oz: $15 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:36px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#ffb8bc"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">36%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="100% remaining" ><span class="abvItemName" title="Tap: 31">31</span><span class="abvProducerURL"><a href="http://www.belchingbeaver.com/"
263
+ target="_blank">Belching Beaver</a></span><span class="abvBeverageName"><h3>Peanut Butter Latte</h3></span><span class="abvRateBeer">Golden Stout </span><br><span class="abvRateBeer"><a
264
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Belching Beaver
265
+ Peanut Butter Latte" target=_blank title="Click to find a Rate Beer description of
266
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
267
+ Peanut Butter Latte&qt=beer" target=_blank title="Click to find a Beer Advocate
268
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 5.0% | IBU: <br>Sizes and Prices:<br>10oz: $4.5 &nbsp; &nbsp; 16oz: $6 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:100px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#228b22"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">100%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="32% remaining" ><span class="abvItemName" title="Tap: 32">32</span><span class="abvProducerURL"><a href="http://http://www.foundersbrewing.com"
269
+ target="_blank">Founders</a></span><span class="abvBeverageName"><h3>Rubaeus (Nitro)</h3></span><span class="abvRateBeer">Raspberry Fruit Beer </span><br><span class="abvRateBeer"><a
270
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=Founders
271
+ Rubaeus (Nitro)" target=_blank title="Click to find a Rate Beer description of
272
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
273
+ Rubaeus (Nitro)&qt=beer" target=_blank title="Click to find a Beer Advocate
274
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 5.7% | IBU: 15<br>Sizes and Prices:<br>10oz: $4 &nbsp; &nbsp; 16oz: $5.5 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:32px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#ffa5e5"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">32%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="73% remaining" ><span class="abvItemName" title="Tap: 33">33</span><span class="abvProducerURL"></a>David Hill</a></span><span class="abvBeverageName"><h3>Farmhouse Red</h3></span><span class="abvRateBeer">Red Blend</span><br><span class="abvRateBeer"><a
275
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=David Hill
276
+ Farmhouse Red" target=_blank title="Click to find a Rate Beer description of
277
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
278
+ Farmhouse Red&qt=beer" target=_blank title="Click to find a Beer Advocate
279
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 13.5% | IBU: <br>Sizes and Prices:<br>6oz: $7 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:73px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#8d13c2"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">73%</div></div></div></div><li class="abvBeerMat"><div id="responsecontainer"><div id="boxfielddata" title="100% remaining" ><span class="abvItemName" title="Tap: 34">34</span><span class="abvProducerURL"></a>ABV</a></span><span class="abvBeverageName"><h3>Sample Flight of FIVE</h3></span><span class="abvRateBeer">Ale </span><br><span class="abvRateBeer"><a
280
+ href="http://www.ratebeer.com/advbeersearch.php?BeerName=ABV
281
+ Sample Flight of FIVE" target=_blank title="Click to find a Rate Beer description of
282
+ this beverage!">RateBeer.com</a></span> | <span class="abvBeerAdvocate"><a href="http://beeradvocate.com/search?q=
283
+ Sample Flight of FIVE&qt=beer" target=_blank title="Click to find a Beer Advocate
284
+ description of this beverage!">BeerAdvocate.com</a></span><span class="abvABV">ABV: 0.0% | IBU: <br>Sizes and Prices:<br>Flight: $12.5 &nbsp; &nbsp; </span><span class="abvPS" style="clear:both"></span><div><span style="position:relative;"></span><div class="percentbar" style="width:100px; height:20px;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#232323;"><div style="float:left;height:20px;width:100px;font-size:8pt;display:block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;background-color:#228b22"></div></div><div style="height:20px;width:40px;font-size:8pt;display:block;" class="abvPercent">100%</div></div></div></div><p></div><div class="row text-center" style="padding-top:1em;"><a href="http://digitalpour.com/" target="_blank"><img src="../images/digitalPour.png" alt="DigitalPour"></a></div>
285
+ </div>
286
+ </div>
287
+
288
+ <div class="large-3 medium-3 columns left abvSidebar">
289
+ <a href="http://www.abvpub.com/location/" class="mMenu"><img src="../images/bannerLocation.png" alt=""></a>
290
+ <a href="http://www.abvpub.com/photos/" class="mMenu"><img src="../images/bannerPhotos.png" alt=""></a>
291
+ <a href="http://www.abvpub.com/news/" class="mMenu"><img src="../images/bannerNews.png" alt=""></a>
292
+ </div>
293
+ </div>
294
+
295
+
296
+ <div class="abvFooter">
297
+ <div class="row">
298
+ <div class="contain-to-grid">
299
+ <nav class="top-bar" data-topbar>
300
+ <ul class="title-area">
301
+ <li class="name"></li>
302
+ <li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
303
+ </ul>
304
+ <section class="top-bar-section">
305
+ <ul class="right">
306
+ <li><a href="http://www.abvpub.com/">Home</a></li>
307
+ <li><a href="http://www.abvpub.com/food-menu/">Food Menus</a></li>
308
+ <li><a href="http://www.abvpub.com/taps/">Tap List</a></li>
309
+ <li><a href="http://www.abvpub.com/bottles-kegs/">Bottles &amp; Kegs</a></li>
310
+ <li><a href="http://www.abvpub.com/photos/">Photos</a></li>
311
+ <li><a href="http://www.abvpub.com/news/">News &amp; Events</a></li>
312
+ <li><a href="http://www.abvpub.com/emaillist/">Join Email List</a></li>
313
+ <li><a href="http://www.abvpub.com/location/">Location &amp; Hours</a></li>
314
+ </ul>
315
+ </section>
316
+ </nav>
317
+ <p class="text-right"><a href="http://www.restaurantbyclick.com/" target="_blank">designed by Restaurant By Click</a></p>
318
+ </div>
319
+ </div>
320
+ </div>
321
+
322
+ <script src="../js/vendor/jquery.js"></script>
323
+ <script src="../js/foundation.min.js"></script>
324
+ <script src="../js/foundation/foundation.topbar.js"></script>
325
+ <script>
326
+ $(document).foundation();
327
+ </script>
328
+ </body>
329
+ </html>
@@ -0,0 +1,73 @@
1
+ require 'spec_helper'
2
+
3
+ describe Lita::Handlers::OnewheelBeerAbvpub, lita_handler: true do
4
+ it { is_expected.to route_command('abvpub') }
5
+ it { is_expected.to route_command('abvpub 4') }
6
+ it { is_expected.to route_command('abvpub nitro') }
7
+ it { is_expected.to route_command('abvpub CASK') }
8
+ it { is_expected.to route_command('abvpub <$4') }
9
+ it { is_expected.to route_command('abvpub < $4') }
10
+ it { is_expected.to route_command('abvpub <=$4') }
11
+ it { is_expected.to route_command('abvpub <= $4') }
12
+ it { is_expected.to route_command('abvpub >4%') }
13
+ it { is_expected.to route_command('abvpub > 4%') }
14
+ it { is_expected.to route_command('abvpub >=4%') }
15
+ it { is_expected.to route_command('abvpub >= 4%') }
16
+ it { is_expected.to route_command('abvpubabvhigh') }
17
+ it { is_expected.to route_command('abvpubabvlow') }
18
+
19
+ before do
20
+ mock = File.open('spec/fixtures/abvpub.html').read
21
+ allow(RestClient).to receive(:get) { mock }
22
+ end
23
+
24
+ it 'shows the taps' do
25
+ send_command 'abvpub'
26
+ expect(replies.last).to include('taps: 1) Pinot Gris 2) Apis')
27
+ end
28
+
29
+ it 'displays details for tap 4' do
30
+ send_command 'abvpub 4'
31
+ expect(replies.last).to include('Abvpub tap 4) Passion Fruit - , 6.8%')
32
+ end
33
+
34
+ it 'doesn\'t explode on 1' do
35
+ send_command 'abvpub 1'
36
+ expect(replies.count).to eq(1)
37
+ expect(replies.last).to eq('Abvpub tap 1) Pinot Gris - , 12.5%')
38
+ end
39
+
40
+ it 'searches for ipa' do
41
+ send_command 'abvpub ipa'
42
+ expect(replies.last).to include('Abvpub tap 18) IPA X Series: West Coast - , 6.7%')
43
+ end
44
+
45
+ it 'searches for abv >9%' do
46
+ send_command 'abvpub >9%'
47
+ expect(replies.count).to eq(6)
48
+ expect(replies[0]).to eq('Abvpub tap 1) Pinot Gris - , 12.5%')
49
+ expect(replies[1]).to eq('Abvpub tap 10) Sailor Mom - , 9.1%')
50
+ end
51
+
52
+ it 'runs a random beer through' do
53
+ send_command 'abvpub roulette'
54
+ expect(replies.count).to eq(1)
55
+ expect(replies.last).to include('Abvpub tap')
56
+ end
57
+
58
+ it 'runs a random beer through' do
59
+ send_command 'abvpub random'
60
+ expect(replies.count).to eq(1)
61
+ expect(replies.last).to include('Abvpub tap')
62
+ end
63
+
64
+ it 'displays hige abv' do
65
+ send_command 'abvpubabvhigh'
66
+ expect(replies.last).to eq('Abvpub tap 33) Farmhouse Red - , 13.5%')
67
+ end
68
+
69
+ it 'displays low abv' do
70
+ send_command 'abvpubabvlow'
71
+ expect(replies.last).to eq('Abvpub tap 8) Cactus Wins the Lottery - , 4.2%')
72
+ end
73
+ end
@@ -0,0 +1,14 @@
1
+ require 'simplecov'
2
+ require 'coveralls'
3
+ SimpleCov.formatters = [
4
+ SimpleCov::Formatter::HTMLFormatter,
5
+ Coveralls::SimpleCov::Formatter
6
+ ]
7
+ SimpleCov.start { add_filter '/spec/' }
8
+
9
+ require 'lita-onewheel-beer-abvpub'
10
+ require 'lita/rspec'
11
+
12
+ # A compatibility mode is provided for older plugins upgrading from Lita 3. Since this plugin
13
+ # was generated with Lita 4, the compatibility mode should be left disabled.
14
+ Lita.version_3_compatibility_mode = false
metadata ADDED
@@ -0,0 +1,213 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lita-onewheel-beer-abvpub
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Andrew Kreps
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-04-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: lita
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rest-client
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.8'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.8'
41
+ - !ruby/object:Gem::Dependency
42
+ name: nokogiri
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.6'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.6'
55
+ - !ruby/object:Gem::Dependency
56
+ name: sanitize
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '4.0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '4.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: lita-onewheel-beer-base
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2'
83
+ - !ruby/object:Gem::Dependency
84
+ name: bundler
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.3'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.3'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rake
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '10.4'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '10.4'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rack-test
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '0.6'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '0.6'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rspec
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '3.0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '3.0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: simplecov
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '0.10'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '0.10'
153
+ - !ruby/object:Gem::Dependency
154
+ name: coveralls
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '0.8'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: '0.8'
167
+ description: Lita interface to ABVPub's Barlistings.
168
+ email:
169
+ - andrew.kreps@gmail.com
170
+ executables: []
171
+ extensions: []
172
+ extra_rdoc_files: []
173
+ files:
174
+ - ".gitignore"
175
+ - ".travis.yml"
176
+ - Gemfile
177
+ - README.md
178
+ - Rakefile
179
+ - lib/lita-onewheel-beer-abvpub.rb
180
+ - lib/lita/handlers/onewheel_beer_abvpub.rb
181
+ - lita-onewheel-beer-abvpub.gemspec
182
+ - spec/fixtures/abvpub.html
183
+ - spec/lita/handlers/onewheel_beer_abvpub_spec.rb
184
+ - spec/spec_helper.rb
185
+ homepage: https://github.com/onewheelskyward/lita-onewheel-beer-abvpub
186
+ licenses:
187
+ - MIT
188
+ metadata:
189
+ lita_plugin_type: handler
190
+ post_install_message:
191
+ rdoc_options: []
192
+ require_paths:
193
+ - lib
194
+ required_ruby_version: !ruby/object:Gem::Requirement
195
+ requirements:
196
+ - - ">="
197
+ - !ruby/object:Gem::Version
198
+ version: '0'
199
+ required_rubygems_version: !ruby/object:Gem::Requirement
200
+ requirements:
201
+ - - ">="
202
+ - !ruby/object:Gem::Version
203
+ version: '0'
204
+ requirements: []
205
+ rubyforge_project:
206
+ rubygems_version: 2.5.2
207
+ signing_key:
208
+ specification_version: 4
209
+ summary: See above.
210
+ test_files:
211
+ - spec/fixtures/abvpub.html
212
+ - spec/lita/handlers/onewheel_beer_abvpub_spec.rb
213
+ - spec/spec_helper.rb