-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathRakefile
More file actions
33 lines (27 loc) · 844 Bytes
/
Copy pathRakefile
File metadata and controls
33 lines (27 loc) · 844 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
27
28
29
30
31
32
33
# vim: set filetype=ruby et sw=2 ts=2:
require 'gem_hadar'
GemHadar do
name 'file-tail'
path_name 'file/tail'
author 'Florian Frank'
email 'flori@ping.de'
homepage "http://github.com/flori/#{name}"
summary "#{path_name.camelize} for Ruby"
description 'Library to tail files in Ruby'
test_dir 'tests'
ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', 'coverage', '*.rbc', '.rbx',
'.AppleDouble', '.bundle', 'errors.lst', '.utilsrc', 'tmp', '.yardoc'
readme 'README.md'
licenses << 'Apache-2.0'
changelog do
filename 'CHANGES.md'
end
github_workflows(
'static.yml' => {}
)
dependency 'tins', '~>1.0'
development_dependency 'test-unit', '~>3.0'
development_dependency 'all_images'
development_dependency 'simplecov'
development_dependency 'debug'
end