lita-onewheel-beer-pints 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5206324c6f4e59e9e09541d4365487cb886dd481
4
- data.tar.gz: d22a0c1f3f9f43737f74683796f239af66db7d84
3
+ metadata.gz: 328cb7e5c4e2c416dcd3c3d6d7d51f50b9653b61
4
+ data.tar.gz: 58a80df44d191788836ae4e83b98f335a5aaded0
5
5
  SHA512:
6
- metadata.gz: a5ce31f7a90b463ac126099f3f50233070697490f6e62b4ebbf6501c4322dd2ed36b83ce1ca15119c1b790165623b67db01fec10e8fb9c6d4cf314c37ab7092c
7
- data.tar.gz: eeb71119271a74a47bd082912511fab6fd25e3b69489225e96e637f20bc70f25e5668c496724895759725687ea11f0026e3b9f9e677977519703a049a6955e83
6
+ metadata.gz: 4189426720a6434b91128b8524d77b9527ca5c1a226a819ffef5f6a84a6d8e8da841999339f2b6dc098a874a2585ba213594ed733c27ca00c732e3bd3c5a632b
7
+ data.tar.gz: 5470b320b822e9670963c368518d8b84f2d38133d00c640607e4b0fd9edb1565ce683e93cf89bdf99e56a00434deba763010731c73271ba317b5d9873337af64
@@ -46,7 +46,7 @@ module Lita
46
46
  beers.each do |tap, datum|
47
47
  reply += "#{tap}) "
48
48
  reply += datum[:name] + ' '
49
- reply += datum[:abv].to_s + '% '
49
+ reply += '- ' + datum[:abv].to_s + '% '
50
50
  reply += ' '
51
51
  # reply += datum[:ibu].to_s + ' IBU '
52
52
  end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'lita-onewheel-beer-pints'
3
- spec.version = '0.0.4'
3
+ spec.version = '0.0.5'
4
4
  spec.authors = ['Andrew Kreps']
5
5
  spec.email = ['andrew.kreps@gmail.com']
6
6
  spec.description = %q{Lita interface to Pints Taproom listings.}
@@ -17,7 +17,7 @@ describe Lita::Handlers::OnewheelBeerPints, lita_handler: true do
17
17
 
18
18
  it 'shows the taps' do
19
19
  send_command 'pints'
20
- expect(replies.last).to include("Pints taps: 1) Brick House Blonde 5.0% 2) Seismic IPA 6.2% 3) Rip Saw Red 6.5% 4) Steel Bridge Stout")
20
+ expect(replies.last).to include("Pints taps: 1) Brick House Blonde - 5.0% 2) Seismic IPA - 6.2% 3) Rip Saw Red - 6.5% 4) Steel Bridge Stout")
21
21
  end
22
22
 
23
23
  it 'displays details for tap brick' do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-onewheel-beer-pints
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kreps