public
Description: Real-time visualization of server traffic, events and statistics with Ruby, SSH and OpenGL
Homepage: http://www.fudgie.org
Clone URL: git://github.com/Fudge/gltail.git
gltail / Rakefile
100644 20 lines (16 sloc) 0.65 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/gl_tail.rb'
 
Hoe.new('gltail', GlTail::VERSION) do |p|
  p.rubyforge_name = 'gltail'
  p.author = 'Erlend Simonsen'
  p.email = 'mr@fudgie.org'
  p.summary = 'View real-time data and statistics from any logfile on any server with SSH, in an intuitive and entertaining way.'
  p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
  p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
  p.extra_deps << ['ruby-opengl', '>= 0.40.1']
  p.extra_deps << ['net-ssh', '<= 1.1.4']
end
 
# vim: syntax=Ruby