public
Description: A realtime, OpenGL graphing library for Ruby
Clone URL: git://github.com/mojombo/glowstick.git
mojombo (author)
Thu Jan 17 18:05:27 -0800 2008
commit  6bb4f339815120b56ea5ecb57695321f47d8de2e
tree    4b78ddd05e76febe99105bfb6a41bf042ba329e9
parent  98056e3ccb79ad1d6807f7b9b64d356e0d7c9739
glowstick / Rakefile
100644 18 lines (14 sloc) 0.45 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/glowstick.rb'
 
Hoe.new('glowstick', Glowstick::VERSION) do |p|
  p.rubyforge_name = 'glowstick'
  # p.author = 'FIX'
  # p.email = 'FIX'
  # p.summary = 'FIX'
  # 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")
end
 
# vim: syntax=Ruby