forked from cardmagic/classifier
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
21 lines (18 loc) · 761 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 = "luisparravicini-classifier"
s.summary = "A general classifier module to allow Bayesian and other types of classifications."
s.description = "Bayesian classifier and others."
s.homepage = "http://github.com/luisparravicini/classifier"
s.author = "Luis Parravicini"
s.email = "lparravi@gmail.com"
s.add_dependency "activesupport", ">= 2.2.2"
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 }