-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRakefile
More file actions
57 lines (52 loc) · 1.68 KB
/
Copy pathRakefile
File metadata and controls
57 lines (52 loc) · 1.68 KB
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
56
57
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
<<<<<<< HEAD
gem.name = "svg_roc_plot"
gem.summary = %Q{gnuplot wrapper for ruby, especially for plotting roc curves into svg files}
gem.description = %Q{}
gem.email = "vorgrimmlerdavid@gmx.de"
gem.homepage = "https://github.com/davor/svg_roc_plot"
=======
gem.name = "ruby-plot"
gem.summary = %Q{gnuplot wrapper for ruby, especially for plotting roc curves into svg files}
gem.description = %Q{}
gem.email = "vorgrimmlerdavid@gmx.de"
gem.homepage = "https://github.com/davor/ruby-plot"
>>>>>>> e9b8c7a851ecb992cd450f48ee24a092b302307a
gem.authors = ["David Vorgrimmler", "Martin Gütlein"]
[].each do |dep|
gem.add_dependency dep
end
gem.files = FileList["[A-Z]*", "{bin,generators,lib,test}/**/*"]
<<<<<<< HEAD
gem.files.include %w(lib/svg_roc_plot_method.rb)
=======
gem.files.include %w(lib/ruby-plot.rb)
>>>>>>> e9b8c7a851ecb992cd450f48ee24a092b302307a
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end
task :test => :check_dependencies
task :default => :test
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
if File.exist?('VERSION')
version = File.read('VERSION')
else
version = ""
end
rdoc.rdoc_dir = 'rdoc'
<<<<<<< HEAD
rdoc.title = "svg_roc_plot #{version}"
=======
rdoc.title = "ruby-plot #{version}"
>>>>>>> e9b8c7a851ecb992cd450f48ee24a092b302307a
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end