0.0
The project is in a healthy, maintained state
Official Ruby SDK for the Tork AI Governance Platform. Provides comprehensive tools for AI safety, content moderation, PII detection, policy enforcement, and compliance monitoring for LLM applications.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 2.0
~> 13.0
~> 3.0
~> 1.0
~> 0.22
~> 6.0
~> 3.0
~> 0.9

Runtime

 Project Readme

Tork Governance Ruby SDK

On-device AI governance with PII detection, redaction, and cryptographic receipts for Ruby applications.

Gem Version License: MIT

Installation

Add to your Gemfile:

gem 'tork-governance'

Or install directly:

gem install tork-governance

Quick Start

require 'tork_governance'

tork = TorkGovernance::Client.new

# Detect and redact PII
result = tork.govern("My SSN is 123-45-6789 and email is john@example.com")

puts result.output  # "My SSN is [SSN_REDACTED] and email is [EMAIL_REDACTED]"
puts result.pii.types  # ['ssn', 'email']
puts result.receipt.id  # Cryptographic receipt ID

Regional PII Detection (v1.1)

Activate country-specific and industry-specific PII patterns:

tork = TorkGovernance::Client.new

# UAE regional detection — Emirates ID, +971 phone, PO Box
result = tork.govern(
  "Emirates ID: 784-1234-1234567-1",
  region: ["ae"]
)

# Multi-region + industry
result = tork.govern(
  "Aadhaar: 1234 5678 9012, ICD-10: J45.20",
  region: ["in"],
  industry: "healthcare"
)

# Available regions: AU, US, GB, EU, AE, SA, NG, IN, JP, CN, KR, BR
# Available industries: healthcare, finance, legal

Supported Frameworks (2 Adapters)

Web Frameworks

  • Rails - Middleware and controller integration
  • Grape - API middleware and helpers

Framework Examples

Rails Middleware

# config/application.rb
module MyApp
  class Application < Rails::Application
    config.middleware.use TorkGovernance::Middleware::Rails,
      protected_paths: ['/api/'],
      skip_paths: ['/api/health']
  end
end
# In controllers
class ChatController < ApplicationController
  def create
    tork_result = request.env['tork.result']
    render json: { status: 'ok', receipt_id: tork_result&.receipt&.id }
  end
end

Grape API Middleware

require 'tork_governance/middleware/grape'

class API < Grape::API
  use TorkGovernance::Middleware::Grape,
    protected_paths: ['/api/'],
    skip_paths: ['/api/health']

  helpers TorkGovernance::Middleware::GrapeHelpers

  post '/chat' do
    result = tork_result
    receipt_id = tork_receipt_id

    if tork_blocked?
      error!({ error: 'Content blocked' }, 403)
    end

    { status: 'ok', receipt_id: receipt_id }
  end
end

Grape Helper Methods

helpers TorkGovernance::Middleware::GrapeHelpers

# Available helpers:
tork_result           # Get full governance result
tork_receipt_id       # Get receipt ID
tork_redacted_content # Get redacted content
tork_blocked?         # Check if request was blocked
tork_redacted?        # Check if content was redacted
require_tork_governance!  # Raises 403 if blocked

Configuration

TorkGovernance.configure(
  api_key: ENV['TORK_API_KEY'],
  policy_version: '1.0.0',
  default_action: :redact
)

PII Detection

Detects 50+ PII types including:

Category Types
US SSN, EIN, ITIN, Passport, Driver's License
Australia TFN, ABN, ACN, Medicare
Financial Credit Card, Bank Account, SWIFT/BIC
Universal Email, IP Address, URL, Phone, DOB

Documentation

License

MIT License - see LICENSE for details.