forked from luisparravicini/classifier
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Rakefile
21 lines (18 loc) · 746 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "kitop-classifier"
s.summary = "A general classifier module to allow Bayesian and other types of classifications."
s.description = "Bayesian, LSI classifier and others."
s.homepage = "http://github.com/kitop/classifier"
s.author = "Luis Parravicini"
s.email = "[email protected]"
s.add_dependency "activesupport", ">= 3.0.0"
s.add_dependency "ruby-stemmer", ">= 0.5.1"
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }