forked from lumean/svg-graph2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRakefile
31 lines (28 loc) · 797 Bytes
/
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
# -*- ruby -*-
# -*- coding: utf-8 -*-
# TODO
#
#require 'rubygems'
#require 'hoe'
#
#Hoe.plugin :git
#
#require_relative 'lib/svggraph'
#
#Hoe.spec 'svg-graph' do
# self.version=SVG::Graph::VERSION
# self.developer('Sean Russell', 'ser_AT_germane-software.com')
# self.developer('Claudio Bustos', 'clbustos_AT_gmail.com')
# self.developer('Liehann Loots','liehhanl_AT_gmail.com')
# self.developer('Piergiuliano Bossi','pgbossi_AT_gmail.com')
# self.developer('Manuel Widmer','m-widmer_AT_gmx.com')
# self.rubyforge_name = 'ruby-statsample' # if different than 'svg_graph'
# self.remote_rdoc_dir = 'svg-graph'
#end
# run all unit tests with 'rake test'
task default: %w[test]
task :test do
ruby "test/test_data_point.rb"
ruby "test/test_plot.rb"
ruby "test/test_svg_graph.rb"
end