public
Rubygem
Description: Sparkline library for Ruby
Homepage: http://sparklines.rubyforge.org
Clone URL: git://github.com/topfunky/sparklines.git
topfunky (author)
Tue Mar 11 15:37:12 -0700 2008
commit  d73857acda3ac414016a8b9fd0b69b907ed96ff4
tree    595204202fe9420a1ced763f167524681abd5ebb
sparklines / Rakefile
100644 23 lines (18 sloc) 0.678 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rubygems'
require 'hoe'
$:.unshift(File.dirname(__FILE__) + "/lib")
require 'sparklines'
 
Hoe.new('Sparklines', Sparklines::VERSION) do |p|
  p.name = "sparklines"
  p.author = "Geoffrey Grosenbach"
  p.description = "Tiny graphs."
  p.email = 'boss@topfunky.com'
  p.summary = "Tiny graphs."
  p.url = "http://nubyonrails.com/pages/sparklines"
  p.clean_globs = ['test/actual'] # Remove this directory on "rake clean"
  p.remote_rdoc_dir = '' # Release to root
  p.changes = p.paragraphs_of('CHANGELOG', 0..1).join("\n\n")
  # * extra_deps - An array of rubygem dependencies.
end
 
 
desc "Release and publish documentation"
task :repubdoc => [:release, :publish_docs]