luisparravicini-classifier 1.3.7 → 1.3.8

Sign up to get free protection for your applications and to get access to all the features.
data/README CHANGED
@@ -8,6 +8,10 @@ rb-gsl:: http://rb-gsl.rubyforge.org
8
8
 
9
9
  Notice that LSI will work without these libraries, but as soon as they are installed, Classifier will make use of them. No configuration changes are needed, we like to keep things ridiculously easy for you.
10
10
 
11
+ == Changes in this branch
12
+ 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).
13
+ 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.
14
+
11
15
  == Bayes
12
16
  A Bayesian classifier by Lucas Carlson. Bayesian Classifiers are accurate, fast, and have modest memory requirements.
13
17
 
@@ -81,7 +85,7 @@ You can also specify language and encoding for internal stemmer
81
85
  * David Fayram II (mailto:dfayram@gmail.com)
82
86
  * Cameron McBride (mailto:cameron.mcbride@gmail.com)
83
87
  * Yury Korolev (mailto:yury.korolev@gmail.com)
84
- * Luis Parravicini (mailto:lparravicini@gmail.com)
88
+ * Luis Parravicini (mailto:lparravi@gmail.com)
85
89
 
86
90
  This library is released under the terms of the GNU LGPL. See LICENSE for more details.
87
91
 
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ begin
7
7
  s.name = "luisparravicini-classifier"
8
8
  s.summary = "A general classifier module to allow Bayesian and other types of classifications."
9
9
  s.description = "Bayesian classifier and others."
10
- s.homepage = "http://github.com/yury/classifier"
10
+ s.homepage = "http://github.com/luisparravicini/classifier"
11
11
  s.author = "Yury Korolev"
12
12
  s.email = "yury.korolev@gmail.com"
13
13
 
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 1
3
3
  :minor: 3
4
- :patch: 7
4
+ :patch: 8
5
5
  :build:
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{luisparravicini-classifier}
8
- s.version = "1.3.7"
8
+ s.version = "1.3.8"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Yury Korolev"]
@@ -44,7 +44,7 @@ Gem::Specification.new do |s|
44
44
  "test/stopwords_test.rb",
45
45
  "test/test_helper.rb"
46
46
  ]
47
- s.homepage = %q{http://github.com/yury/classifier}
47
+ s.homepage = %q{http://github.com/luisparravicini/classifier}
48
48
  s.rdoc_options = ["--charset=UTF-8"]
49
49
  s.require_paths = ["lib"]
50
50
  s.rubygems_version = %q{1.3.5}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: luisparravicini-classifier
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.7
4
+ version: 1.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yury Korolev
@@ -69,7 +69,7 @@ files:
69
69
  - test/stopwords_test.rb
70
70
  - test/test_helper.rb
71
71
  has_rdoc: true
72
- homepage: http://github.com/yury/classifier
72
+ homepage: http://github.com/luisparravicini/classifier
73
73
  licenses: []
74
74
 
75
75
  post_install_message: