From ee09ae0d7774df0fb2b119a417ce3709bf0fb3b5 Mon Sep 17 00:00:00 2001 From: Luis Parravicini Date: Sat, 26 Dec 2009 14:29:08 -0200 Subject: [PATCH] added myself as author --- README | 1 + Rakefile | 4 ++-- luisparravicini-classifier.gemspec | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README b/README index a6d2166..52c13f8 100644 --- a/README +++ b/README @@ -11,6 +11,7 @@ Notice that LSI will work without these libraries, but as soon as they are insta == Changes in this branch I made this branch to fix a TypeError on untrain (classifier-1.3.1), then merge KirinDave branch[http://github.com/KirinDave/classifier/] to fix an incompatibility problem with ActiveSupport (with Array#sum), then francois[http://github.com/francois/classifier/] branch for jeweler and all the changes yuri[http://github.com/yury/classifier/] made on his branch (specially the use of ruby-stemmer, which I needed). After that I added support for loading the stopwords of certain language from a file (before the list was embedded on the source code) and a stopword list for Spanish. +This branch only works with Ruby 1.9 == Bayes A Bayesian classifier by Lucas Carlson. Bayesian Classifiers are accurate, fast, and have modest memory requirements. diff --git a/Rakefile b/Rakefile index 9ce4199..6004f99 100644 --- a/Rakefile +++ b/Rakefile @@ -8,8 +8,8 @@ begin 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 = "Yury Korolev" - s.email = "yury.korolev@gmail.com" + s.author = "Luis Parravicini" + s.email = "lparravi@gmail.com" s.add_dependency "activesupport", ">= 2.2.2" s.add_dependency "ruby-stemmer", ">= 0.5.1" diff --git a/luisparravicini-classifier.gemspec b/luisparravicini-classifier.gemspec index c1e44b5..0572ad2 100644 --- a/luisparravicini-classifier.gemspec +++ b/luisparravicini-classifier.gemspec @@ -8,10 +8,10 @@ Gem::Specification.new do |s| s.version = "1.3.8" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= - s.authors = ["Yury Korolev"] - s.date = %q{2009-12-24} + s.authors = ["Luis Parravicini"] + s.date = %q{2009-12-26} s.description = %q{Bayesian classifier and others.} - s.email = %q{yury.korolev@gmail.com} + s.email = %q{lparravi@gmail.com} s.extra_rdoc_files = [ "LICENSE", "README"