rubyfca 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,3 @@
1
+ module RubyFCA
2
+ VERSION = "0.2.2"
3
+ end
data/rubyfca.gemspec ADDED
@@ -0,0 +1,17 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/rubyfca/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Yoichiro Hasebe", "Kow Kuroda"]
6
+ gem.email = ["yohasebe@gmail.com"]
7
+ gem.summary = %q{Command line FCA tool written in Ruby}
8
+ gem.description = %q{Command line Formal Concept Analysis (FCA) tool written in Ruby}
9
+ gem.homepage = "http://github.com/yohasebe/rubyfca"
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = "rubyfca"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = RubyFCA::VERSION
17
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class RubyfcaTest < Test::Unit::TestCase
4
+ should "be given some tests" do
5
+ assert true
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ ,Ostrich, Sparrow, Eagle, Lion, Bonobo, Human being
2
+ bird ,X,X,X,.,.,.
3
+ mammal ,.,.,.,X,X,X
4
+ ape ,.,.,.,.,X,X
5
+ flying ,.,X,X,.,.,.
6
+ preying,.,.,X,X,.,.
7
+ talking,.,.,.,.,.,X
@@ -0,0 +1,25 @@
1
+ B
2
+
3
+ 6
4
+ 6
5
+
6
+ Ostrich
7
+ Sparrow
8
+ Eagle
9
+ Lion
10
+ Bonobo
11
+ Human being
12
+ bird
13
+ mammal
14
+ ape
15
+ flying
16
+ preying
17
+ talking
18
+ XXX...
19
+ ...XXX
20
+ ....XX
21
+ .XX...
22
+ ..XX..
23
+ .....X
24
+
25
+
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
7
+ require 'rubyfca'
8
+
9
+ class Test::Unit::TestCase
10
+ end
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubyfca
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.2
5
+ platform: ruby
6
+ authors:
7
+ - Yoichiro Hasebe
8
+ - Kow Kuroda
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2015-05-28 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Command line Formal Concept Analysis (FCA) tool written in Ruby
15
+ email:
16
+ - yohasebe@gmail.com
17
+ executables:
18
+ - rubyfca
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - ".document"
23
+ - ".gitignore"
24
+ - Gemfile
25
+ - LICENSE
26
+ - README.rdoc
27
+ - Rakefile
28
+ - bin/rubyfca
29
+ - lib/rubyfca.rb
30
+ - lib/rubyfca/ruby_graphviz.rb
31
+ - lib/rubyfca/trollop.rb
32
+ - lib/rubyfca/version.rb
33
+ - rubyfca.gemspec
34
+ - test/rubyfca_test.rb
35
+ - test/test_data.csv
36
+ - test/test_data.cxt
37
+ - test/test_helper.rb
38
+ homepage: http://github.com/yohasebe/rubyfca
39
+ licenses: []
40
+ metadata: {}
41
+ post_install_message:
42
+ rdoc_options: []
43
+ require_paths:
44
+ - lib
45
+ required_ruby_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ required_rubygems_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ requirements: []
56
+ rubyforge_project:
57
+ rubygems_version: 2.4.5
58
+ signing_key:
59
+ specification_version: 4
60
+ summary: Command line FCA tool written in Ruby
61
+ test_files:
62
+ - test/rubyfca_test.rb
63
+ - test/test_data.csv
64
+ - test/test_data.cxt
65
+ - test/test_helper.rb