public
Description: Use ANSI codes in printed output, including colors and controlling the cursor, clearing the line, and clearing the screen.
Homepage: http://blog.stevensoroka.ca
Clone URL: git://github.com/ssoroka/ansi.git
ssoroka (author)
Mon Dec 15 16:01:47 -0800 2008
commit  c0316255508c72c025e14b624685a729881ea8ef
tree    327618ed745ff3fda13c525ef77db5755dc4c745
parent  3caf1b0c27a181da907e7fa36e1643c2b44a3b9f
ansi / Rakefile
100644 14 lines (12 sloc) 0.485 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rubygems'
require 'rake'
require 'echoe'
 
Echoe.new('ansi', '1.0.1') do |p|
  p.description = 'Use ANSI codes in printed output, including colors and controlling the cursor, clearing the line, and clearing the screen.'
  p.url = 'http://github.com/ssoroka/ansi'
  p.author = 'Steven Soroka'
  p.email = 'ssoroka78@gmail.com'
  p.ignore_pattern = ["tmp/*", 'script/**']
  p.development_dependencies = []
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each{|f| load f }