Files
decisiontree/Rakefile
2010-10-03 12:45:51 -04:00

20 lines
604 B
Ruby

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