-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodex-ruby.gemspec
More file actions
24 lines (19 loc) · 889 Bytes
/
Copy pathcodex-ruby.gemspec
File metadata and controls
24 lines (19 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true
require_relative "lib/codex_sdk/version"
Gem::Specification.new do |spec|
spec.name = "codex-ruby"
spec.version = CodexSDK::VERSION
spec.authors = ["Anton Kopylov"]
spec.email = ["anton@tonic20.com"]
spec.summary = "Ruby SDK for the Codex CLI"
spec.description = "A Ruby client for the Codex CLI, providing subprocess management, " \
"JSONL event parsing, and a clean API for building AI-powered applications."
spec.homepage = "https://github.com/tonic20/codex-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.files = Dir["lib/**/*.rb", "LICENSE.txt", "README.md", "CHANGELOG.md"]
spec.require_paths = ["lib"]
end