potato 0.0.15 → 0.0.16
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.
- data/lib/potato/irc/server.rb +1 -1
- data/lib/potato/version.rb +1 -1
- metadata +2 -2
data/lib/potato/irc/server.rb
CHANGED
|
@@ -56,7 +56,7 @@ module Potato
|
|
|
56
56
|
if DamnSocket === action
|
|
57
57
|
begin
|
|
58
58
|
pkt = DAmn::Packet.new(Iconv.conv("UTF-8", "LATIN1", action.readline("\0").chomp("\0")))
|
|
59
|
-
rescue Errno::ECONNRESET, EOFError => e
|
|
59
|
+
rescue Errno::ECONNRESET, Errno::ETIMEDOUT, EOFError => e
|
|
60
60
|
@connections.values.each do |cl|
|
|
61
61
|
cl.notice "Lost connection to dAmn (#{e.class})."
|
|
62
62
|
cl.socket.close
|
data/lib/potato/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: potato
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.16
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2011-07-
|
|
12
|
+
date: 2011-07-30 00:00:00.000000000 -04:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
description: Potato is an IRC server that communicates with the deviantART Message
|