forked from igrigorik/decisiontree
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdecisiontree.gemspec
29 lines (27 loc) · 892 Bytes
/
decisiontree.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
spec = Gem::Specification.new do |s|
s.name = 'decisiontree'
s.version = '0.3.1'
s.date = '2009-02-21'
s.summary = 'ID3-based implementation of the M.L. Decision Tree algorithm'
s.description = s.summary
s.email = 'ilya@igvita.com'
s.homepage = "http://github.com/igrigorik/decisiontree"
s.has_rdoc = true
s.authors = ["Ilya Grigorik"]
s.rubyforge_project = "decisiontree"
# ruby -rpp -e' pp `git ls-files`.split("\n") '
s.files = ["CHANGELOG.txt",
"README.rdoc",
"decisiontree.gemspec",
"examples/continuous-id3.rb",
"examples/data/continuous-test.txt",
"examples/data/continuous-training.txt",
"examples/data/discrete-test.txt",
"examples/data/discrete-training.txt",
"examples/discrete-id3.rb",
"examples/simple.rb",
"lib/decisiontree.rb",
"lib/decisiontree/id3_tree.rb",
"test/helper.rb",
"test/test_decisiontree.rb"]
end