rakefile + update gemspec

This commit is contained in:
Ilya Grigorik
2010-10-03 12:34:55 -04:00
parent 185f1170e5
commit 62947986d8
3 changed files with 78 additions and 27 deletions

19
Rakefile Normal file
View 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