duckling 0.1.0 → 0.1.1

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: 4ab2737045f65b21432ea27a84ccd69ff0f97047a1836471b7c1a9cafde9fdd4
4
- data.tar.gz: cdec73f7b627ca7c48ac60e98c1c575528f3c6879d3aeb24b2995e824de8e7ab
3
+ metadata.gz: 0a9f5672530209036d63f78b625252159544537cf08bfcce66ff56e27240194a
4
+ data.tar.gz: '09221a821a9021eaa80969f27fb7a697e2f4edfabf7ebd1aa1683c76b43f7128'
5
5
  SHA512:
6
- metadata.gz: f83727f4a0ef34537482bbb4cbcbd55e14c8963d68ddeda33ae5d94ae71b621e25da4cede95053650dec063227583a0da5a370717f4f2635d868fa55a908d2e1
7
- data.tar.gz: b564efccb4e884b24053e211211606158454cb38f9c2abb308f97aaf044213863514b2c9011b93cafc9e85c64dbe2e5409614d8b52a66ac65edfc04e2bd51961
6
+ metadata.gz: eddfd999944b7c5ca5684fbb89f4b2a4939fff9c19466ecdddc26b4fa3e6a4bc7ce6ee2f36a10d564d8f5443218f037d923c0da1b01efa6bd5d6e3b8a9a304ee
7
+ data.tar.gz: 8a88de504508e9c196a27afdc1d6d6c2c930809ddb9f665ccdfad16ee3a32fd043f9a048fbb0406ef5e4b4fb739f0568eeb1b910d647ea47d3713df5f5aeac58
data/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
+
7
+ ## [Unreleased]
data/README.md CHANGED
@@ -1,23 +1,19 @@
1
1
  # Duckling
2
2
 
3
- TODO: Delete this and the text below, and describe your gem
4
-
5
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/duckling`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Ruby FFI adapter to a Rust [Duckling](https://github.com/wafer-inc/duckling) NER engine no HTTP service required.
6
4
 
7
5
  ## Installation
8
6
 
9
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
-
11
7
  Install the gem and add to the application's Gemfile by executing:
12
8
 
13
9
  ```bash
14
- bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
10
+ bundle add duckling
15
11
  ```
16
12
 
17
13
  If bundler is not being used to manage dependencies, install the gem by executing:
18
14
 
19
15
  ```bash
20
- gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
16
+ gem install duckling
21
17
  ```
22
18
 
23
19
  ## Usage
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Duckling
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: duckling
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caleb Buxton
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-06-30 00:00:00.000000000 Z
11
+ date: 2026-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rb_sys
@@ -46,6 +46,7 @@ extensions:
46
46
  - ext/duckling/extconf.rb
47
47
  extra_rdoc_files: []
48
48
  files:
49
+ - CHANGELOG.md
49
50
  - CODE_OF_CONDUCT.md
50
51
  - LICENSE.txt
51
52
  - README.md