{"id":28377436,"url":"https://github.com/rubyzip/rubyzip-bzip2","last_synced_at":"2026-01-20T17:13:41.541Z","repository":{"id":45933939,"uuid":"237602536","full_name":"rubyzip/rubyzip-bzip2","owner":"rubyzip","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-29T10:17:17.000Z","size":77,"stargazers_count":0,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-09T11:26:16.200Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rubyzip.png","metadata":{"files":{"readme":"README.md","changelog":"Changelog.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-02-01T11:09:12.000Z","updated_at":"2025-11-29T10:08:06.000Z","dependencies_parsed_at":"2025-02-09T23:30:17.923Z","dependency_job_id":null,"html_url":"https://github.com/rubyzip/rubyzip-bzip2","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/rubyzip/rubyzip-bzip2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubyzip%2Frubyzip-bzip2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubyzip%2Frubyzip-bzip2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubyzip%2Frubyzip-bzip2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubyzip%2Frubyzip-bzip2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rubyzip","download_url":"https://codeload.github.com/rubyzip/rubyzip-bzip2/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubyzip%2Frubyzip-bzip2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607625,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-05-30T01:05:11.023Z","updated_at":"2026-01-20T17:13:41.533Z","avatar_url":"https://github.com/rubyzip.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rubyzip-bzip2\n\n[![Gem Version](https://badge.fury.io/rb/rubyzip-bzip2.svg)](http://badge.fury.io/rb/rubyzip-bzip2)\n[![Tests](https://github.com/rubyzip/rubyzip-bzip2/actions/workflows/tests.yml/badge.svg)](https://github.com/rubyzip/rubyzip-bzip2/actions/workflows/tests.yml)\n[![Linter](https://github.com/rubyzip/rubyzip-bzip2/actions/workflows/lint.yml/badge.svg)](https://github.com/rubyzip/rubyzip-bzip2/actions/workflows/lint.yml)\n[![Code Climate](https://codeclimate.com/github/rubyzip/rubyzip-bzip2.svg)](https://codeclimate.com/github/rubyzip/rubyzip-bzip2)\n[![Coverage Status](https://img.shields.io/coveralls/rubyzip/rubyzip-bzip2.svg)](https://coveralls.io/r/rubyzip/rubyzip-bzip2?branch=main)\n\nThe rubyzip-bzip2 gem provides an extension of the rubyzip gem for reading zip files compressed with bzip2 compression.\n\n## Website and Project Home\nhttp://github.com/rubyzip/rubyzip-bzip2\n\n## Requirements\n\nVersion 2.x of this library:\n* Ruby 3.0 or greater\n* Rubyzip 3.0 or greater\n\nVersion 1.x of this library:\n* Ruby 2.4 or greater\n* Rubyzip 2.4.x\n\n## Installation\nThe rubyzip-bzip2 gem is available on RubyGems:\n\n```\ngem install rubyzip-bzip2\n```\n\nOr in your Gemfile:\n\n```ruby\ngem 'rubyzip-bzip2'\n```\n\n## Usage\nReading a zip file with bzip2 compression is no different from reading\nany other zip file using rubyzip:\n\n```ruby\nrequire 'zip/bzip2'\n\nZip::File.open('foo.zip') do |zipfile|\n  zipfile.each do |entry|\n    content = zipfile.read(entry.name)\n  end\nend\n\n```\n\n## License\nRubyzip-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.\n\n## Contributing\nBug reports and pull requests are welcome on GitHub at https://github.com/rubyzip/rubyzip-bzip2.\n\n## Development\nYou can run the tests with:\n\n```\nbundle install\nrake\n```\n\n## Authors\n\nSee https://github.com/rubyzip/rubyzip-bzip2/graphs/contributors for a comprehensive list.\n\n### Current maintainers\n\n* Robert Haines (@hainesr)\n* John Lees-Miller (@jdleesmiller)\n* Oleksandr Simonov (@simonoff)\n\n### Original author\nJan-Joost Spanjers ( oss at hiberis.nl )\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubyzip%2Frubyzip-bzip2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frubyzip%2Frubyzip-bzip2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubyzip%2Frubyzip-bzip2/lists"}