From 0a9ff589905b4637dc2c824d761dfbfec6cb00db Mon Sep 17 00:00:00 2001 From: Saku Ytti Date: Wed, 1 May 2013 15:16:54 +0300 Subject: Net::ReadTimeout is ruby 2.0.0 specific use TimeoutError for compatibility --- bin/oxidized | 0 lib/oxidized/input/telnet.rb | 2 +- oxidized.gemspec | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 bin/oxidized diff --git a/bin/oxidized b/bin/oxidized old mode 100755 new mode 100644 diff --git a/lib/oxidized/input/telnet.rb b/lib/oxidized/input/telnet.rb index f1222d8..c4c8bab 100644 --- a/lib/oxidized/input/telnet.rb +++ b/lib/oxidized/input/telnet.rb @@ -96,7 +96,7 @@ class Net::Telnet rest = '' until(prompt === line and not IO::select([@sock], nil, nil, waittime)) unless IO::select([@sock], nil, nil, time_out) - raise Net::ReadTimeout, "timed out while waiting for more data" + raise TimeoutError, "timed out while waiting for more data" end begin c = @sock.readpartial(1024 * 1024) diff --git a/oxidized.gemspec b/oxidized.gemspec index 805d723..5a1dce9 100644 --- a/oxidized.gemspec +++ b/oxidized.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'oxidized' - s.version = '0.0.7' + s.version = '0.0.11' s.platform = Gem::Platform::RUBY s.authors = [ 'Saku Ytti' ] s.email = %w( saku@ytti.fi ) -- cgit v1.2.1