Hello community,

here is the log from the commit of package rubygem-excon for openSUSE:Factory 
checked in at 2015-02-13 08:35:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-excon (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-excon.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-excon"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-excon/rubygem-excon.changes      
2015-02-11 16:45:23.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-excon.new/rubygem-excon.changes 
2015-02-13 08:35:17.000000000 +0100
@@ -1,0 +2,5 @@
+Thu Feb 12 07:29:22 UTC 2015 - [email protected]
+
+- updated to version 0.44.2
+
+-------------------------------------------------------------------

Old:
----
  excon-0.44.1.gem

New:
----
  excon-0.44.2.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-excon.spec ++++++
--- /var/tmp/diff_new_pack.nww6lV/_old  2015-02-13 08:35:17.000000000 +0100
+++ /var/tmp/diff_new_pack.nww6lV/_new  2015-02-13 08:35:17.000000000 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-excon
-Version:        0.44.1
+Version:        0.44.2
 Release:        0
 %define mod_name excon
 %define mod_full_name %{mod_name}-%{version}

++++++ excon-0.44.1.gem -> excon-0.44.2.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile.lock new/Gemfile.lock
--- old/Gemfile.lock    2015-02-02 16:13:24.000000000 +0100
+++ new/Gemfile.lock    2015-02-11 21:26:10.000000000 +0100
@@ -1,7 +1,7 @@
 PATH
   remote: .
   specs:
-    excon (0.44.1)
+    excon (0.44.2)
 
 GEM
   remote: http://rubygems.org/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/changelog.txt new/changelog.txt
--- old/changelog.txt   2015-02-02 16:13:24.000000000 +0100
+++ new/changelog.txt   2015-02-11 21:26:10.000000000 +0100
@@ -1,3 +1,10 @@
+0.44.2 02/11/2015
+=================
+
+simplify data[:debug] logic
+catch nonblock errors around readline
+
+
 0.44.1 02/01/2015
 =================
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/excon.gemspec new/excon.gemspec
--- old/excon.gemspec   2015-02-02 16:13:24.000000000 +0100
+++ new/excon.gemspec   2015-02-11 21:26:10.000000000 +0100
@@ -13,8 +13,8 @@
   ## If your rubyforge_project name is different, then edit it and comment out
   ## the sub! line in the Rakefile
   s.name              = 'excon'
-  s.version           = '0.44.1'
-  s.date              = '2015-02-02'
+  s.version           = '0.44.2'
+  s.date              = '2015-02-11'
   s.rubyforge_project = 'excon'
 
   ## Make sure your summary is short. The description may be as long
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/excon/connection.rb new/lib/excon/connection.rb
--- old/lib/excon/connection.rb 2015-02-02 16:13:24.000000000 +0100
+++ new/lib/excon/connection.rb 2015-02-11 21:26:10.000000000 +0100
@@ -64,7 +64,7 @@
         @data[:instrumentor] = Excon::StandardInstrumentor
       end
 
-      if @data[:debug] != false && @data[:debug] || ENV.has_key?('EXCON_DEBUG')
+      if @data[:debug] || ENV.has_key?('EXCON_DEBUG')
         @data[:debug_request] = @data[:debug_response] = true
         @data[:instrumentor] = Excon::StandardInstrumentor
       end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/excon/constants.rb new/lib/excon/constants.rb
--- old/lib/excon/constants.rb  2015-02-02 16:13:24.000000000 +0100
+++ new/lib/excon/constants.rb  2015-02-11 21:26:10.000000000 +0100
@@ -1,6 +1,6 @@
 module Excon
 
-  VERSION = '0.44.1'
+  VERSION = '0.44.2'
 
   CR_NL = "\r\n"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/excon/socket.rb new/lib/excon/socket.rb
--- old/lib/excon/socket.rb     2015-02-02 16:13:24.000000000 +0100
+++ new/lib/excon/socket.rb     2015-02-11 21:26:10.000000000 +0100
@@ -44,7 +44,7 @@
         buffer = ''
         buffer << @socket.read_nonblock(1) while buffer[-1] != "\n"
         buffer
-      rescue Errno::EAGAIN
+      rescue Errno::EAGAIN, Errno::EWOULDBLOCK, IO::WaitReadable 
         if timeout_reached('read')
           raise_timeout_error('read')
         else
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2015-02-02 16:13:24.000000000 +0100
+++ new/metadata        2015-02-11 21:26:10.000000000 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: excon
 version: !ruby/object:Gem::Version
-  version: 0.44.1
+  version: 0.44.2
 platform: ruby
 authors:
 - dpiddy (Dan Peterson)
@@ -10,7 +10,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-02-02 00:00:00.000000000 Z
+date: 2015-02-11 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to