excon 0.45.0 → 0.45.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of excon might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3672a722de0403e6e2826a2db98fe28b97ba73f5
4
- data.tar.gz: ef99f47f4735d41422cf58e2dc29f1d81186164a
3
+ metadata.gz: dcb3c2e59bcdc04bc44b0f35f0980c867bbbf473
4
+ data.tar.gz: c44d0ea79c4cd3e68b3170ac995f70d71705c6db
5
5
  SHA512:
6
- metadata.gz: 7275582af99e3738d3bb43d54f639092772fd13878fcfcc1ab2403fe8df81d16616b3b8d89a51ea6e80153814604dc42fa79cf7571c95a4d2c5cdcd414d61534
7
- data.tar.gz: b24381617571f4ae8a8369f01c7e0c1679a5be7eefb1604a122924636706cf540cb6fdc70a0bbb59ca208339ff762629108232a5dc3819030c5eed2834717cbc
6
+ metadata.gz: 424698e41e10a91c88385de9bfc8858add4232dd341ec22122095fb657ab88d4fac181320e69525e0e9ddbedcb835697359d1a88e0aacfc0fb024b479c1fe956
7
+ data.tar.gz: 8c25c646e3a66aa51bc49029c0bb0b52b2bb0878e85d9143c03261a3ba42684fd0fcfaf4df8b053d8b16146e473c331e4a744ad5314c61062354d55ca0fe3839
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- excon (0.45.0)
4
+ excon (0.45.1)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
@@ -1,3 +1,8 @@
1
+ 0.45.1 03/27/2015
2
+ =================
3
+
4
+ fix scope for readline buffer, fixes dropped initial characters
5
+
1
6
  0.45.0 03/26/2015
2
7
  =================
3
8
 
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
13
13
  ## If your rubyforge_project name is different, then edit it and comment out
14
14
  ## the sub! line in the Rakefile
15
15
  s.name = 'excon'
16
- s.version = '0.45.0'
17
- s.date = '2015-03-26'
16
+ s.version = '0.45.1'
17
+ s.date = '2015-03-27'
18
18
  s.rubyforge_project = 'excon'
19
19
 
20
20
  ## Make sure your summary is short. The description may be as long
@@ -1,6 +1,6 @@
1
1
  module Excon
2
2
 
3
- VERSION = '0.45.0'
3
+ VERSION = '0.45.1'
4
4
 
5
5
  CR_NL = "\r\n"
6
6
 
@@ -40,8 +40,8 @@ module Excon
40
40
 
41
41
  def readline
42
42
  return legacy_readline if RUBY_VERSION.to_f <= 1.8_7
43
+ buffer = ''
43
44
  begin
44
- buffer = ''
45
45
  buffer << @socket.read_nonblock(1) while buffer[-1] != "\n"
46
46
  buffer
47
47
  rescue Errno::EAGAIN, Errno::EWOULDBLOCK, IO::WaitReadable
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: excon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.45.0
4
+ version: 0.45.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - dpiddy (Dan Peterson)
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2015-03-26 00:00:00.000000000 Z
13
+ date: 2015-03-27 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport