facets 2.1.1 → 2.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +5 -0
- data/{LICENSE → COPYING} +4 -0
- data/{WHATSNEW → NOTES} +6 -1
- data/README +5 -0
- data/lib/core/facets.rb +1 -1
- data/lib/core/facets/dir/multiglob.rb +3 -67
- data/lib/core/facets/exception.rb +1 -0
- data/lib/core/facets/exception/detail.rb +20 -0
- data/lib/core/facets/kernel/tap.rb +13 -0
- data/lib/core/facets/{facets.rb → main.rb} +2 -0
- data/lib/methods/facets/facets/require_core.rb +1 -1
- data/lib/more/facets/logger.rb +11 -7
- data/lib/more/facets/registerable.rb +36 -0
- data/log/{history.txt → history.rd} +7 -1
- data/log/{todo.txt → todo.rd} +0 -0
- data/meta/{manifest.txt → MANIFEST} +23 -17
- data/meta/icli.yaml +3 -3
- data/meta/{facets-2.1.1.roll → project.yaml} +4 -11
- data/meta/rollrc +5 -0
- data/task/changes +29 -0
- data/task/install +7 -3
- data/task/{crosstest → test/cross} +0 -0
- data/task/{testeach → test/each} +0 -0
- data/task/{test → test/general} +0 -0
- data/task/{isotest → test/isotest} +0 -0
- data/task/{loadtest → test/loadtest} +0 -0
- data/task/{testpairs → test/pairs} +0 -0
- data/task/{syntax → test/syntax} +0 -0
- metadata +736 -737
- data/lib/more/facets/rbconfig.rb +0 -55
- data/log/release.txt +0 -10
- data/task/config/general.yaml +0 -66
- data/task/config/rdoc.yaml +0 -478
- data/task/rdoc +0 -163
- data/task/svn/tag +0 -22
data/task/install
CHANGED
@@ -7,7 +7,8 @@
|
|
7
7
|
# If you want to change these, you can supply command
|
8
8
|
# line paramters for '--prefix' and/or '--sitedir'.
|
9
9
|
|
10
|
-
|
10
|
+
LIBPATHS = ['lib/core', 'lib/more', 'lib/methods']
|
11
|
+
|
11
12
|
require 'rbconfig'
|
12
13
|
require 'fileutils'
|
13
14
|
|
@@ -15,8 +16,9 @@ def start_install
|
|
15
16
|
|
16
17
|
# We need to copy them into site_ruby in the opposite order they
|
17
18
|
# would be searched for by require.
|
18
|
-
|
19
|
-
|
19
|
+
# (Actually order doesn't matter anymore. I've neutered it.)
|
20
|
+
|
21
|
+
libpaths = LIBPATHS
|
20
22
|
|
21
23
|
system_prefix = Config::CONFIG['prefix']
|
22
24
|
system_libdir = Config::CONFIG['sitelibdir']
|
@@ -27,6 +29,7 @@ def start_install
|
|
27
29
|
end
|
28
30
|
|
29
31
|
libdir = nil
|
32
|
+
|
30
33
|
if i = ARGV.index('--sitedir')
|
31
34
|
libdir = ARGV[i+1]
|
32
35
|
end
|
@@ -90,3 +93,4 @@ def noharm?; @noharm; end
|
|
90
93
|
|
91
94
|
# Start installation.
|
92
95
|
start_install
|
96
|
+
|
File without changes
|
data/task/{testeach → test/each}
RENAMED
File without changes
|
data/task/{test → test/general}
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/task/{syntax → test/syntax}
RENAMED
File without changes
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4.6
|
|
3
3
|
specification_version: 2
|
4
4
|
name: facets
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 2.1.
|
7
|
-
date: 2007-11-
|
6
|
+
version: 2.1.2
|
7
|
+
date: 2007-11-22 00:00:00 -05:00
|
8
8
|
summary: ""
|
9
9
|
require_paths:
|
10
10
|
- lib/methods
|
@@ -39,907 +39,901 @@ extensions_fallback:
|
|
39
39
|
authors:
|
40
40
|
- Thomas Sawyer <transfire@gmail.com>
|
41
41
|
files:
|
42
|
-
-
|
43
|
-
-
|
44
|
-
-
|
45
|
-
-
|
42
|
+
- log
|
43
|
+
- log/history.rd
|
44
|
+
- log/todo.rd
|
45
|
+
- log/changelog.txt
|
46
|
+
- task
|
47
|
+
- task/changes
|
48
|
+
- task/install
|
49
|
+
- task/clean
|
50
|
+
- task/test
|
51
|
+
- task/test/isotest
|
52
|
+
- task/test/loadtest
|
53
|
+
- task/test/general
|
54
|
+
- task/test/pairs
|
55
|
+
- task/test/each
|
56
|
+
- task/test/cross
|
57
|
+
- task/test/syntax
|
58
|
+
- task/groups
|
59
|
+
- task/stats
|
60
|
+
- task/publish
|
61
|
+
- task/methods
|
62
|
+
- task/log
|
63
|
+
- task/prepare
|
64
|
+
- task/release
|
65
|
+
- task/clobber
|
66
|
+
- task/clobber/package
|
67
|
+
- task/special
|
68
|
+
- task/special/quickopts
|
46
69
|
- demo
|
70
|
+
- demo/sample
|
71
|
+
- demo/sample/annotations
|
72
|
+
- demo/sample/annotations/annotations1.rb
|
73
|
+
- demo/sample/ansicolor
|
74
|
+
- demo/sample/ansicolor/example.rb
|
75
|
+
- demo/sample/ansicolor/cdiff.rb
|
47
76
|
- demo/bench
|
48
77
|
- demo/bench/enumerable
|
49
78
|
- demo/bench/enumerable/bench_collect.rb
|
50
79
|
- demo/bench/enumerable/bench_count.rb
|
51
80
|
- demo/bench/integer
|
52
81
|
- demo/bench/integer/bench_factorial.rb
|
53
|
-
-
|
54
|
-
-
|
55
|
-
-
|
56
|
-
-
|
57
|
-
-
|
58
|
-
-
|
82
|
+
- CHANGES
|
83
|
+
- meta
|
84
|
+
- meta/rollrc
|
85
|
+
- meta/icli.yaml
|
86
|
+
- meta/project.yaml
|
87
|
+
- meta/google_ad.html
|
88
|
+
- meta/MANIFEST
|
59
89
|
- lib
|
60
|
-
- lib/
|
90
|
+
- lib/more
|
91
|
+
- lib/more/facets
|
92
|
+
- lib/more/facets/attributes.rb
|
93
|
+
- lib/more/facets/advice.rb
|
94
|
+
- lib/more/facets/ansicode.rb
|
95
|
+
- lib/more/facets/aop.rb
|
96
|
+
- lib/more/facets/association.rb
|
97
|
+
- lib/more/facets/autoarray.rb
|
98
|
+
- lib/more/facets/binreadable.rb
|
99
|
+
- lib/more/facets/bbcode.rb
|
100
|
+
- lib/more/facets/buildingblock.rb
|
101
|
+
- lib/more/facets/buildable.rb
|
102
|
+
- lib/more/facets/fileutils.rb
|
103
|
+
- lib/more/facets/cachedelegator.rb
|
104
|
+
- lib/more/facets/bytes.rb
|
105
|
+
- lib/more/facets/coroutine.rb
|
106
|
+
- lib/more/facets/crypt.rb
|
107
|
+
- lib/more/facets/command.rb
|
108
|
+
- lib/more/facets/cloneable.rb
|
109
|
+
- lib/more/facets/validation.rb
|
110
|
+
- lib/more/facets/cut.rb
|
111
|
+
- lib/more/facets/dictionary.rb
|
112
|
+
- lib/more/facets/filelist.rb
|
113
|
+
- lib/more/facets/infinity.rb
|
114
|
+
- lib/more/facets/interval.rb
|
115
|
+
- lib/more/facets/lazy.rb
|
116
|
+
- lib/more/facets/let.rb
|
117
|
+
- lib/more/facets/mapsend.rb
|
118
|
+
- lib/more/facets/minitar.rb
|
119
|
+
- lib/more/facets/main.rb
|
120
|
+
- lib/more/facets/paramix.rb
|
121
|
+
- lib/more/facets/multipliers.rb
|
122
|
+
- lib/more/facets/lrucache.rb
|
123
|
+
- lib/more/facets/linkedlist.rb
|
124
|
+
- lib/more/facets/pqueue.rb
|
125
|
+
- lib/more/facets/heap.rb
|
126
|
+
- lib/more/facets/pool.rb
|
127
|
+
- lib/more/facets/prepend.rb
|
128
|
+
- lib/more/facets/settings.rb
|
129
|
+
- lib/more/facets/annotations.rb
|
130
|
+
- lib/more/facets/snapshot.rb
|
131
|
+
- lib/more/facets/semaphore.rb
|
132
|
+
- lib/more/facets/rwdelegator.rb
|
133
|
+
- lib/more/facets/ziputils.rb
|
134
|
+
- lib/more/facets/fileable.rb
|
135
|
+
- lib/more/facets/fileshell.rb
|
136
|
+
- lib/more/facets/reflection.rb
|
137
|
+
- lib/more/facets/recursive.rb
|
138
|
+
- lib/more/facets/opencollection.rb
|
139
|
+
- lib/more/facets/openobject.rb
|
140
|
+
- lib/more/facets/pathlist.rb
|
141
|
+
- lib/more/facets/progressbar.rb
|
142
|
+
- lib/more/facets/random.rb
|
143
|
+
- lib/more/facets/reference.rb
|
144
|
+
- lib/more/facets/uninheritable.rb
|
145
|
+
- lib/more/facets/typecast.rb
|
146
|
+
- lib/more/facets/tuple.rb
|
147
|
+
- lib/more/facets/timer.rb
|
148
|
+
- lib/more/facets/overload.rb
|
149
|
+
- lib/more/facets/stylize.rb
|
150
|
+
- lib/more/facets/syncarray.rb
|
151
|
+
- lib/more/facets/synchash.rb
|
152
|
+
- lib/more/facets/version.rb
|
153
|
+
- lib/more/facets/recorder.rb
|
154
|
+
- lib/more/facets/hashbuilder.rb
|
155
|
+
- lib/more/facets/daemonize.rb
|
156
|
+
- lib/more/facets/elementor.rb
|
157
|
+
- lib/more/facets/inheritor.rb
|
158
|
+
- lib/more/facets/capsule.rb
|
159
|
+
- lib/more/facets/classmethods.rb
|
160
|
+
- lib/more/facets/instantiable.rb
|
161
|
+
- lib/more/facets/instantise.rb
|
162
|
+
- lib/more/facets/namespace.rb
|
163
|
+
- lib/more/facets/multiton.rb
|
164
|
+
- lib/more/facets/orderedhash.rb
|
165
|
+
- lib/more/facets/opencascade.rb
|
166
|
+
- lib/more/facets/prototype.rb
|
167
|
+
- lib/more/facets/registerable.rb
|
168
|
+
- lib/more/facets/times.rb
|
169
|
+
- lib/more/facets/nullclass.rb
|
170
|
+
- lib/more/facets/expirable.rb
|
171
|
+
- lib/more/facets/enumerablepass.rb
|
172
|
+
- lib/more/facets/downloader.rb
|
173
|
+
- lib/more/facets/dependency.rb
|
174
|
+
- lib/more/facets/compare_on.rb
|
175
|
+
- lib/more/facets/console.rb
|
176
|
+
- lib/more/facets/arguments.rb
|
177
|
+
- lib/more/facets/eventhook.rb
|
178
|
+
- lib/more/facets/interface.rb
|
179
|
+
- lib/more/facets/class_extension.rb
|
180
|
+
- lib/more/facets/nackclass.rb
|
181
|
+
- lib/more/facets/autoreload.rb
|
182
|
+
- lib/more/facets/basicobject.rb
|
183
|
+
- lib/more/facets/behavior.rb
|
184
|
+
- lib/more/facets/uploadutils.rb
|
185
|
+
- lib/more/facets/smtp_tls.rb
|
186
|
+
- lib/more/facets/ioredirect.rb
|
187
|
+
- lib/more/facets/memoize.rb
|
188
|
+
- lib/more/facets/getoptlong.rb
|
189
|
+
- lib/more/facets/logger.rb
|
190
|
+
- lib/more/facets/ostruct.rb
|
191
|
+
- lib/more/facets/shellwords.rb
|
192
|
+
- lib/more/facets/yaml.rb
|
193
|
+
- lib/more/facets/date.rb
|
194
|
+
- lib/more/facets/pathname.rb
|
195
|
+
- lib/more/facets/rbsystem.rb
|
196
|
+
- lib/more/facets/curry.rb
|
197
|
+
- lib/more/facets/pp_s.rb
|
61
198
|
- lib/core/facets
|
62
|
-
- lib/core/facets/1stclassmethod.rb
|
63
199
|
- lib/core/facets/array
|
64
|
-
- lib/core/facets/array/conjoin.rb
|
65
|
-
- lib/core/facets/array/delete.rb
|
66
|
-
- lib/core/facets/array/indexable.rb
|
67
|
-
- lib/core/facets/array/merge.rb
|
68
200
|
- lib/core/facets/array/only.rb
|
69
|
-
- lib/core/facets/array/pad.rb
|
70
201
|
- lib/core/facets/array/rotate.rb
|
202
|
+
- lib/core/facets/array/conjoin.rb
|
203
|
+
- lib/core/facets/array/merge.rb
|
71
204
|
- lib/core/facets/array/select.rb
|
72
205
|
- lib/core/facets/array/splice.rb
|
73
|
-
- lib/core/facets/array/
|
206
|
+
- lib/core/facets/array/delete.rb
|
207
|
+
- lib/core/facets/array/pad.rb
|
74
208
|
- lib/core/facets/array/unzip.rb
|
75
|
-
- lib/core/facets/array.rb
|
209
|
+
- lib/core/facets/array/stackable.rb
|
210
|
+
- lib/core/facets/array/indexable.rb
|
76
211
|
- lib/core/facets/binding
|
77
|
-
- lib/core/facets/binding/cflow.rb
|
78
212
|
- lib/core/facets/binding/eval.rb
|
213
|
+
- lib/core/facets/binding/cflow.rb
|
79
214
|
- lib/core/facets/binding/vars.rb
|
80
|
-
- lib/core/facets/binding.rb
|
81
|
-
- lib/core/facets/boolean.rb
|
82
215
|
- lib/core/facets/class
|
83
216
|
- lib/core/facets/class/descendents.rb
|
84
217
|
- lib/core/facets/class/initializer.rb
|
85
|
-
- lib/core/facets/class.rb
|
86
218
|
- lib/core/facets/comparable
|
87
|
-
- lib/core/facets/comparable/bound.rb
|
88
219
|
- lib/core/facets/comparable/cmp.rb
|
89
|
-
- lib/core/facets/comparable.rb
|
220
|
+
- lib/core/facets/comparable/bound.rb
|
90
221
|
- lib/core/facets/continuation
|
91
222
|
- lib/core/facets/continuation/create.rb
|
92
|
-
- lib/core/facets/continuation.rb
|
93
|
-
- lib/core/facets/conversion.rb
|
94
223
|
- lib/core/facets/dir
|
95
224
|
- lib/core/facets/dir/multiglob.rb
|
96
225
|
- lib/core/facets/dir/traverse.rb
|
97
|
-
- lib/core/facets/dir.rb
|
98
226
|
- lib/core/facets/enumerable
|
99
227
|
- lib/core/facets/enumerable/cartesian.rb
|
228
|
+
- lib/core/facets/enumerable/combination.rb
|
100
229
|
- lib/core/facets/enumerable/collate.rb
|
101
230
|
- lib/core/facets/enumerable/collect.rb
|
102
|
-
- lib/core/facets/enumerable/combination.rb
|
103
|
-
- lib/core/facets/enumerable/count.rb
|
104
231
|
- lib/core/facets/enumerable/permutation.rb
|
232
|
+
- lib/core/facets/enumerable/count.rb
|
105
233
|
- lib/core/facets/enumerable/probability.rb
|
106
|
-
- lib/core/facets/enumerable.rb
|
107
|
-
- lib/core/facets/facets.rb
|
108
234
|
- lib/core/facets/file
|
109
|
-
- lib/core/facets/file/read.rb
|
110
235
|
- lib/core/facets/file/topath.rb
|
236
|
+
- lib/core/facets/file/read.rb
|
111
237
|
- lib/core/facets/file/write.rb
|
112
|
-
- lib/core/facets/file.rb
|
113
238
|
- lib/core/facets/filetest
|
114
239
|
- lib/core/facets/filetest/root.rb
|
115
|
-
- lib/core/facets/filetest.rb
|
116
240
|
- lib/core/facets/float
|
117
241
|
- lib/core/facets/float/round.rb
|
118
|
-
- lib/core/facets/float.rb
|
119
|
-
- lib/core/facets/functor.rb
|
120
242
|
- lib/core/facets/hash
|
121
|
-
- lib/core/facets/hash/at.rb
|
122
|
-
- lib/core/facets/hash/delete.rb
|
123
|
-
- lib/core/facets/hash/has_keys.rb
|
124
|
-
- lib/core/facets/hash/insert.rb
|
125
|
-
- lib/core/facets/hash/inverse.rb
|
126
243
|
- lib/core/facets/hash/iterate.rb
|
127
|
-
- lib/core/facets/hash/keyize.rb
|
128
244
|
- lib/core/facets/hash/merge.rb
|
129
|
-
- lib/core/facets/hash/
|
245
|
+
- lib/core/facets/hash/keyize.rb
|
130
246
|
- lib/core/facets/hash/op.rb
|
131
247
|
- lib/core/facets/hash/rekey.rb
|
132
|
-
- lib/core/facets/hash/
|
133
|
-
- lib/core/facets/hash/traverse.rb
|
248
|
+
- lib/core/facets/hash/delete.rb
|
134
249
|
- lib/core/facets/hash/update.rb
|
250
|
+
- lib/core/facets/hash/at.rb
|
251
|
+
- lib/core/facets/hash/insert.rb
|
252
|
+
- lib/core/facets/hash/has_keys.rb
|
135
253
|
- lib/core/facets/hash/weave.rb
|
136
|
-
- lib/core/facets/hash.rb
|
137
|
-
- lib/core/facets/
|
254
|
+
- lib/core/facets/hash/new.rb
|
255
|
+
- lib/core/facets/hash/inverse.rb
|
256
|
+
- lib/core/facets/hash/traverse.rb
|
257
|
+
- lib/core/facets/hash/select.rb
|
138
258
|
- lib/core/facets/integer
|
139
|
-
- lib/core/facets/integer/bitmask.rb
|
140
|
-
- lib/core/facets/integer/factorial.rb
|
141
259
|
- lib/core/facets/integer/multiples.rb
|
260
|
+
- lib/core/facets/integer/factorial.rb
|
142
261
|
- lib/core/facets/integer/of.rb
|
143
|
-
- lib/core/facets/integer.rb
|
262
|
+
- lib/core/facets/integer/bitmask.rb
|
144
263
|
- lib/core/facets/kernel
|
145
|
-
- lib/core/facets/kernel/ask.rb
|
146
|
-
- lib/core/facets/kernel/callstack.rb
|
147
|
-
- lib/core/facets/kernel/constant.rb
|
148
|
-
- lib/core/facets/kernel/deepcopy.rb
|
149
|
-
- lib/core/facets/kernel/dir.rb
|
150
264
|
- lib/core/facets/kernel/ergo.rb
|
151
|
-
- lib/core/facets/kernel/
|
265
|
+
- lib/core/facets/kernel/require_esc.rb
|
266
|
+
- lib/core/facets/kernel/callstack.rb
|
267
|
+
- lib/core/facets/kernel/super.rb
|
268
|
+
- lib/core/facets/kernel/val.rb
|
152
269
|
- lib/core/facets/kernel/metaid.rb
|
270
|
+
- lib/core/facets/kernel/instance.rb
|
271
|
+
- lib/core/facets/kernel/tap.rb
|
153
272
|
- lib/core/facets/kernel/object.rb
|
273
|
+
- lib/core/facets/kernel/withattr.rb
|
274
|
+
- lib/core/facets/kernel/deepcopy.rb
|
154
275
|
- lib/core/facets/kernel/op_esc.rb
|
155
276
|
- lib/core/facets/kernel/populate.rb
|
156
|
-
- lib/core/facets/kernel/
|
277
|
+
- lib/core/facets/kernel/dir.rb
|
157
278
|
- lib/core/facets/kernel/require.rb
|
158
|
-
- lib/core/facets/kernel/
|
279
|
+
- lib/core/facets/kernel/constant.rb
|
280
|
+
- lib/core/facets/kernel/ask.rb
|
159
281
|
- lib/core/facets/kernel/respond.rb
|
160
282
|
- lib/core/facets/kernel/silence.rb
|
161
|
-
- lib/core/facets/kernel/
|
162
|
-
- lib/core/facets/kernel/tap.rb
|
163
|
-
- lib/core/facets/kernel/val.rb
|
164
|
-
- lib/core/facets/kernel/withattr.rb
|
165
|
-
- lib/core/facets/kernel.rb
|
283
|
+
- lib/core/facets/kernel/report.rb
|
166
284
|
- lib/core/facets/matchdata
|
167
285
|
- lib/core/facets/matchdata/matchset.rb
|
168
|
-
- lib/core/facets/matchdata.rb
|
169
286
|
- lib/core/facets/module
|
170
287
|
- lib/core/facets/module/abstract.rb
|
171
|
-
- lib/core/facets/module/
|
172
|
-
- lib/core/facets/module/attr.rb
|
288
|
+
- lib/core/facets/module/include.rb
|
173
289
|
- lib/core/facets/module/cattr.rb
|
174
290
|
- lib/core/facets/module/clone.rb
|
175
|
-
- lib/core/facets/module/include.rb
|
176
|
-
- lib/core/facets/module/methods.rb
|
177
|
-
- lib/core/facets/module/modify.rb
|
178
291
|
- lib/core/facets/module/name.rb
|
179
|
-
- lib/core/facets/module/require.rb
|
180
292
|
- lib/core/facets/module/traits.rb
|
181
|
-
- lib/core/facets/module.rb
|
293
|
+
- lib/core/facets/module/modify.rb
|
294
|
+
- lib/core/facets/module/alias.rb
|
295
|
+
- lib/core/facets/module/attr.rb
|
296
|
+
- lib/core/facets/module/require.rb
|
297
|
+
- lib/core/facets/module/methods.rb
|
182
298
|
- lib/core/facets/nilclass
|
183
299
|
- lib/core/facets/nilclass/status.rb
|
184
|
-
- lib/core/facets/nilclass.rb
|
185
300
|
- lib/core/facets/numeric
|
186
301
|
- lib/core/facets/numeric/round.rb
|
187
|
-
- lib/core/facets/numeric.rb
|
188
302
|
- lib/core/facets/proc
|
189
|
-
- lib/core/facets/proc/bind.rb
|
190
303
|
- lib/core/facets/proc/compose.rb
|
304
|
+
- lib/core/facets/proc/bind.rb
|
191
305
|
- lib/core/facets/proc/fn.rb
|
192
|
-
- lib/core/facets/proc.rb
|
193
306
|
- lib/core/facets/range
|
194
|
-
- lib/core/facets/range/combine.rb
|
195
307
|
- lib/core/facets/range/overlap.rb
|
196
|
-
- lib/core/facets/range.rb
|
308
|
+
- lib/core/facets/range/combine.rb
|
197
309
|
- lib/core/facets/regexp
|
198
310
|
- lib/core/facets/regexp/arity.rb
|
199
|
-
- lib/core/facets/regexp.rb
|
200
|
-
- lib/core/facets/stackable.rb
|
201
311
|
- lib/core/facets/string
|
202
|
-
- lib/core/facets/string/
|
203
|
-
- lib/core/facets/string/
|
204
|
-
- lib/core/facets/string/
|
205
|
-
- lib/core/facets/string/
|
206
|
-
- lib/core/facets/string/crypt.rb
|
312
|
+
- lib/core/facets/string/splice.rb
|
313
|
+
- lib/core/facets/string/nchar.rb
|
314
|
+
- lib/core/facets/string/interpolate.rb
|
315
|
+
- lib/core/facets/string/scan.rb
|
207
316
|
- lib/core/facets/string/filter.rb
|
208
317
|
- lib/core/facets/string/format.rb
|
209
|
-
- lib/core/facets/string/
|
210
|
-
- lib/core/facets/string/interpolate.rb
|
211
|
-
- lib/core/facets/string/natcmp.rb
|
212
|
-
- lib/core/facets/string/nchar.rb
|
318
|
+
- lib/core/facets/string/blank.rb
|
213
319
|
- lib/core/facets/string/partitions.rb
|
214
|
-
- lib/core/facets/string/range.rb
|
215
|
-
- lib/core/facets/string/regesc.rb
|
216
|
-
- lib/core/facets/string/scan.rb
|
217
|
-
- lib/core/facets/string/splice.rb
|
218
320
|
- lib/core/facets/string/stackable.rb
|
219
321
|
- lib/core/facets/string/tabs.rb
|
220
|
-
- lib/core/facets/string.rb
|
322
|
+
- lib/core/facets/string/align.rb
|
323
|
+
- lib/core/facets/string/indexable.rb
|
324
|
+
- lib/core/facets/string/range.rb
|
325
|
+
- lib/core/facets/string/regesc.rb
|
326
|
+
- lib/core/facets/string/crypt.rb
|
327
|
+
- lib/core/facets/string/bracket.rb
|
328
|
+
- lib/core/facets/string/case.rb
|
329
|
+
- lib/core/facets/string/natcmp.rb
|
221
330
|
- lib/core/facets/symbol
|
222
|
-
- lib/core/facets/symbol/
|
223
|
-
- lib/core/facets/symbol/generate.rb
|
224
|
-
- lib/core/facets/symbol/not.rb
|
331
|
+
- lib/core/facets/symbol/to_proc.rb
|
225
332
|
- lib/core/facets/symbol/shadow.rb
|
226
333
|
- lib/core/facets/symbol/succ.rb
|
227
|
-
- lib/core/facets/symbol/
|
228
|
-
- lib/core/facets/symbol.rb
|
334
|
+
- lib/core/facets/symbol/not.rb
|
335
|
+
- lib/core/facets/symbol/generate.rb
|
336
|
+
- lib/core/facets/symbol/chomp.rb
|
229
337
|
- lib/core/facets/time
|
230
338
|
- lib/core/facets/time/change.rb
|
231
339
|
- lib/core/facets/time/elapse.rb
|
232
|
-
- lib/core/facets/time.rb
|
233
340
|
- lib/core/facets/unboundmethod
|
234
341
|
- lib/core/facets/unboundmethod/arguments.rb
|
235
342
|
- lib/core/facets/unboundmethod/name.rb
|
343
|
+
- lib/core/facets/comparable.rb
|
344
|
+
- lib/core/facets/binding.rb
|
345
|
+
- lib/core/facets/array.rb
|
346
|
+
- lib/core/facets/integer.rb
|
347
|
+
- lib/core/facets/class.rb
|
348
|
+
- lib/core/facets/float.rb
|
349
|
+
- lib/core/facets/1stclassmethod.rb
|
350
|
+
- lib/core/facets/enumerable.rb
|
351
|
+
- lib/core/facets/filetest.rb
|
352
|
+
- lib/core/facets/file.rb
|
353
|
+
- lib/core/facets/string.rb
|
354
|
+
- lib/core/facets/hash.rb
|
236
355
|
- lib/core/facets/unboundmethod.rb
|
356
|
+
- lib/core/facets/symbol.rb
|
357
|
+
- lib/core/facets/continuation.rb
|
358
|
+
- lib/core/facets/nilclass.rb
|
359
|
+
- lib/core/facets/module.rb
|
360
|
+
- lib/core/facets/kernel.rb
|
361
|
+
- lib/core/facets/matchdata.rb
|
362
|
+
- lib/core/facets/dir.rb
|
363
|
+
- lib/core/facets/boolean.rb
|
364
|
+
- lib/core/facets/numeric.rb
|
365
|
+
- lib/core/facets/proc.rb
|
366
|
+
- lib/core/facets/range.rb
|
367
|
+
- lib/core/facets/regexp.rb
|
368
|
+
- lib/core/facets/time.rb
|
369
|
+
- lib/core/facets/conversion.rb
|
370
|
+
- lib/core/facets/functor.rb
|
371
|
+
- lib/core/facets/indexable.rb
|
372
|
+
- lib/core/facets/stackable.rb
|
373
|
+
- lib/core/facets/exception
|
374
|
+
- lib/core/facets/exception/detail.rb
|
375
|
+
- lib/core/facets/main.rb
|
376
|
+
- lib/core/facets/exception.rb
|
237
377
|
- lib/core/facets.rb
|
238
378
|
- lib/methods
|
239
379
|
- lib/methods/facets
|
240
380
|
- lib/methods/facets/array
|
241
|
-
- lib/methods/facets/array/
|
381
|
+
- lib/methods/facets/array/join_sentence.rb
|
382
|
+
- lib/methods/facets/array/store.rb
|
242
383
|
- lib/methods/facets/array/delete_unless.rb
|
243
|
-
- lib/methods/facets/array/delete_values.rb
|
244
384
|
- lib/methods/facets/array/delete_values_at.rb
|
245
|
-
- lib/methods/facets/array/
|
385
|
+
- lib/methods/facets/array/delete_values.rb
|
386
|
+
- lib/methods/facets/array/pull.rb
|
387
|
+
- lib/methods/facets/array/poke.rb
|
246
388
|
- lib/methods/facets/array/first.rb
|
247
|
-
- lib/methods/facets/array/join_sentence.rb
|
248
389
|
- lib/methods/facets/array/last.rb
|
249
|
-
- lib/methods/facets/array/poke.rb
|
250
|
-
- lib/methods/facets/array/pull.rb
|
251
|
-
- lib/methods/facets/array/store.rb
|
252
390
|
- lib/methods/facets/array/to_b.rb
|
253
391
|
- lib/methods/facets/array/to_h.rb
|
254
392
|
- lib/methods/facets/array/to_path.rb
|
393
|
+
- lib/methods/facets/array/contains.rb
|
394
|
+
- lib/methods/facets/array/each_iteration.rb
|
395
|
+
- lib/methods/facets/kernel
|
396
|
+
- lib/methods/facets/kernel/here.rb
|
397
|
+
- lib/methods/facets/kernel/bitmask.rb
|
398
|
+
- lib/methods/facets/kernel/call_stack.rb
|
399
|
+
- lib/methods/facets/kernel/__callee__.rb
|
400
|
+
- lib/methods/facets/kernel/pp_call_stack.rb
|
401
|
+
- lib/methods/facets/kernel/__method__.rb
|
402
|
+
- lib/methods/facets/kernel/callee.rb
|
403
|
+
- lib/methods/facets/kernel/called.rb
|
404
|
+
- lib/methods/facets/kernel/superior.rb
|
405
|
+
- lib/methods/facets/kernel/__real__.rb
|
406
|
+
- lib/methods/facets/kernel/super_at.rb
|
407
|
+
- lib/methods/facets/kernel/supermethod.rb
|
408
|
+
- lib/methods/facets/kernel/send_as.rb
|
409
|
+
- lib/methods/facets/kernel/as.rb
|
410
|
+
- lib/methods/facets/kernel/super_method.rb
|
411
|
+
- lib/methods/facets/kernel/in.rb
|
412
|
+
- lib/methods/facets/kernel/eigenclass.rb
|
413
|
+
- lib/methods/facets/kernel/meta_eval.rb
|
414
|
+
- lib/methods/facets/kernel/meta.rb
|
415
|
+
- lib/methods/facets/kernel/qua_class.rb
|
416
|
+
- lib/methods/facets/kernel/metaclass.rb
|
417
|
+
- lib/methods/facets/kernel/meta_class.rb
|
418
|
+
- lib/methods/facets/kernel/singleton.rb
|
419
|
+
- lib/methods/facets/kernel/__singleton_class__.rb
|
420
|
+
- lib/methods/facets/kernel/class_def.rb
|
421
|
+
- lib/methods/facets/kernel/meta_alias.rb
|
422
|
+
- lib/methods/facets/kernel/singleton_class.rb
|
423
|
+
- lib/methods/facets/kernel/meta_def.rb
|
424
|
+
- lib/methods/facets/kernel/__assign__.rb
|
425
|
+
- lib/methods/facets/kernel/instance_assume.rb
|
426
|
+
- lib/methods/facets/kernel/instance_send.rb
|
427
|
+
- lib/methods/facets/kernel/assign_from.rb
|
428
|
+
- lib/methods/facets/kernel/instance_exec.rb
|
429
|
+
- lib/methods/facets/kernel/__set__.rb
|
430
|
+
- lib/methods/facets/kernel/instance_assign.rb
|
431
|
+
- lib/methods/facets/kernel/instance_values.rb
|
432
|
+
- lib/methods/facets/kernel/__get__.rb
|
433
|
+
- lib/methods/facets/kernel/instance_class.rb
|
434
|
+
- lib/methods/facets/kernel/assign_with.rb
|
435
|
+
- lib/methods/facets/kernel/complete.rb
|
436
|
+
- lib/methods/facets/kernel/with.rb
|
437
|
+
- lib/methods/facets/kernel/returning.rb
|
438
|
+
- lib/methods/facets/kernel/object_hexid.rb
|
439
|
+
- lib/methods/facets/kernel/object_clone.rb
|
440
|
+
- lib/methods/facets/kernel/__class__.rb
|
441
|
+
- lib/methods/facets/kernel/object_dup.rb
|
442
|
+
- lib/methods/facets/kernel/object_send.rb
|
443
|
+
- lib/methods/facets/kernel/object_class.rb
|
444
|
+
- lib/methods/facets/kernel/deep_clone.rb
|
445
|
+
- lib/methods/facets/kernel/copy.rb
|
446
|
+
- lib/methods/facets/kernel/deep_copy.rb
|
447
|
+
- lib/methods/facets/kernel/set_from.rb
|
448
|
+
- lib/methods/facets/kernel/set_with.rb
|
449
|
+
- lib/methods/facets/kernel/__DIR__.rb
|
450
|
+
- lib/methods/facets/kernel/load_local.rb
|
451
|
+
- lib/methods/facets/kernel/require_all.rb
|
452
|
+
- lib/methods/facets/kernel/require_local.rb
|
453
|
+
- lib/methods/facets/kernel/silence_stream.rb
|
454
|
+
- lib/methods/facets/kernel/suppress.rb
|
455
|
+
- lib/methods/facets/kernel/silence_stderr.rb
|
456
|
+
- lib/methods/facets/kernel/enable_warnings.rb
|
457
|
+
- lib/methods/facets/kernel/silence_warnings.rb
|
458
|
+
- lib/methods/facets/kernel/p.rb
|
459
|
+
- lib/methods/facets/kernel/demo.rb
|
460
|
+
- lib/methods/facets/kernel/pp_exception.rb
|
461
|
+
- lib/methods/facets/kernel/warn_with_line.rb
|
462
|
+
- lib/methods/facets/kernel/d.rb
|
463
|
+
- lib/methods/facets/kernel/is.rb
|
464
|
+
- lib/methods/facets/kernel/fn.rb
|
465
|
+
- lib/methods/facets/kernel/resc.rb
|
466
|
+
- lib/methods/facets/kernel/method.rb
|
467
|
+
- lib/methods/facets/kernel/this.rb
|
468
|
+
- lib/methods/facets/kernel/bool.rb
|
469
|
+
- lib/methods/facets/kernel/to_b.rb
|
470
|
+
- lib/methods/facets/kernel/false.rb
|
471
|
+
- lib/methods/facets/kernel/true.rb
|
472
|
+
- lib/methods/facets/kernel/not_nil.rb
|
255
473
|
- lib/methods/facets/binding
|
474
|
+
- lib/methods/facets/binding/self.rb
|
475
|
+
- lib/methods/facets/binding/defined.rb
|
476
|
+
- lib/methods/facets/binding/call_stack.rb
|
477
|
+
- lib/methods/facets/binding/caller.rb
|
256
478
|
- lib/methods/facets/binding/__DIR__.rb
|
479
|
+
- lib/methods/facets/binding/methodname.rb
|
257
480
|
- lib/methods/facets/binding/__FILE__.rb
|
258
|
-
- lib/methods/facets/binding/__LINE__.rb
|
259
|
-
- lib/methods/facets/binding/call_stack.rb
|
260
481
|
- lib/methods/facets/binding/called.rb
|
261
|
-
- lib/methods/facets/binding/
|
262
|
-
- lib/methods/facets/binding/defined.rb
|
482
|
+
- lib/methods/facets/binding/__LINE__.rb
|
263
483
|
- lib/methods/facets/binding/included.rb
|
264
|
-
- lib/methods/facets/binding/local_variables.rb
|
265
|
-
- lib/methods/facets/binding/methodname.rb
|
266
484
|
- lib/methods/facets/binding/op_fetch.rb
|
267
|
-
- lib/methods/facets/binding/
|
485
|
+
- lib/methods/facets/binding/local_variables.rb
|
268
486
|
- lib/methods/facets/class
|
487
|
+
- lib/methods/facets/class/subclasses.rb
|
488
|
+
- lib/methods/facets/class/remove_subclasses.rb
|
489
|
+
- lib/methods/facets/class/remove_descendents.rb
|
269
490
|
- lib/methods/facets/class/cattr.rb
|
491
|
+
- lib/methods/facets/class/mattr_accessor.rb
|
492
|
+
- lib/methods/facets/class/mattr.rb
|
270
493
|
- lib/methods/facets/class/cattr_accessor.rb
|
271
494
|
- lib/methods/facets/class/cattr_reader.rb
|
495
|
+
- lib/methods/facets/class/mattr_writer.rb
|
272
496
|
- lib/methods/facets/class/cattr_writer.rb
|
273
|
-
- lib/methods/facets/class/class_load.rb
|
274
|
-
- lib/methods/facets/class/class_require.rb
|
275
|
-
- lib/methods/facets/class/mattr.rb
|
276
|
-
- lib/methods/facets/class/mattr_accessor.rb
|
277
497
|
- lib/methods/facets/class/mattr_reader.rb
|
278
|
-
- lib/methods/facets/class/
|
279
|
-
- lib/methods/facets/class/
|
280
|
-
- lib/methods/facets/class/remove_subclasses.rb
|
281
|
-
- lib/methods/facets/class/subclasses.rb
|
498
|
+
- lib/methods/facets/class/class_require.rb
|
499
|
+
- lib/methods/facets/class/class_load.rb
|
282
500
|
- lib/methods/facets/class/to_proc.rb
|
283
|
-
- lib/methods/facets/
|
284
|
-
- lib/methods/facets/
|
285
|
-
- lib/methods/facets/
|
286
|
-
- lib/methods/facets/
|
287
|
-
- lib/methods/facets/
|
288
|
-
- lib/methods/facets/
|
289
|
-
- lib/methods/facets/
|
290
|
-
- lib/methods/facets/
|
291
|
-
- lib/methods/facets/
|
292
|
-
- lib/methods/facets/
|
293
|
-
- lib/methods/facets/
|
294
|
-
- lib/methods/facets/
|
295
|
-
- lib/methods/facets/
|
296
|
-
- lib/methods/facets/
|
297
|
-
- lib/methods/facets/
|
298
|
-
- lib/methods/facets/
|
299
|
-
- lib/methods/facets/
|
300
|
-
- lib/methods/facets/
|
301
|
-
- lib/methods/facets/
|
302
|
-
- lib/methods/facets/
|
303
|
-
- lib/methods/facets/
|
304
|
-
- lib/methods/facets/
|
305
|
-
- lib/methods/facets/
|
306
|
-
- lib/methods/facets/
|
307
|
-
- lib/methods/facets/
|
308
|
-
- lib/methods/facets/
|
309
|
-
- lib/methods/facets/
|
310
|
-
- lib/methods/facets/
|
311
|
-
- lib/methods/facets/
|
312
|
-
- lib/methods/facets/
|
313
|
-
- lib/methods/facets/
|
314
|
-
- lib/methods/facets/
|
315
|
-
- lib/methods/facets/
|
316
|
-
- lib/methods/facets/
|
317
|
-
- lib/methods/facets/
|
318
|
-
- lib/methods/facets/
|
319
|
-
- lib/methods/facets/
|
320
|
-
- lib/methods/facets/
|
321
|
-
- lib/methods/facets/
|
322
|
-
- lib/methods/facets/
|
323
|
-
- lib/methods/facets/
|
324
|
-
- lib/methods/facets/
|
325
|
-
- lib/methods/facets/
|
326
|
-
- lib/methods/facets/
|
327
|
-
- lib/methods/facets/
|
328
|
-
- lib/methods/facets/
|
329
|
-
- lib/methods/facets/
|
330
|
-
- lib/methods/facets/
|
331
|
-
- lib/methods/facets/
|
332
|
-
- lib/methods/facets/
|
333
|
-
- lib/methods/facets/
|
334
|
-
- lib/methods/facets/
|
335
|
-
- lib/methods/facets/
|
336
|
-
- lib/methods/facets/
|
337
|
-
- lib/methods/facets/
|
338
|
-
- lib/methods/facets/
|
339
|
-
- lib/methods/facets/
|
340
|
-
- lib/methods/facets/
|
341
|
-
- lib/methods/facets/
|
342
|
-
- lib/methods/facets/
|
343
|
-
- lib/methods/facets/
|
344
|
-
- lib/methods/facets/
|
345
|
-
- lib/methods/facets/
|
346
|
-
- lib/methods/facets/
|
347
|
-
- lib/methods/facets/
|
348
|
-
- lib/methods/facets/
|
349
|
-
- lib/methods/facets/
|
350
|
-
- lib/methods/facets/
|
351
|
-
- lib/methods/facets/
|
352
|
-
- lib/methods/facets/
|
353
|
-
- lib/methods/facets/
|
354
|
-
- lib/methods/facets/
|
355
|
-
- lib/methods/facets/
|
356
|
-
- lib/methods/facets/
|
357
|
-
- lib/methods/facets/
|
358
|
-
- lib/methods/facets/
|
359
|
-
- lib/methods/facets/
|
360
|
-
- lib/methods/facets/
|
501
|
+
- lib/methods/facets/numeric
|
502
|
+
- lib/methods/facets/numeric/distance.rb
|
503
|
+
- lib/methods/facets/numeric/succ.rb
|
504
|
+
- lib/methods/facets/numeric/pred.rb
|
505
|
+
- lib/methods/facets/numeric/round_to.rb
|
506
|
+
- lib/methods/facets/numeric/round_at.rb
|
507
|
+
- lib/methods/facets/numeric/approx.rb
|
508
|
+
- lib/methods/facets/numeric/to_b.rb
|
509
|
+
- lib/methods/facets/string
|
510
|
+
- lib/methods/facets/string/succ.rb
|
511
|
+
- lib/methods/facets/string/cmp.rb
|
512
|
+
- lib/methods/facets/string/store.rb
|
513
|
+
- lib/methods/facets/string/lchomp.rb
|
514
|
+
- lib/methods/facets/string/ends_with.rb
|
515
|
+
- lib/methods/facets/string/starts_with.rb
|
516
|
+
- lib/methods/facets/string/format.rb
|
517
|
+
- lib/methods/facets/string/sprintf.rb
|
518
|
+
- lib/methods/facets/string/mscan.rb
|
519
|
+
- lib/methods/facets/string/divide.rb
|
520
|
+
- lib/methods/facets/string/shatter.rb
|
521
|
+
- lib/methods/facets/string/word_filter.rb
|
522
|
+
- lib/methods/facets/string/rewrite.rb
|
523
|
+
- lib/methods/facets/string/cleave.rb
|
524
|
+
- lib/methods/facets/string/word_wrap.rb
|
525
|
+
- lib/methods/facets/string/brief.rb
|
526
|
+
- lib/methods/facets/string/fold.rb
|
527
|
+
- lib/methods/facets/string/line_wrap.rb
|
528
|
+
- lib/methods/facets/string/whitespace.rb
|
529
|
+
- lib/methods/facets/string/each_character.rb
|
530
|
+
- lib/methods/facets/string/bytes.rb
|
531
|
+
- lib/methods/facets/string/words.rb
|
532
|
+
- lib/methods/facets/string/each_word.rb
|
533
|
+
- lib/methods/facets/string/lines.rb
|
534
|
+
- lib/methods/facets/string/each_char.rb
|
535
|
+
- lib/methods/facets/string/chars.rb
|
536
|
+
- lib/methods/facets/string/push.rb
|
537
|
+
- lib/methods/facets/string/peek.rb
|
538
|
+
- lib/methods/facets/string/unshift.rb
|
539
|
+
- lib/methods/facets/string/pull.rb
|
540
|
+
- lib/methods/facets/string/shift.rb
|
541
|
+
- lib/methods/facets/string/poke.rb
|
542
|
+
- lib/methods/facets/string/pop.rb
|
543
|
+
- lib/methods/facets/string/tabto.rb
|
544
|
+
- lib/methods/facets/string/tab.rb
|
545
|
+
- lib/methods/facets/string/margin.rb
|
546
|
+
- lib/methods/facets/string/indent.rb
|
547
|
+
- lib/methods/facets/string/align_right.rb
|
548
|
+
- lib/methods/facets/string/align_center.rb
|
549
|
+
- lib/methods/facets/string/align_left.rb
|
550
|
+
- lib/methods/facets/string/first.rb
|
551
|
+
- lib/methods/facets/string/at.rb
|
552
|
+
- lib/methods/facets/string/last.rb
|
553
|
+
- lib/methods/facets/string/index_all.rb
|
554
|
+
- lib/methods/facets/string/range_of_line.rb
|
555
|
+
- lib/methods/facets/string/range_all.rb
|
556
|
+
- lib/methods/facets/string/_crypt.rb
|
557
|
+
- lib/methods/facets/string/unbracket.rb
|
558
|
+
- lib/methods/facets/string/dequote.rb
|
559
|
+
- lib/methods/facets/string/quote.rb
|
560
|
+
- lib/methods/facets/string/upcase.rb
|
561
|
+
- lib/methods/facets/string/downcase.rb
|
562
|
+
- lib/methods/facets/string/uppercase.rb
|
563
|
+
- lib/methods/facets/string/capitalized.rb
|
564
|
+
- lib/methods/facets/string/lowercase.rb
|
565
|
+
- lib/methods/facets/string/to_b.rb
|
566
|
+
- lib/methods/facets/string/to_rx.rb
|
567
|
+
- lib/methods/facets/string/to_time.rb
|
568
|
+
- lib/methods/facets/string/to_date.rb
|
569
|
+
- lib/methods/facets/string/to_re.rb
|
570
|
+
- lib/methods/facets/string/to_const.rb
|
571
|
+
- lib/methods/facets/string/to_proc.rb
|
572
|
+
- lib/methods/facets/string/expand_tabs.rb
|
573
|
+
- lib/methods/facets/string/outdent.rb
|
574
|
+
- lib/methods/facets/string/taballto.rb
|
575
|
+
- lib/methods/facets/string/titlecase.rb
|
576
|
+
- lib/methods/facets/comparable
|
577
|
+
- lib/methods/facets/comparable/cap.rb
|
578
|
+
- lib/methods/facets/comparable/clip.rb
|
579
|
+
- lib/methods/facets/comparable/at_most.rb
|
580
|
+
- lib/methods/facets/comparable/at_least.rb
|
581
|
+
- lib/methods/facets/dir
|
582
|
+
- lib/methods/facets/dir/multiglob_with_default.rb
|
583
|
+
- lib/methods/facets/dir/multiglob_r.rb
|
584
|
+
- lib/methods/facets/dir/ascend.rb
|
585
|
+
- lib/methods/facets/dir/ancestor.rb
|
586
|
+
- lib/methods/facets/dir/descend.rb
|
587
|
+
- lib/methods/facets/dir/parent.rb
|
588
|
+
- lib/methods/facets/dir/ls_r.rb
|
589
|
+
- lib/methods/facets/dir/recurse.rb
|
590
|
+
- lib/methods/facets/enumerable
|
591
|
+
- lib/methods/facets/enumerable/cartesian_product.rb
|
592
|
+
- lib/methods/facets/enumerable/op_pow.rb
|
593
|
+
- lib/methods/facets/enumerable/cart.rb
|
594
|
+
- lib/methods/facets/enumerable/combos.rb
|
595
|
+
- lib/methods/facets/enumerable/each_combo.rb
|
596
|
+
- lib/methods/facets/enumerable/each_combination.rb
|
597
|
+
- lib/methods/facets/enumerable/each_unique_pair.rb
|
598
|
+
- lib/methods/facets/enumerable/combinations.rb
|
599
|
+
- lib/methods/facets/enumerable/graph.rb
|
600
|
+
- lib/methods/facets/enumerable/partition_by.rb
|
601
|
+
- lib/methods/facets/enumerable/compact_collect.rb
|
602
|
+
- lib/methods/facets/enumerable/eachn.rb
|
603
|
+
- lib/methods/facets/enumerable/map_with_index.rb
|
604
|
+
- lib/methods/facets/enumerable/each_pair.rb
|
605
|
+
- lib/methods/facets/enumerable/group_by.rb
|
606
|
+
- lib/methods/facets/enumerable/filter_map.rb
|
607
|
+
- lib/methods/facets/enumerable/collect_with_index.rb
|
608
|
+
- lib/methods/facets/enumerable/divide.rb
|
609
|
+
- lib/methods/facets/enumerable/injecting.rb
|
610
|
+
- lib/methods/facets/enumerable/map_if.rb
|
611
|
+
- lib/methods/facets/enumerable/cluster_by.rb
|
612
|
+
- lib/methods/facets/enumerable/compact_map.rb
|
613
|
+
- lib/methods/facets/enumerable/collect_if.rb
|
614
|
+
- lib/methods/facets/enumerable/filter_collect.rb
|
615
|
+
- lib/methods/facets/enumerable/each_by.rb
|
616
|
+
- lib/methods/facets/enumerable/each_permutation.rb
|
617
|
+
- lib/methods/facets/enumerable/permute.rb
|
618
|
+
- lib/methods/facets/enumerable/permutation_number.rb
|
619
|
+
- lib/methods/facets/enumerable/nonuniq.rb
|
620
|
+
- lib/methods/facets/enumerable/duplicates.rb
|
621
|
+
- lib/methods/facets/enumerable/none.rb
|
622
|
+
- lib/methods/facets/enumerable/occur.rb
|
623
|
+
- lib/methods/facets/enumerable/sum.rb
|
624
|
+
- lib/methods/facets/enumerable/one.rb
|
625
|
+
- lib/methods/facets/enumerable/uniq_by.rb
|
626
|
+
- lib/methods/facets/enumerable/ideal_entropy.rb
|
627
|
+
- lib/methods/facets/enumerable/commonality.rb
|
628
|
+
- lib/methods/facets/enumerable/frequency.rb
|
629
|
+
- lib/methods/facets/enumerable/entropy.rb
|
630
|
+
- lib/methods/facets/enumerable/mode.rb
|
631
|
+
- lib/methods/facets/enumerable/to_h.rb
|
632
|
+
- lib/methods/facets/enumerable/to_hash.rb
|
361
633
|
- lib/methods/facets/hash
|
362
|
-
- lib/methods/facets/hash/
|
363
|
-
- lib/methods/facets/hash/autonew.rb
|
634
|
+
- lib/methods/facets/hash/graph.rb
|
364
635
|
- lib/methods/facets/hash/collate.rb
|
365
|
-
- lib/methods/facets/hash/
|
366
|
-
- lib/methods/facets/hash/delete_unless.rb
|
367
|
-
- lib/methods/facets/hash/delete_values.rb
|
368
|
-
- lib/methods/facets/hash/delete_values_at.rb
|
369
|
-
- lib/methods/facets/hash/diff.rb
|
370
|
-
- lib/methods/facets/hash/each_with_index.rb
|
636
|
+
- lib/methods/facets/hash/pairs_at.rb
|
371
637
|
- lib/methods/facets/hash/each_with_key.rb
|
372
|
-
- lib/methods/facets/hash/
|
373
|
-
- lib/methods/facets/hash/
|
374
|
-
- lib/methods/facets/hash/
|
375
|
-
- lib/methods/facets/hash/keys_to_s.rb
|
376
|
-
- lib/methods/facets/hash/keys_to_sym.rb
|
638
|
+
- lib/methods/facets/hash/each_with_index.rb
|
639
|
+
- lib/methods/facets/hash/reverse_merge.rb
|
640
|
+
- lib/methods/facets/hash/reverse_update.rb
|
377
641
|
- lib/methods/facets/hash/normalize_keys.rb
|
378
|
-
- lib/methods/facets/hash/
|
379
|
-
- lib/methods/facets/hash/
|
380
|
-
- lib/methods/facets/hash/
|
642
|
+
- lib/methods/facets/hash/keys_to_sym.rb
|
643
|
+
- lib/methods/facets/hash/keys_to_s.rb
|
644
|
+
- lib/methods/facets/hash/variablize_keys.rb
|
645
|
+
- lib/methods/facets/hash/symbolize_keys.rb
|
646
|
+
- lib/methods/facets/hash/stringify_keys.rb
|
381
647
|
- lib/methods/facets/hash/op_minus.rb
|
382
|
-
- lib/methods/facets/hash/op_mul.rb
|
383
648
|
- lib/methods/facets/hash/op_or.rb
|
649
|
+
- lib/methods/facets/hash/op_lshift.rb
|
650
|
+
- lib/methods/facets/hash/op_and.rb
|
651
|
+
- lib/methods/facets/hash/op_mul.rb
|
652
|
+
- lib/methods/facets/hash/diff.rb
|
384
653
|
- lib/methods/facets/hash/op_plus.rb
|
385
|
-
- lib/methods/facets/hash/
|
386
|
-
- lib/methods/facets/hash/replace_each.rb
|
387
|
-
- lib/methods/facets/hash/reverse_merge.rb
|
388
|
-
- lib/methods/facets/hash/reverse_update.rb
|
389
|
-
- lib/methods/facets/hash/stringify_keys.rb
|
654
|
+
- lib/methods/facets/hash/alias.rb
|
390
655
|
- lib/methods/facets/hash/swap.rb
|
391
656
|
- lib/methods/facets/hash/swapkey.rb
|
392
|
-
- lib/methods/facets/hash/
|
393
|
-
- lib/methods/facets/hash/
|
394
|
-
- lib/methods/facets/hash/
|
395
|
-
- lib/methods/facets/hash/
|
396
|
-
- lib/methods/facets/hash/to_struct.rb
|
397
|
-
- lib/methods/facets/hash/update_each.rb
|
657
|
+
- lib/methods/facets/hash/delete_unless.rb
|
658
|
+
- lib/methods/facets/hash/delete_values_at.rb
|
659
|
+
- lib/methods/facets/hash/delete_values.rb
|
660
|
+
- lib/methods/facets/hash/delete_at.rb
|
398
661
|
- lib/methods/facets/hash/update_keys.rb
|
662
|
+
- lib/methods/facets/hash/update_each.rb
|
663
|
+
- lib/methods/facets/hash/replace_each.rb
|
399
664
|
- lib/methods/facets/hash/update_values.rb
|
400
|
-
- lib/methods/facets/hash/
|
665
|
+
- lib/methods/facets/hash/op_div.rb
|
666
|
+
- lib/methods/facets/hash/has_only_keys.rb
|
401
667
|
- lib/methods/facets/hash/zipnew.rb
|
668
|
+
- lib/methods/facets/hash/autonew.rb
|
669
|
+
- lib/methods/facets/hash/join.rb
|
670
|
+
- lib/methods/facets/hash/to_h.rb
|
671
|
+
- lib/methods/facets/hash/to_struct.rb
|
672
|
+
- lib/methods/facets/hash/to_proc_with_reponse.rb
|
673
|
+
- lib/methods/facets/hash/to_proc.rb
|
674
|
+
- lib/methods/facets/file
|
675
|
+
- lib/methods/facets/file/sanitize.rb
|
676
|
+
- lib/methods/facets/file/split_all.rb
|
677
|
+
- lib/methods/facets/file/rootname.rb
|
678
|
+
- lib/methods/facets/file/null.rb
|
679
|
+
- lib/methods/facets/file/read_binary.rb
|
680
|
+
- lib/methods/facets/file/read_list.rb
|
681
|
+
- lib/methods/facets/file/create.rb
|
682
|
+
- lib/methods/facets/file/rewrite.rb
|
683
|
+
- lib/methods/facets/file/append.rb
|
684
|
+
- lib/methods/facets/file/writelines.rb
|
685
|
+
- lib/methods/facets/filetest
|
686
|
+
- lib/methods/facets/filetest/root.rb
|
402
687
|
- lib/methods/facets/integer
|
403
|
-
- lib/methods/facets/integer/
|
688
|
+
- lib/methods/facets/integer/odd.rb
|
689
|
+
- lib/methods/facets/integer/multiple.rb
|
690
|
+
- lib/methods/facets/integer/even.rb
|
691
|
+
- lib/methods/facets/integer/fact.rb
|
692
|
+
- lib/methods/facets/integer/fac.rb
|
693
|
+
- lib/methods/facets/integer/times_map.rb
|
694
|
+
- lib/methods/facets/integer/times_collect.rb
|
695
|
+
- lib/methods/facets/integer/test_bit.rb
|
404
696
|
- lib/methods/facets/integer/bit_set.rb
|
697
|
+
- lib/methods/facets/integer/test_bitmask.rb
|
405
698
|
- lib/methods/facets/integer/clear_bit.rb
|
406
699
|
- lib/methods/facets/integer/clear_bitmask.rb
|
407
|
-
- lib/methods/facets/integer/even.rb
|
408
|
-
- lib/methods/facets/integer/fac.rb
|
409
|
-
- lib/methods/facets/integer/fact.rb
|
410
|
-
- lib/methods/facets/integer/multiple.rb
|
411
|
-
- lib/methods/facets/integer/odd.rb
|
412
|
-
- lib/methods/facets/integer/round_at.rb
|
413
|
-
- lib/methods/facets/integer/round_to.rb
|
414
700
|
- lib/methods/facets/integer/set_bit.rb
|
701
|
+
- lib/methods/facets/integer/bit.rb
|
415
702
|
- lib/methods/facets/integer/set_bitmask.rb
|
416
|
-
- lib/methods/facets/integer/
|
417
|
-
- lib/methods/facets/integer/
|
418
|
-
- lib/methods/facets/
|
419
|
-
- lib/methods/facets/
|
420
|
-
- lib/methods/facets/
|
421
|
-
- lib/methods/facets/
|
422
|
-
- lib/methods/facets/
|
423
|
-
- lib/methods/facets/kernel/__DIR__.rb
|
424
|
-
- lib/methods/facets/kernel/__assign__.rb
|
425
|
-
- lib/methods/facets/kernel/__callee__.rb
|
426
|
-
- lib/methods/facets/kernel/__class__.rb
|
427
|
-
- lib/methods/facets/kernel/__get__.rb
|
428
|
-
- lib/methods/facets/kernel/__method__.rb
|
429
|
-
- lib/methods/facets/kernel/__real__.rb
|
430
|
-
- lib/methods/facets/kernel/__set__.rb
|
431
|
-
- lib/methods/facets/kernel/__singleton_class__.rb
|
432
|
-
- lib/methods/facets/kernel/as.rb
|
433
|
-
- lib/methods/facets/kernel/assign_from.rb
|
434
|
-
- lib/methods/facets/kernel/assign_with.rb
|
435
|
-
- lib/methods/facets/kernel/bitmask.rb
|
436
|
-
- lib/methods/facets/kernel/bool.rb
|
437
|
-
- lib/methods/facets/kernel/call_stack.rb
|
438
|
-
- lib/methods/facets/kernel/called.rb
|
439
|
-
- lib/methods/facets/kernel/callee.rb
|
440
|
-
- lib/methods/facets/kernel/class_def.rb
|
441
|
-
- lib/methods/facets/kernel/complete.rb
|
442
|
-
- lib/methods/facets/kernel/copy.rb
|
443
|
-
- lib/methods/facets/kernel/d.rb
|
444
|
-
- lib/methods/facets/kernel/deep_clone.rb
|
445
|
-
- lib/methods/facets/kernel/deep_copy.rb
|
446
|
-
- lib/methods/facets/kernel/demo.rb
|
447
|
-
- lib/methods/facets/kernel/eigenclass.rb
|
448
|
-
- lib/methods/facets/kernel/enable_warnings.rb
|
449
|
-
- lib/methods/facets/kernel/false.rb
|
450
|
-
- lib/methods/facets/kernel/fn.rb
|
451
|
-
- lib/methods/facets/kernel/here.rb
|
452
|
-
- lib/methods/facets/kernel/in.rb
|
453
|
-
- lib/methods/facets/kernel/instance_assign.rb
|
454
|
-
- lib/methods/facets/kernel/instance_assume.rb
|
455
|
-
- lib/methods/facets/kernel/instance_class.rb
|
456
|
-
- lib/methods/facets/kernel/instance_exec.rb
|
457
|
-
- lib/methods/facets/kernel/instance_send.rb
|
458
|
-
- lib/methods/facets/kernel/instance_values.rb
|
459
|
-
- lib/methods/facets/kernel/is.rb
|
460
|
-
- lib/methods/facets/kernel/load_local.rb
|
461
|
-
- lib/methods/facets/kernel/meta.rb
|
462
|
-
- lib/methods/facets/kernel/meta_alias.rb
|
463
|
-
- lib/methods/facets/kernel/meta_class.rb
|
464
|
-
- lib/methods/facets/kernel/meta_def.rb
|
465
|
-
- lib/methods/facets/kernel/meta_eval.rb
|
466
|
-
- lib/methods/facets/kernel/metaclass.rb
|
467
|
-
- lib/methods/facets/kernel/method.rb
|
468
|
-
- lib/methods/facets/kernel/not_nil.rb
|
469
|
-
- lib/methods/facets/kernel/object_class.rb
|
470
|
-
- lib/methods/facets/kernel/object_clone.rb
|
471
|
-
- lib/methods/facets/kernel/object_dup.rb
|
472
|
-
- lib/methods/facets/kernel/object_hexid.rb
|
473
|
-
- lib/methods/facets/kernel/object_send.rb
|
474
|
-
- lib/methods/facets/kernel/p.rb
|
475
|
-
- lib/methods/facets/kernel/pp_call_stack.rb
|
476
|
-
- lib/methods/facets/kernel/pp_exception.rb
|
477
|
-
- lib/methods/facets/kernel/qua_class.rb
|
478
|
-
- lib/methods/facets/kernel/require_all.rb
|
479
|
-
- lib/methods/facets/kernel/require_local.rb
|
480
|
-
- lib/methods/facets/kernel/resc.rb
|
481
|
-
- lib/methods/facets/kernel/returning.rb
|
482
|
-
- lib/methods/facets/kernel/send_as.rb
|
483
|
-
- lib/methods/facets/kernel/set_from.rb
|
484
|
-
- lib/methods/facets/kernel/set_with.rb
|
485
|
-
- lib/methods/facets/kernel/silence_stderr.rb
|
486
|
-
- lib/methods/facets/kernel/silence_stream.rb
|
487
|
-
- lib/methods/facets/kernel/silence_warnings.rb
|
488
|
-
- lib/methods/facets/kernel/singleton.rb
|
489
|
-
- lib/methods/facets/kernel/singleton_class.rb
|
490
|
-
- lib/methods/facets/kernel/super_at.rb
|
491
|
-
- lib/methods/facets/kernel/super_method.rb
|
492
|
-
- lib/methods/facets/kernel/superior.rb
|
493
|
-
- lib/methods/facets/kernel/supermethod.rb
|
494
|
-
- lib/methods/facets/kernel/suppress.rb
|
495
|
-
- lib/methods/facets/kernel/this.rb
|
496
|
-
- lib/methods/facets/kernel/to_b.rb
|
497
|
-
- lib/methods/facets/kernel/true.rb
|
498
|
-
- lib/methods/facets/kernel/warn_with_line.rb
|
499
|
-
- lib/methods/facets/kernel/with.rb
|
703
|
+
- lib/methods/facets/integer/round_to.rb
|
704
|
+
- lib/methods/facets/integer/round_at.rb
|
705
|
+
- lib/methods/facets/object
|
706
|
+
- lib/methods/facets/object/with_writer.rb
|
707
|
+
- lib/methods/facets/object/with_reader.rb
|
708
|
+
- lib/methods/facets/object/with_accessor.rb
|
709
|
+
- lib/methods/facets/object/to_bool.rb
|
500
710
|
- lib/methods/facets/matchdata
|
501
711
|
- lib/methods/facets/matchdata/match.rb
|
502
712
|
- lib/methods/facets/matchdata/matchtree.rb
|
503
713
|
- lib/methods/facets/module
|
504
|
-
- lib/methods/facets/module/
|
505
|
-
- lib/methods/facets/module/alias_method_chain.rb
|
506
|
-
- lib/methods/facets/module/alias_module_function.rb
|
507
|
-
- lib/methods/facets/module/alias_reader.rb
|
508
|
-
- lib/methods/facets/module/alias_setter.rb
|
509
|
-
- lib/methods/facets/module/alias_switcher.rb
|
510
|
-
- lib/methods/facets/module/alias_tester.rb
|
511
|
-
- lib/methods/facets/module/alias_toggler.rb
|
512
|
-
- lib/methods/facets/module/alias_validator.rb
|
513
|
-
- lib/methods/facets/module/alias_writer.rb
|
514
|
-
- lib/methods/facets/module/all_instance_methods.rb
|
714
|
+
- lib/methods/facets/module/include_as.rb
|
515
715
|
- lib/methods/facets/module/ancestor.rb
|
516
|
-
- lib/methods/facets/module/
|
517
|
-
- lib/methods/facets/module/attr_reader.rb
|
518
|
-
- lib/methods/facets/module/attr_setter.rb
|
519
|
-
- lib/methods/facets/module/attr_switcher.rb
|
520
|
-
- lib/methods/facets/module/attr_tester.rb
|
521
|
-
- lib/methods/facets/module/attr_toggler.rb
|
522
|
-
- lib/methods/facets/module/attr_validator.rb
|
523
|
-
- lib/methods/facets/module/attr_writer.rb
|
524
|
-
- lib/methods/facets/module/basename.rb
|
525
|
-
- lib/methods/facets/module/by_name.rb
|
716
|
+
- lib/methods/facets/module/include_function_module.rb
|
526
717
|
- lib/methods/facets/module/can.rb
|
527
718
|
- lib/methods/facets/module/class.rb
|
528
|
-
- lib/methods/facets/module/
|
529
|
-
- lib/methods/facets/module/clone_renaming.rb
|
530
|
-
- lib/methods/facets/module/clone_using.rb
|
531
|
-
- lib/methods/facets/module/conflict.rb
|
532
|
-
- lib/methods/facets/module/dirname.rb
|
719
|
+
- lib/methods/facets/module/on_included.rb
|
533
720
|
- lib/methods/facets/module/include_and_extend.rb
|
534
|
-
- lib/methods/facets/module/include_as.rb
|
535
|
-
- lib/methods/facets/module/include_function_module.rb
|
536
|
-
- lib/methods/facets/module/instance_method.rb
|
537
|
-
- lib/methods/facets/module/instance_method_defined.rb
|
538
|
-
- lib/methods/facets/module/integrate.rb
|
539
721
|
- lib/methods/facets/module/is.rb
|
722
|
+
- lib/methods/facets/module/clone_removing.rb
|
723
|
+
- lib/methods/facets/module/clone_using.rb
|
724
|
+
- lib/methods/facets/module/clone_renaming.rb
|
725
|
+
- lib/methods/facets/module/basename.rb
|
540
726
|
- lib/methods/facets/module/modspace.rb
|
541
|
-
- lib/methods/facets/module/
|
542
|
-
- lib/methods/facets/module/
|
543
|
-
- lib/methods/facets/module/module_method_defined.rb
|
544
|
-
- lib/methods/facets/module/module_require.rb
|
727
|
+
- lib/methods/facets/module/dirname.rb
|
728
|
+
- lib/methods/facets/module/by_name.rb
|
545
729
|
- lib/methods/facets/module/nesting.rb
|
546
|
-
- lib/methods/facets/module/nodef.rb
|
547
|
-
- lib/methods/facets/module/on_included.rb
|
548
730
|
- lib/methods/facets/module/op_minus.rb
|
549
731
|
- lib/methods/facets/module/op_mul.rb
|
550
732
|
- lib/methods/facets/module/op_plus.rb
|
551
|
-
- lib/methods/facets/module/
|
552
|
-
- lib/methods/facets/module/protected_conflict.rb
|
553
|
-
- lib/methods/facets/module/public_conflict.rb
|
554
|
-
- lib/methods/facets/module/redef.rb
|
555
|
-
- lib/methods/facets/module/redefine_method.rb
|
733
|
+
- lib/methods/facets/module/nodef.rb
|
556
734
|
- lib/methods/facets/module/redirect.rb
|
557
|
-
- lib/methods/facets/module/redirect_method.rb
|
558
|
-
- lib/methods/facets/module/remove.rb
|
559
|
-
- lib/methods/facets/module/rename.rb
|
560
|
-
- lib/methods/facets/module/rename_method.rb
|
561
735
|
- lib/methods/facets/module/revisal.rb
|
562
736
|
- lib/methods/facets/module/wrap.rb
|
737
|
+
- lib/methods/facets/module/redef.rb
|
738
|
+
- lib/methods/facets/module/integrate.rb
|
563
739
|
- lib/methods/facets/module/wrap_method.rb
|
564
|
-
- lib/methods/facets/
|
565
|
-
- lib/methods/facets/
|
566
|
-
- lib/methods/facets/
|
567
|
-
- lib/methods/facets/
|
568
|
-
- lib/methods/facets/
|
569
|
-
- lib/methods/facets/
|
570
|
-
- lib/methods/facets/
|
571
|
-
- lib/methods/facets/
|
572
|
-
- lib/methods/facets/
|
573
|
-
- lib/methods/facets/
|
574
|
-
- lib/methods/facets/
|
575
|
-
- lib/methods/facets/
|
576
|
-
- lib/methods/facets/
|
577
|
-
- lib/methods/facets/
|
578
|
-
- lib/methods/facets/
|
579
|
-
- lib/methods/facets/
|
580
|
-
- lib/methods/facets/
|
581
|
-
- lib/methods/facets/
|
740
|
+
- lib/methods/facets/module/remove.rb
|
741
|
+
- lib/methods/facets/module/rename.rb
|
742
|
+
- lib/methods/facets/module/rename_method.rb
|
743
|
+
- lib/methods/facets/module/redefine_method.rb
|
744
|
+
- lib/methods/facets/module/redirect_method.rb
|
745
|
+
- lib/methods/facets/module/alias_accessor.rb
|
746
|
+
- lib/methods/facets/module/alias_method_chain.rb
|
747
|
+
- lib/methods/facets/module/module_method.rb
|
748
|
+
- lib/methods/facets/module/alias_module_function.rb
|
749
|
+
- lib/methods/facets/module/attr_setter.rb
|
750
|
+
- lib/methods/facets/module/attr_validator.rb
|
751
|
+
- lib/methods/facets/module/attr_toggler.rb
|
752
|
+
- lib/methods/facets/module/attr_tester.rb
|
753
|
+
- lib/methods/facets/module/module_load.rb
|
754
|
+
- lib/methods/facets/module/module_require.rb
|
755
|
+
- lib/methods/facets/module/all_instance_methods.rb
|
756
|
+
- lib/methods/facets/module/instance_method.rb
|
757
|
+
- lib/methods/facets/module/public_conflict.rb
|
758
|
+
- lib/methods/facets/module/protected_conflict.rb
|
759
|
+
- lib/methods/facets/module/conflict.rb
|
760
|
+
- lib/methods/facets/module/private_conflict.rb
|
761
|
+
- lib/methods/facets/module/instance_method_defined.rb
|
762
|
+
- lib/methods/facets/module/module_method_defined.rb
|
763
|
+
- lib/methods/facets/module/alias_validator.rb
|
764
|
+
- lib/methods/facets/module/attr_writer.rb
|
765
|
+
- lib/methods/facets/module/alias_writer.rb
|
766
|
+
- lib/methods/facets/module/alias_setter.rb
|
767
|
+
- lib/methods/facets/module/attr_reader.rb
|
768
|
+
- lib/methods/facets/module/attr_accessor.rb
|
769
|
+
- lib/methods/facets/module/alias_reader.rb
|
770
|
+
- lib/methods/facets/module/alias_toggler.rb
|
771
|
+
- lib/methods/facets/module/attr_switcher.rb
|
772
|
+
- lib/methods/facets/module/alias_tester.rb
|
773
|
+
- lib/methods/facets/module/alias_switcher.rb
|
774
|
+
- lib/methods/facets/float
|
775
|
+
- lib/methods/facets/float/round_off.rb
|
776
|
+
- lib/methods/facets/float/round_to.rb
|
777
|
+
- lib/methods/facets/float/round_at.rb
|
582
778
|
- lib/methods/facets/proc
|
779
|
+
- lib/methods/facets/proc/update.rb
|
583
780
|
- lib/methods/facets/proc/op_mul.rb
|
584
|
-
- lib/methods/facets/proc/to_h.rb
|
585
781
|
- lib/methods/facets/proc/to_method.rb
|
586
|
-
- lib/methods/facets/proc/
|
782
|
+
- lib/methods/facets/proc/to_h.rb
|
587
783
|
- lib/methods/facets/range
|
588
|
-
- lib/methods/facets/range/to_r.rb
|
589
|
-
- lib/methods/facets/range/to_range.rb
|
590
784
|
- lib/methods/facets/range/umbrella.rb
|
591
785
|
- lib/methods/facets/range/within.rb
|
592
|
-
- lib/methods/facets/
|
593
|
-
- lib/methods/facets/
|
594
|
-
- lib/methods/facets/regexp/to_regexp.rb
|
595
|
-
- lib/methods/facets/string
|
596
|
-
- lib/methods/facets/string/_crypt.rb
|
597
|
-
- lib/methods/facets/string/align_center.rb
|
598
|
-
- lib/methods/facets/string/align_left.rb
|
599
|
-
- lib/methods/facets/string/align_right.rb
|
600
|
-
- lib/methods/facets/string/at.rb
|
601
|
-
- lib/methods/facets/string/brief.rb
|
602
|
-
- lib/methods/facets/string/bytes.rb
|
603
|
-
- lib/methods/facets/string/capitalized.rb
|
604
|
-
- lib/methods/facets/string/chars.rb
|
605
|
-
- lib/methods/facets/string/cleave.rb
|
606
|
-
- lib/methods/facets/string/cmp.rb
|
607
|
-
- lib/methods/facets/string/dequote.rb
|
608
|
-
- lib/methods/facets/string/divide.rb
|
609
|
-
- lib/methods/facets/string/downcase.rb
|
610
|
-
- lib/methods/facets/string/each_char.rb
|
611
|
-
- lib/methods/facets/string/each_character.rb
|
612
|
-
- lib/methods/facets/string/each_word.rb
|
613
|
-
- lib/methods/facets/string/ends_with.rb
|
614
|
-
- lib/methods/facets/string/expand_tabs.rb
|
615
|
-
- lib/methods/facets/string/first.rb
|
616
|
-
- lib/methods/facets/string/fold.rb
|
617
|
-
- lib/methods/facets/string/format.rb
|
618
|
-
- lib/methods/facets/string/indent.rb
|
619
|
-
- lib/methods/facets/string/index_all.rb
|
620
|
-
- lib/methods/facets/string/last.rb
|
621
|
-
- lib/methods/facets/string/lchomp.rb
|
622
|
-
- lib/methods/facets/string/line_wrap.rb
|
623
|
-
- lib/methods/facets/string/lines.rb
|
624
|
-
- lib/methods/facets/string/lowercase.rb
|
625
|
-
- lib/methods/facets/string/margin.rb
|
626
|
-
- lib/methods/facets/string/mscan.rb
|
627
|
-
- lib/methods/facets/string/outdent.rb
|
628
|
-
- lib/methods/facets/string/peek.rb
|
629
|
-
- lib/methods/facets/string/poke.rb
|
630
|
-
- lib/methods/facets/string/pop.rb
|
631
|
-
- lib/methods/facets/string/pull.rb
|
632
|
-
- lib/methods/facets/string/push.rb
|
633
|
-
- lib/methods/facets/string/quote.rb
|
634
|
-
- lib/methods/facets/string/range_all.rb
|
635
|
-
- lib/methods/facets/string/range_of_line.rb
|
636
|
-
- lib/methods/facets/string/rewrite.rb
|
637
|
-
- lib/methods/facets/string/shatter.rb
|
638
|
-
- lib/methods/facets/string/shift.rb
|
639
|
-
- lib/methods/facets/string/sprintf.rb
|
640
|
-
- lib/methods/facets/string/starts_with.rb
|
641
|
-
- lib/methods/facets/string/store.rb
|
642
|
-
- lib/methods/facets/string/succ.rb
|
643
|
-
- lib/methods/facets/string/tab.rb
|
644
|
-
- lib/methods/facets/string/taballto.rb
|
645
|
-
- lib/methods/facets/string/tabto.rb
|
646
|
-
- lib/methods/facets/string/titlecase.rb
|
647
|
-
- lib/methods/facets/string/to_b.rb
|
648
|
-
- lib/methods/facets/string/to_const.rb
|
649
|
-
- lib/methods/facets/string/to_date.rb
|
650
|
-
- lib/methods/facets/string/to_proc.rb
|
651
|
-
- lib/methods/facets/string/to_re.rb
|
652
|
-
- lib/methods/facets/string/to_rx.rb
|
653
|
-
- lib/methods/facets/string/to_time.rb
|
654
|
-
- lib/methods/facets/string/unbracket.rb
|
655
|
-
- lib/methods/facets/string/unshift.rb
|
656
|
-
- lib/methods/facets/string/upcase.rb
|
657
|
-
- lib/methods/facets/string/uppercase.rb
|
658
|
-
- lib/methods/facets/string/whitespace.rb
|
659
|
-
- lib/methods/facets/string/word_filter.rb
|
660
|
-
- lib/methods/facets/string/word_wrap.rb
|
661
|
-
- lib/methods/facets/string/words.rb
|
786
|
+
- lib/methods/facets/range/to_r.rb
|
787
|
+
- lib/methods/facets/range/to_range.rb
|
662
788
|
- lib/methods/facets/symbol
|
663
|
-
- lib/methods/facets/symbol/lchomp.rb
|
664
|
-
- lib/methods/facets/symbol/op_tilde.rb
|
665
789
|
- lib/methods/facets/symbol/pad.rb
|
790
|
+
- lib/methods/facets/symbol/op_tilde.rb
|
791
|
+
- lib/methods/facets/symbol/lchomp.rb
|
666
792
|
- lib/methods/facets/symbol/to_const.rb
|
667
793
|
- lib/methods/facets/symbol/to_proc.rb
|
794
|
+
- lib/methods/facets/nilclass
|
795
|
+
- lib/methods/facets/nilclass/to_bool.rb
|
796
|
+
- lib/methods/facets/nilclass/to_f.rb
|
797
|
+
- lib/methods/facets/nilclass/to_h.rb
|
798
|
+
- lib/methods/facets/nilclass/ergo.rb
|
799
|
+
- lib/methods/facets/falseclass
|
800
|
+
- lib/methods/facets/falseclass/to_bool.rb
|
801
|
+
- lib/methods/facets/trueclass
|
802
|
+
- lib/methods/facets/trueclass/to_bool.rb
|
668
803
|
- lib/methods/facets/time
|
669
|
-
- lib/methods/facets/time/stamp.rb
|
670
|
-
- lib/methods/facets/time/to_date.rb
|
671
804
|
- lib/methods/facets/time/to_s.rb
|
672
805
|
- lib/methods/facets/time/to_time.rb
|
673
|
-
- lib/methods/facets/
|
674
|
-
- lib/methods/facets/
|
675
|
-
- lib/
|
676
|
-
- lib/
|
677
|
-
- lib/
|
678
|
-
- lib/
|
679
|
-
- lib/
|
680
|
-
- lib/
|
681
|
-
- lib/
|
682
|
-
- lib/more/facets/association.rb
|
683
|
-
- lib/more/facets/attributes.rb
|
684
|
-
- lib/more/facets/autoarray.rb
|
685
|
-
- lib/more/facets/autoreload.rb
|
686
|
-
- lib/more/facets/basicobject.rb
|
687
|
-
- lib/more/facets/bbcode.rb
|
688
|
-
- lib/more/facets/behavior.rb
|
689
|
-
- lib/more/facets/binreadable.rb
|
690
|
-
- lib/more/facets/buildable.rb
|
691
|
-
- lib/more/facets/buildingblock.rb
|
692
|
-
- lib/more/facets/bytes.rb
|
693
|
-
- lib/more/facets/cachedelegator.rb
|
694
|
-
- lib/more/facets/capsule.rb
|
695
|
-
- lib/more/facets/class_extension.rb
|
696
|
-
- lib/more/facets/classmethods.rb
|
697
|
-
- lib/more/facets/cloneable.rb
|
698
|
-
- lib/more/facets/command.rb
|
699
|
-
- lib/more/facets/compare_on.rb
|
700
|
-
- lib/more/facets/console.rb
|
701
|
-
- lib/more/facets/coroutine.rb
|
702
|
-
- lib/more/facets/crypt.rb
|
703
|
-
- lib/more/facets/curry.rb
|
704
|
-
- lib/more/facets/cut.rb
|
705
|
-
- lib/more/facets/daemonize.rb
|
706
|
-
- lib/more/facets/date.rb
|
707
|
-
- lib/more/facets/dependency.rb
|
708
|
-
- lib/more/facets/dictionary.rb
|
709
|
-
- lib/more/facets/downloader.rb
|
710
|
-
- lib/more/facets/elementor.rb
|
711
|
-
- lib/more/facets/enumerablepass.rb
|
712
|
-
- lib/more/facets/eventhook.rb
|
713
|
-
- lib/more/facets/expirable.rb
|
714
|
-
- lib/more/facets/fileable.rb
|
715
|
-
- lib/more/facets/filelist.rb
|
716
|
-
- lib/more/facets/fileshell.rb
|
717
|
-
- lib/more/facets/fileutils.rb
|
718
|
-
- lib/more/facets/getoptlong.rb
|
719
|
-
- lib/more/facets/hashbuilder.rb
|
720
|
-
- lib/more/facets/heap.rb
|
721
|
-
- lib/more/facets/infinity.rb
|
722
|
-
- lib/more/facets/inheritor.rb
|
723
|
-
- lib/more/facets/instantiable.rb
|
724
|
-
- lib/more/facets/instantise.rb
|
725
|
-
- lib/more/facets/interface.rb
|
726
|
-
- lib/more/facets/interval.rb
|
727
|
-
- lib/more/facets/ioredirect.rb
|
728
|
-
- lib/more/facets/lazy.rb
|
729
|
-
- lib/more/facets/let.rb
|
730
|
-
- lib/more/facets/linkedlist.rb
|
731
|
-
- lib/more/facets/logger.rb
|
732
|
-
- lib/more/facets/lrucache.rb
|
733
|
-
- lib/more/facets/main.rb
|
734
|
-
- lib/more/facets/mapsend.rb
|
735
|
-
- lib/more/facets/memoize.rb
|
736
|
-
- lib/more/facets/minitar.rb
|
737
|
-
- lib/more/facets/multipliers.rb
|
738
|
-
- lib/more/facets/multiton.rb
|
739
|
-
- lib/more/facets/nackclass.rb
|
740
|
-
- lib/more/facets/namespace.rb
|
741
|
-
- lib/more/facets/nullclass.rb
|
742
|
-
- lib/more/facets/opencascade.rb
|
743
|
-
- lib/more/facets/opencollection.rb
|
744
|
-
- lib/more/facets/openobject.rb
|
745
|
-
- lib/more/facets/orderedhash.rb
|
746
|
-
- lib/more/facets/ostruct.rb
|
747
|
-
- lib/more/facets/overload.rb
|
748
|
-
- lib/more/facets/paramix.rb
|
749
|
-
- lib/more/facets/pathlist.rb
|
750
|
-
- lib/more/facets/pathname.rb
|
751
|
-
- lib/more/facets/pool.rb
|
752
|
-
- lib/more/facets/pp_s.rb
|
753
|
-
- lib/more/facets/pqueue.rb
|
754
|
-
- lib/more/facets/prepend.rb
|
755
|
-
- lib/more/facets/progressbar.rb
|
756
|
-
- lib/more/facets/prototype.rb
|
757
|
-
- lib/more/facets/random.rb
|
758
|
-
- lib/more/facets/rbconfig.rb
|
759
|
-
- lib/more/facets/rbsystem.rb
|
760
|
-
- lib/more/facets/recorder.rb
|
761
|
-
- lib/more/facets/recursive.rb
|
762
|
-
- lib/more/facets/reference.rb
|
763
|
-
- lib/more/facets/reflection.rb
|
764
|
-
- lib/more/facets/rwdelegator.rb
|
765
|
-
- lib/more/facets/semaphore.rb
|
766
|
-
- lib/more/facets/settings.rb
|
767
|
-
- lib/more/facets/shellwords.rb
|
768
|
-
- lib/more/facets/smtp_tls.rb
|
769
|
-
- lib/more/facets/snapshot.rb
|
770
|
-
- lib/more/facets/stylize.rb
|
771
|
-
- lib/more/facets/syncarray.rb
|
772
|
-
- lib/more/facets/synchash.rb
|
773
|
-
- lib/more/facets/timer.rb
|
774
|
-
- lib/more/facets/times.rb
|
775
|
-
- lib/more/facets/tuple.rb
|
776
|
-
- lib/more/facets/typecast.rb
|
777
|
-
- lib/more/facets/uninheritable.rb
|
778
|
-
- lib/more/facets/uploadutils.rb
|
779
|
-
- lib/more/facets/validation.rb
|
780
|
-
- lib/more/facets/version.rb
|
781
|
-
- lib/more/facets/yaml.rb
|
782
|
-
- lib/more/facets/ziputils.rb
|
783
|
-
- log
|
784
|
-
- log/changelog.txt
|
785
|
-
- log/history.txt
|
786
|
-
- log/release.txt
|
787
|
-
- log/todo.txt
|
788
|
-
- meta
|
789
|
-
- meta/facets-2.1.1.roll
|
790
|
-
- meta/google_ad.html
|
791
|
-
- meta/icli.yaml
|
792
|
-
- meta/manifest.txt
|
793
|
-
- task
|
794
|
-
- task/clean
|
795
|
-
- task/clobber
|
796
|
-
- task/clobber/package
|
797
|
-
- task/config
|
798
|
-
- task/config/general.yaml
|
799
|
-
- task/config/rdoc.yaml
|
800
|
-
- task/crosstest
|
801
|
-
- task/groups
|
802
|
-
- task/install
|
803
|
-
- task/isotest
|
804
|
-
- task/loadtest
|
805
|
-
- task/log
|
806
|
-
- task/methods
|
807
|
-
- task/prepare
|
808
|
-
- task/publish
|
809
|
-
- task/rdoc
|
810
|
-
- task/release
|
811
|
-
- task/special
|
812
|
-
- task/special/quickopts
|
813
|
-
- task/stats
|
814
|
-
- task/svn
|
815
|
-
- task/svn/tag
|
816
|
-
- task/syntax
|
817
|
-
- task/test
|
818
|
-
- task/testeach
|
819
|
-
- task/testpairs
|
806
|
+
- lib/methods/facets/time/to_date.rb
|
807
|
+
- lib/methods/facets/time/stamp.rb
|
808
|
+
- lib/methods/facets/regexp
|
809
|
+
- lib/methods/facets/regexp/to_regexp.rb
|
810
|
+
- lib/methods/facets/regexp/to_re.rb
|
811
|
+
- lib/methods/facets/facets
|
812
|
+
- lib/methods/facets/facets/require_core.rb
|
813
|
+
- lib/methods/facets/io
|
814
|
+
- lib/methods/facets/io/writelines.rb
|
820
815
|
- test
|
821
|
-
- test/lib
|
822
|
-
- test/lib/rq.rb
|
823
816
|
- test/unit
|
824
817
|
- test/unit/array
|
825
|
-
- test/unit/array/test_delete.rb
|
826
|
-
- test/unit/array/test_indexable.rb
|
827
|
-
- test/unit/array/test_merge.rb
|
828
|
-
- test/unit/array/test_only.rb
|
829
|
-
- test/unit/array/test_pad.rb
|
830
818
|
- test/unit/array/test_rotate.rb
|
819
|
+
- test/unit/array/test_merge.rb
|
831
820
|
- test/unit/array/test_select.rb
|
821
|
+
- test/unit/array/test_delete.rb
|
822
|
+
- test/unit/array/test_pad.rb
|
832
823
|
- test/unit/array/test_stackable.rb
|
824
|
+
- test/unit/array/test_indexable.rb
|
825
|
+
- test/unit/array/test_only.rb
|
833
826
|
- test/unit/binding
|
834
|
-
- test/unit/binding/test_cflow.rb
|
835
827
|
- test/unit/binding/test_eval.rb
|
828
|
+
- test/unit/binding/test_cflow.rb
|
836
829
|
- test/unit/binding/test_vars.rb
|
830
|
+
- test/unit/test_multiton.rb
|
831
|
+
- test/unit/test_advice.rb
|
832
|
+
- test/unit/file
|
833
|
+
- test/unit/file/test_topath.rb
|
834
|
+
- test/unit/file/test_write.rb
|
835
|
+
- test/unit/test_1stclassmethod.rb
|
836
|
+
- test/unit/test_aop.rb
|
837
|
+
- test/unit/test_ansicode.rb
|
838
|
+
- test/unit/test_annotations.rb
|
837
839
|
- test/unit/class
|
838
840
|
- test/unit/class/test_descendents.rb
|
839
841
|
- test/unit/class/test_initializer.rb
|
840
842
|
- test/unit/comparable
|
841
|
-
- test/unit/comparable/test_bound.rb
|
842
843
|
- test/unit/comparable/test_cmp.rb
|
844
|
+
- test/unit/comparable/test_bound.rb
|
843
845
|
- test/unit/continuation
|
844
846
|
- test/unit/continuation/test_create.rb
|
845
847
|
- test/unit/enumerable
|
846
848
|
- test/unit/enumerable/test_cartesian.rb
|
849
|
+
- test/unit/enumerable/test_combination.rb
|
847
850
|
- test/unit/enumerable/test_collate.rb
|
848
851
|
- test/unit/enumerable/test_collect.rb
|
849
|
-
- test/unit/enumerable/test_combination.rb
|
850
|
-
- test/unit/enumerable/test_count.rb
|
851
852
|
- test/unit/enumerable/test_permutation.rb
|
853
|
+
- test/unit/enumerable/test_count.rb
|
852
854
|
- test/unit/enumerable/test_probability.rb
|
853
|
-
- test/unit/file
|
854
|
-
- test/unit/file/test_topath.rb
|
855
|
-
- test/unit/file/test_write.rb
|
856
855
|
- test/unit/hash
|
857
|
-
- test/unit/hash/test_at.rb
|
858
|
-
- test/unit/hash/test_delete.rb
|
859
|
-
- test/unit/hash/test_has_keys.rb
|
860
|
-
- test/unit/hash/test_insert.rb
|
861
|
-
- test/unit/hash/test_inverse.rb
|
862
|
-
- test/unit/hash/test_iterate.rb
|
863
|
-
- test/unit/hash/test_keyize.rb
|
864
856
|
- test/unit/hash/test_merge.rb
|
865
|
-
- test/unit/hash/
|
857
|
+
- test/unit/hash/test_iterate.rb
|
866
858
|
- test/unit/hash/test_op.rb
|
867
859
|
- test/unit/hash/test_rekey.rb
|
868
|
-
- test/unit/hash/
|
869
|
-
- test/unit/hash/
|
860
|
+
- test/unit/hash/test_keyize.rb
|
861
|
+
- test/unit/hash/test_delete.rb
|
870
862
|
- test/unit/hash/test_update.rb
|
863
|
+
- test/unit/hash/test_at.rb
|
864
|
+
- test/unit/hash/test_insert.rb
|
865
|
+
- test/unit/hash/test_has_keys.rb
|
871
866
|
- test/unit/hash/test_weave.rb
|
867
|
+
- test/unit/hash/test_new.rb
|
868
|
+
- test/unit/hash/test_inverse.rb
|
869
|
+
- test/unit/hash/test_traverse.rb
|
870
|
+
- test/unit/hash/test_select.rb
|
872
871
|
- test/unit/integer
|
873
|
-
- test/unit/integer/test_bitmask.rb
|
874
|
-
- test/unit/integer/test_factorial.rb
|
875
872
|
- test/unit/integer/test_multiples.rb
|
873
|
+
- test/unit/integer/test_factorial.rb
|
876
874
|
- test/unit/integer/test_of.rb
|
875
|
+
- test/unit/integer/test_bitmask.rb
|
877
876
|
- test/unit/kernel
|
877
|
+
- test/unit/kernel/test_require_esc.rb
|
878
878
|
- test/unit/kernel/test_callstack.rb
|
879
|
-
- test/unit/kernel/
|
880
|
-
- test/unit/kernel/
|
881
|
-
- test/unit/kernel/test_instance.rb
|
879
|
+
- test/unit/kernel/test_super.rb
|
880
|
+
- test/unit/kernel/test_val.rb
|
882
881
|
- test/unit/kernel/test_metaid.rb
|
882
|
+
- test/unit/kernel/test_instance.rb
|
883
|
+
- test/unit/kernel/test_tap.rb
|
883
884
|
- test/unit/kernel/test_object.rb
|
885
|
+
- test/unit/kernel/test_withattr.rb
|
886
|
+
- test/unit/kernel/test_deepcopy.rb
|
884
887
|
- test/unit/kernel/test_populate.rb
|
885
|
-
- test/unit/kernel/
|
886
|
-
- test/unit/kernel/test_require_esc.rb
|
888
|
+
- test/unit/kernel/test_constant.rb
|
887
889
|
- test/unit/kernel/test_silence.rb
|
888
|
-
- test/unit/kernel/
|
889
|
-
- test/unit/kernel/test_tap.rb
|
890
|
-
- test/unit/kernel/test_val.rb
|
891
|
-
- test/unit/kernel/test_withattr.rb
|
890
|
+
- test/unit/kernel/test_report.rb
|
892
891
|
- test/unit/matchdata
|
893
892
|
- test/unit/matchdata/test_matchset.rb
|
894
893
|
- test/unit/module
|
895
894
|
- test/unit/module/test_abstract.rb
|
896
|
-
- test/unit/module/
|
895
|
+
- test/unit/module/test_include.rb
|
897
896
|
- test/unit/module/test_cattr.rb
|
898
897
|
- test/unit/module/test_clone.rb
|
899
|
-
- test/unit/module/test_include.rb
|
900
|
-
- test/unit/module/test_modify.rb
|
901
898
|
- test/unit/module/test_name.rb
|
902
899
|
- test/unit/module/test_traits.rb
|
900
|
+
- test/unit/module/test_modify.rb
|
901
|
+
- test/unit/module/test_alias.rb
|
903
902
|
- test/unit/numeric
|
904
903
|
- test/unit/numeric/test_round.rb
|
905
904
|
- test/unit/proc
|
906
|
-
- test/unit/proc/test_bind.rb
|
907
905
|
- test/unit/proc/test_compose.rb
|
906
|
+
- test/unit/proc/test_bind.rb
|
908
907
|
- test/unit/range
|
909
|
-
- test/unit/range/test_combine.rb
|
910
908
|
- test/unit/range/test_overlap.rb
|
909
|
+
- test/unit/range/test_combine.rb
|
911
910
|
- test/unit/regexp
|
912
911
|
- test/unit/regexp/test_arity.rb
|
913
912
|
- test/unit/string
|
914
|
-
- test/unit/string/
|
915
|
-
- test/unit/string/
|
916
|
-
- test/unit/string/test_bracket.rb
|
917
|
-
- test/unit/string/test_case.rb
|
918
|
-
- test/unit/string/test_crypt.rb
|
913
|
+
- test/unit/string/test_interpolate.rb
|
914
|
+
- test/unit/string/test_scan.rb
|
919
915
|
- test/unit/string/test_filter.rb
|
920
916
|
- test/unit/string/test_format.rb
|
921
|
-
- test/unit/string/
|
922
|
-
- test/unit/string/test_interpolate.rb
|
923
|
-
- test/unit/string/test_natcmp.rb
|
924
|
-
- test/unit/string/test_nchar.rb
|
917
|
+
- test/unit/string/test_blank.rb
|
925
918
|
- test/unit/string/test_partitions.rb
|
926
|
-
- test/unit/string/test_range.rb
|
927
|
-
- test/unit/string/test_regesc.rb
|
928
|
-
- test/unit/string/test_scan.rb
|
929
919
|
- test/unit/string/test_stackable.rb
|
930
920
|
- test/unit/string/test_tabs.rb
|
921
|
+
- test/unit/string/test_align.rb
|
922
|
+
- test/unit/string/test_indexable.rb
|
923
|
+
- test/unit/string/test_range.rb
|
924
|
+
- test/unit/string/test_regesc.rb
|
925
|
+
- test/unit/string/test_crypt.rb
|
926
|
+
- test/unit/string/test_bracket.rb
|
927
|
+
- test/unit/string/test_case.rb
|
928
|
+
- test/unit/string/test_natcmp.rb
|
929
|
+
- test/unit/string/test_nchar.rb
|
931
930
|
- test/unit/symbol
|
932
|
-
- test/unit/symbol/test_chomp.rb
|
933
|
-
- test/unit/symbol/test_generate.rb
|
934
|
-
- test/unit/symbol/test_not.rb
|
935
931
|
- test/unit/symbol/test_shadow.rb
|
936
932
|
- test/unit/symbol/test_succ.rb
|
933
|
+
- test/unit/symbol/test_not.rb
|
934
|
+
- test/unit/symbol/test_generate.rb
|
935
|
+
- test/unit/symbol/test_chomp.rb
|
937
936
|
- test/unit/symbol/test_to_proc.rb
|
938
|
-
- test/unit/test_1stclassmethod.rb
|
939
|
-
- test/unit/test_advice.rb
|
940
|
-
- test/unit/test_annotations.rb
|
941
|
-
- test/unit/test_ansicode.rb
|
942
|
-
- test/unit/test_aop.rb
|
943
937
|
- test/unit/test_arguments.rb
|
944
938
|
- test/unit/test_association.rb
|
945
939
|
- test/unit/test_attributes.rb
|
@@ -970,7 +964,6 @@ files:
|
|
970
964
|
- test/unit/test_inheritor.rb
|
971
965
|
- test/unit/test_instantiable.rb
|
972
966
|
- test/unit/test_instantise.rb
|
973
|
-
- test/unit/test_interface.rb
|
974
967
|
- test/unit/test_interval.rb
|
975
968
|
- test/unit/test_let.rb
|
976
969
|
- test/unit/test_linkedlist.rb
|
@@ -978,14 +971,12 @@ files:
|
|
978
971
|
- test/unit/test_mapsend.rb
|
979
972
|
- test/unit/test_memoize.rb
|
980
973
|
- test/unit/test_multipliers.rb
|
981
|
-
- test/unit/test_multiton.rb
|
982
974
|
- test/unit/test_namespace.rb
|
983
975
|
- test/unit/test_opencascade.rb
|
984
976
|
- test/unit/test_openobject.rb
|
985
977
|
- test/unit/test_ostruct.rb
|
986
978
|
- test/unit/test_overload.rb
|
987
979
|
- test/unit/test_paramix.rb
|
988
|
-
- test/unit/test_pp_s.rb
|
989
980
|
- test/unit/test_prototype.rb
|
990
981
|
- test/unit/test_random.rb
|
991
982
|
- test/unit/test_recorder.rb
|
@@ -1001,129 +992,136 @@ files:
|
|
1001
992
|
- test/unit/time
|
1002
993
|
- test/unit/time/test_change.rb
|
1003
994
|
- test/unit/time/test_elapse.rb
|
1004
|
-
|
995
|
+
- test/unit/test_interface.rb
|
996
|
+
- test/unit/test_pp_s.rb
|
1005
997
|
- test/lib
|
1006
998
|
- test/lib/rq.rb
|
999
|
+
- AUTHORS
|
1000
|
+
- COPYING
|
1001
|
+
- NOTES
|
1002
|
+
- README
|
1003
|
+
test_files:
|
1007
1004
|
- test/unit
|
1008
1005
|
- test/unit/array
|
1009
|
-
- test/unit/array/test_delete.rb
|
1010
|
-
- test/unit/array/test_indexable.rb
|
1011
|
-
- test/unit/array/test_merge.rb
|
1012
|
-
- test/unit/array/test_only.rb
|
1013
|
-
- test/unit/array/test_pad.rb
|
1014
1006
|
- test/unit/array/test_rotate.rb
|
1007
|
+
- test/unit/array/test_merge.rb
|
1015
1008
|
- test/unit/array/test_select.rb
|
1009
|
+
- test/unit/array/test_delete.rb
|
1010
|
+
- test/unit/array/test_pad.rb
|
1016
1011
|
- test/unit/array/test_stackable.rb
|
1012
|
+
- test/unit/array/test_indexable.rb
|
1013
|
+
- test/unit/array/test_only.rb
|
1017
1014
|
- test/unit/binding
|
1018
|
-
- test/unit/binding/test_cflow.rb
|
1019
1015
|
- test/unit/binding/test_eval.rb
|
1016
|
+
- test/unit/binding/test_cflow.rb
|
1020
1017
|
- test/unit/binding/test_vars.rb
|
1018
|
+
- test/unit/test_multiton.rb
|
1019
|
+
- test/unit/test_advice.rb
|
1020
|
+
- test/unit/file
|
1021
|
+
- test/unit/file/test_topath.rb
|
1022
|
+
- test/unit/file/test_write.rb
|
1023
|
+
- test/unit/test_1stclassmethod.rb
|
1024
|
+
- test/unit/test_aop.rb
|
1025
|
+
- test/unit/test_ansicode.rb
|
1026
|
+
- test/unit/test_annotations.rb
|
1021
1027
|
- test/unit/class
|
1022
1028
|
- test/unit/class/test_descendents.rb
|
1023
1029
|
- test/unit/class/test_initializer.rb
|
1024
1030
|
- test/unit/comparable
|
1025
|
-
- test/unit/comparable/test_bound.rb
|
1026
1031
|
- test/unit/comparable/test_cmp.rb
|
1032
|
+
- test/unit/comparable/test_bound.rb
|
1027
1033
|
- test/unit/continuation
|
1028
1034
|
- test/unit/continuation/test_create.rb
|
1029
1035
|
- test/unit/enumerable
|
1030
1036
|
- test/unit/enumerable/test_cartesian.rb
|
1037
|
+
- test/unit/enumerable/test_combination.rb
|
1031
1038
|
- test/unit/enumerable/test_collate.rb
|
1032
1039
|
- test/unit/enumerable/test_collect.rb
|
1033
|
-
- test/unit/enumerable/test_combination.rb
|
1034
|
-
- test/unit/enumerable/test_count.rb
|
1035
1040
|
- test/unit/enumerable/test_permutation.rb
|
1041
|
+
- test/unit/enumerable/test_count.rb
|
1036
1042
|
- test/unit/enumerable/test_probability.rb
|
1037
|
-
- test/unit/file
|
1038
|
-
- test/unit/file/test_topath.rb
|
1039
|
-
- test/unit/file/test_write.rb
|
1040
1043
|
- test/unit/hash
|
1041
|
-
- test/unit/hash/test_at.rb
|
1042
|
-
- test/unit/hash/test_delete.rb
|
1043
|
-
- test/unit/hash/test_has_keys.rb
|
1044
|
-
- test/unit/hash/test_insert.rb
|
1045
|
-
- test/unit/hash/test_inverse.rb
|
1046
|
-
- test/unit/hash/test_iterate.rb
|
1047
|
-
- test/unit/hash/test_keyize.rb
|
1048
1044
|
- test/unit/hash/test_merge.rb
|
1049
|
-
- test/unit/hash/
|
1045
|
+
- test/unit/hash/test_iterate.rb
|
1050
1046
|
- test/unit/hash/test_op.rb
|
1051
1047
|
- test/unit/hash/test_rekey.rb
|
1052
|
-
- test/unit/hash/
|
1053
|
-
- test/unit/hash/
|
1048
|
+
- test/unit/hash/test_keyize.rb
|
1049
|
+
- test/unit/hash/test_delete.rb
|
1054
1050
|
- test/unit/hash/test_update.rb
|
1051
|
+
- test/unit/hash/test_at.rb
|
1052
|
+
- test/unit/hash/test_insert.rb
|
1053
|
+
- test/unit/hash/test_has_keys.rb
|
1055
1054
|
- test/unit/hash/test_weave.rb
|
1055
|
+
- test/unit/hash/test_new.rb
|
1056
|
+
- test/unit/hash/test_inverse.rb
|
1057
|
+
- test/unit/hash/test_traverse.rb
|
1058
|
+
- test/unit/hash/test_select.rb
|
1056
1059
|
- test/unit/integer
|
1057
|
-
- test/unit/integer/test_bitmask.rb
|
1058
|
-
- test/unit/integer/test_factorial.rb
|
1059
1060
|
- test/unit/integer/test_multiples.rb
|
1061
|
+
- test/unit/integer/test_factorial.rb
|
1060
1062
|
- test/unit/integer/test_of.rb
|
1063
|
+
- test/unit/integer/test_bitmask.rb
|
1061
1064
|
- test/unit/kernel
|
1065
|
+
- test/unit/kernel/test_require_esc.rb
|
1062
1066
|
- test/unit/kernel/test_callstack.rb
|
1063
|
-
- test/unit/kernel/
|
1064
|
-
- test/unit/kernel/
|
1065
|
-
- test/unit/kernel/test_instance.rb
|
1067
|
+
- test/unit/kernel/test_super.rb
|
1068
|
+
- test/unit/kernel/test_val.rb
|
1066
1069
|
- test/unit/kernel/test_metaid.rb
|
1070
|
+
- test/unit/kernel/test_instance.rb
|
1071
|
+
- test/unit/kernel/test_tap.rb
|
1067
1072
|
- test/unit/kernel/test_object.rb
|
1073
|
+
- test/unit/kernel/test_withattr.rb
|
1074
|
+
- test/unit/kernel/test_deepcopy.rb
|
1068
1075
|
- test/unit/kernel/test_populate.rb
|
1069
|
-
- test/unit/kernel/
|
1070
|
-
- test/unit/kernel/test_require_esc.rb
|
1076
|
+
- test/unit/kernel/test_constant.rb
|
1071
1077
|
- test/unit/kernel/test_silence.rb
|
1072
|
-
- test/unit/kernel/
|
1073
|
-
- test/unit/kernel/test_tap.rb
|
1074
|
-
- test/unit/kernel/test_val.rb
|
1075
|
-
- test/unit/kernel/test_withattr.rb
|
1078
|
+
- test/unit/kernel/test_report.rb
|
1076
1079
|
- test/unit/matchdata
|
1077
1080
|
- test/unit/matchdata/test_matchset.rb
|
1078
1081
|
- test/unit/module
|
1079
1082
|
- test/unit/module/test_abstract.rb
|
1080
|
-
- test/unit/module/
|
1083
|
+
- test/unit/module/test_include.rb
|
1081
1084
|
- test/unit/module/test_cattr.rb
|
1082
1085
|
- test/unit/module/test_clone.rb
|
1083
|
-
- test/unit/module/test_include.rb
|
1084
|
-
- test/unit/module/test_modify.rb
|
1085
1086
|
- test/unit/module/test_name.rb
|
1086
1087
|
- test/unit/module/test_traits.rb
|
1088
|
+
- test/unit/module/test_modify.rb
|
1089
|
+
- test/unit/module/test_alias.rb
|
1087
1090
|
- test/unit/numeric
|
1088
1091
|
- test/unit/numeric/test_round.rb
|
1089
1092
|
- test/unit/proc
|
1090
|
-
- test/unit/proc/test_bind.rb
|
1091
1093
|
- test/unit/proc/test_compose.rb
|
1094
|
+
- test/unit/proc/test_bind.rb
|
1092
1095
|
- test/unit/range
|
1093
|
-
- test/unit/range/test_combine.rb
|
1094
1096
|
- test/unit/range/test_overlap.rb
|
1097
|
+
- test/unit/range/test_combine.rb
|
1095
1098
|
- test/unit/regexp
|
1096
1099
|
- test/unit/regexp/test_arity.rb
|
1097
1100
|
- test/unit/string
|
1098
|
-
- test/unit/string/
|
1099
|
-
- test/unit/string/
|
1100
|
-
- test/unit/string/test_bracket.rb
|
1101
|
-
- test/unit/string/test_case.rb
|
1102
|
-
- test/unit/string/test_crypt.rb
|
1101
|
+
- test/unit/string/test_interpolate.rb
|
1102
|
+
- test/unit/string/test_scan.rb
|
1103
1103
|
- test/unit/string/test_filter.rb
|
1104
1104
|
- test/unit/string/test_format.rb
|
1105
|
-
- test/unit/string/
|
1106
|
-
- test/unit/string/test_interpolate.rb
|
1107
|
-
- test/unit/string/test_natcmp.rb
|
1108
|
-
- test/unit/string/test_nchar.rb
|
1105
|
+
- test/unit/string/test_blank.rb
|
1109
1106
|
- test/unit/string/test_partitions.rb
|
1110
|
-
- test/unit/string/test_range.rb
|
1111
|
-
- test/unit/string/test_regesc.rb
|
1112
|
-
- test/unit/string/test_scan.rb
|
1113
1107
|
- test/unit/string/test_stackable.rb
|
1114
1108
|
- test/unit/string/test_tabs.rb
|
1109
|
+
- test/unit/string/test_align.rb
|
1110
|
+
- test/unit/string/test_indexable.rb
|
1111
|
+
- test/unit/string/test_range.rb
|
1112
|
+
- test/unit/string/test_regesc.rb
|
1113
|
+
- test/unit/string/test_crypt.rb
|
1114
|
+
- test/unit/string/test_bracket.rb
|
1115
|
+
- test/unit/string/test_case.rb
|
1116
|
+
- test/unit/string/test_natcmp.rb
|
1117
|
+
- test/unit/string/test_nchar.rb
|
1115
1118
|
- test/unit/symbol
|
1116
|
-
- test/unit/symbol/test_chomp.rb
|
1117
|
-
- test/unit/symbol/test_generate.rb
|
1118
|
-
- test/unit/symbol/test_not.rb
|
1119
1119
|
- test/unit/symbol/test_shadow.rb
|
1120
1120
|
- test/unit/symbol/test_succ.rb
|
1121
|
+
- test/unit/symbol/test_not.rb
|
1122
|
+
- test/unit/symbol/test_generate.rb
|
1123
|
+
- test/unit/symbol/test_chomp.rb
|
1121
1124
|
- test/unit/symbol/test_to_proc.rb
|
1122
|
-
- test/unit/test_1stclassmethod.rb
|
1123
|
-
- test/unit/test_advice.rb
|
1124
|
-
- test/unit/test_annotations.rb
|
1125
|
-
- test/unit/test_ansicode.rb
|
1126
|
-
- test/unit/test_aop.rb
|
1127
1125
|
- test/unit/test_arguments.rb
|
1128
1126
|
- test/unit/test_association.rb
|
1129
1127
|
- test/unit/test_attributes.rb
|
@@ -1154,7 +1152,6 @@ test_files:
|
|
1154
1152
|
- test/unit/test_inheritor.rb
|
1155
1153
|
- test/unit/test_instantiable.rb
|
1156
1154
|
- test/unit/test_instantise.rb
|
1157
|
-
- test/unit/test_interface.rb
|
1158
1155
|
- test/unit/test_interval.rb
|
1159
1156
|
- test/unit/test_let.rb
|
1160
1157
|
- test/unit/test_linkedlist.rb
|
@@ -1162,14 +1159,12 @@ test_files:
|
|
1162
1159
|
- test/unit/test_mapsend.rb
|
1163
1160
|
- test/unit/test_memoize.rb
|
1164
1161
|
- test/unit/test_multipliers.rb
|
1165
|
-
- test/unit/test_multiton.rb
|
1166
1162
|
- test/unit/test_namespace.rb
|
1167
1163
|
- test/unit/test_opencascade.rb
|
1168
1164
|
- test/unit/test_openobject.rb
|
1169
1165
|
- test/unit/test_ostruct.rb
|
1170
1166
|
- test/unit/test_overload.rb
|
1171
1167
|
- test/unit/test_paramix.rb
|
1172
|
-
- test/unit/test_pp_s.rb
|
1173
1168
|
- test/unit/test_prototype.rb
|
1174
1169
|
- test/unit/test_random.rb
|
1175
1170
|
- test/unit/test_recorder.rb
|
@@ -1185,6 +1180,10 @@ test_files:
|
|
1185
1180
|
- test/unit/time
|
1186
1181
|
- test/unit/time/test_change.rb
|
1187
1182
|
- test/unit/time/test_elapse.rb
|
1183
|
+
- test/unit/test_interface.rb
|
1184
|
+
- test/unit/test_pp_s.rb
|
1185
|
+
- test/lib
|
1186
|
+
- test/lib/rq.rb
|
1188
1187
|
rdoc_options: []
|
1189
1188
|
|
1190
1189
|
extra_rdoc_files: []
|