-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
43 lines (36 loc) · 1.55 KB
/
Rakefile
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# vim: set filetype=ruby et sw=2 ts=2:
require 'gem_hadar'
GemHadar do
name 'ollama-ruby'
path_name 'ollama'
module_type :module
author 'Florian Frank'
email '[email protected]'
homepage "https://github.com/flori/#{name}"
summary 'Interacting with the Ollama API'
description 'Library that allows interacting with the Ollama API'
test_dir 'spec'
ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.AppleDouble', '.bundle',
'.yardoc', 'doc', 'tags', 'errors.lst', 'cscope.out', 'coverage', 'tmp',
'yard'
package_ignore '.all_images.yml', '.tool-versions', '.gitignore', 'VERSION',
'.rspec', *Dir.glob('.github/**/*', File::FNM_DOTMATCH)
readme 'README.md'
executables << 'ollama_console' << 'ollama_update' << 'ollama_cli'
required_ruby_version '~> 3.1'
dependency 'excon', '~> 1.0'
dependency 'infobar', '~> 0.8'
dependency 'json', '~> 2.0'
dependency 'tins', '~> 1.34'
dependency 'term-ansicolor', '~> 1.11'
dependency 'kramdown-ansi', '~> 0.0', '>= 0.0.1'
dependency 'ostruct', '~> 0.0'
development_dependency 'all_images', '~> 0.6'
development_dependency 'rspec', '~> 3.2'
development_dependency 'kramdown', '~> 2.0'
development_dependency 'webmock'
development_dependency 'debug'
development_dependency 'simplecov'
licenses << 'MIT'
clobber 'coverage'
end