-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathollama.gemspec
More file actions
23 lines (19 loc) · 833 Bytes
/
ollama.gemspec
File metadata and controls
23 lines (19 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |spec|
spec.name = 'ollama'
spec.version = '0.1.0'
spec.authors = ['Kane Hooper']
spec.email = ['kane.hooper@reinteractive.com']
spec.summary = %q{Ollama API Wrapper}
spec.description = %q{This gem provides a Ruby interface for interacting with the Ollama API.}
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^(lib/|ollama.rb|LICENSE|README.md)})
end
spec.require_paths = ['lib']
# Specify runtime dependencies here
spec.add_runtime_dependency 'httparty', '~> 0.21.0'
spec.add_runtime_dependency 'dry-schema', '~> 1.13.3'
# spec.add_dependency 'dependency_name', '~> version'
# Specify development dependencies here
# spec.add_development_dependency 'rake', '~> 13.0'
end