Sha256: dd868681fde6dca799ffefabca5f9627bbe922bd319c1d36449cb876ba8fc9fd
Contents?: true
Size: 1.03 KB
Versions: 6
Compression:
Stored size: 1.03 KB
Contents
# 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 "http://flori.github.com/#{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 << 'GPL-2' test_dir 'tests' ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.rvmrc', 'coverage', 'tags' readme 'README.rdoc' executables << 'cdiff' << 'decolor' << 'colortab' << 'term_mandel' << 'term_display' dependency 'tins', '~>0.8' development_dependency 'simplecov' install_library do destdir = "#{ENV['DESTDIR']}" libdir = CONFIG["sitelibdir"] cd 'lib' do for file in Dir['**/*.rb'] dest = destdir + File.join(libdir, File.dirname(file)) mkdir_p dest install file, dest end end end end
Version data entries
6 entries across 5 versions & 3 rubygems