Sha256: e568439fb21fdea2d544a5f4f3871739dc175a7627bfca667359737170b929e8
Contents?: true
Size: 1.12 KB
Versions: 2
Compression:
Stored size: 1.12 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' post_install_message File.read(File.join(File.dirname(__FILE__), 'examples/smiley.txt')) 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
term-ansicolor-1.2.1 | Rakefile |
term-ansicolor-1.2.0 | Rakefile |