forked from ealdent/lda-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lda-ruby.gemspec
79 lines (74 loc) · 2.4 KB
/
lda-ruby.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{lda-ruby}
s.version = "0.3.8"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["David Blei", "Jason Adams", "Rio Akasaka"]
s.date = %q{2011-10-18}
s.description = %q{Ruby port of Latent Dirichlet Allocation by David M. Blei. See http://www.cs.princeton.edu/~blei/lda-c/.}
s.email = %q{[email protected]}
s.extensions = ["ext/lda-ruby/extconf.rb"]
s.extra_rdoc_files = [
"README",
"README.markdown"
]
s.files = [
"CHANGELOG",
"README",
"README.markdown",
"Rakefile",
"VERSION.yml",
"ext/lda-ruby/Makefile",
"ext/lda-ruby/cokus.c",
"ext/lda-ruby/cokus.h",
"ext/lda-ruby/extconf.rb",
"ext/lda-ruby/lda-alpha.c",
"ext/lda-ruby/lda-alpha.h",
"ext/lda-ruby/lda-data.c",
"ext/lda-ruby/lda-data.h",
"ext/lda-ruby/lda-inference.c",
"ext/lda-ruby/lda-inference.h",
"ext/lda-ruby/lda-model.c",
"ext/lda-ruby/lda-model.h",
"ext/lda-ruby/lda.h",
"ext/lda-ruby/utils.c",
"ext/lda-ruby/utils.h",
"lda-ruby.gemspec",
"lib/lda-ruby.rb",
"lib/lda-ruby/config/stopwords.yml",
"lib/lda-ruby/corpus/corpus.rb",
"lib/lda-ruby/corpus/data_corpus.rb",
"lib/lda-ruby/corpus/directory_corpus.rb",
"lib/lda-ruby/corpus/text_corpus.rb",
"lib/lda-ruby/document/data_document.rb",
"lib/lda-ruby/document/document.rb",
"lib/lda-ruby/document/text_document.rb",
"lib/lda-ruby/vocabulary.rb",
"license.txt",
"test/data/.gitignore",
"test/data/docs.dat",
"test/data/sample.rb",
"test/data/wiki-test-docs.yml",
"test/lda_ruby_test.rb",
"test/simple_test.rb",
"test/simple_yaml.rb",
"test/test_helper.rb"
]
s.homepage = %q{http://github.com/ealdent/lda-ruby}
s.require_paths = ["lib", "ext"]
s.rubygems_version = %q{1.5.2}
s.summary = %q{Ruby port of Latent Dirichlet Allocation by David M. Blei.}
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<shoulda>, [">= 0"])
else
s.add_dependency(%q<shoulda>, [">= 0"])
end
else
s.add_dependency(%q<shoulda>, [">= 0"])
end
end