Skip to content

Commit bc5b62f

Browse files
committed
Rename gem from "parsekit" to "parsekit-bin" in gemspec, README, and GitHub Actions workflow for consistency.
1 parent 5b3fc85 commit bc5b62f

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/native-gems.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Upload gem artifact
4444
uses: actions/upload-artifact@v4
4545
with:
46-
name: parsekit-${{ matrix.platform }}
46+
name: parsekit-bin-${{ matrix.platform }}
4747
path: pkg/*${{ matrix.platform }}.gem
4848
if-no-files-found: error
4949

@@ -57,7 +57,7 @@ jobs:
5757
- name: Download all gem artifacts
5858
uses: actions/download-artifact@v4
5959
with:
60-
pattern: parsekit-*
60+
pattern: parsekit-bin-*
6161
merge-multiple: true
6262
path: pkg
6363

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<img src="/docs/assets/parsekit-wide.png" alt="parsekit" height="80px">
22

3-
[![Gem Version](https://badge.fury.io/rb/parsekit.svg)](https://badge.fury.io/rb/parsekit)
3+
[![Gem Version](https://badge.fury.io/rb/parsekit-bin.svg)](https://badge.fury.io/rb/parsekit-bin)
44
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
55

66
Native Ruby bindings for the [parser-core](https://crates.io/crates/parser-core) Rust crate, providing high-performance document parsing and text extraction capabilities through Magnus. This gem wraps parser-core to extract text from PDFs, Office documents (DOCX, XLSX), images (with OCR), and more. Part of the ruby-nlp ecosystem.
@@ -19,7 +19,7 @@ Native Ruby bindings for the [parser-core](https://crates.io/crates/parser-core)
1919
Add this line to your application's Gemfile:
2020

2121
```ruby
22-
gem 'parsekit'
22+
gem 'parsekit-bin'
2323
```
2424

2525
And then execute:
@@ -29,7 +29,7 @@ And then execute:
2929
Or install it yourself as:
3030

3131
```bash
32-
gem install parsekit
32+
gem install parsekit-bin
3333
```
3434

3535
### Requirements
@@ -158,7 +158,7 @@ By default, ParseKit bundles Tesseract for zero-dependency OCR support. Advanced
158158

159159
**Using system Tesseract during installation:**
160160
```bash
161-
gem install parsekit -- --no-default-features
161+
gem install parsekit-bin -- --no-default-features
162162
```
163163

164164
**For development with system Tesseract:**

parsekit.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require_relative "lib/parsekit/version"
44

55
Gem::Specification.new do |spec|
6-
spec.name = "parsekit"
6+
spec.name = "parsekit-bin"
77
spec.version = ParseKit::VERSION
88
spec.authors = ["Chris Petersen"]
99
spec.email = ["chris@petersen.io"]

0 commit comments

Comments
 (0)