-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlangraph_ruby.gemspec
More file actions
27 lines (22 loc) · 900 Bytes
/
langraph_ruby.gemspec
File metadata and controls
27 lines (22 loc) · 900 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
25
26
27
# frozen_string_literal: true
require_relative "lib/langraph_ruby/version"
Gem::Specification.new do |spec|
spec.name = "langraph_ruby"
spec.version = LangraphRuby::VERSION
spec.authors = ["Vamsi"]
spec.summary = "Graph-based agent orchestration framework for Ruby"
spec.description = "A Ruby implementation of graph-based LLM agent orchestration " \
"with typed state, conditional routing, cycles, and streaming. " \
"Inspired by LangGraph."
spec.homepage = "https://github.com/aalsiuser/langraph_ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.0"
spec.files = Dir["lib/**/*", "LICENSE", "README.md"]
spec.require_paths = ["lib"]
spec.add_dependency "zeitwerk", "~> 2.6"
spec.metadata = {
"homepage_uri" => spec.homepage,
"source_code_uri" => spec.homepage,
"rubygems_mfa_required" => "true"
}
end