Sha256: f06cd68c3215b7e73c1307f9bb603d8e5fd918ab8fad35762de0c3c60f0e8bc3
Contents?: true
Size: 1.08 KB
Versions: 14
Compression:
Stored size: 1.08 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', '.bundle' readme 'README.rdoc' executables << 'cdiff' << 'decolor' << 'colortab' << 'term_mandel' << 'term_display' dependency 'tins', '~>1.0' development_dependency 'simplecov' development_dependency 'minitest_tu_shim' 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
14 entries across 14 versions & 6 rubygems