Skip to content

Commit 298dedb

Browse files
authored
docs: add rubyclassifier.com links to README and gemspec (#94)
1 parent 8da21dc commit 298dedb

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
A Ruby library for text classification using Bayesian and Latent Semantic Indexing (LSI) algorithms.
88

9+
**[Documentation](https://rubyclassifier.com/docs)** · **[Tutorials](https://rubyclassifier.com/docs/tutorials)** · **[Guides](https://rubyclassifier.com/docs/guides)**
10+
911
## Table of Contents
1012

1113
- [Installation](#installation)
@@ -112,8 +114,8 @@ m.system.classify "new scientific discovery"
112114

113115
### Learn More
114116

115-
- [Bayesian Filtering Explained](http://www.process.com/precisemail/bayesian_filtering.htm)
116-
- [Wikipedia: Bayesian Filtering](http://en.wikipedia.org/wiki/Bayesian_filtering)
117+
- [Bayes Basics Guide](https://rubyclassifier.com/docs/guides/bayes/basics) - In-depth documentation
118+
- [Build a Spam Filter Tutorial](https://rubyclassifier.com/docs/tutorials/spam-filter) - Step-by-step guide
117119
- [Paul Graham: A Plan for Spam](http://www.paulgraham.com/spam.html)
118120

119121
## LSI (Latent Semantic Indexing)
@@ -156,8 +158,8 @@ lsi.search "programming", 3
156158

157159
### Learn More
158160

161+
- [LSI Basics Guide](https://rubyclassifier.com/docs/guides/lsi/basics) - In-depth documentation
159162
- [Wikipedia: Latent Semantic Analysis](http://en.wikipedia.org/wiki/Latent_semantic_analysis)
160-
- [C2 Wiki: Latent Semantic Indexing](http://www.c2.com/cgi/wiki?LatentSemanticIndexing)
161163

162164
## Performance
163165

classifier.gemspec

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ Gem::Specification.new do |s|
55
s.description = 'A general classifier module to allow Bayesian and other types of classifications.'
66
s.author = 'Lucas Carlson'
77
s.email = 'lucas@rufy.com'
8-
s.homepage = 'https://github.com/cardmagic/classifier'
8+
s.homepage = 'https://rubyclassifier.com'
9+
s.metadata = {
10+
'documentation_uri' => 'https://rubyclassifier.com/docs',
11+
'source_code_uri' => 'https://github.com/cardmagic/classifier',
12+
'bug_tracker_uri' => 'https://github.com/cardmagic/classifier/issues',
13+
'changelog_uri' => 'https://github.com/cardmagic/classifier/releases'
14+
}
915
s.files = Dir['{lib,sig}/**/*.{rb,rbs}', 'ext/**/*.{c,h,rb}', 'bin/*', 'LICENSE', '*.md', 'test/*']
1016
s.extensions = ['ext/classifier/extconf.rb']
1117
s.license = 'LGPL'

0 commit comments

Comments
 (0)