rubyzip 0.5.7 → 0.5.8
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.
Potentially problematic release.
This version of rubyzip might be problematic. Click here for more details.
- data/ChangeLog +8 -0
- data/NEWS +5 -1
- data/README +6 -5
- data/Rakefile +2 -1
- data/install.rb +1 -1
- data/lib/zip/zip.rb +1 -1
- metadata +4 -4
data/ChangeLog
CHANGED
data/NEWS
CHANGED
@@ -1,9 +1,13 @@
|
|
1
|
+
= Version 0.5.8
|
2
|
+
|
3
|
+
Fixed install script.
|
4
|
+
|
1
5
|
= Version 0.5.7
|
2
6
|
|
3
7
|
install.rb no longer assumes it is being run from the toplevel source
|
4
8
|
dir. Directory structure changed to reflect common ruby library
|
5
9
|
project structure. Migrated from RubyUnit to Test::Unit format. Now
|
6
|
-
uses Rake to build source packages and gems and run unit tests
|
10
|
+
uses Rake to build source packages and gems and run unit tests.
|
7
11
|
|
8
12
|
= Version 0.5.6
|
9
13
|
|
data/README
CHANGED
@@ -4,15 +4,16 @@ rubyzip is a ruby library for reading and writing zip files.
|
|
4
4
|
|
5
5
|
= Install
|
6
6
|
|
7
|
-
|
7
|
+
If you have rubygems you can install rubyzip directly from the gem
|
8
|
+
repository
|
8
9
|
|
9
|
-
|
10
|
+
gem install rubyzip
|
10
11
|
|
11
|
-
|
12
|
+
Otherwise obtain the source (see below) and run
|
12
13
|
|
13
|
-
|
14
|
+
ruby install.rb
|
14
15
|
|
15
|
-
To run the unit tests you need to have test::unit installed
|
16
|
+
To run the unit tests you need to have test::unit installed
|
16
17
|
|
17
18
|
rake test
|
18
19
|
|
data/Rakefile
CHANGED
@@ -79,8 +79,9 @@ task :ppackage => [:package] do
|
|
79
79
|
"ftp",
|
80
80
|
ENV['USER']+"@"+ENV['HOSTNAME']) {
|
81
81
|
|ftpclient|
|
82
|
+
ftpclient.passive = true
|
82
83
|
ftpclient.chdir "incoming"
|
83
|
-
Dir['pkg/*.{
|
84
|
+
Dir['pkg/*.{zip,gem}'].each {
|
84
85
|
|e|
|
85
86
|
ftpclient.putbinaryfile(e, File.basename(e))
|
86
87
|
}
|
data/install.rb
CHANGED
@@ -13,7 +13,7 @@ files = %w{ stdrubyext.rb ioextras.rb zip.rb zipfilesystem.rb ziprequire.rb temp
|
|
13
13
|
INSTALL_DIR = File.join(CONFIG["sitelibdir"], "zip")
|
14
14
|
File.makedirs(INSTALL_DIR)
|
15
15
|
|
16
|
-
SOURCE_DIR = File.join(File.dirname($0), "zip")
|
16
|
+
SOURCE_DIR = File.join(File.dirname($0), "lib/zip")
|
17
17
|
|
18
18
|
files.each {
|
19
19
|
|filename|
|
data/lib/zip/zip.rb
CHANGED
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.8.
|
2
|
+
rubygems_version: 0.8.8
|
3
3
|
specification_version: 1
|
4
4
|
name: rubyzip
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.5.
|
7
|
-
date: 2005-03-
|
6
|
+
version: 0.5.8
|
7
|
+
date: 2005-03-17
|
8
8
|
summary: rubyzip is a ruby module for reading and writing zip files
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -38,13 +38,13 @@ files:
|
|
38
38
|
- samples/gtkRubyzip.rb
|
39
39
|
- samples/write_simple.rb
|
40
40
|
- samples/zipfind.rb
|
41
|
-
- test/alltests.rb
|
42
41
|
- test/gentestfiles.rb
|
43
42
|
- test/ioextrastest.rb
|
44
43
|
- test/stdrubyexttest.rb
|
45
44
|
- test/zipfilesystemtest.rb
|
46
45
|
- test/ziprequiretest.rb
|
47
46
|
- test/ziptest.rb
|
47
|
+
- test/alltests.rb
|
48
48
|
- test/data/file1.txt
|
49
49
|
- test/data/file1.txt.deflatedData
|
50
50
|
- test/data/file2.txt
|