forked from topfunky/gruff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
55 lines (46 loc) · 1.43 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
require 'rubygems'
require 'hoe'
$:.unshift(File.dirname(__FILE__) + "/lib")
require 'gruff'
Hoe.new('Gruff', Gruff::VERSION) do |p|
p.name = "gruff"
p.author = "Geoffrey Grosenbach"
p.description = "Beautiful graphs for one or multiple datasets. Can be used on websites or in documents."
p.email = '[email protected]'
p.summary = "Beautiful graphs for one or multiple datasets."
p.url = "http://nubyonrails.com/pages/gruff"
p.clean_globs = ['test/output/*.png']
p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
p.remote_rdoc_dir = '' # Release to root
end
desc "Simple require on packaged files to make sure they are all there"
task :verify => :package do
# An error message will be displayed if files are missing
if system %(ruby -e "require 'pkg/gruff-#{Gruff::VERSION}/lib/gruff'")
puts "\nThe library files are present"
end
raise "\n*** Gruff::Base::DEBUG must be set to false for releases ***\n\n" if Gruff::Base::DEBUG
end
task :release => :verify
namespace :test do
desc "Run mini tests"
task :mini => :clean do
Dir['test/test_mini*'].each do |file|
system "ruby #{file}"
end
end
end
##
# Catch unmatched tasks and run them as a unit test.
#
# Makes it possible to do
#
# rake pie
#
# To run the +test/test_pie+ and +test/test_mini_pie+ files.
rule '' do |t|
# Rake::Task["clean"].invoke
Dir["test/test_*#{t.name}*.rb"].each do |filename|
system "ruby #{filename}"
end
end