ftpd 0.15.0 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Changelog.md +8 -0
- data/README.md +3 -0
- data/VERSION +1 -1
- data/ftpd.gemspec +3 -3
- data/lib/ftpd/server.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d52205c73f9747677423670210f0b7eff28659e7
|
4
|
+
data.tar.gz: 352b8761bf5518f2a41b549c64b57f21d989d93e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
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.
|
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.
|
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-
|
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
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.
|
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-
|
11
|
+
date: 2014-05-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: memoizer
|