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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 595642d6f864a24f2a646ce04dbcfda6f77b584e6579542e1d99ea328202e8a5
4
- data.tar.gz: 809e85acd7276dd73b783eec279f630ca13652b3b2365898b094ce179fcbe66a
3
+ metadata.gz: 3e86ca6410983afcc2259af21021ae0049d2b5f4def32975d9fa1568297417e3
4
+ data.tar.gz: b52224b6ef3a5b2dab3f56c9117daf36b679ecda95983cafd62ddd7d7f05b35a
5
5
  SHA512:
6
- metadata.gz: bcf8805e69ff70f663e0a8d6f14dc9ff8fe1155fd50837df2c9d1794eb51e75bc575f8df7a60cf6c9c1acc3c1ab89b31d8ff0d9c2291ac25a824ebe237e27232
7
- data.tar.gz: dac4abe2dfd096a00ad68913f57d225771bdc4117dec67d4cace3857613635f7370b89cbb1d4b20556fdf3b86839ed05f110bdea09a7be39469a5b4745324b2d
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
@@ -15,7 +15,6 @@
15
15
  # end
16
16
  #
17
17
 
18
- require "omnizip"
19
18
 
20
19
  # Create Zip namespace as alias for Omnizip::Zip
21
20
  module Zip
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Omnizip
4
- VERSION = "0.3.11"
4
+ VERSION = "0.3.13"
5
5
  end
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.11
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-22 00:00:00.000000000 Z
11
+ date: 2026-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64