noctivityinc-classifier191 1.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,111 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: noctivityinc-classifier191
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.3.5
5
+ platform: ruby
6
+ authors:
7
+ - Yury Korolev (patch by Joshua Lippiner)
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-04-15 00:00:00 -04:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: activesupport
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 2.2.2
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: ruby-stemmer
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.5.1
34
+ version:
35
+ description: A general classifier module to allow Bayesian and other types of classifications that works with ruby 1.9.1.
36
+ email: yury.korolev@gmail.com
37
+ executables: []
38
+
39
+ extensions: []
40
+
41
+ extra_rdoc_files:
42
+ - lib/classifier/base.rb
43
+ - lib/classifier/bayes.rb
44
+ - lib/classifier/extensions/vector.rb
45
+ - lib/classifier/extensions/vector_serialize.rb
46
+ - lib/classifier/lsi/content_node.rb
47
+ - lib/classifier/lsi/summary.rb
48
+ - lib/classifier/lsi/word_list.rb
49
+ - lib/classifier/lsi.rb
50
+ - lib/classifier.rb
51
+ - lib/init.rb
52
+ - LICENSE
53
+ - README
54
+ files:
55
+ - classifier.gemspec
56
+ - lib/classifier/base.rb
57
+ - lib/classifier/bayes.rb
58
+ - lib/classifier/extensions/vector.rb
59
+ - lib/classifier/extensions/vector_serialize.rb
60
+ - lib/classifier/lsi/content_node.rb
61
+ - lib/classifier/lsi/summary.rb
62
+ - lib/classifier/lsi/word_list.rb
63
+ - lib/classifier/lsi.rb
64
+ - lib/classifier.rb
65
+ - lib/init.rb
66
+ - LICENSE
67
+ - Manifest
68
+ - Rakefile
69
+ - README
70
+ - test/base_test.rb
71
+ - test/bayes/bayesian_test.rb
72
+ - test/lsi/lsi_test.rb
73
+ - test/test_helper.rb
74
+ has_rdoc: true
75
+ homepage: http://github.com/yury/classifier
76
+ licenses: []
77
+
78
+ post_install_message:
79
+ rdoc_options:
80
+ - --line-numbers
81
+ - --inline-source
82
+ - --title
83
+ - Classifier
84
+ - --main
85
+ - README
86
+ require_paths:
87
+ - lib
88
+ required_ruby_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: "0"
93
+ version:
94
+ required_rubygems_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: "1.2"
99
+ version:
100
+ requirements: []
101
+
102
+ rubyforge_project: classifier
103
+ rubygems_version: 1.3.5
104
+ signing_key:
105
+ specification_version: 2
106
+ summary: A general classifier module to allow Bayesian and other types of classifications.
107
+ test_files:
108
+ - test/base_test.rb
109
+ - test/bayes/bayesian_test.rb
110
+ - test/lsi/lsi_test.rb
111
+ - test/test_helper.rb