yohasebe-rubyfca 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/rubyfca.gemspec ADDED
@@ -0,0 +1,59 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{rubyfca}
8
+ s.version = "0.2.3"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Yoichiro Hasebe"]
12
+ s.date = %q{2009-09-04}
13
+ s.default_executable = %q{rubyfca}
14
+ s.description = %q{TODO: longer description of your gem}
15
+ s.email = %q{yohasebe@gmail.com}
16
+ s.executables = ["rubyfca"]
17
+ s.extra_rdoc_files = [
18
+ "LICENSE",
19
+ "README.rdoc"
20
+ ]
21
+ s.files = [
22
+ ".document",
23
+ ".gitignore",
24
+ "LICENSE",
25
+ "README.rdoc",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "bin/rubyfca",
29
+ "lib/ruby_graphviz.rb",
30
+ "lib/rubyfca.rb",
31
+ "lib/trollop.rb",
32
+ "rubyfca.gemspec",
33
+ "test/rubyfca_test.rb",
34
+ "test/test_data.cxt",
35
+ "test/test_helper.rb"
36
+ ]
37
+ s.homepage = %q{http://github.com/yohasebe/rubyfca}
38
+ s.rdoc_options = ["--charset=UTF-8"]
39
+ s.require_paths = ["lib"]
40
+ s.rubygems_version = %q{1.3.5}
41
+ s.summary = %q{TODO: one-line summary of your gem}
42
+ s.test_files = [
43
+ "test/rubyfca_test.rb",
44
+ "test/test_helper.rb"
45
+ ]
46
+
47
+ if s.respond_to? :specification_version then
48
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
49
+ s.specification_version = 3
50
+
51
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
52
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
53
+ else
54
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
55
+ end
56
+ else
57
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
58
+ end
59
+ 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,25 @@
1
+ B
2
+
3
+ 6
4
+ 6
5
+
6
+ Ostrich
7
+ Sparrow
8
+ Eagle
9
+ Lion
10
+ Bonobo
11
+ Human
12
+ bird
13
+ mammal
14
+ ape
15
+ flying
16
+ preying
17
+ talking
18
+ X.....
19
+ X..X..
20
+ X..XX.
21
+ .X..X.
22
+ .XX...
23
+ .XX..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,78 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: yohasebe-rubyfca
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.3
5
+ platform: ruby
6
+ authors:
7
+ - Yoichiro Hasebe
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-09-04 00:00:00 -07:00
13
+ default_executable: rubyfca
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: thoughtbot-shoulda
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ description: "TODO: longer description of your gem"
26
+ email: yohasebe@gmail.com
27
+ executables:
28
+ - rubyfca
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - LICENSE
33
+ - README.rdoc
34
+ files:
35
+ - .document
36
+ - .gitignore
37
+ - LICENSE
38
+ - README.rdoc
39
+ - Rakefile
40
+ - VERSION
41
+ - bin/rubyfca
42
+ - lib/ruby_graphviz.rb
43
+ - lib/rubyfca.rb
44
+ - lib/trollop.rb
45
+ - rubyfca.gemspec
46
+ - test/rubyfca_test.rb
47
+ - test/test_data.cxt
48
+ - test/test_helper.rb
49
+ has_rdoc: false
50
+ homepage: http://github.com/yohasebe/rubyfca
51
+ licenses:
52
+ post_install_message:
53
+ rdoc_options:
54
+ - --charset=UTF-8
55
+ require_paths:
56
+ - lib
57
+ required_ruby_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: "0"
62
+ version:
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: "0"
68
+ version:
69
+ requirements: []
70
+
71
+ rubyforge_project:
72
+ rubygems_version: 1.3.5
73
+ signing_key:
74
+ specification_version: 3
75
+ summary: "TODO: one-line summary of your gem"
76
+ test_files:
77
+ - test/rubyfca_test.rb
78
+ - test/test_helper.rb