mirror of
https://github.com/dkam/decisiontree.git
synced 2025-12-28 15:14:52 +00:00
rakefile + update gemspec
This commit is contained in:
19
Rakefile
Normal file
19
Rakefile
Normal file
@@ -0,0 +1,19 @@
|
||||
require 'rake'
|
||||
|
||||
begin
|
||||
require 'jeweler'
|
||||
Jeweler::Tasks.new do |gemspec|
|
||||
gemspec.name = "decisiontree"
|
||||
gemspec.summary = "ID3-based implementation of the M.L. Decision Tree algorithm"
|
||||
gemspec.description = gemspec.summary
|
||||
gemspec.email = "ilya@igvita.com"
|
||||
gemspec.homepage = "http://github.com/igrigorik/decisiontree"
|
||||
gemspec.authors = ["Ilya Grigorik"]
|
||||
gemspec.rubyforge_project = "decisiontree"
|
||||
end
|
||||
|
||||
Jeweler::GemcutterTasks.new
|
||||
rescue LoadError
|
||||
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user