-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby_llm-gateway.gemspec
More file actions
29 lines (23 loc) · 1.17 KB
/
ruby_llm-gateway.gemspec
File metadata and controls
29 lines (23 loc) · 1.17 KB
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
28
29
# frozen_string_literal: true
require_relative 'lib/ruby_llm/gateway/version'
Gem::Specification.new do |spec|
spec.name = 'ruby_llm-gateway'
spec.version = RubyLLM::Gateway::VERSION
spec.authors = ['RubyLLM Contributors']
spec.email = ['contributors@rubyllm.com']
spec.summary = 'OpenAI-compatible API gateway for RubyLLM'
spec.description = 'A Rails engine that provides an OpenAI-compatible API gateway backed by RubyLLM. ' \
'Route requests to any provider (OpenAI, Anthropic, Gemini, etc.) through a single ' \
'endpoint with API key management, rate limiting, and usage tracking.'
spec.homepage = 'https://github.com/crmne/ruby_llm'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.1'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/crmne/ruby_llm'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir['lib/**/*.rb', 'app/**/*.rb', 'config/**/*.rb',
'lib/generators/**/*', 'LICENSE', 'README.md']
spec.require_paths = ['lib']
spec.add_dependency 'rails', '>= 7.0'
spec.add_dependency 'ruby_llm', '>= 1.0', '< 3.0'
end