net-ftp-list 3.2.2 → 3.2.3
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.
- data/VERSION.yml +1 -1
- data/net-ftp-list.gemspec +2 -10
- data/test/test_net_ftp_list_rumpus.rb +1 -4
- metadata +5 -10
data/VERSION.yml
CHANGED
data/net-ftp-list.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{net-ftp-list}
|
|
8
|
-
s.version = "3.2.
|
|
8
|
+
s.version = "3.2.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Stateless Systems"]
|
|
12
|
-
s.date = %q{2012-
|
|
12
|
+
s.date = %q{2012-05-16}
|
|
13
13
|
s.email = %q{enquiries@statelesssystems.com}
|
|
14
14
|
s.extra_rdoc_files = [
|
|
15
15
|
"README.txt"
|
|
@@ -38,14 +38,6 @@ Gem::Specification.new do |s|
|
|
|
38
38
|
s.require_paths = ["lib"]
|
|
39
39
|
s.rubygems_version = %q{1.3.7}
|
|
40
40
|
s.summary = %q{Parse FTP LIST command output.}
|
|
41
|
-
s.test_files = [
|
|
42
|
-
"test/test_net_ftp_list.rb",
|
|
43
|
-
"test/test_net_ftp_list_entry.rb",
|
|
44
|
-
"test/test_net_ftp_list_microsoft.rb",
|
|
45
|
-
"test/test_net_ftp_list_netware.rb",
|
|
46
|
-
"test/test_net_ftp_list_rumpus.rb",
|
|
47
|
-
"test/test_net_ftp_list_unix.rb"
|
|
48
|
-
]
|
|
49
41
|
|
|
50
42
|
if s.respond_to? :specification_version then
|
|
51
43
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
@@ -9,10 +9,7 @@ class TestNetFTPListRumpus < Test::Unit::TestCase
|
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
def test_parsed
|
|
12
|
-
assert_equal "Rumpus", @dir.server_type,
|
|
13
|
-
|
|
14
|
-
## TODO: this rumpus file is getting picked up as unix, which if you check
|
|
15
|
-
## how it looks above, it looks like unix to me, i dunno how to fix it.
|
|
12
|
+
assert_equal "Rumpus", @dir.server_type, 'LIST Rumpus directory'
|
|
16
13
|
assert_equal "Rumpus", @file.server_type, 'LIST Rumpus file with spaces'
|
|
17
14
|
end
|
|
18
15
|
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 3
|
|
7
7
|
- 2
|
|
8
|
-
-
|
|
9
|
-
version: 3.2.
|
|
8
|
+
- 3
|
|
9
|
+
version: 3.2.3
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Stateless Systems
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2012-
|
|
17
|
+
date: 2012-05-16 00:00:00 +10:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies: []
|
|
20
20
|
|
|
@@ -77,10 +77,5 @@ rubygems_version: 1.3.7
|
|
|
77
77
|
signing_key:
|
|
78
78
|
specification_version: 3
|
|
79
79
|
summary: Parse FTP LIST command output.
|
|
80
|
-
test_files:
|
|
81
|
-
|
|
82
|
-
- test/test_net_ftp_list_entry.rb
|
|
83
|
-
- test/test_net_ftp_list_microsoft.rb
|
|
84
|
-
- test/test_net_ftp_list_netware.rb
|
|
85
|
-
- test/test_net_ftp_list_rumpus.rb
|
|
86
|
-
- test/test_net_ftp_list_unix.rb
|
|
80
|
+
test_files: []
|
|
81
|
+
|