public
Description: Ruby Wrapper for the SlimTimer API
Homepage: http://slimtimer4r.rubyforge.org/
Clone URL: git://github.com/dmarkow/slimtimer4r.git
slimtimer4r / Rakefile
100644 19 lines (15 sloc) 0.504 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/slimtimer4r.rb'
 
Hoe.new('slimtimer4r', SlimTimer::VERSION) do |p|
  p.rubyforge_name = 'slimtimer4r'
  p.author = 'Dylan Markow'
  p.email = 'dylan@dylanmarkow.com'
  p.remote_rdoc_dir = ''
  # 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