zip 2.0.2

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.
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zip
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 2
7
+ - 0
8
+ - 2
9
+ version: 2.0.2
10
+ platform: ruby
11
+ authors:
12
+ - Postmodern
13
+ - Thomas Sondergaard
14
+ - Sam Lown
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2010-05-26 00:00:00 +02:00
20
+ default_executable:
21
+ dependencies: []
22
+
23
+ description: zip is a Ruby library for reading and writing Zip files. Unlike the official rubyzip, zip is compatible with Ruby 1.9.1.
24
+ email:
25
+ - me@samlown.com
26
+ - postmodern.mod3@gmail.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - ChangeLog.txt
33
+ - README
34
+ files:
35
+ - ChangeLog.txt
36
+ - NEWS.txt
37
+ - Rakefile
38
+ - TODO.txt
39
+ - lib/zip.rb
40
+ - lib/zip/ioextras.rb
41
+ - lib/zip/stdrubyext.rb
42
+ - lib/zip/tempfile_bugfixed.rb
43
+ - lib/zip/version.rb
44
+ - lib/zip/zip.rb
45
+ - lib/zip/zipfilesystem.rb
46
+ - lib/zip/ziprequire.rb
47
+ - samples/example.rb
48
+ - samples/example_filesystem.rb
49
+ - samples/gtk_zip.rb
50
+ - samples/write_simple.rb
51
+ - samples/zipfind.rb
52
+ - test/alltests.rb
53
+ - test/data/file1.txt
54
+ - test/data/file1.txt.deflatedData
55
+ - test/data/file2.txt
56
+ - test/data/notzippedruby.rb
57
+ - test/data/rubycode.zip
58
+ - test/data/rubycode2.zip
59
+ - test/data/testDirectory.bin
60
+ - test/data/zipWithDirs.zip
61
+ - README
62
+ has_rdoc: true
63
+ homepage: http://github.com/postmodern/rubyzip2
64
+ licenses: []
65
+
66
+ post_install_message:
67
+ rdoc_options:
68
+ - --charset=UTF-8
69
+ require_paths:
70
+ - lib
71
+ required_ruby_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ segments:
76
+ - 0
77
+ version: "0"
78
+ required_rubygems_version: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ segments:
83
+ - 0
84
+ version: "0"
85
+ requirements: []
86
+
87
+ rubyforge_project:
88
+ rubygems_version: 1.3.6
89
+ signing_key:
90
+ specification_version: 3
91
+ summary: zip is a Ruby library for reading and writing Zip files
92
+ test_files:
93
+ - test/ziprequiretest.rb
94
+ - test/zipfilesystemtest.rb
95
+ - test/ziptest.rb
96
+ - test/gentestfiles.rb
97
+ - test/alltests.rb
98
+ - test/ioextrastest.rb
99
+ - test/data/notzippedruby.rb
100
+ - test/stdrubyexttest.rb