forked from flori/gem_hadar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
26 lines (21 loc) · 754 Bytes
/
Rakefile
File metadata and controls
26 lines (21 loc) · 754 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
# vim: set filetype=ruby et sw=2 ts=2:
require 'gem_hadar'
GemHadar do
name 'gem_hadar'
module_type :class
author 'Florian Frank'
email 'flori@ping.de'
homepage "https://github.com/flori/#{name}"
summary 'Library for the development of Ruby Gems'
description 'This library contains some useful functionality to support the development of Ruby Gems'
ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.AppleDouble', '.bundle', '.yardoc', 'tags'
readme 'README.md'
executables << 'gem_hadar'
dependency 'tins', '~> 1.0'
dependency 'term-ansicolor', '~> 1.0'
dependency 'ollama-ruby', '~> 1.0'
dependency 'mize'
dependency 'rake'
dependency 'yard'
licenses << 'MIT'
end