rubyzip-bzip2 0.0.1 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7322a0596a465cab1e1f7e5a2bfa7c7fbc8d5d8265187dffb8eb2c3826066c8e
4
- data.tar.gz: 83693f7f9c329715977b8bcef4990013c6983ca0e1945525a877352814d612d7
3
+ metadata.gz: 568ccb1b7481eecd0f87a943b4b8a44bab0daef37739e0eefb01bdf5719d92b8
4
+ data.tar.gz: 59b1efa8e578d6334399745bedf424f13d1b9a1e4a4902c890902388f29afa71
5
5
  SHA512:
6
- metadata.gz: 67d3cdb7afe2d41236cc7cd3b6350b32dcc4d009ce8ae30f327cf6cc3fee8a0a75b9b5aeec016a0d97a437699dc6a919d0f636a309b1dd075c61b55917dc28c9
7
- data.tar.gz: a8130502de8fd975e62095197d1ec41b669a3bddd56adedd8a6feda29fb12db2c35a71ac016b96d9e7b2b7579a9a1ecd4d13fa13ed5ab75a647b9030af756421
6
+ metadata.gz: a789417a9bcc5ffe6ced70e29dbf2e6b64af2c522105201e8f77bf494be2d333f1178e09e949664a015d53cf1c5fe171bb8a056bcab46391e7bbc21b4fc64176
7
+ data.tar.gz: 6f88e4f8e236c676c733f663f2fe5040cc89a4cd72aaa69ab8d3e6b51e365a0661a9a657a678e83525263d92ce06b41ac5e6dc13335320746d239ac303a35933
@@ -0,0 +1,19 @@
1
+ name: Linter
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ lint:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout rubyzip-bzip2 code
10
+ uses: actions/checkout@v4
11
+
12
+ - name: Install and set up ruby
13
+ uses: ruby/setup-ruby@v1
14
+ with:
15
+ ruby-version: 2.4
16
+ bundler-cache: true
17
+
18
+ - name: Rubocop
19
+ run: bundle exec rubocop
@@ -0,0 +1,57 @@
1
+ name: Tests
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ test:
7
+ strategy:
8
+ fail-fast: false
9
+ matrix:
10
+ os: [ubuntu]
11
+ ruby: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4', head, jruby, jruby-head, truffleruby, truffleruby-head]
12
+ include:
13
+ - os: macos
14
+ ruby: '2.6'
15
+ - os: windows
16
+ ruby: '2.4.10'
17
+ runs-on: ${{ matrix.os }}-latest
18
+ continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.os == 'windows' }}
19
+ steps:
20
+ - name: Checkout rubyzip-bzip2 code
21
+ uses: actions/checkout@v4
22
+
23
+ - name: Install and set up ruby
24
+ uses: ruby/setup-ruby@v1
25
+ with:
26
+ ruby-version: ${{ matrix.ruby }}
27
+ rubygems: latest
28
+ bundler-cache: true
29
+
30
+ - name: Install bzip2 library
31
+ if: matrix.os == 'windows'
32
+ run: |
33
+ wget https://github.com/philr/bzip2-windows/releases/download/v1.0.8.0/bzip2-dll-1.0.8.0-win-x64.zip
34
+ Expand-Archive -Path bzip2-dll-1.0.8.0-win-x64.zip -DestinationPath C:\hostedtoolcache\windows\Ruby\${{ matrix.ruby }}\x64\bin
35
+
36
+ - name: Run the tests
37
+ env:
38
+ JRUBY_OPTS: --debug
39
+ run: bundle exec rake
40
+
41
+ - name: Coveralls
42
+ if: matrix.os == 'ubuntu' && !endsWith(matrix.ruby, 'head')
43
+ uses: coverallsapp/github-action@v2
44
+ with:
45
+ github-token: ${{ secrets.github_token }}
46
+ flag-name: ${{ matrix.ruby }}
47
+ parallel: true
48
+
49
+ finish:
50
+ needs: test
51
+ runs-on: ubuntu-latest
52
+ steps:
53
+ - name: Coveralls Finished
54
+ uses: coverallsapp/github-action@v2
55
+ with:
56
+ github-token: ${{ secrets.github_token }}
57
+ parallel-finished: true
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ .idea
2
+ *.gem
3
+ .bundle
4
+ Gemfile.lock
5
+ coverage
6
+ pkg/
7
+ .ruby-gemset
8
+ .ruby-version
9
+ /vendor/bundle
data/.rubocop.yml ADDED
@@ -0,0 +1,8 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.4
3
+
4
+ Layout/LineLength:
5
+ Max: 120
6
+
7
+ Metrics/MethodLength:
8
+ Max: 15
data/.simplecov ADDED
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'simplecov-lcov'
4
+
5
+ SimpleCov::Formatter::LcovFormatter.config do |c|
6
+ c.output_directory = 'coverage'
7
+ c.lcov_file_name = 'lcov.info'
8
+ c.report_with_single_file = true
9
+ c.single_report_path = 'coverage/lcov.info'
10
+ end
11
+
12
+ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new(
13
+ [
14
+ SimpleCov::Formatter::HTMLFormatter,
15
+ SimpleCov::Formatter::LcovFormatter
16
+ ]
17
+ )
18
+
19
+ SimpleCov.start do
20
+ # enable_coverage :branch <-- Re-enable this when we move to ruby ~> 2.5.
21
+ add_filter ['/test/', '/samples/']
22
+ end
data/Changelog.md ADDED
@@ -0,0 +1,33 @@
1
+ # X.X.X (Next)
2
+
3
+ * Fix automatic require
4
+ * Fix the Libbz2::finalizer method.
5
+
6
+ ## Tooling and internal changes
7
+
8
+ * Fix tests on Windows
9
+ * Use github actions for CI
10
+ * Add require statement to the example
11
+ * Add LICENSE file
12
+ * Use Markdown for the LICENSE and tidy up the README.
13
+ * Update GitHub Actions workflows.
14
+ * Update version of Rake to fix security alert.
15
+ * Remove Pry and Guard development dependencies.
16
+ * Update minimum version of RubyZip required.
17
+ * Update MiniTest dependency.
18
+ * Add a test to ensure correct version number format.
19
+ * Add `bin/console'.
20
+ * Require MFA for RubyGems operations.
21
+ * Tighten-up RuboCop configuration.
22
+
23
+ # 0.0.1
24
+
25
+ * Initial version
26
+
27
+ ## About this Changelog file
28
+
29
+ This file is, at least in part, generated by the following command:
30
+
31
+ ```shell
32
+ $ git log --pretty=format:"* %s" --reverse --no-merges <commit-hash>..
33
+ ```
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,24 @@
1
+ BSD 2-Clause License
2
+
3
+ Copyright (c) 2020-2025, Jan-Joost Spanjers and The Rubyzip Developers
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
19
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
22
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # rubyzip-bzip2
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/rubyzip-bzip2.svg)](http://badge.fury.io/rb/rubyzip-bzip2)
4
- [![Build Status](https://secure.travis-ci.org/rubyzip/rubyzip-bzip2.svg)](http://travis-ci.org/rubyzip/rubyzip-bzip2)
4
+ [![Tests](https://github.com/rubyzip/rubyzip-bzip2/actions/workflows/tests.yml/badge.svg)](https://github.com/rubyzip/rubyzip-bzip2/actions/workflows/tests.yml)
5
+ [![Linter](https://github.com/rubyzip/rubyzip-bzip2/actions/workflows/lint.yml/badge.svg)](https://github.com/rubyzip/rubyzip-bzip2/actions/workflows/lint.yml)
5
6
  [![Code Climate](https://codeclimate.com/github/rubyzip/rubyzip-bzip2.svg)](https://codeclimate.com/github/rubyzip/rubyzip-bzip2)
6
7
  [![Coverage Status](https://img.shields.io/coveralls/rubyzip/rubyzip-bzip2.svg)](https://coveralls.io/r/rubyzip/rubyzip-bzip2?branch=master)
7
8
 
8
- The rubyzip-bzip2 gem provides an extension of the rubyzip gem for reading zip files
9
- compressed with bzip2 compression.
9
+ The rubyzip-bzip2 gem provides an extension of the rubyzip gem for reading zip files compressed with bzip2 compression.
10
10
 
11
11
  ## Website and Project Home
12
12
  http://github.com/rubyzip/rubyzip-bzip2
@@ -32,6 +32,8 @@ Reading a zip file with bzip2 compression is not different from reading
32
32
  any other zip file using rubyzip:
33
33
 
34
34
  ```ruby
35
+ require 'zip/bzip2'
36
+
35
37
  Zip::File.open('foo.zip') do |zipfile|
36
38
  zipfile.each do |entry|
37
39
  content = zipfile.read(entry.name)
@@ -41,8 +43,7 @@ end
41
43
  ```
42
44
 
43
45
  ## License
44
- Rubyzip-bzip2 is distributed under the same license as ruby. See
45
- http://www.ruby-lang.org/en/LICENSE.txt
46
+ Rubyzip-bzip2 is distributed under the same license as Ruby. In practice this means you can use it under the terms of the Ruby License or the 2-Clause BSD License. See https://www.ruby-lang.org/en/about/license.txt and LICENSE.md for details.
46
47
 
47
48
  ## Contributing
48
49
  Bug reports and pull requests are welcome on GitHub at https://github.com/rubyzip/rubyzip-bzip2.
@@ -56,4 +57,14 @@ rake
56
57
  ```
57
58
 
58
59
  ## Authors
60
+
61
+ See https://github.com/rubyzip/rubyzip-bzip2/graphs/contributors for a comprehensive list.
62
+
63
+ ### Current maintainers
64
+
65
+ * Robert Haines (@hainesr)
66
+ * John Lees-Miller (@jdleesmiller)
67
+ * Oleksandr Simonov (@simonoff)
68
+
69
+ ### Original author
59
70
  Jan-Joost Spanjers ( oss at hiberis.nl )
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rake/testtask'
5
+
6
+ Rake::TestTask.new(:test) do |t|
7
+ t.libs << 'test'
8
+ t.libs << 'lib'
9
+ t.test_files = FileList['test/**/*_test.rb']
10
+ end
11
+
12
+ task default: :test
data/bin/console ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'bundler/setup'
5
+ require 'zip/bzip2'
6
+
7
+ require 'irb'
8
+ IRB.start(__FILE__)
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'zip/bzip2'
@@ -7,9 +7,9 @@ require 'zip/bzip2/ffi/libbz2'
7
7
  module Zip
8
8
  module Bzip2
9
9
  class Libbz2 #:nodoc:
10
- def self.finalizer
10
+ def self.finalizer(stream)
11
11
  lambda do |_id|
12
- decompress_end
12
+ FFI::Libbz2::BZ2_bzDecompressEnd(stream)
13
13
  end
14
14
  end
15
15
  private_class_method :finalizer
@@ -32,7 +32,7 @@ module Zip
32
32
  result = FFI::Libbz2::BZ2_bzDecompressInit(@stream, 0, small ? 1 : 0)
33
33
  check_error(result)
34
34
 
35
- ObjectSpace.define_finalizer(self, self.class.send(:finalizer))
35
+ ObjectSpace.define_finalizer(self, self.class.send(:finalizer, @stream))
36
36
 
37
37
  true
38
38
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Zip
4
4
  module Bzip2
5
- VERSION = '0.0.1'
5
+ VERSION = '1.0.0'
6
6
  end
7
7
  end
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path('lib', __dir__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'zip/bzip2/version'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'rubyzip-bzip2'
9
+ spec.version = ::Zip::Bzip2::VERSION
10
+ spec.authors = [
11
+ 'Jan-Joost Spanjers', 'Robert Haines'
12
+ ]
13
+
14
+ spec.summary = 'Extension of rubyzip to read bzip2 compressed files'
15
+ spec.description =
16
+ 'The rubyzip-bzip2 gem provides an extension of the rubyzip gem '\
17
+ 'for reading zip files compressed with bzip2 compression'
18
+ spec.homepage = 'http://github.com/rubyzip/rubyzip-bzip2'
19
+ spec.license = 'BSD 2-Clause'
20
+ spec.require_paths = ['lib']
21
+
22
+ spec.required_ruby_version = '>= 2.4'
23
+
24
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
25
+ f.match(%r{^(test|spec|features)/})
26
+ end
27
+
28
+ spec.metadata = {
29
+ 'bug_tracker_uri' => 'https://github.com/rubyzip/rubyzip-bzip2/issues',
30
+ 'changelog_uri' => "https://github.com/rubyzip/rubyzip-bzip2/blob/v#{spec.version}/Changelog.md",
31
+ 'documentation_uri' => "https://www.rubydoc.info/gems/rubyzip-bzip2/#{spec.version}",
32
+ 'source_code_uri' => "https://github.com/rubyzip/rubyzip-bzip2/tree/v#{spec.version}",
33
+ 'wiki_uri' => 'https://github.com/rubyzip/rubyzip-bzip2/wiki',
34
+ 'rubygems_mfa_required' => 'true'
35
+ }
36
+
37
+ spec.add_dependency 'ffi', '~> 1.0'
38
+ spec.add_dependency 'rubyzip', '~> 2.4', '< 3.0'
39
+
40
+ spec.add_development_dependency 'minitest', '~> 5.15'
41
+ spec.add_development_dependency 'rake', '~> 13.2'
42
+ spec.add_development_dependency 'rubocop', '~> 0.79.0'
43
+ spec.add_development_dependency 'simplecov', '~> 0.18.0'
44
+ spec.add_development_dependency 'simplecov-lcov', '~> 0.8'
45
+ end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyzip-bzip2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan-Joost Spanjers
8
- autorequire:
8
+ - Robert Haines
9
+ autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2020-02-02 00:00:00.000000000 Z
12
+ date: 2025-02-07 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: ffi
@@ -30,120 +31,109 @@ dependencies:
30
31
  requirements:
31
32
  - - "~>"
32
33
  - !ruby/object:Gem::Version
33
- version: '2.2'
34
+ version: '2.4'
35
+ - - "<"
36
+ - !ruby/object:Gem::Version
37
+ version: '3.0'
34
38
  type: :runtime
35
39
  prerelease: false
36
40
  version_requirements: !ruby/object:Gem::Requirement
37
41
  requirements:
38
42
  - - "~>"
39
43
  - !ruby/object:Gem::Version
40
- version: '2.2'
44
+ version: '2.4'
45
+ - - "<"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
41
48
  - !ruby/object:Gem::Dependency
42
- name: coveralls
49
+ name: minitest
43
50
  requirement: !ruby/object:Gem::Requirement
44
51
  requirements:
45
52
  - - "~>"
46
53
  - !ruby/object:Gem::Version
47
- version: '0.7'
54
+ version: '5.15'
48
55
  type: :development
49
56
  prerelease: false
50
57
  version_requirements: !ruby/object:Gem::Requirement
51
58
  requirements:
52
59
  - - "~>"
53
60
  - !ruby/object:Gem::Version
54
- version: '0.7'
55
- - !ruby/object:Gem::Dependency
56
- name: guard
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
- - !ruby/object:Gem::Dependency
70
- name: guard-minitest
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - ">="
74
- - !ruby/object:Gem::Version
75
- version: '0'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- version: '0'
61
+ version: '5.15'
83
62
  - !ruby/object:Gem::Dependency
84
- name: minitest
63
+ name: rake
85
64
  requirement: !ruby/object:Gem::Requirement
86
65
  requirements:
87
66
  - - "~>"
88
67
  - !ruby/object:Gem::Version
89
- version: '5.4'
68
+ version: '13.2'
90
69
  type: :development
91
70
  prerelease: false
92
71
  version_requirements: !ruby/object:Gem::Requirement
93
72
  requirements:
94
73
  - - "~>"
95
74
  - !ruby/object:Gem::Version
96
- version: '5.4'
75
+ version: '13.2'
97
76
  - !ruby/object:Gem::Dependency
98
- name: pry
77
+ name: rubocop
99
78
  requirement: !ruby/object:Gem::Requirement
100
79
  requirements:
101
80
  - - "~>"
102
81
  - !ruby/object:Gem::Version
103
- version: '0.10'
82
+ version: 0.79.0
104
83
  type: :development
105
84
  prerelease: false
106
85
  version_requirements: !ruby/object:Gem::Requirement
107
86
  requirements:
108
87
  - - "~>"
109
88
  - !ruby/object:Gem::Version
110
- version: '0.10'
89
+ version: 0.79.0
111
90
  - !ruby/object:Gem::Dependency
112
- name: rake
91
+ name: simplecov
113
92
  requirement: !ruby/object:Gem::Requirement
114
93
  requirements:
115
94
  - - "~>"
116
95
  - !ruby/object:Gem::Version
117
- version: '10.3'
96
+ version: 0.18.0
118
97
  type: :development
119
98
  prerelease: false
120
99
  version_requirements: !ruby/object:Gem::Requirement
121
100
  requirements:
122
101
  - - "~>"
123
102
  - !ruby/object:Gem::Version
124
- version: '10.3'
103
+ version: 0.18.0
125
104
  - !ruby/object:Gem::Dependency
126
- name: rubocop
105
+ name: simplecov-lcov
127
106
  requirement: !ruby/object:Gem::Requirement
128
107
  requirements:
129
108
  - - "~>"
130
109
  - !ruby/object:Gem::Version
131
- version: 0.79.0
110
+ version: '0.8'
132
111
  type: :development
133
112
  prerelease: false
134
113
  version_requirements: !ruby/object:Gem::Requirement
135
114
  requirements:
136
115
  - - "~>"
137
116
  - !ruby/object:Gem::Version
138
- version: 0.79.0
117
+ version: '0.8'
139
118
  description: The rubyzip-bzip2 gem provides an extension of the rubyzip gem for reading
140
119
  zip files compressed with bzip2 compression
141
- email:
120
+ email:
142
121
  executables: []
143
122
  extensions: []
144
123
  extra_rdoc_files: []
145
124
  files:
125
+ - ".github/workflows/lint.yml"
126
+ - ".github/workflows/tests.yml"
127
+ - ".gitignore"
128
+ - ".rubocop.yml"
129
+ - ".simplecov"
130
+ - Changelog.md
131
+ - Gemfile
132
+ - LICENSE.md
146
133
  - README.md
134
+ - Rakefile
135
+ - bin/console
136
+ - lib/rubyzip/bzip2.rb
147
137
  - lib/zip/bzip2.rb
148
138
  - lib/zip/bzip2/decompress.rb
149
139
  - lib/zip/bzip2/decompressor.rb
@@ -151,16 +141,18 @@ files:
151
141
  - lib/zip/bzip2/ffi/libbz2.rb
152
142
  - lib/zip/bzip2/libbz2.rb
153
143
  - lib/zip/bzip2/version.rb
144
+ - rubyzip-bzip2.gemspec
154
145
  homepage: http://github.com/rubyzip/rubyzip-bzip2
155
146
  licenses:
156
147
  - BSD 2-Clause
157
148
  metadata:
158
149
  bug_tracker_uri: https://github.com/rubyzip/rubyzip-bzip2/issues
159
- changelog_uri: https://github.com/rubyzip/rubyzip-bzip2/blob/v0.0.1/Changelog.md
160
- documentation_uri: https://www.rubydoc.info/gems/rubyzip-bzip2/0.0.1
161
- source_code_uri: https://github.com/rubyzip/rubyzip-bzip2/tree/v0.0.1
150
+ changelog_uri: https://github.com/rubyzip/rubyzip-bzip2/blob/v1.0.0/Changelog.md
151
+ documentation_uri: https://www.rubydoc.info/gems/rubyzip-bzip2/1.0.0
152
+ source_code_uri: https://github.com/rubyzip/rubyzip-bzip2/tree/v1.0.0
162
153
  wiki_uri: https://github.com/rubyzip/rubyzip-bzip2/wiki
163
- post_install_message:
154
+ rubygems_mfa_required: 'true'
155
+ post_install_message:
164
156
  rdoc_options: []
165
157
  require_paths:
166
158
  - lib
@@ -175,8 +167,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
175
167
  - !ruby/object:Gem::Version
176
168
  version: '0'
177
169
  requirements: []
178
- rubygems_version: 3.0.3
179
- signing_key:
170
+ rubygems_version: 3.4.1
171
+ signing_key:
180
172
  specification_version: 4
181
173
  summary: Extension of rubyzip to read bzip2 compressed files
182
174
  test_files: []