-
Notifications
You must be signed in to change notification settings - Fork 26
/
rsemantic.gemspec
24 lines (19 loc) · 1.06 KB
/
rsemantic.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "rsemantic/version"
Gem::Specification.new do |s|
s.name = %q{rsemantic}
s.version = RSemantic::VERSION::STRING
s.platform = Gem::Platform::RUBY
s.license = "MIT"
s.homepage = %q{http://github.com/josephwilk/rsemantic}
s.authors = ["Joseph Wilk"]
s.description = %q{A document vector search with flexible matrix transforms. Currently supports Latent semantic analysis and Term frequency - inverse document frequency}
s.summary = %q{A document vector search with flexible matrix transforms. Currently supports Latent semantic analysis and Term frequency - inverse document frequency}
s.email = ["[email protected]"]
s.extra_rdoc_files = ["History.txt", "README.md", "TODO.txt"]
s.files = Dir.glob("{lib}/**/*") + Dir.glob("{resources}/*")
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.add_runtime_dependency(%q<rb-gsl>)
s.add_runtime_dependency(%q<fast-stemmer>)
end