inochi 0.3.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CREDITS +1 -0
- data/bin/inochi +112 -104
- data/doc/api/classes/Array.html +370 -0
- data/doc/api/classes/File.html +110 -0
- data/doc/api/classes/Inochi.html +1493 -0
- data/doc/api/classes/Inochi/Manual.html +157 -0
- data/doc/api/classes/Inochi/Phrases.html +331 -0
- data/doc/api/classes/Inochi/Version.html +190 -0
- data/doc/api/classes/TempDir.html +164 -0
- data/doc/api/created.rid +1 -0
- data/doc/api/css/main.css +263 -0
- data/doc/api/css/panel.css +383 -0
- data/doc/api/css/reset.css +53 -0
- data/doc/api/files/CREDITS.html +61 -0
- data/doc/api/files/LICENSE.html +76 -0
- data/doc/api/files/lib/inochi/book_rb.html +96 -0
- data/doc/api/files/lib/inochi/init_rb.html +78 -0
- data/doc/api/files/lib/inochi/main_rb.html +52 -0
- data/doc/api/files/lib/inochi/rake_rb.html +52 -0
- data/doc/api/files/lib/inochi/test/bacon_rb.html +67 -0
- data/doc/api/files/lib/inochi/test/context_rb.html +69 -0
- data/doc/api/files/lib/inochi/test/dfect_rb.html +67 -0
- data/doc/api/files/lib/inochi/test/matchy_rb.html +69 -0
- data/doc/api/files/lib/inochi/test/minitest_rb.html +71 -0
- data/doc/api/files/lib/inochi/test/mocha_rb.html +67 -0
- data/doc/api/files/lib/inochi/test/rspec_rb.html +67 -0
- data/doc/api/files/lib/inochi/test/shoulda_rb.html +67 -0
- data/doc/api/files/lib/inochi/test/test_spec_rb.html +67 -0
- data/doc/api/files/lib/inochi/test/test_unit_rb.html +67 -0
- data/doc/api/files/lib/inochi/util/combo_rb.html +59 -0
- data/doc/api/files/lib/inochi/util/tempdir_rb.html +68 -0
- data/doc/api/files/lib/inochi/util_rb.html +59 -0
- data/doc/api/files/lib/inochi_rb.html +78 -0
- data/doc/api/i/arrows.png +0 -0
- data/doc/api/i/results_bg.png +0 -0
- data/doc/api/i/tree_bg.png +0 -0
- data/doc/api/index.html +14 -18
- data/doc/api/js/jquery-1.3.2.min.js +19 -0
- data/doc/api/js/jquery-effect.js +593 -0
- data/doc/api/js/main.js +22 -0
- data/doc/api/js/searchdoc.js +605 -0
- data/doc/api/panel/index.html +63 -0
- data/doc/api/panel/search_index.js +1 -0
- data/doc/api/panel/tree.js +1 -0
- data/doc/history.erb +75 -34
- data/doc/index.erb +10 -5
- data/doc/index.xhtml +806 -1145
- data/doc/intro.erb +33 -27
- data/doc/setup.erb +16 -15
- data/doc/usage.erb +86 -137
- data/lib/inochi.rb +25 -13
- data/lib/inochi/book.rb +13 -6
- data/lib/inochi/init.rb +41 -24
- data/lib/inochi/main.rb +17 -7
- data/lib/inochi/rake.rb +200 -59
- data/lib/inochi/test/bacon.rb +3 -0
- data/lib/inochi/test/context.rb +4 -0
- data/lib/inochi/test/dfect.rb +3 -0
- data/lib/inochi/test/matchy.rb +4 -0
- data/lib/inochi/test/minitest.rb +7 -0
- data/lib/inochi/test/mocha.rb +3 -0
- data/lib/inochi/test/rspec.rb +3 -0
- data/lib/inochi/test/shoulda.rb +3 -0
- data/lib/inochi/test/test_spec.rb +3 -0
- data/lib/inochi/test/test_unit.rb +3 -0
- data/lib/inochi/util.rb +23 -1
- data/lib/inochi/util/combo.rb +191 -0
- data/lib/inochi/util/tempdir.rb +29 -0
- data/rakefile +12 -0
- data/test/inochi.rb +5 -0
- metadata +119 -45
- data/Rakefile +0 -6
- data/doc/api/Inochi.html +0 -2574
- data/doc/api/Inochi/Manual.html +0 -230
- data/doc/api/Inochi/Phrases.html +0 -409
- data/doc/api/Inochi/Version.html +0 -222
- data/doc/api/all-methods.html +0 -180
- data/doc/api/all-namespaces.html +0 -28
- data/doc/api/app.js +0 -18
- data/doc/api/jquery.js +0 -11
- data/doc/api/readme.html +0 -38
- data/doc/api/style.css +0 -68
- data/doc/api/syntax_highlight.css +0 -21
- data/doc/theory.erb +0 -3
data/lib/inochi/util.rb
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright 2008 Suraj N. Kurapati
|
3
|
+
# See the LICENSE file for details.
|
4
|
+
#++
|
5
|
+
|
1
6
|
class << Inochi
|
2
7
|
##
|
3
8
|
# Returns the name of the main program executable, which
|
@@ -32,6 +37,23 @@ class << Inochi
|
|
32
37
|
input
|
33
38
|
end
|
34
39
|
|
40
|
+
##
|
41
|
+
# Establishes version requirements for the given gem.
|
42
|
+
#
|
43
|
+
# Returns the sanitized Gem version requirements.
|
44
|
+
#
|
45
|
+
def require_gem_version gem_name, version_reqs
|
46
|
+
version_reqs = Array(version_reqs).compact
|
47
|
+
|
48
|
+
begin
|
49
|
+
gem gem_name.to_s, *version_reqs
|
50
|
+
rescue Gem::Exception, Gem::LoadError => e
|
51
|
+
warn e.inspect
|
52
|
+
end
|
53
|
+
|
54
|
+
version_reqs
|
55
|
+
end
|
56
|
+
|
35
57
|
private
|
36
58
|
|
37
59
|
INOCHI_LIBRARY_PATH = File.dirname(__FILE__)
|
@@ -42,7 +64,7 @@ class << Inochi
|
|
42
64
|
#
|
43
65
|
def first_caller_file
|
44
66
|
caller.each do |step|
|
45
|
-
if file = step[/^.+(?=:\d
|
67
|
+
if file = step[/^.+(?=:\d+(?::|\z))/]
|
46
68
|
file = File.expand_path(file)
|
47
69
|
base = File.dirname(file)
|
48
70
|
|
@@ -0,0 +1,191 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright 2009 Suraj N. Kurapati
|
3
|
+
# See the LICENSE file for details.
|
4
|
+
#++
|
5
|
+
|
6
|
+
class Array
|
7
|
+
unless method_defined? :enumeration
|
8
|
+
##
|
9
|
+
# Returns all possible enumerations made from
|
10
|
+
# sample_size number of items from this list.
|
11
|
+
#
|
12
|
+
# ==== Parameters
|
13
|
+
#
|
14
|
+
# [sample_size]
|
15
|
+
# The length of each enumeration.
|
16
|
+
#
|
17
|
+
# [sampler]
|
18
|
+
# If given, each enumeration is passed to this block.
|
19
|
+
#
|
20
|
+
def enumeration(sample_size = self.length, &sampler)
|
21
|
+
return [] if sample_size < 1
|
22
|
+
|
23
|
+
results = []
|
24
|
+
|
25
|
+
visitor = lambda do |parents|
|
26
|
+
each do |child|
|
27
|
+
result = parents + [child]
|
28
|
+
|
29
|
+
if result.length < sample_size
|
30
|
+
visitor.call result
|
31
|
+
else
|
32
|
+
yield result if block_given?
|
33
|
+
results << result
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
visitor.call []
|
39
|
+
results
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
unless method_defined? :enumerations
|
44
|
+
##
|
45
|
+
# Returns all possible enumerations of all possible lengths.
|
46
|
+
#
|
47
|
+
# ==== Parameters
|
48
|
+
#
|
49
|
+
# [sampler]
|
50
|
+
# If given, each enumeration is passed to this block.
|
51
|
+
#
|
52
|
+
def enumerations &sampler
|
53
|
+
all_lengths_impl :enumeration, &sampler
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
unless method_defined? :combination
|
58
|
+
##
|
59
|
+
# Returns all possible combinations made from
|
60
|
+
# sample_size number of items from this list.
|
61
|
+
#
|
62
|
+
# ==== Parameters
|
63
|
+
#
|
64
|
+
# [sample_size]
|
65
|
+
# The length of each combination.
|
66
|
+
#
|
67
|
+
# [sampler]
|
68
|
+
# If given, each combination is passed to this block.
|
69
|
+
#
|
70
|
+
def combination(sample_size = self.length, &sampler)
|
71
|
+
pnk_cnk_impl(sample_size, true, &sampler)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
unless method_defined? :combinations
|
76
|
+
##
|
77
|
+
# Returns all possible combinations of all possible lengths.
|
78
|
+
#
|
79
|
+
# ==== Parameters
|
80
|
+
#
|
81
|
+
# [sampler]
|
82
|
+
# If given, each combination is passed to this block.
|
83
|
+
#
|
84
|
+
def combinations &sampler
|
85
|
+
all_lengths_impl :combination, &sampler
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
unless method_defined? :permutation
|
90
|
+
##
|
91
|
+
# Returns all possible permutations made from
|
92
|
+
# sample_size number of items from this list.
|
93
|
+
#
|
94
|
+
# ==== Parameters
|
95
|
+
#
|
96
|
+
# [sample_size]
|
97
|
+
# The length of each permutation.
|
98
|
+
#
|
99
|
+
# [sampler]
|
100
|
+
# If given, each permutation is passed to this block.
|
101
|
+
#
|
102
|
+
def permutation(sample_size = self.length, &sampler)
|
103
|
+
pnk_cnk_impl(sample_size, false, &sampler)
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
unless method_defined? :permutations
|
108
|
+
##
|
109
|
+
# Returns all possible permutations of all possible lengths.
|
110
|
+
#
|
111
|
+
# ==== Parameters
|
112
|
+
#
|
113
|
+
# [sampler]
|
114
|
+
# If given, each permutation is passed to this block.
|
115
|
+
#
|
116
|
+
def permutations &sampler
|
117
|
+
all_lengths_impl :permutation, &sampler
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
private
|
122
|
+
|
123
|
+
##
|
124
|
+
# Returns results of the given method name for all possible sample sizes.
|
125
|
+
#
|
126
|
+
def all_lengths_impl method_name, &sampler
|
127
|
+
results = []
|
128
|
+
|
129
|
+
0.upto(length) do |i|
|
130
|
+
results << __send__(method_name, i, &sampler)
|
131
|
+
end
|
132
|
+
|
133
|
+
results
|
134
|
+
end
|
135
|
+
|
136
|
+
##
|
137
|
+
# Common implementation for permutation and combination functions.
|
138
|
+
#
|
139
|
+
# ==== Parameters
|
140
|
+
#
|
141
|
+
# [sample_size]
|
142
|
+
# Maximum depth of traversal, at which point to stop
|
143
|
+
# further traversal and to start collecting results.
|
144
|
+
#
|
145
|
+
# [exclude_parents]
|
146
|
+
# Prevent already visited vertices from being
|
147
|
+
# visited again in subsequent iterations?
|
148
|
+
#
|
149
|
+
def pnk_cnk_impl sample_size, exclude_parents
|
150
|
+
results = []
|
151
|
+
|
152
|
+
if sample_size >= 0 && sample_size < self.length
|
153
|
+
##
|
154
|
+
# ==== Parameters
|
155
|
+
#
|
156
|
+
# [parents]
|
157
|
+
# list of visited vertices, including the current vertex
|
158
|
+
#
|
159
|
+
# [children]
|
160
|
+
# list of unvisited vertices adjacent to current vertex
|
161
|
+
#
|
162
|
+
# [depth]
|
163
|
+
# current depth of the traversal tree
|
164
|
+
#
|
165
|
+
visitor = lambda do |parents, children, depth|
|
166
|
+
# traverse the graph until we reach the fringe
|
167
|
+
# vertices (leaf nodes of the traversal tree)
|
168
|
+
if depth < sample_size - 1
|
169
|
+
children.each do |c|
|
170
|
+
next_children = children - (exclude_parents ? parents : [c])
|
171
|
+
next_parents = parents + [c]
|
172
|
+
next_depth = depth + 1
|
173
|
+
|
174
|
+
visitor.call next_parents, next_children, next_depth
|
175
|
+
end
|
176
|
+
else
|
177
|
+
# now we have reached the fringe vertices
|
178
|
+
children.each do |c|
|
179
|
+
result = parents + [c]
|
180
|
+
yield result if block_given?
|
181
|
+
results << result
|
182
|
+
end
|
183
|
+
end
|
184
|
+
end
|
185
|
+
|
186
|
+
visitor.call [], self, 0
|
187
|
+
end
|
188
|
+
|
189
|
+
results
|
190
|
+
end
|
191
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright 2009 Suraj N. Kurapati
|
3
|
+
# See the LICENSE file for details.
|
4
|
+
#++
|
5
|
+
|
6
|
+
require 'tempfile'
|
7
|
+
require 'fileutils'
|
8
|
+
|
9
|
+
class TempDir
|
10
|
+
attr_reader :path
|
11
|
+
|
12
|
+
def initialize basename = nil, dirname = nil
|
13
|
+
args = [basename || File.basename($0), dirname].compact
|
14
|
+
file = Tempfile.new(*args)
|
15
|
+
|
16
|
+
@path = file.path
|
17
|
+
|
18
|
+
# replace the file with a directory
|
19
|
+
file.close!
|
20
|
+
FileUtils.mkdir_p @path
|
21
|
+
|
22
|
+
# clean up on exit
|
23
|
+
at_exit { close }
|
24
|
+
end
|
25
|
+
|
26
|
+
def close
|
27
|
+
FileUtils.rm_rf @path
|
28
|
+
end
|
29
|
+
end
|
data/rakefile
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright 2008 Suraj N. Kurapati
|
3
|
+
# See the LICENSE file for details.
|
4
|
+
#++
|
5
|
+
|
6
|
+
require 'lib/inochi'
|
7
|
+
|
8
|
+
Inochi.rake :Inochi,
|
9
|
+
:rubyforge_project => 'sunaku',
|
10
|
+
:upload_target => File.expand_path('~/www/lib/inochi/'),
|
11
|
+
:upload_delete => true,
|
12
|
+
:test_with => :minitest
|
data/test/inochi.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inochi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Suraj N. Kurapati
|
@@ -9,45 +9,62 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-05-04 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: erbook
|
17
|
-
type: :
|
17
|
+
type: :development
|
18
18
|
version_requirement:
|
19
19
|
version_requirements: !ruby/object:Gem::Requirement
|
20
20
|
requirements:
|
21
21
|
- - ~>
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: "
|
23
|
+
version: "7"
|
24
24
|
version:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
|
-
name:
|
27
|
-
type: :
|
26
|
+
name: ZenTest
|
27
|
+
type: :development
|
28
28
|
version_requirement:
|
29
29
|
version_requirements: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ~>
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
34
|
-
|
33
|
+
version: "4"
|
34
|
+
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: spicycode-rcov
|
37
|
+
type: :development
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
35
42
|
- !ruby/object:Gem::Version
|
36
|
-
version: "
|
43
|
+
version: "0"
|
37
44
|
version:
|
38
45
|
- !ruby/object:Gem::Dependency
|
39
46
|
name: rake
|
40
|
-
type: :
|
47
|
+
type: :development
|
41
48
|
version_requirement:
|
42
49
|
version_requirements: !ruby/object:Gem::Requirement
|
43
50
|
requirements:
|
44
|
-
- -
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 0.8.4
|
54
|
+
version:
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: roodi
|
57
|
+
type: :development
|
58
|
+
version_requirement:
|
59
|
+
version_requirements: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
45
62
|
- !ruby/object:Gem::Version
|
46
63
|
version: "0"
|
47
64
|
version:
|
48
65
|
- !ruby/object:Gem::Dependency
|
49
66
|
name: addressable
|
50
|
-
type: :
|
67
|
+
type: :development
|
51
68
|
version_requirement:
|
52
69
|
version_requirements: !ruby/object:Gem::Requirement
|
53
70
|
requirements:
|
@@ -57,7 +74,7 @@ dependencies:
|
|
57
74
|
version:
|
58
75
|
- !ruby/object:Gem::Dependency
|
59
76
|
name: mechanize
|
60
|
-
type: :
|
77
|
+
type: :development
|
61
78
|
version_requirement:
|
62
79
|
version_requirements: !ruby/object:Gem::Requirement
|
63
80
|
requirements:
|
@@ -67,7 +84,7 @@ dependencies:
|
|
67
84
|
version:
|
68
85
|
- !ruby/object:Gem::Dependency
|
69
86
|
name: babelfish
|
70
|
-
type: :
|
87
|
+
type: :development
|
71
88
|
version_requirement:
|
72
89
|
version_requirements: !ruby/object:Gem::Requirement
|
73
90
|
requirements:
|
@@ -76,8 +93,18 @@ dependencies:
|
|
76
93
|
version: "0"
|
77
94
|
version:
|
78
95
|
- !ruby/object:Gem::Dependency
|
79
|
-
name:
|
80
|
-
type: :
|
96
|
+
name: rubyforge
|
97
|
+
type: :development
|
98
|
+
version_requirement:
|
99
|
+
version_requirements: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ~>
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: "1"
|
104
|
+
version:
|
105
|
+
- !ruby/object:Gem::Dependency
|
106
|
+
name: reek
|
107
|
+
type: :development
|
81
108
|
version_requirement:
|
82
109
|
version_requirements: !ruby/object:Gem::Requirement
|
83
110
|
requirements:
|
@@ -86,14 +113,24 @@ dependencies:
|
|
86
113
|
version: "0"
|
87
114
|
version:
|
88
115
|
- !ruby/object:Gem::Dependency
|
89
|
-
name:
|
90
|
-
type: :
|
116
|
+
name: voloko-sdoc
|
117
|
+
type: :development
|
91
118
|
version_requirement:
|
92
119
|
version_requirements: !ruby/object:Gem::Requirement
|
93
120
|
requirements:
|
94
|
-
- -
|
121
|
+
- - ">="
|
95
122
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
123
|
+
version: 0.2.10
|
124
|
+
version:
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: flay
|
127
|
+
type: :development
|
128
|
+
version_requirement:
|
129
|
+
version_requirements: !ruby/object:Gem::Requirement
|
130
|
+
requirements:
|
131
|
+
- - ">="
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: "0"
|
97
134
|
version:
|
98
135
|
- !ruby/object:Gem::Dependency
|
99
136
|
name: trollop
|
@@ -111,9 +148,9 @@ dependencies:
|
|
111
148
|
version_requirement:
|
112
149
|
version_requirements: !ruby/object:Gem::Requirement
|
113
150
|
requirements:
|
114
|
-
- -
|
151
|
+
- - ">="
|
115
152
|
- !ruby/object:Gem::Version
|
116
|
-
version:
|
153
|
+
version: 0.3.3
|
117
154
|
version:
|
118
155
|
description: Gives life to RubyGems-based software
|
119
156
|
email: sunaku@gmail.com
|
@@ -124,47 +161,84 @@ extensions: []
|
|
124
161
|
extra_rdoc_files: []
|
125
162
|
|
126
163
|
files:
|
127
|
-
-
|
164
|
+
- CREDITS
|
165
|
+
- rakefile
|
128
166
|
- test/inochi.rb
|
129
|
-
- lib
|
130
167
|
- lib/inochi.rb
|
131
|
-
- lib/inochi
|
168
|
+
- lib/inochi/util/combo.rb
|
169
|
+
- lib/inochi/util/tempdir.rb
|
132
170
|
- lib/inochi/main.rb
|
133
171
|
- lib/inochi/book.rb
|
134
172
|
- lib/inochi/rake.rb
|
173
|
+
- lib/inochi/test/context.rb
|
174
|
+
- lib/inochi/test/rspec.rb
|
175
|
+
- lib/inochi/test/minitest.rb
|
176
|
+
- lib/inochi/test/test_unit.rb
|
177
|
+
- lib/inochi/test/shoulda.rb
|
178
|
+
- lib/inochi/test/test_spec.rb
|
179
|
+
- lib/inochi/test/mocha.rb
|
180
|
+
- lib/inochi/test/dfect.rb
|
181
|
+
- lib/inochi/test/matchy.rb
|
182
|
+
- lib/inochi/test/bacon.rb
|
135
183
|
- lib/inochi/util.rb
|
136
184
|
- lib/inochi/init.rb
|
137
|
-
- Rakefile
|
138
|
-
- bin
|
139
185
|
- bin/inochi
|
140
186
|
- LICENSE
|
141
|
-
- doc
|
142
187
|
- doc/intro.erb
|
143
188
|
- doc/setup.erb
|
144
189
|
- doc/inochi.png
|
145
|
-
- doc/theory.erb
|
146
190
|
- doc/index.xhtml
|
147
191
|
- doc/inochi.svg
|
148
|
-
- doc/api
|
149
|
-
- doc/api/
|
150
|
-
- doc/api/
|
151
|
-
- doc/api/
|
152
|
-
- doc/api/
|
153
|
-
- doc/api/
|
154
|
-
- doc/api/
|
155
|
-
- doc/api/
|
156
|
-
- doc/api/
|
157
|
-
- doc/api/
|
158
|
-
- doc/api/
|
159
|
-
- doc/api/
|
192
|
+
- doc/api/classes/TempDir.html
|
193
|
+
- doc/api/classes/Inochi/Phrases.html
|
194
|
+
- doc/api/classes/Inochi/Manual.html
|
195
|
+
- doc/api/classes/Inochi/Version.html
|
196
|
+
- doc/api/classes/Array.html
|
197
|
+
- doc/api/classes/File.html
|
198
|
+
- doc/api/classes/Inochi.html
|
199
|
+
- doc/api/panel/search_index.js
|
200
|
+
- doc/api/panel/tree.js
|
201
|
+
- doc/api/panel/index.html
|
202
|
+
- doc/api/js/searchdoc.js
|
203
|
+
- doc/api/js/jquery-effect.js
|
204
|
+
- doc/api/js/jquery-1.3.2.min.js
|
205
|
+
- doc/api/js/main.js
|
206
|
+
- doc/api/files/CREDITS.html
|
207
|
+
- doc/api/files/LICENSE.html
|
208
|
+
- doc/api/files/lib/inochi_rb.html
|
209
|
+
- doc/api/files/lib/inochi/util/combo_rb.html
|
210
|
+
- doc/api/files/lib/inochi/util/tempdir_rb.html
|
211
|
+
- doc/api/files/lib/inochi/main_rb.html
|
212
|
+
- doc/api/files/lib/inochi/rake_rb.html
|
213
|
+
- doc/api/files/lib/inochi/util_rb.html
|
214
|
+
- doc/api/files/lib/inochi/init_rb.html
|
215
|
+
- doc/api/files/lib/inochi/test/test_unit_rb.html
|
216
|
+
- doc/api/files/lib/inochi/test/bacon_rb.html
|
217
|
+
- doc/api/files/lib/inochi/test/mocha_rb.html
|
218
|
+
- doc/api/files/lib/inochi/test/shoulda_rb.html
|
219
|
+
- doc/api/files/lib/inochi/test/dfect_rb.html
|
220
|
+
- doc/api/files/lib/inochi/test/minitest_rb.html
|
221
|
+
- doc/api/files/lib/inochi/test/matchy_rb.html
|
222
|
+
- doc/api/files/lib/inochi/test/context_rb.html
|
223
|
+
- doc/api/files/lib/inochi/test/test_spec_rb.html
|
224
|
+
- doc/api/files/lib/inochi/test/rspec_rb.html
|
225
|
+
- doc/api/files/lib/inochi/book_rb.html
|
226
|
+
- doc/api/css/main.css
|
227
|
+
- doc/api/css/reset.css
|
228
|
+
- doc/api/css/panel.css
|
229
|
+
- doc/api/i/arrows.png
|
230
|
+
- doc/api/i/tree_bg.png
|
231
|
+
- doc/api/i/results_bg.png
|
232
|
+
- doc/api/created.rid
|
160
233
|
- doc/api/index.html
|
161
|
-
- doc/api/Inochi.html
|
162
234
|
- doc/usage.erb
|
163
235
|
- doc/history.erb
|
164
236
|
- doc/index.erb
|
165
237
|
- doc/README
|
166
238
|
has_rdoc: true
|
167
239
|
homepage: http://snk.tuxfamily.org/lib/inochi
|
240
|
+
licenses: []
|
241
|
+
|
168
242
|
post_install_message:
|
169
243
|
rdoc_options: []
|
170
244
|
|
@@ -185,9 +259,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
185
259
|
requirements: []
|
186
260
|
|
187
261
|
rubyforge_project: sunaku
|
188
|
-
rubygems_version: 1.3.
|
262
|
+
rubygems_version: 1.3.2
|
189
263
|
signing_key:
|
190
|
-
specification_version:
|
264
|
+
specification_version: 3
|
191
265
|
summary: Gives life to RubyGems-based software
|
192
266
|
test_files: []
|
193
267
|
|