naivebayes 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +19 -0
- data/README.md +68 -0
- data/Rakefile +45 -0
- data/VERSION +1 -0
- data/doc/AUTHORS +1 -0
- data/doc/COPYING +674 -0
- data/doc/COPYING.LESSER +165 -0
- data/doc/ChangeLog +5 -0
- data/doc/LICENSE +8 -0
- data/doc/README +16 -0
- data/lib/naivebayes.rb +7 -0
- data/lib/naivebayes/classifier.rb +58 -0
- data/naivebayes.gemspec +65 -0
- data/script/build +32 -0
- data/spec/lib/naivebayes/classifier_spec.rb +161 -0
- data/spec/lib/naivebayes_spec.rb +13 -0
- data/spec/spec_helper.rb +26 -0
- data/vendor/.gitkeep +0 -0
- metadata +118 -0
@@ -0,0 +1,13 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
require File.dirname(__FILE__) + '/../spec_helper'
|
4
|
+
|
5
|
+
describe NaiveBayes do
|
6
|
+
context 'のバージョンを参照した場合' do
|
7
|
+
it "バージョンが正しく表示される" do
|
8
|
+
expect = '0.0.1'
|
9
|
+
NaiveBayes.const_get(:VERSION).should be_true
|
10
|
+
NaiveBayes.const_get(:VERSION).should == expect
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), ".."))
|
4
|
+
$LOAD_PATH.unshift APP_ROOT
|
5
|
+
$LOAD_PATH.unshift File.join(APP_ROOT)
|
6
|
+
$LOAD_PATH.unshift File.join(APP_ROOT, 'lib')
|
7
|
+
|
8
|
+
require 'naivebayes'
|
9
|
+
|
10
|
+
if ENV['COVERAGE'] == 'on'
|
11
|
+
require 'simplecov'
|
12
|
+
require 'simplecov-rcov'
|
13
|
+
SimpleCov.formatter = SimpleCov::Formatter::RcovFormatter
|
14
|
+
|
15
|
+
SimpleCov.start do
|
16
|
+
add_filter "spec"
|
17
|
+
add_filter "vendor"
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
unless /^1\.9\./ =~ RUBY_VERSION
|
22
|
+
require 'rspec'
|
23
|
+
end
|
24
|
+
|
25
|
+
RSpec.configure do |config|
|
26
|
+
end
|
data/vendor/.gitkeep
ADDED
File without changes
|
metadata
ADDED
@@ -0,0 +1,118 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: naivebayes
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- id774
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-07-07 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: cucumber
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.3.5
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 1.3.5
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: builder
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 3.1.0
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 3.1.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: jeweler
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Naive Bayes classifier
|
70
|
+
email: idnanashi@gmail.com
|
71
|
+
executables: []
|
72
|
+
extensions: []
|
73
|
+
extra_rdoc_files:
|
74
|
+
- README.md
|
75
|
+
files:
|
76
|
+
- Gemfile
|
77
|
+
- README.md
|
78
|
+
- Rakefile
|
79
|
+
- VERSION
|
80
|
+
- doc/AUTHORS
|
81
|
+
- doc/COPYING
|
82
|
+
- doc/COPYING.LESSER
|
83
|
+
- doc/ChangeLog
|
84
|
+
- doc/LICENSE
|
85
|
+
- doc/README
|
86
|
+
- lib/naivebayes.rb
|
87
|
+
- lib/naivebayes/classifier.rb
|
88
|
+
- naivebayes.gemspec
|
89
|
+
- script/build
|
90
|
+
- spec/lib/naivebayes/classifier_spec.rb
|
91
|
+
- spec/lib/naivebayes_spec.rb
|
92
|
+
- spec/spec_helper.rb
|
93
|
+
- vendor/.gitkeep
|
94
|
+
homepage: http://github.com/id774/naivebayes
|
95
|
+
licenses:
|
96
|
+
- GPL
|
97
|
+
metadata: {}
|
98
|
+
post_install_message:
|
99
|
+
rdoc_options: []
|
100
|
+
require_paths:
|
101
|
+
- lib
|
102
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - '>='
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '0'
|
107
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - '>='
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
requirements: []
|
113
|
+
rubyforge_project:
|
114
|
+
rubygems_version: 2.0.3
|
115
|
+
signing_key:
|
116
|
+
specification_version: 4
|
117
|
+
summary: naivebayes
|
118
|
+
test_files: []
|