omnizip 0.3.11 → 0.3.13
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 +4 -4
- data/README.adoc +6 -0
- data/lib/omnizip/rubyzip_compat.rb +0 -1
- data/lib/omnizip/version.rb +1 -1
- data/lib/omnizip.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e86ca6410983afcc2259af21021ae0049d2b5f4def32975d9fa1568297417e3
|
|
4
|
+
data.tar.gz: b52224b6ef3a5b2dab3f56c9117daf36b679ecda95983cafd62ddd7d7f05b35a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b74c21559d4c813b83c82d80957c97d3f57f0d512cdb1895a92f869bd27594f5c0b60ae108179431e50f52bb44bfbb795343facb2de8f853258e483f4b63e75
|
|
7
|
+
data.tar.gz: ff4f463c54686edc825f514bb74c527d33a0a9319e2952ac628984392eb5acfb26ce77077a12ae711ddb44a419361a93e3336ae43d8c85a23d01e3efd445a029
|
data/README.adoc
CHANGED
|
@@ -607,6 +607,12 @@ gem 'omnizip'
|
|
|
607
607
|
gem install omnizip
|
|
608
608
|
----
|
|
609
609
|
|
|
610
|
+
External code must `require "omnizip"` to use the gem. Files under
|
|
611
|
+
`lib/omnizip/**` are internal — requiring them directly (e.g.
|
|
612
|
+
`require "omnizip/formats/cpio"`) bypasses the autoload chain that
|
|
613
|
+
wires the namespace modules, and lookups for sibling constants may
|
|
614
|
+
fail with `NameError`.
|
|
615
|
+
|
|
610
616
|
See link:readme-docs/installation.adoc[Installation Guide] for complete instructions.
|
|
611
617
|
|
|
612
618
|
=== Command Line
|
data/lib/omnizip/version.rb
CHANGED
data/lib/omnizip.rb
CHANGED
|
@@ -60,7 +60,6 @@ module Omnizip
|
|
|
60
60
|
autoload :ETA, "omnizip/eta"
|
|
61
61
|
autoload :Progress, "omnizip/progress"
|
|
62
62
|
autoload :Metadata, "omnizip/metadata"
|
|
63
|
-
autoload :Password, "omnizip/password"
|
|
64
63
|
autoload :Converter, "omnizip/converter"
|
|
65
64
|
autoload :LinkHandler, "omnizip/link_handler"
|
|
66
65
|
autoload :Parity, "omnizip/parity"
|
|
@@ -83,6 +82,7 @@ module Omnizip
|
|
|
83
82
|
autoload :Implementations, "omnizip/implementations"
|
|
84
83
|
autoload :ArchiveHandler, "omnizip/archive_handler"
|
|
85
84
|
autoload :ArchiveHandlers, "omnizip/archive_handlers"
|
|
85
|
+
autoload :Password, "omnizip/password"
|
|
86
86
|
autoload :Convenience, "omnizip/convenience"
|
|
87
87
|
end
|
|
88
88
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omnizip
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|