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
|
# 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 'flori@ping.de'
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'
readme 'README.md'
executables.merge Dir['bin/*'].map { |x| File.basename(x) }
dependency 'tins', '~>1'
development_dependency 'simplecov'
development_dependency 'test-unit'
development_dependency 'debug'
development_dependency 'all_images', '~> 0.8'
end
|