rubyfca 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.gitignore +21 -0
- data/Gemfile +4 -0
- data/LICENSE +20 -0
- data/README.rdoc +44 -0
- data/Rakefile +2 -0
- data/bin/rubyfca +108 -0
- data/lib/rubyfca.rb +467 -0
- data/lib/rubyfca/ruby_graphviz.rb +170 -0
- data/lib/rubyfca/trollop.rb +739 -0
- data/lib/rubyfca/version.rb +3 -0
- data/rubyfca.gemspec +17 -0
- data/test/rubyfca_test.rb +7 -0
- data/test/test_data.csv +7 -0
- data/test/test_data.cxt +25 -0
- data/test/test_helper.rb +10 -0
- metadata +65 -0
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
|
data/test/test_data.csv
ADDED
data/test/test_data.cxt
ADDED
data/test/test_helper.rb
ADDED
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
|