-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby_llm-gitlab.gemspec
More file actions
28 lines (22 loc) · 1.05 KB
/
ruby_llm-gitlab.gemspec
File metadata and controls
28 lines (22 loc) · 1.05 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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'ruby_llm-gitlab'
spec.version = File.read(File.expand_path('VERSION', __dir__)).strip
spec.authors = ['Compasify']
spec.email = ['timdapan.com@gmail.com']
spec.summary = 'GitLab AI Gateway provider for RubyLLM'
spec.description = 'Access Claude and GPT models through GitLab Duo via the RubyLLM interface. ' \
'One provider, automatic routing to Anthropic or OpenAI backends.'
spec.homepage = 'https://github.com/compasify/ruby_llm-gitlab'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.1'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir['lib/**/*.rb', 'LICENSE', 'README.md']
spec.require_paths = ['lib']
spec.add_dependency 'ruby_llm', '>= 1.0', '< 3.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 1.0'
spec.add_development_dependency 'webmock', '~> 3.0'
end