-
Notifications
You must be signed in to change notification settings - Fork 36
/
Rakefile
31 lines (26 loc) · 1.07 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
# vim: set filetype=ruby et sw=2 ts=2:
require 'gem_hadar'
GemHadar do
name 'term-ansicolor'
path_name 'term/ansicolor'
path_module 'Term::ANSIColor'
author 'Florian Frank'
email '[email protected]'
homepage "https://github.com/flori/#{name}"
summary 'Ruby library that colors strings using ANSI escape sequences'
description 'This library uses ANSI escape sequences to control the attributes of terminal output'
licenses << 'Apache-2.0'
test_dir 'tests'
ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.rvmrc', 'coverage',
'tags', '.bundle', '.byebug_history', 'errors.lst', 'cscope.out'
package_ignore '.all_images.yml', '.tool-versions', '.gitignore', 'VERSION',
'.utilsrc', '.rspec', 'TODO',
*Dir.glob('.github/**/*', File::FNM_DOTMATCH)
readme 'README.md'
executables.merge Dir['bin/*'].map { |x| File.basename(x) }
dependency 'tins', '~>1.0'
development_dependency 'simplecov'
development_dependency 'test-unit'
development_dependency 'debug'
development_dependency 'all_images'
end