ftpd 0.15.0 → 0.16.0

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: aa59afb98dd26875b646c6f8a3550d337505ab80
4
- data.tar.gz: d29d3bc6c44189ee226694d613621c5e2febbd63
3
+ metadata.gz: d52205c73f9747677423670210f0b7eff28659e7
4
+ data.tar.gz: 352b8761bf5518f2a41b549c64b57f21d989d93e
5
5
  SHA512:
6
- metadata.gz: 344986d4b6cee9e0f6880f3a101c6ff56029e3a165ac70bfc302ac7eedfc5068a32f23055d960f42a4ca8504b9dec3014697fb668fc1233abcbb888a53c5e398
7
- data.tar.gz: d9e739f8960d52383b39351b3f72f510dc05e85b14504f8aaccb45732b6d9683dab7cb5c3c06f7e76e99d6842099d2ede7fc7c6fade379f9270dd8cc4f81da94
6
+ metadata.gz: 190fe51abf6cdc5b7a8122cb32bd31d476d43a55d40034f5eaea3b0e5d4ceb640ff0be3472b6791efac335b601cec7adb4a51beb23a07ad3022befe58cc0b2da
7
+ data.tar.gz: 639d4e7024ec277a57bdc77c985dfa3068df523660038412e4e341b228f7354f373049250700461f57dbeaa7e291c43528d08ff0fcb340e4da70dadebeb7a31f
data/Changelog.md CHANGED
@@ -2,6 +2,14 @@ This is the change log for the main branch of ftpd, which supports
2
2
  Ruby 1.9 and greater. For ruby 1.8.7, please use the latest version
3
3
  before 0.8.0.
4
4
 
5
+ ### 0.16.0
6
+
7
+ Bug fixes
8
+
9
+ * Fix Errno::ENOTSOCK error in Ruby 2.1.2 (issue #25)
10
+
11
+ ### 0.15.0
12
+
5
13
  Bug fixes
6
14
 
7
15
  * Ignore Errno::ENOTCONN on socket shutdown (issue #24)
data/README.md CHANGED
@@ -359,6 +359,9 @@ Among those who have improved ftpd are:
359
359
  * Michael de Silva
360
360
  * cransom
361
361
 
362
+ If I've forgotten to add you, please remind me, or submit a merge
363
+ request.
364
+
362
365
  Thank you!
363
366
 
364
367
  ## See also
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.15.0
1
+ 0.16.0
data/ftpd.gemspec CHANGED
@@ -2,15 +2,15 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: ftpd 0.15.0 ruby lib
5
+ # stub: ftpd 0.16.0 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "ftpd"
9
- s.version = "0.15.0"
9
+ s.version = "0.16.0"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.authors = ["Wayne Conrad"]
13
- s.date = "2014-05-14"
13
+ s.date = "2014-05-19"
14
14
  s.description = "ftpd is a pure Ruby FTP server library. It supports implicit and explicit TLS, IPV6, passive and active mode, and is unconditionally compliant per RFC-1123. It can be used as part of a test fixture or embedded in a program."
15
15
  s.email = "wconrad@yagni.com"
16
16
  s.extra_rdoc_files = [
data/lib/ftpd/server.rb CHANGED
@@ -74,7 +74,7 @@ module Ftpd
74
74
  IO.select([@server_socket])
75
75
  sleep(0.2)
76
76
  retry
77
- rescue Errno::EBADF
77
+ rescue Errno::EBADF, Errno::ENOTSOCK
78
78
  raise unless @stopping
79
79
  @stopping = false
80
80
  break
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ftpd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wayne Conrad
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-14 00:00:00.000000000 Z
11
+ date: 2014-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: memoizer