facets 2.6.0 → 2.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (321) hide show
  1. data/HISTORY.rdoc +331 -35
  2. data/MANIFEST +685 -826
  3. data/{doc/guide/notes.rd → NOTES} +0 -0
  4. data/README.rdoc +73 -25
  5. data/Rakefile +245 -2
  6. data/TODO +5 -0
  7. data/demo/hook.rd +47 -0
  8. data/demo/scenario_require.rd +9 -0
  9. data/doc/README.more +24 -6
  10. data/doc/manual/about.rb +47 -0
  11. data/doc/manual/annotations.rdoc +60 -0
  12. data/doc/manual/associations.rdoc +55 -0
  13. data/doc/manual/blockups.rdoc +101 -0
  14. data/doc/manual/capsule.rdoc +34 -0
  15. data/doc/manual/command.rdoc +177 -0
  16. data/doc/manual/core.rdoc +37 -0
  17. data/doc/manual/faq.rdoc +32 -0
  18. data/doc/manual/typecast.html +112 -0
  19. data/lib/core/facets.rb +359 -11
  20. data/lib/core/facets/array/combination.rb +3 -3
  21. data/lib/core/facets/array/index.rb +4 -1
  22. data/lib/core/facets/array/permutation.rb +2 -2
  23. data/lib/core/facets/array/product.rb +1 -1
  24. data/lib/core/facets/binding/eval.rb +1 -1
  25. data/lib/core/facets/denumerable.rb +76 -0
  26. data/lib/core/facets/duplicable.rb +34 -0
  27. data/lib/core/facets/enumerable/count.rb +10 -4
  28. data/lib/core/facets/enumerable/defer.rb +77 -0
  29. data/lib/core/facets/enumerable/each_by.rb +1 -1
  30. data/lib/core/facets/enumerable/every.rb +35 -0
  31. data/lib/{more/facets/elementwise.rb → core/facets/enumerable/ewise.rb} +0 -0
  32. data/lib/core/facets/enumerable/filter.rb +25 -0
  33. data/lib/core/facets/enumerable/group_by.rb +1 -1
  34. data/lib/core/facets/enumerable/none.rb +3 -2
  35. data/lib/core/facets/enumerable/one.rb +3 -2
  36. data/lib/core/facets/enumerable/per.rb +61 -0
  37. data/lib/core/facets/exception/raised.rb +14 -0
  38. data/lib/core/facets/integer/odd.rb +5 -1
  39. data/lib/core/facets/kernel/__dir__.rb +13 -3
  40. data/lib/core/facets/kernel/__here__.rb +14 -0
  41. data/lib/core/facets/kernel/__method__.rb +9 -3
  42. data/lib/core/facets/kernel/ask.rb +1 -0
  43. data/lib/core/facets/kernel/equate.rb +13 -0
  44. data/lib/core/facets/kernel/extension.rb +9 -0
  45. data/lib/core/facets/kernel/identical.rb +4 -0
  46. data/lib/core/facets/kernel/instance_exec.rb +2 -1
  47. data/lib/core/facets/kernel/method.rb +49 -0
  48. data/lib/core/facets/kernel/object_send.rb +2 -2
  49. data/lib/core/facets/kernel/{state.rb → object_state.rb} +23 -12
  50. data/lib/core/facets/kernel/require_all.rb +6 -1
  51. data/lib/core/facets/kernel/require_local.rb +8 -1
  52. data/lib/core/facets/kernel/require_relative.rb +52 -0
  53. data/lib/core/facets/kernel/source_location.rb +13 -0
  54. data/lib/core/facets/kernel/tap.rb +13 -6
  55. data/lib/core/facets/module/attr_setter.rb +57 -0
  56. data/lib/core/facets/module/instance_method.rb +24 -0
  57. data/lib/core/facets/module/module_load.rb +60 -44
  58. data/lib/core/facets/module/module_require.rb +1 -0
  59. data/lib/core/facets/nilclass/to_f.rb +1 -1
  60. data/lib/core/facets/objectspace/op_fetch.rb +3 -0
  61. data/lib/core/facets/proc/curry.rb +4 -3
  62. data/lib/core/facets/string/bytes.rb +10 -4
  63. data/lib/core/facets/string/camelcase.rb +6 -5
  64. data/lib/core/facets/string/chars.rb +5 -1
  65. data/lib/core/facets/string/each_char.rb +1 -1
  66. data/lib/core/facets/string/each_word.rb +1 -1
  67. data/lib/core/facets/string/lines.rb +11 -4
  68. data/lib/core/facets/string/start_with.rb +9 -2
  69. data/lib/core/facets/string/unfold.rb +27 -0
  70. data/lib/core/facets/symbol/succ.rb +3 -3
  71. data/lib/core/facets/symbol/thrown.rb +20 -0
  72. data/lib/core/facets/symbol/to_proc.rb +3 -2
  73. data/lib/core/facets/time/to_time.rb +1 -1
  74. data/lib/core/facets/to_hash.rb +41 -100
  75. data/lib/core/facets/unboundmethod/name.rb +20 -23
  76. data/lib/more/facets/ansicode.rb +1 -10
  77. data/lib/more/facets/autoarray.rb +3 -31
  78. data/lib/more/facets/basicobject.rb +73 -0
  79. data/lib/more/facets/blankslate.rb +2 -66
  80. data/lib/{lore → more}/facets/cgi.rb +0 -0
  81. data/lib/more/facets/class_extend.rb +1 -0
  82. data/lib/{lore → more}/facets/continuation.rb +0 -0
  83. data/lib/{lore → more}/facets/date.rb +3 -3
  84. data/lib/more/facets/enumargs.rb +192 -0
  85. data/lib/more/facets/enumerablepass.rb +2 -216
  86. data/lib/more/facets/enumerator.rb +62 -0
  87. data/lib/more/facets/{equatable.rb → equitable.rb} +11 -11
  88. data/lib/more/facets/expirable.rb +13 -41
  89. data/lib/{lore → more}/facets/fileutils.rb +0 -0
  90. data/lib/{lore → more}/facets/fileutils/head.rb +0 -0
  91. data/lib/{lore → more}/facets/fileutils/safe_ln.rb +0 -0
  92. data/lib/{lore → more}/facets/fileutils/slice.rb +0 -0
  93. data/lib/{lore → more}/facets/fileutils/tail.rb +0 -0
  94. data/lib/{lore → more}/facets/fileutils/wc.rb +0 -0
  95. data/lib/{lore → more}/facets/fileutils/whereis.rb +0 -0
  96. data/lib/{lore → more}/facets/fileutils/which.rb +0 -0
  97. data/lib/{lore → more}/facets/getoptlong.rb +0 -0
  98. data/lib/more/facets/hook.rb +2 -29
  99. data/lib/more/facets/inheritor.rb +2 -2
  100. data/lib/more/facets/instance_eval.rb +50 -0
  101. data/lib/more/facets/instance_function.rb +78 -0
  102. data/lib/more/facets/main.rb +20 -15
  103. data/lib/more/facets/memoize.rb +1 -113
  104. data/lib/more/facets/module/attr.rb +83 -0
  105. data/lib/more/facets/module/attr_tester.rb +44 -0
  106. data/lib/more/facets/module/attr_toggler.rb +59 -0
  107. data/lib/more/facets/module/attr_validator.rb +34 -0
  108. data/lib/more/facets/{class_extension.rb → module/class_extend.rb} +21 -13
  109. data/lib/more/facets/once.rb +59 -0
  110. data/lib/more/facets/openmodule.rb +1 -0
  111. data/lib/more/facets/orderedhash.rb +1 -33
  112. data/lib/{lore → more}/facets/ostruct.rb +0 -0
  113. data/lib/more/facets/ostructable.rb +1 -4
  114. data/lib/more/facets/partial.rb +18 -16
  115. data/lib/{lore → more}/facets/pathname.rb +0 -0
  116. data/lib/more/facets/preinitialize.rb +157 -0
  117. data/lib/{lore → more}/facets/rbconfig.rb +0 -0
  118. data/lib/more/facets/recorder.rb +1 -2
  119. data/lib/{lore → more}/facets/set.rb +0 -0
  120. data/lib/{lore → more}/facets/shellwords.rb +0 -0
  121. data/lib/{lore → more}/facets/uri.rb +0 -0
  122. data/lib/{lore → more}/facets/yaml.rb +0 -0
  123. data/lib/{lore → more}/facets/zlib.rb +0 -0
  124. data/meta/loadpath +0 -1
  125. data/meta/sitemap +4 -0
  126. data/meta/version +1 -1
  127. data/test/core/enumerable/test_count.rb +1 -1
  128. data/test/{more/test_filter.rb → core/enumerable/test_defer.rb} +24 -22
  129. data/test/{more/test_elementor.rb → core/enumerable/test_every.rb} +2 -15
  130. data/test/core/enumerable/test_ewise.rb +23 -0
  131. data/test/core/enumerable/test_per.rb +18 -0
  132. data/test/core/enumerable/test_take.rb +13 -0
  133. data/test/core/kernel/test_deepcopy.rb +1 -1
  134. data/test/{more/test_1stclassmethod.rb → core/kernel/test_method.rb} +2 -7
  135. data/test/core/kernel/test_tap.rb +1 -1
  136. data/test/core/proc/test_curry.rb +11 -0
  137. data/test/core/string/test_bytes.rb +1 -1
  138. data/test/core/string/test_camelcase.rb +23 -6
  139. data/test/core/string/test_lines.rb +1 -1
  140. data/test/core/string/test_unfold.rb +14 -0
  141. data/test/{more → core}/test_blank.rb +0 -0
  142. data/test/{more → core}/test_boolean.rb +0 -0
  143. data/test/{more → core}/test_functor.rb +0 -0
  144. data/test/{lore → more}/test_basicobject.rb +0 -0
  145. data/test/more/{test_class_extension.rb → test_class_extend.rb} +6 -6
  146. data/test/{lore → more}/test_continuation.rb +0 -0
  147. data/test/{lore → more}/test_date.rb +0 -0
  148. data/test/more/{test_enumerablepass.rb → test_enumargs.rb} +2 -4
  149. data/test/more/{test_equatable.rb → test_equitable.rb} +2 -2
  150. data/test/more/{test_instantise.rb → test_instance_function.rb} +3 -2
  151. data/test/more/test_memoize.rb +1 -1
  152. data/test/{lore → more}/test_ostruct.rb +0 -0
  153. metadata +865 -1016
  154. data/RELEASE +0 -38
  155. data/doc/README.lore +0 -51
  156. data/doc/log/basic_stats/index.html +0 -39
  157. data/doc/log/changelog.html +0 -648
  158. data/doc/log/changelog.txt +0 -217
  159. data/doc/log/stats/index.html +0 -39
  160. data/doc/log/testlog.txt +0 -278
  161. data/doc/notes/CHANGES +0 -2529
  162. data/doc/rdoc/lore/classes/Array.html +0 -176
  163. data/doc/rdoc/lore/classes/CGI.html +0 -191
  164. data/doc/rdoc/lore/classes/Config.html +0 -135
  165. data/doc/rdoc/lore/classes/Continuation.html +0 -113
  166. data/doc/rdoc/lore/classes/Date.html +0 -631
  167. data/doc/rdoc/lore/classes/DateTime.html +0 -583
  168. data/doc/rdoc/lore/classes/Enumerable.html +0 -89
  169. data/doc/rdoc/lore/classes/Enumerable/Enumerator.html +0 -147
  170. data/doc/rdoc/lore/classes/File.html +0 -128
  171. data/doc/rdoc/lore/classes/FileUtils.html +0 -434
  172. data/doc/rdoc/lore/classes/GetoptLong.html +0 -118
  173. data/doc/rdoc/lore/classes/GetoptLong/DSL.html +0 -208
  174. data/doc/rdoc/lore/classes/Kernel.html +0 -135
  175. data/doc/rdoc/lore/classes/Logger.html +0 -229
  176. data/doc/rdoc/lore/classes/Logger/Ansicolor.html +0 -277
  177. data/doc/rdoc/lore/classes/Logger/LogDevice.html +0 -121
  178. data/doc/rdoc/lore/classes/NilClass.html +0 -119
  179. data/doc/rdoc/lore/classes/OpenStruct.html +0 -432
  180. data/doc/rdoc/lore/classes/Pathname.html +0 -353
  181. data/doc/rdoc/lore/classes/Set.html +0 -117
  182. data/doc/rdoc/lore/classes/Shellwords.html +0 -111
  183. data/doc/rdoc/lore/classes/String.html +0 -140
  184. data/doc/rdoc/lore/classes/Time.html +0 -154
  185. data/doc/rdoc/lore/classes/URI.html +0 -454
  186. data/doc/rdoc/lore/classes/URI/Hash.html +0 -105
  187. data/doc/rdoc/lore/classes/URI/Kernel.html +0 -122
  188. data/doc/rdoc/lore/classes/Zlib.html +0 -188
  189. data/doc/rdoc/lore/created.rid +0 -1
  190. data/doc/rdoc/lore/files/README.html +0 -286
  191. data/doc/rdoc/lore/files/doc/README_lore.html +0 -155
  192. data/doc/rdoc/lore/files/lib/lore/facets/basicobject_rb.html +0 -118
  193. data/doc/rdoc/lore/files/lib/lore/facets/cgi_rb.html +0 -111
  194. data/doc/rdoc/lore/files/lib/lore/facets/continuation_rb.html +0 -147
  195. data/doc/rdoc/lore/files/lib/lore/facets/date_rb.html +0 -97
  196. data/doc/rdoc/lore/files/lib/lore/facets/enumerator_rb.html +0 -111
  197. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/head_rb.html +0 -96
  198. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/safe_ln_rb.html +0 -96
  199. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/slice_rb.html +0 -96
  200. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/tail_rb.html +0 -96
  201. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/wc_rb.html +0 -96
  202. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/whereis_rb.html +0 -96
  203. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/which_rb.html +0 -96
  204. data/doc/rdoc/lore/files/lib/lore/facets/fileutils_rb.html +0 -131
  205. data/doc/rdoc/lore/files/lib/lore/facets/getoptlong_rb.html +0 -135
  206. data/doc/rdoc/lore/files/lib/lore/facets/logger_rb.html +0 -142
  207. data/doc/rdoc/lore/files/lib/lore/facets/ostruct_rb.html +0 -135
  208. data/doc/rdoc/lore/files/lib/lore/facets/pathname_rb.html +0 -145
  209. data/doc/rdoc/lore/files/lib/lore/facets/rbconfig_rb.html +0 -124
  210. data/doc/rdoc/lore/files/lib/lore/facets/set_rb.html +0 -96
  211. data/doc/rdoc/lore/files/lib/lore/facets/shellwords_rb.html +0 -124
  212. data/doc/rdoc/lore/files/lib/lore/facets/uri_rb.html +0 -125
  213. data/doc/rdoc/lore/files/lib/lore/facets/yaml_rb.html +0 -146
  214. data/doc/rdoc/lore/files/lib/lore/facets/zlib_rb.html +0 -97
  215. data/doc/rdoc/lore/fr_class_index.html +0 -73
  216. data/doc/rdoc/lore/fr_file_index.html +0 -71
  217. data/doc/rdoc/lore/fr_method_index.html +0 -177
  218. data/doc/rdoc/lore/index.html +0 -26
  219. data/doc/rdoc/lore/rdoc-style.css +0 -177
  220. data/doc/release-notes/RELEASE-2.0.5 +0 -8
  221. data/doc/release-notes/RELEASE-2.1.0 +0 -9
  222. data/doc/release-notes/RELEASE-2.1.1 +0 -5
  223. data/doc/release-notes/RELEASE-2.1.2 +0 -6
  224. data/doc/release-notes/RELEASE-2.1.3 +0 -5
  225. data/doc/release-notes/RELEASE-2.2.0 +0 -14
  226. data/doc/release-notes/RELEASE-2.2.1 +0 -4
  227. data/doc/release-notes/RELEASE-2.3.0 +0 -6
  228. data/doc/release-notes/RELEASE-2.4.0 +0 -70
  229. data/doc/release-notes/RELEASE-2.4.1 +0 -8
  230. data/doc/release-notes/RELEASE-2.4.2 +0 -4
  231. data/doc/release-notes/RELEASE-2.4.3 +0 -78
  232. data/doc/release-notes/RELEASE-2.4.4 +0 -38
  233. data/doc/release-notes/RELEASE-2.4.5 +0 -37
  234. data/doc/release-notes/RELEASE-2.5.0 +0 -83
  235. data/lib/core/facets/kernel/instance.rb +0 -19
  236. data/lib/lore/facets/basicobject.rb +0 -14
  237. data/lib/lore/facets/enumerator.rb +0 -67
  238. data/lib/lore/facets/logger.rb +0 -291
  239. data/lib/more/facets/1stclassmethod.rb +0 -140
  240. data/lib/more/facets/advisable.rb +0 -162
  241. data/lib/more/facets/association.rb +0 -210
  242. data/lib/more/facets/attr.rb +0 -209
  243. data/lib/more/facets/basex.rb +0 -37
  244. data/lib/more/facets/bbcode.rb +0 -397
  245. data/lib/more/facets/bicrypt.rb +0 -265
  246. data/lib/more/facets/binreadable.rb +0 -221
  247. data/lib/more/facets/censor.rb +0 -97
  248. data/lib/more/facets/classmethods.rb +0 -199
  249. data/lib/more/facets/consoleutils.rb +0 -99
  250. data/lib/more/facets/crypt.rb +0 -166
  251. data/lib/more/facets/dependency.rb +0 -151
  252. data/lib/more/facets/downloader.rb +0 -281
  253. data/lib/more/facets/duplicable.rb +0 -43
  254. data/lib/more/facets/elementor.rb +0 -133
  255. data/lib/more/facets/filter.rb +0 -121
  256. data/lib/more/facets/heap.rb +0 -22
  257. data/lib/more/facets/infinity.rb +0 -193
  258. data/lib/more/facets/ini.rb +0 -264
  259. data/lib/more/facets/instantise.rb +0 -1
  260. data/lib/more/facets/instantize.rb +0 -95
  261. data/lib/more/facets/interval.rb +0 -282
  262. data/lib/more/facets/iteration.rb +0 -65
  263. data/lib/more/facets/linkedlist.rb +0 -222
  264. data/lib/more/facets/lrucache.rb +0 -157
  265. data/lib/more/facets/matcher.rb +0 -140
  266. data/lib/more/facets/memoizer.rb +0 -74
  267. data/lib/more/facets/minitar.rb +0 -1063
  268. data/lib/more/facets/nackclass.rb +0 -41
  269. data/lib/more/facets/net/smtp_tls.rb +0 -131
  270. data/lib/more/facets/nilstatus.rb +0 -48
  271. data/lib/more/facets/overload.rb +0 -94
  272. data/lib/more/facets/paramix.rb +0 -202
  273. data/lib/more/facets/pool.rb +0 -91
  274. data/lib/more/facets/pqueue.rb +0 -449
  275. data/lib/more/facets/pry.rb +0 -32
  276. data/lib/more/facets/reflection.rb +0 -145
  277. data/lib/more/facets/semaphore.rb +0 -92
  278. data/lib/more/facets/settings.rb +0 -248
  279. data/lib/more/facets/snapshot.rb +0 -209
  280. data/lib/more/facets/sparse_array.rb +0 -809
  281. data/lib/more/facets/string/mask.rb +0 -278
  282. data/lib/more/facets/string/obfuscate.rb +0 -65
  283. data/lib/more/facets/string/stylize.rb +0 -169
  284. data/lib/more/facets/string/words.rb +0 -167
  285. data/lib/more/facets/syncarray.rb +0 -114
  286. data/lib/more/facets/synchash.rb +0 -157
  287. data/lib/more/facets/typecast.rb +0 -261
  288. data/lib/more/facets/uninheritable.rb +0 -50
  289. data/lib/more/facets/xmlhash.rb +0 -112
  290. data/lib/more/facets/xoxo.rb +0 -259
  291. data/lib/more/facets/ziputils.rb +0 -490
  292. data/task/conflicts +0 -63
  293. data/task/coverage.rake +0 -37
  294. data/task/methods +0 -49
  295. data/task/rdoc.rake +0 -17
  296. data/task/setup.rake +0 -38
  297. data/task/test.rake +0 -145
  298. data/test/more/test_advisable.rb +0 -71
  299. data/test/more/test_association.rb +0 -38
  300. data/test/more/test_bbcode.rb +0 -21
  301. data/test/more/test_binreadable.rb +0 -50
  302. data/test/more/test_buildable.rb +0 -73
  303. data/test/more/test_classmethods.rb +0 -56
  304. data/test/more/test_crypt.rb +0 -32
  305. data/test/more/test_dependency.rb +0 -69
  306. data/test/more/test_elementwise.rb +0 -25
  307. data/test/more/test_infinity.rb +0 -40
  308. data/test/more/test_interval.rb +0 -151
  309. data/test/more/test_linkedlist.rb +0 -41
  310. data/test/more/test_lrucache.rb +0 -14
  311. data/test/more/test_overload.rb +0 -160
  312. data/test/more/test_paramix.rb +0 -170
  313. data/test/more/test_prototype.rb +0 -35
  314. data/test/more/test_snapshot.rb +0 -21
  315. data/test/more/test_sparsearray.rb +0 -279
  316. data/test/more/test_syncarray.rb +0 -15
  317. data/test/more/test_synchash.rb +0 -16
  318. data/test/more/test_typecast.rb +0 -54
  319. data/test/more/test_uninheritable.rb +0 -31
  320. data/test/more/test_xoxo.rb +0 -274
  321. data/test/test_facets.rb +0 -9
data/MANIFEST CHANGED
@@ -1,944 +1,803 @@
1
+ #!mast -x doc/ri -x doc/webri mast demo doc lib meta test [A-Z]*
2
+ demo
3
+ demo/hook.rd
4
+ demo/scenario_require.rd
1
5
  doc
2
- lib
3
- meta
4
- task
5
- test
6
- Rakefile
7
- HISTORY.rdoc
8
- MANIFEST
9
- RELEASE
10
- README.rdoc
11
- AUTHORS
12
- COPYING
13
- doc/notes
14
- doc/guide
15
- doc/rdoc
16
- doc/release-notes
17
- doc/README.lore
18
6
  doc/README.core
19
- doc/log
20
7
  doc/README.more
21
- doc/notes/CHANGES
22
- doc/guide/notes.rd
23
- doc/rdoc/lore
8
+ doc/manual
9
+ doc/manual/about.rb
10
+ doc/manual/annotations.rdoc
11
+ doc/manual/associations.rdoc
12
+ doc/manual/blockups.rdoc
13
+ doc/manual/capsule.rdoc
14
+ doc/manual/command.rdoc
15
+ doc/manual/core.rdoc
16
+ doc/manual/faq.rdoc
17
+ doc/manual/typecast.html
18
+ doc/rdoc
24
19
  doc/rdoc/core
25
20
  doc/rdoc/more
26
- doc/rdoc/lore/fr_file_index.html
27
- doc/rdoc/lore/classes
28
- doc/rdoc/lore/rdoc-style.css
29
- doc/rdoc/lore/files
30
- doc/rdoc/lore/fr_class_index.html
31
- doc/rdoc/lore/index.html
32
- doc/rdoc/lore/created.rid
33
- doc/rdoc/lore/fr_method_index.html
34
- doc/rdoc/lore/classes/DateTime.html
35
- doc/rdoc/lore/classes/String.html
36
- doc/rdoc/lore/classes/Logger
37
- doc/rdoc/lore/classes/URI.html
38
- doc/rdoc/lore/classes/GetoptLong.html
39
- doc/rdoc/lore/classes/Pathname.html
40
- doc/rdoc/lore/classes/Array.html
41
- doc/rdoc/lore/classes/Zlib.html
42
- doc/rdoc/lore/classes/Date.html
43
- doc/rdoc/lore/classes/Logger.html
44
- doc/rdoc/lore/classes/NilClass.html
45
- doc/rdoc/lore/classes/Config.html
46
- doc/rdoc/lore/classes/Kernel.html
47
- doc/rdoc/lore/classes/Set.html
48
- doc/rdoc/lore/classes/URI
49
- doc/rdoc/lore/classes/Enumerable.html
50
- doc/rdoc/lore/classes/GetoptLong
51
- doc/rdoc/lore/classes/FileUtils.html
52
- doc/rdoc/lore/classes/Continuation.html
53
- doc/rdoc/lore/classes/Shellwords.html
54
- doc/rdoc/lore/classes/Enumerable
55
- doc/rdoc/lore/classes/CGI.html
56
- doc/rdoc/lore/classes/Time.html
57
- doc/rdoc/lore/classes/OpenStruct.html
58
- doc/rdoc/lore/classes/File.html
59
- doc/rdoc/lore/classes/Logger/LogDevice.html
60
- doc/rdoc/lore/classes/Logger/Ansicolor.html
61
- doc/rdoc/lore/classes/URI/Hash.html
62
- doc/rdoc/lore/classes/URI/Kernel.html
63
- doc/rdoc/lore/classes/GetoptLong/DSL.html
64
- doc/rdoc/lore/classes/Enumerable/Enumerator.html
65
- doc/rdoc/lore/files/doc
66
- doc/rdoc/lore/files/README.html
67
- doc/rdoc/lore/files/lib
68
- doc/rdoc/lore/files/doc/README_lore.html
69
- doc/rdoc/lore/files/lib/lore
70
- doc/rdoc/lore/files/lib/lore/facets
71
- doc/rdoc/lore/files/lib/lore/facets/rbconfig_rb.html
72
- doc/rdoc/lore/files/lib/lore/facets/yaml_rb.html
73
- doc/rdoc/lore/files/lib/lore/facets/fileutils
74
- doc/rdoc/lore/files/lib/lore/facets/basicobject_rb.html
75
- doc/rdoc/lore/files/lib/lore/facets/uri_rb.html
76
- doc/rdoc/lore/files/lib/lore/facets/continuation_rb.html
77
- doc/rdoc/lore/files/lib/lore/facets/shellwords_rb.html
78
- doc/rdoc/lore/files/lib/lore/facets/cgi_rb.html
79
- doc/rdoc/lore/files/lib/lore/facets/set_rb.html
80
- doc/rdoc/lore/files/lib/lore/facets/enumerator_rb.html
81
- doc/rdoc/lore/files/lib/lore/facets/ostruct_rb.html
82
- doc/rdoc/lore/files/lib/lore/facets/pathname_rb.html
83
- doc/rdoc/lore/files/lib/lore/facets/fileutils_rb.html
84
- doc/rdoc/lore/files/lib/lore/facets/getoptlong_rb.html
85
- doc/rdoc/lore/files/lib/lore/facets/logger_rb.html
86
- doc/rdoc/lore/files/lib/lore/facets/date_rb.html
87
- doc/rdoc/lore/files/lib/lore/facets/zlib_rb.html
88
- doc/rdoc/lore/files/lib/lore/facets/fileutils/head_rb.html
89
- doc/rdoc/lore/files/lib/lore/facets/fileutils/wc_rb.html
90
- doc/rdoc/lore/files/lib/lore/facets/fileutils/which_rb.html
91
- doc/rdoc/lore/files/lib/lore/facets/fileutils/whereis_rb.html
92
- doc/rdoc/lore/files/lib/lore/facets/fileutils/slice_rb.html
93
- doc/rdoc/lore/files/lib/lore/facets/fileutils/safe_ln_rb.html
94
- doc/rdoc/lore/files/lib/lore/facets/fileutils/tail_rb.html
95
- doc/release-notes/RELEASE-2.4.3
96
- doc/release-notes/RELEASE-2.2.0
97
- doc/release-notes/RELEASE-2.4.2
98
- doc/release-notes/RELEASE-2.4.0
99
- doc/release-notes/RELEASE-2.3.0
100
- doc/release-notes/RELEASE-2.0.5
101
- doc/release-notes/RELEASE-2.1.2
102
- doc/release-notes/RELEASE-2.1.0
103
- doc/release-notes/RELEASE-2.2.1
104
- doc/release-notes/RELEASE-2.4.4
105
- doc/release-notes/RELEASE-2.5.0
106
- doc/release-notes/RELEASE-2.1.1
107
- doc/release-notes/RELEASE-2.1.3
108
- doc/release-notes/RELEASE-2.4.5
109
- doc/release-notes/RELEASE-2.4.1
110
- doc/log/basic_stats
111
- doc/log/changelog.html
112
- doc/log/changelog.txt
113
- doc/log/stats
114
- doc/log/testlog.txt
115
- doc/log/basic_stats/index.html
116
- doc/log/stats/index.html
117
- lib/lore
21
+ lib
118
22
  lib/core
119
- lib/more
120
- lib/lore/facets
121
- lib/lore/facets/pathname.rb
122
- lib/lore/facets/cgi.rb
123
- lib/lore/facets/zlib.rb
124
- lib/lore/facets/continuation.rb
125
- lib/lore/facets/date.rb
126
- lib/lore/facets/logger.rb
127
- lib/lore/facets/getoptlong.rb
128
- lib/lore/facets/basicobject.rb
129
- lib/lore/facets/fileutils.rb
130
- lib/lore/facets/shellwords.rb
131
- lib/lore/facets/fileutils
132
- lib/lore/facets/enumerator.rb
133
- lib/lore/facets/yaml.rb
134
- lib/lore/facets/set.rb
135
- lib/lore/facets/uri.rb
136
- lib/lore/facets/ostruct.rb
137
- lib/lore/facets/rbconfig.rb
138
- lib/lore/facets/fileutils/tail.rb
139
- lib/lore/facets/fileutils/which.rb
140
- lib/lore/facets/fileutils/whereis.rb
141
- lib/lore/facets/fileutils/wc.rb
142
- lib/lore/facets/fileutils/slice.rb
143
- lib/lore/facets/fileutils/safe_ln.rb
144
- lib/lore/facets/fileutils/head.rb
145
23
  lib/core/facets
146
- lib/core/facets.rb
147
- lib/core/facets-load.rb
148
- lib/core/facets-live.rb
149
- lib/core/facets/integer
150
- lib/core/facets/file.rb
151
- lib/core/facets/metaid.rb
152
- lib/core/facets/matchdata.rb
153
- lib/core/facets/symbol
154
- lib/core/facets/time.rb
155
- lib/core/facets/dir.rb
156
- lib/core/facets/to_hash.rb
157
- lib/core/facets/cattr.rb
158
- lib/core/facets/objectspace
159
- lib/core/facets/unboundmethod
160
- lib/core/facets/objectspace.rb
161
- lib/core/facets/nilclass
162
- lib/core/facets/filetest.rb
163
- lib/core/facets/lazy.rb
164
- lib/core/facets/range.rb
165
- lib/core/facets/numeric
166
- lib/core/facets/indexable.rb
167
- lib/core/facets/module.rb
24
+ lib/core/facets/array
25
+ lib/core/facets/array/combination.rb
26
+ lib/core/facets/array/conjoin.rb
27
+ lib/core/facets/array/delete.rb
28
+ lib/core/facets/array/delete_unless.rb
29
+ lib/core/facets/array/delete_values.rb
30
+ lib/core/facets/array/index.rb
31
+ lib/core/facets/array/indexable.rb
32
+ lib/core/facets/array/merge.rb
33
+ lib/core/facets/array/not_empty.rb
34
+ lib/core/facets/array/only.rb
35
+ lib/core/facets/array/pad.rb
36
+ lib/core/facets/array/permutation.rb
37
+ lib/core/facets/array/product.rb
38
+ lib/core/facets/array/recursively.rb
39
+ lib/core/facets/array/rotate.rb
40
+ lib/core/facets/array/select.rb
41
+ lib/core/facets/array/splice.rb
42
+ lib/core/facets/array/stackable.rb
43
+ lib/core/facets/array/traverse.rb
44
+ lib/core/facets/array.rb
168
45
  lib/core/facets/binding
169
- lib/core/facets/float
170
- lib/core/facets/hash.rb
171
- lib/core/facets/proc
172
- lib/core/facets/boolean.rb
173
- lib/core/facets/range
174
- lib/core/facets/struct.rb
175
- lib/core/facets/nilclass.rb
176
- lib/core/facets/file
46
+ lib/core/facets/binding/caller.rb
47
+ lib/core/facets/binding/callstack.rb
48
+ lib/core/facets/binding/defined.rb
49
+ lib/core/facets/binding/eval.rb
50
+ lib/core/facets/binding/local_variables.rb
51
+ lib/core/facets/binding/opvars.rb
52
+ lib/core/facets/binding/self.rb
53
+ lib/core/facets/binding.rb
177
54
  lib/core/facets/bitmask.rb
178
- lib/core/facets/integer.rb
179
- lib/core/facets/exception.rb
180
- lib/core/facets/comparable.rb
181
- lib/core/facets/float.rb
182
- lib/core/facets/hash
183
- lib/core/facets/kernel
184
- lib/core/facets/struct
55
+ lib/core/facets/blank.rb
56
+ lib/core/facets/boolean.rb
57
+ lib/core/facets/cattr.rb
58
+ lib/core/facets/class
59
+ lib/core/facets/class/cattr.rb
60
+ lib/core/facets/class/cattr_accessor.rb
61
+ lib/core/facets/class/cattr_reader.rb
62
+ lib/core/facets/class/cattr_writer.rb
63
+ lib/core/facets/class/descendents.rb
64
+ lib/core/facets/class/methodize.rb
65
+ lib/core/facets/class/pathize.rb
66
+ lib/core/facets/class/prepend.rb
67
+ lib/core/facets/class/subclasses.rb
68
+ lib/core/facets/class/to_proc.rb
69
+ lib/core/facets/class.rb
185
70
  lib/core/facets/comparable
186
- lib/core/facets/regexp.rb
71
+ lib/core/facets/comparable/at_least.rb
72
+ lib/core/facets/comparable/at_most.rb
73
+ lib/core/facets/comparable/bound.rb
74
+ lib/core/facets/comparable/cap.rb
75
+ lib/core/facets/comparable/clip.rb
76
+ lib/core/facets/comparable/cmp.rb
77
+ lib/core/facets/comparable/comparable.rb
78
+ lib/core/facets/comparable.rb
79
+ lib/core/facets/denumerable.rb
80
+ lib/core/facets/dir
81
+ lib/core/facets/dir/ascend.rb
82
+ lib/core/facets/dir/descend.rb
83
+ lib/core/facets/dir/multiglob.rb
84
+ lib/core/facets/dir/parent.rb
85
+ lib/core/facets/dir/recurse.rb
86
+ lib/core/facets/dir.rb
87
+ lib/core/facets/duplicable.rb
187
88
  lib/core/facets/enumerable
188
- lib/core/facets/class.rb
189
- lib/core/facets/symbol.rb
190
- lib/core/facets/numeric.rb
191
- lib/core/facets/string
192
- lib/core/facets/module
193
- lib/core/facets/proc.rb
194
- lib/core/facets/array.rb
195
- lib/core/facets/time
89
+ lib/core/facets/enumerable/accumulate.rb
90
+ lib/core/facets/enumerable/cluster_by.rb
91
+ lib/core/facets/enumerable/collect.rb
92
+ lib/core/facets/enumerable/commonality.rb
93
+ lib/core/facets/enumerable/compact_map.rb
94
+ lib/core/facets/enumerable/count.rb
95
+ lib/core/facets/enumerable/defer.rb
96
+ lib/core/facets/enumerable/divide.rb
97
+ lib/core/facets/enumerable/duplicates.rb
98
+ lib/core/facets/enumerable/each_by.rb
99
+ lib/core/facets/enumerable/entropy.rb
100
+ lib/core/facets/enumerable/every.rb
101
+ lib/core/facets/enumerable/ewise.rb
102
+ lib/core/facets/enumerable/filter.rb
103
+ lib/core/facets/enumerable/frequency.rb
104
+ lib/core/facets/enumerable/graph.rb
105
+ lib/core/facets/enumerable/group_by.rb
106
+ lib/core/facets/enumerable/inject.rb
107
+ lib/core/facets/enumerable/map_send.rb
108
+ lib/core/facets/enumerable/map_with_index.rb
109
+ lib/core/facets/enumerable/mash.rb
110
+ lib/core/facets/enumerable/mode.rb
111
+ lib/core/facets/enumerable/modulate.rb
112
+ lib/core/facets/enumerable/none.rb
113
+ lib/core/facets/enumerable/occur.rb
114
+ lib/core/facets/enumerable/one.rb
115
+ lib/core/facets/enumerable/per.rb
116
+ lib/core/facets/enumerable/probability.rb
117
+ lib/core/facets/enumerable/split.rb
118
+ lib/core/facets/enumerable/sum.rb
119
+ lib/core/facets/enumerable/take.rb
120
+ lib/core/facets/enumerable/uniq_by.rb
196
121
  lib/core/facets/enumerable.rb
197
- lib/core/facets/functor.rb
198
- lib/core/facets/dir
199
- lib/core/facets/unboundmethod.rb
200
- lib/core/facets/filetest
201
- lib/core/facets/class
202
- lib/core/facets/array
203
- lib/core/facets/stackable.rb
204
- lib/core/facets/kernel.rb
205
- lib/core/facets/regexp
206
- lib/core/facets/matchdata
207
122
  lib/core/facets/exception
208
- lib/core/facets/string.rb
209
- lib/core/facets/binding.rb
210
- lib/core/facets/blank.rb
211
- lib/core/facets/integer/multiple.rb
212
- lib/core/facets/integer/ordinal.rb
213
- lib/core/facets/integer/odd.rb
214
- lib/core/facets/integer/length.rb
215
- lib/core/facets/integer/even.rb
216
- lib/core/facets/integer/factorial.rb
217
- lib/core/facets/integer/of.rb
218
- lib/core/facets/symbol/not.rb
219
- lib/core/facets/symbol/setter.rb
220
- lib/core/facets/symbol/re_s.rb
221
- lib/core/facets/symbol/plain.rb
222
- lib/core/facets/symbol/query.rb
223
- lib/core/facets/symbol/variablize.rb
224
- lib/core/facets/symbol/to_proc.rb
225
- lib/core/facets/symbol/generate.rb
226
- lib/core/facets/symbol/succ.rb
227
- lib/core/facets/symbol/chomp.rb
228
- lib/core/facets/objectspace/classes.rb
229
- lib/core/facets/unboundmethod/name.rb
230
- lib/core/facets/unboundmethod/arguments.rb
231
- lib/core/facets/nilclass/ergo.rb
232
- lib/core/facets/nilclass/to_f.rb
233
- lib/core/facets/numeric/distance.rb
234
- lib/core/facets/numeric/round.rb
235
- lib/core/facets/numeric/approx.rb
236
- lib/core/facets/binding/caller.rb
237
- lib/core/facets/binding/eval.rb
238
- lib/core/facets/binding/self.rb
239
- lib/core/facets/binding/local_variables.rb
240
- lib/core/facets/binding/callstack.rb
241
- lib/core/facets/binding/defined.rb
242
- lib/core/facets/binding/opvars.rb
243
- lib/core/facets/float/round.rb
244
- lib/core/facets/proc/update.rb
245
- lib/core/facets/proc/curry.rb
246
- lib/core/facets/proc/compose.rb
247
- lib/core/facets/proc/to_method.rb
248
- lib/core/facets/proc/bind.rb
249
- lib/core/facets/range/overlap.rb
250
- lib/core/facets/range/umbrella.rb
251
- lib/core/facets/range/combine.rb
252
- lib/core/facets/range/to_r.rb
253
- lib/core/facets/range/within.rb
123
+ lib/core/facets/exception/detail.rb
124
+ lib/core/facets/exception/raised.rb
125
+ lib/core/facets/exception/suppress.rb
126
+ lib/core/facets/exception.rb
127
+ lib/core/facets/file
128
+ lib/core/facets/file/append.rb
129
+ lib/core/facets/file/create.rb
130
+ lib/core/facets/file/null.rb
131
+ lib/core/facets/file/read.rb
132
+ lib/core/facets/file/rewrite.rb
254
133
  lib/core/facets/file/rootname.rb
134
+ lib/core/facets/file/split_all.rb
255
135
  lib/core/facets/file/split_root.rb
256
- lib/core/facets/file/null.rb
257
- lib/core/facets/file/create.rb
258
136
  lib/core/facets/file/write.rb
259
137
  lib/core/facets/file/writelines.rb
260
- lib/core/facets/file/append.rb
261
- lib/core/facets/file/split_all.rb
262
- lib/core/facets/file/rewrite.rb
263
- lib/core/facets/file/read.rb
264
- lib/core/facets/hash/new_with.rb
265
- lib/core/facets/hash/zipnew.rb
266
- lib/core/facets/hash/dearray_values.rb
267
- lib/core/facets/hash/update_values.rb
138
+ lib/core/facets/file.rb
139
+ lib/core/facets/filetest
140
+ lib/core/facets/filetest/root.rb
141
+ lib/core/facets/filetest.rb
142
+ lib/core/facets/float
143
+ lib/core/facets/float/round.rb
144
+ lib/core/facets/float.rb
145
+ lib/core/facets/functor.rb
146
+ lib/core/facets/hash
268
147
  lib/core/facets/hash/alias.rb
269
- lib/core/facets/hash/update.rb
148
+ lib/core/facets/hash/argumentize.rb
149
+ lib/core/facets/hash/at.rb
270
150
  lib/core/facets/hash/autonew.rb
271
- lib/core/facets/hash/recursively.rb
272
- lib/core/facets/hash/op_and.rb
273
- lib/core/facets/hash/op_sub.rb
151
+ lib/core/facets/hash/collate.rb
152
+ lib/core/facets/hash/dearray_values.rb
153
+ lib/core/facets/hash/delete.rb
154
+ lib/core/facets/hash/diff.rb
274
155
  lib/core/facets/hash/except.rb
275
- lib/core/facets/hash/stringify_keys.rb
156
+ lib/core/facets/hash/group_by_value.rb
157
+ lib/core/facets/hash/insert.rb
158
+ lib/core/facets/hash/inverse.rb
159
+ lib/core/facets/hash/join.rb
276
160
  lib/core/facets/hash/keys.rb
161
+ lib/core/facets/hash/mash.rb
277
162
  lib/core/facets/hash/merge.rb
278
- lib/core/facets/hash/traverse.rb
279
- lib/core/facets/hash/op_or.rb
163
+ lib/core/facets/hash/new_with.rb
280
164
  lib/core/facets/hash/op.rb
165
+ lib/core/facets/hash/op_add.rb
166
+ lib/core/facets/hash/op_and.rb
281
167
  lib/core/facets/hash/op_mul.rb
168
+ lib/core/facets/hash/op_or.rb
282
169
  lib/core/facets/hash/op_push.rb
283
- lib/core/facets/hash/inverse.rb
170
+ lib/core/facets/hash/op_sub.rb
284
171
  lib/core/facets/hash/recursive_merge.rb
285
- lib/core/facets/hash/to_proc.rb
286
- lib/core/facets/hash/insert.rb
287
- lib/core/facets/hash/select.rb
288
- lib/core/facets/hash/to_options.rb
289
- lib/core/facets/hash/diff.rb
290
- lib/core/facets/hash/mash.rb
291
- lib/core/facets/hash/collate.rb
292
- lib/core/facets/hash/delete.rb
293
- lib/core/facets/hash/weave.rb
294
- lib/core/facets/hash/swap.rb
295
- lib/core/facets/hash/to_struct.rb
296
- lib/core/facets/hash/symbolize_keys.rb
297
- lib/core/facets/hash/join.rb
298
- lib/core/facets/hash/group_by_value.rb
172
+ lib/core/facets/hash/recursively.rb
173
+ lib/core/facets/hash/rekey.rb
299
174
  lib/core/facets/hash/replace_each.rb
175
+ lib/core/facets/hash/select.rb
300
176
  lib/core/facets/hash/slice.rb
177
+ lib/core/facets/hash/stringify_keys.rb
178
+ lib/core/facets/hash/swap.rb
179
+ lib/core/facets/hash/symbolize_keys.rb
301
180
  lib/core/facets/hash/to_h.rb
302
- lib/core/facets/hash/op_add.rb
303
- lib/core/facets/hash/rekey.rb
181
+ lib/core/facets/hash/to_options.rb
182
+ lib/core/facets/hash/to_proc.rb
183
+ lib/core/facets/hash/to_struct.rb
184
+ lib/core/facets/hash/traverse.rb
185
+ lib/core/facets/hash/update.rb
304
186
  lib/core/facets/hash/update_each.rb
305
187
  lib/core/facets/hash/update_keys.rb
306
- lib/core/facets/hash/argumentize.rb
307
- lib/core/facets/hash/at.rb
308
- lib/core/facets/kernel/here.rb
309
- lib/core/facets/kernel/as.rb
188
+ lib/core/facets/hash/update_values.rb
189
+ lib/core/facets/hash/weave.rb
190
+ lib/core/facets/hash/zipnew.rb
191
+ lib/core/facets/hash.rb
192
+ lib/core/facets/indexable.rb
193
+ lib/core/facets/integer
194
+ lib/core/facets/integer/even.rb
195
+ lib/core/facets/integer/factorial.rb
196
+ lib/core/facets/integer/length.rb
197
+ lib/core/facets/integer/multiple.rb
198
+ lib/core/facets/integer/odd.rb
199
+ lib/core/facets/integer/of.rb
200
+ lib/core/facets/integer/ordinal.rb
201
+ lib/core/facets/integer.rb
202
+ lib/core/facets/kernel
203
+ lib/core/facets/kernel/__callee__.rb
310
204
  lib/core/facets/kernel/__class__.rb
205
+ lib/core/facets/kernel/__dir__.rb
206
+ lib/core/facets/kernel/__get__.rb
207
+ lib/core/facets/kernel/__here__.rb
208
+ lib/core/facets/kernel/__method__.rb
209
+ lib/core/facets/kernel/__set__.rb
210
+ lib/core/facets/kernel/as.rb
311
211
  lib/core/facets/kernel/ask.rb
312
- lib/core/facets/kernel/state.rb
313
- lib/core/facets/kernel/demo.rb
314
- lib/core/facets/kernel/maybe.rb
315
- lib/core/facets/kernel/instance_send.rb
316
- lib/core/facets/kernel/object_hexid.rb
317
- lib/core/facets/kernel/object_class.rb
318
- lib/core/facets/kernel/tap.rb
319
- lib/core/facets/kernel/instance.rb
320
- lib/core/facets/kernel/object_send.rb
321
- lib/core/facets/kernel/ergo.rb
212
+ lib/core/facets/kernel/attr_singleton.rb
213
+ lib/core/facets/kernel/callstack.rb
322
214
  lib/core/facets/kernel/complete.rb
323
- lib/core/facets/kernel/__get__.rb
324
- lib/core/facets/kernel/not_nil.rb
215
+ lib/core/facets/kernel/constant.rb
216
+ lib/core/facets/kernel/d.rb
325
217
  lib/core/facets/kernel/deep_copy.rb
326
- lib/core/facets/kernel/silence.rb
327
- lib/core/facets/kernel/require_all.rb
328
- lib/core/facets/kernel/qua_class.rb
329
- lib/core/facets/kernel/resc.rb
330
- lib/core/facets/kernel/instance_variables.rb
218
+ lib/core/facets/kernel/demo.rb
219
+ lib/core/facets/kernel/equate.rb
220
+ lib/core/facets/kernel/ergo.rb
221
+ lib/core/facets/kernel/extension.rb
222
+ lib/core/facets/kernel/here.rb
223
+ lib/core/facets/kernel/identical.rb
224
+ lib/core/facets/kernel/in.rb
331
225
  lib/core/facets/kernel/instance_assign.rb
332
- lib/core/facets/kernel/with.rb
333
- lib/core/facets/kernel/d.rb
334
- lib/core/facets/kernel/__set__.rb
335
- lib/core/facets/kernel/__method__.rb
336
226
  lib/core/facets/kernel/instance_class.rb
337
227
  lib/core/facets/kernel/instance_exec.rb
338
- lib/core/facets/kernel/attr_singleton.rb
228
+ lib/core/facets/kernel/instance_send.rb
229
+ lib/core/facets/kernel/instance_variables.rb
230
+ lib/core/facets/kernel/maybe.rb
231
+ lib/core/facets/kernel/method.rb
232
+ lib/core/facets/kernel/not_nil.rb
233
+ lib/core/facets/kernel/object_class.rb
234
+ lib/core/facets/kernel/object_hexid.rb
235
+ lib/core/facets/kernel/object_send.rb
236
+ lib/core/facets/kernel/object_state.rb
339
237
  lib/core/facets/kernel/p.rb
340
- lib/core/facets/kernel/singleton_class.rb
341
- lib/core/facets/kernel/try.rb
342
- lib/core/facets/kernel/__dir__.rb
343
- lib/core/facets/kernel/returning.rb
344
- lib/core/facets/kernel/callstack.rb
345
238
  lib/core/facets/kernel/populate.rb
346
- lib/core/facets/kernel/val.rb
347
- lib/core/facets/kernel/constant.rb
239
+ lib/core/facets/kernel/qua_class.rb
240
+ lib/core/facets/kernel/require_all.rb
348
241
  lib/core/facets/kernel/require_local.rb
349
- lib/core/facets/kernel/__callee__.rb
242
+ lib/core/facets/kernel/require_relative.rb
243
+ lib/core/facets/kernel/resc.rb
350
244
  lib/core/facets/kernel/respond.rb
351
- lib/core/facets/kernel/in.rb
352
- lib/core/facets/struct/attributes.rb
353
- lib/core/facets/comparable/cap.rb
354
- lib/core/facets/comparable/bound.rb
355
- lib/core/facets/comparable/cmp.rb
356
- lib/core/facets/comparable/clip.rb
357
- lib/core/facets/comparable/comparable.rb
358
- lib/core/facets/comparable/at_least.rb
359
- lib/core/facets/comparable/at_most.rb
360
- lib/core/facets/enumerable/take.rb
361
- lib/core/facets/enumerable/one.rb
362
- lib/core/facets/enumerable/cluster_by.rb
363
- lib/core/facets/enumerable/group_by.rb
364
- lib/core/facets/enumerable/sum.rb
365
- lib/core/facets/enumerable/mode.rb
366
- lib/core/facets/enumerable/graph.rb
367
- lib/core/facets/enumerable/commonality.rb
368
- lib/core/facets/enumerable/occur.rb
369
- lib/core/facets/enumerable/collect.rb
370
- lib/core/facets/enumerable/frequency.rb
371
- lib/core/facets/enumerable/divide.rb
372
- lib/core/facets/enumerable/inject.rb
373
- lib/core/facets/enumerable/duplicates.rb
374
- lib/core/facets/enumerable/none.rb
375
- lib/core/facets/enumerable/uniq_by.rb
376
- lib/core/facets/enumerable/accumulate.rb
377
- lib/core/facets/enumerable/mash.rb
378
- lib/core/facets/enumerable/modulate.rb
379
- lib/core/facets/enumerable/entropy.rb
380
- lib/core/facets/enumerable/split.rb
381
- lib/core/facets/enumerable/map_send.rb
382
- lib/core/facets/enumerable/probability.rb
383
- lib/core/facets/enumerable/map_with_index.rb
384
- lib/core/facets/enumerable/count.rb
385
- lib/core/facets/enumerable/each_by.rb
386
- lib/core/facets/enumerable/compact_map.rb
387
- lib/core/facets/string/shatter.rb
388
- lib/core/facets/string/file.rb
389
- lib/core/facets/string/to_re.rb
390
- lib/core/facets/string/fold.rb
391
- lib/core/facets/string/start_with.rb
392
- lib/core/facets/string/camelcase.rb
393
- lib/core/facets/string/lines.rb
394
- lib/core/facets/string/modulize.rb
395
- lib/core/facets/string/word_wrap.rb
396
- lib/core/facets/string/align.rb
397
- lib/core/facets/string/tab.rb
398
- lib/core/facets/string/methodize.rb
399
- lib/core/facets/string/op_sub.rb
400
- lib/core/facets/string/compress_lines.rb
401
- lib/core/facets/string/range.rb
402
- lib/core/facets/string/snakecase.rb
403
- lib/core/facets/string/each_char.rb
404
- lib/core/facets/string/divide.rb
405
- lib/core/facets/string/margin.rb
406
- lib/core/facets/string/mscan.rb
407
- lib/core/facets/string/capitalized.rb
408
- lib/core/facets/string/expand_tab.rb
409
- lib/core/facets/string/natcmp.rb
410
- lib/core/facets/string/variablize.rb
411
- lib/core/facets/string/bytes.rb
412
- lib/core/facets/string/subtract.rb
413
- lib/core/facets/string/pathize.rb
414
- lib/core/facets/string/outdent.rb
415
- lib/core/facets/string/indent.rb
416
- lib/core/facets/string/titlecase.rb
417
- lib/core/facets/string/tabto.rb
418
- lib/core/facets/string/words.rb
419
- lib/core/facets/string/interpolate.rb
420
- lib/core/facets/string/cleave.rb
421
- lib/core/facets/string/line_wrap.rb
422
- lib/core/facets/string/bracket.rb
423
- lib/core/facets/string/lowercase.rb
424
- lib/core/facets/string/chars.rb
425
- lib/core/facets/string/chomp.rb
426
- lib/core/facets/string/splice.rb
427
- lib/core/facets/string/rewrite.rb
428
- lib/core/facets/string/uppercase.rb
429
- lib/core/facets/string/nchar.rb
430
- lib/core/facets/string/xor.rb
431
- lib/core/facets/string/end_with.rb
432
- lib/core/facets/string/each_word.rb
433
- lib/core/facets/string/underscore.rb
434
- lib/core/facets/string/contains.rb
245
+ lib/core/facets/kernel/returning.rb
246
+ lib/core/facets/kernel/silence.rb
247
+ lib/core/facets/kernel/singleton_class.rb
248
+ lib/core/facets/kernel/source_location.rb
249
+ lib/core/facets/kernel/tap.rb
250
+ lib/core/facets/kernel/try.rb
251
+ lib/core/facets/kernel/val.rb
252
+ lib/core/facets/kernel/with.rb
253
+ lib/core/facets/kernel.rb
254
+ lib/core/facets/lazy.rb
255
+ lib/core/facets/matchdata
256
+ lib/core/facets/matchdata/match.rb
257
+ lib/core/facets/matchdata/matchset.rb
258
+ lib/core/facets/matchdata.rb
259
+ lib/core/facets/metaid.rb
260
+ lib/core/facets/module
261
+ lib/core/facets/module/abstract.rb
435
262
  lib/core/facets/module/alias_accessor.rb
436
- lib/core/facets/module/prepend.rb
263
+ lib/core/facets/module/alias_method_chain.rb
264
+ lib/core/facets/module/alias_module_function.rb
437
265
  lib/core/facets/module/ancestor.rb
438
- lib/core/facets/module/redirect_method.rb
439
- lib/core/facets/module/methodize.rb
440
- lib/core/facets/module/conflict.rb
266
+ lib/core/facets/module/attr_setter.rb
267
+ lib/core/facets/module/basename.rb
441
268
  lib/core/facets/module/can.rb
269
+ lib/core/facets/module/class.rb
270
+ lib/core/facets/module/conflict.rb
271
+ lib/core/facets/module/extend.rb
442
272
  lib/core/facets/module/include_function_module.rb
443
- lib/core/facets/module/redefine_method.rb
444
- lib/core/facets/module/op.rb
445
- lib/core/facets/module/pathize.rb
446
- lib/core/facets/module/alias_module_function.rb
273
+ lib/core/facets/module/instance_method.rb
447
274
  lib/core/facets/module/instance_methods.rb
448
- lib/core/facets/module/module_load.rb
275
+ lib/core/facets/module/integrate.rb
449
276
  lib/core/facets/module/is.rb
450
- lib/core/facets/module/nesting.rb
451
- lib/core/facets/module/class.rb
277
+ lib/core/facets/module/methodize.rb
452
278
  lib/core/facets/module/modspace.rb
453
- lib/core/facets/module/abstract.rb
279
+ lib/core/facets/module/module_load.rb
280
+ lib/core/facets/module/module_require.rb
281
+ lib/core/facets/module/nesting.rb
282
+ lib/core/facets/module/op.rb
283
+ lib/core/facets/module/pathize.rb
284
+ lib/core/facets/module/prepend.rb
285
+ lib/core/facets/module/redefine_method.rb
286
+ lib/core/facets/module/redirect_method.rb
454
287
  lib/core/facets/module/rename_method.rb
455
- lib/core/facets/module/integrate.rb
456
- lib/core/facets/module/alias_method_chain.rb
457
288
  lib/core/facets/module/revise.rb
458
- lib/core/facets/module/extend.rb
459
289
  lib/core/facets/module/spacename.rb
460
290
  lib/core/facets/module/wrap_method.rb
461
- lib/core/facets/module/basename.rb
462
- lib/core/facets/time/elapse.rb
463
- lib/core/facets/time/ago.rb
464
- lib/core/facets/time/trunc.rb
291
+ lib/core/facets/module.rb
292
+ lib/core/facets/nilclass
293
+ lib/core/facets/nilclass/ergo.rb
294
+ lib/core/facets/nilclass/to_f.rb
295
+ lib/core/facets/nilclass.rb
296
+ lib/core/facets/numeric
297
+ lib/core/facets/numeric/approx.rb
298
+ lib/core/facets/numeric/distance.rb
299
+ lib/core/facets/numeric/round.rb
300
+ lib/core/facets/numeric.rb
301
+ lib/core/facets/objectspace
302
+ lib/core/facets/objectspace/classes.rb
303
+ lib/core/facets/objectspace/op_fetch.rb
304
+ lib/core/facets/objectspace.rb
305
+ lib/core/facets/proc
306
+ lib/core/facets/proc/bind.rb
307
+ lib/core/facets/proc/compose.rb
308
+ lib/core/facets/proc/curry.rb
309
+ lib/core/facets/proc/to_method.rb
310
+ lib/core/facets/proc/update.rb
311
+ lib/core/facets/proc.rb
312
+ lib/core/facets/range
313
+ lib/core/facets/range/combine.rb
314
+ lib/core/facets/range/overlap.rb
315
+ lib/core/facets/range/to_r.rb
316
+ lib/core/facets/range/umbrella.rb
317
+ lib/core/facets/range/within.rb
318
+ lib/core/facets/range.rb
319
+ lib/core/facets/regexp
320
+ lib/core/facets/regexp/arity.rb
321
+ lib/core/facets/regexp/to_re.rb
322
+ lib/core/facets/regexp.rb
323
+ lib/core/facets/stackable.rb
324
+ lib/core/facets/string
325
+ lib/core/facets/string/align.rb
326
+ lib/core/facets/string/bracket.rb
327
+ lib/core/facets/string/bytes.rb
328
+ lib/core/facets/string/camelcase.rb
329
+ lib/core/facets/string/capitalized.rb
330
+ lib/core/facets/string/chars.rb
331
+ lib/core/facets/string/chomp.rb
332
+ lib/core/facets/string/cleave.rb
333
+ lib/core/facets/string/compress_lines.rb
334
+ lib/core/facets/string/contains.rb
335
+ lib/core/facets/string/divide.rb
336
+ lib/core/facets/string/each_char.rb
337
+ lib/core/facets/string/each_word.rb
338
+ lib/core/facets/string/end_with.rb
339
+ lib/core/facets/string/expand_tab.rb
340
+ lib/core/facets/string/file.rb
341
+ lib/core/facets/string/fold.rb
342
+ lib/core/facets/string/indent.rb
343
+ lib/core/facets/string/interpolate.rb
344
+ lib/core/facets/string/line_wrap.rb
345
+ lib/core/facets/string/lines.rb
346
+ lib/core/facets/string/lowercase.rb
347
+ lib/core/facets/string/margin.rb
348
+ lib/core/facets/string/methodize.rb
349
+ lib/core/facets/string/modulize.rb
350
+ lib/core/facets/string/mscan.rb
351
+ lib/core/facets/string/natcmp.rb
352
+ lib/core/facets/string/nchar.rb
353
+ lib/core/facets/string/op_sub.rb
354
+ lib/core/facets/string/outdent.rb
355
+ lib/core/facets/string/pathize.rb
356
+ lib/core/facets/string/range.rb
357
+ lib/core/facets/string/rewrite.rb
358
+ lib/core/facets/string/shatter.rb
359
+ lib/core/facets/string/snakecase.rb
360
+ lib/core/facets/string/splice.rb
361
+ lib/core/facets/string/start_with.rb
362
+ lib/core/facets/string/subtract.rb
363
+ lib/core/facets/string/tab.rb
364
+ lib/core/facets/string/tabto.rb
365
+ lib/core/facets/string/titlecase.rb
366
+ lib/core/facets/string/to_re.rb
367
+ lib/core/facets/string/underscore.rb
368
+ lib/core/facets/string/unfold.rb
369
+ lib/core/facets/string/uppercase.rb
370
+ lib/core/facets/string/variablize.rb
371
+ lib/core/facets/string/word_wrap.rb
372
+ lib/core/facets/string/words.rb
373
+ lib/core/facets/string/xor.rb
374
+ lib/core/facets/string.rb
375
+ lib/core/facets/struct
376
+ lib/core/facets/struct/attributes.rb
377
+ lib/core/facets/struct.rb
378
+ lib/core/facets/symbol
379
+ lib/core/facets/symbol/chomp.rb
380
+ lib/core/facets/symbol/generate.rb
381
+ lib/core/facets/symbol/not.rb
382
+ lib/core/facets/symbol/plain.rb
383
+ lib/core/facets/symbol/query.rb
384
+ lib/core/facets/symbol/re_s.rb
385
+ lib/core/facets/symbol/setter.rb
386
+ lib/core/facets/symbol/succ.rb
387
+ lib/core/facets/symbol/thrown.rb
388
+ lib/core/facets/symbol/to_proc.rb
389
+ lib/core/facets/symbol/variablize.rb
390
+ lib/core/facets/symbol.rb
391
+ lib/core/facets/time
465
392
  lib/core/facets/time/advance.rb
466
- lib/core/facets/time/round.rb
393
+ lib/core/facets/time/ago.rb
394
+ lib/core/facets/time/change.rb
395
+ lib/core/facets/time/elapse.rb
467
396
  lib/core/facets/time/hence.rb
397
+ lib/core/facets/time/round.rb
468
398
  lib/core/facets/time/set.rb
469
- lib/core/facets/time/to_time.rb
470
- lib/core/facets/time/change.rb
471
399
  lib/core/facets/time/stamp.rb
472
- lib/core/facets/dir/ascend.rb
473
- lib/core/facets/dir/multiglob.rb
474
- lib/core/facets/dir/recurse.rb
475
- lib/core/facets/dir/parent.rb
476
- lib/core/facets/dir/descend.rb
477
- lib/core/facets/filetest/root.rb
478
- lib/core/facets/class/prepend.rb
479
- lib/core/facets/class/cattr.rb
480
- lib/core/facets/class/methodize.rb
481
- lib/core/facets/class/subclasses.rb
482
- lib/core/facets/class/cattr_reader.rb
483
- lib/core/facets/class/pathize.rb
484
- lib/core/facets/class/descendents.rb
485
- lib/core/facets/class/to_proc.rb
486
- lib/core/facets/class/cattr_accessor.rb
487
- lib/core/facets/class/cattr_writer.rb
488
- lib/core/facets/array/product.rb
489
- lib/core/facets/array/recursively.rb
490
- lib/core/facets/array/not_empty.rb
491
- lib/core/facets/array/delete_unless.rb
492
- lib/core/facets/array/rotate.rb
493
- lib/core/facets/array/conjoin.rb
494
- lib/core/facets/array/indexable.rb
495
- lib/core/facets/array/merge.rb
496
- lib/core/facets/array/traverse.rb
497
- lib/core/facets/array/permutation.rb
498
- lib/core/facets/array/select.rb
499
- lib/core/facets/array/index.rb
500
- lib/core/facets/array/only.rb
501
- lib/core/facets/array/delete.rb
502
- lib/core/facets/array/combination.rb
503
- lib/core/facets/array/delete_values.rb
504
- lib/core/facets/array/splice.rb
505
- lib/core/facets/array/stackable.rb
506
- lib/core/facets/array/pad.rb
507
- lib/core/facets/regexp/to_re.rb
508
- lib/core/facets/regexp/arity.rb
509
- lib/core/facets/matchdata/match.rb
510
- lib/core/facets/matchdata/matchset.rb
511
- lib/core/facets/exception/suppress.rb
512
- lib/core/facets/exception/detail.rb
400
+ lib/core/facets/time/to_time.rb
401
+ lib/core/facets/time/trunc.rb
402
+ lib/core/facets/time.rb
403
+ lib/core/facets/to_hash.rb
404
+ lib/core/facets/unboundmethod
405
+ lib/core/facets/unboundmethod/arguments.rb
406
+ lib/core/facets/unboundmethod/name.rb
407
+ lib/core/facets/unboundmethod.rb
408
+ lib/core/facets-live.rb
409
+ lib/core/facets-load.rb
410
+ lib/core/facets.rb
411
+ lib/more
513
412
  lib/more/facets
514
- lib/more/facets/synchash.rb
515
- lib/more/facets/platform.rb
516
- lib/more/facets/pathlist.rb
517
- lib/more/facets/registerable.rb
518
- lib/more/facets/classmethods.rb
413
+ lib/more/facets/ansicode.rb
414
+ lib/more/facets/argvector.rb
415
+ lib/more/facets/autoarray.rb
416
+ lib/more/facets/autoreload.rb
417
+ lib/more/facets/basicobject.rb
418
+ lib/more/facets/blankslate.rb
419
+ lib/more/facets/capsule.rb
420
+ lib/more/facets/cgi.rb
421
+ lib/more/facets/class_extend.rb
519
422
  lib/more/facets/cloneable.rb
520
- lib/more/facets/expirable.rb
521
- lib/more/facets/pry.rb
522
- lib/more/facets/matcher.rb
523
- lib/more/facets/duration.rb
524
- lib/more/facets/opesc.rb
525
- lib/more/facets/main.rb
526
- lib/more/facets/censor.rb
423
+ lib/more/facets/continuation.rb
527
424
  lib/more/facets/coroutine.rb
528
- lib/more/facets/downloader.rb
529
- lib/more/facets/multiton.rb
530
- lib/more/facets/dependency.rb
531
- lib/more/facets/interval.rb
532
- lib/more/facets/openhash.rb
533
- lib/more/facets/memoize.rb
534
- lib/more/facets/autoarray.rb
535
- lib/more/facets/pqueue.rb
536
- lib/more/facets/syncarray.rb
537
- lib/more/facets/thread.rb
538
- lib/more/facets/iteration.rb
539
425
  lib/more/facets/daemonize.rb
540
- lib/more/facets/elementwise.rb
541
- lib/more/facets/reflection.rb
542
- lib/more/facets/lrucache.rb
543
- lib/more/facets/recorder.rb
544
- lib/more/facets/ansicode.rb
545
- lib/more/facets/bicrypt.rb
546
- lib/more/facets/version.rb
547
- lib/more/facets/multipliers.rb
548
- lib/more/facets/basex.rb
549
- lib/more/facets/typecast.rb
550
- lib/more/facets/association.rb
551
- lib/more/facets/nullclass.rb
552
- lib/more/facets/instantize.rb
426
+ lib/more/facets/date.rb
553
427
  lib/more/facets/dictionary.rb
554
- lib/more/facets/net
555
- lib/more/facets/autoreload.rb
556
- lib/more/facets/xoxo.rb
557
- lib/more/facets/memoizer.rb
558
- lib/more/facets/infinity.rb
559
- lib/more/facets/reference.rb
560
- lib/more/facets/attr.rb
561
- lib/more/facets/settings.rb
562
- lib/more/facets/heap.rb
563
- lib/more/facets/partial.rb
564
- lib/more/facets/openmodule.rb
565
- lib/more/facets/sparse_array.rb
428
+ lib/more/facets/duration.rb
429
+ lib/more/facets/enumargs.rb
430
+ lib/more/facets/enumerablepass.rb
431
+ lib/more/facets/enumerator.rb
432
+ lib/more/facets/equitable.rb
433
+ lib/more/facets/expirable.rb
434
+ lib/more/facets/fileable.rb
566
435
  lib/more/facets/filelist.rb
567
- lib/more/facets/1stclassmethod.rb
568
- lib/more/facets/overload.rb
569
- lib/more/facets/semaphore.rb
570
- lib/more/facets/consoleutils.rb
571
- lib/more/facets/methodspace.rb
572
- lib/more/facets/orderedhash.rb
573
- lib/more/facets/ioredirect.rb
574
- lib/more/facets/duplicable.rb
575
- lib/more/facets/pool.rb
436
+ lib/more/facets/fileutils
437
+ lib/more/facets/fileutils/head.rb
438
+ lib/more/facets/fileutils/safe_ln.rb
439
+ lib/more/facets/fileutils/slice.rb
440
+ lib/more/facets/fileutils/tail.rb
441
+ lib/more/facets/fileutils/wc.rb
442
+ lib/more/facets/fileutils/whereis.rb
443
+ lib/more/facets/fileutils/which.rb
444
+ lib/more/facets/fileutils.rb
445
+ lib/more/facets/getoptlong.rb
576
446
  lib/more/facets/hook.rb
577
- lib/more/facets/blankslate.rb
578
- lib/more/facets/capsule.rb
579
- lib/more/facets/tuple.rb
580
- lib/more/facets/string
581
- lib/more/facets/instantise.rb
582
- lib/more/facets/filter.rb
583
- lib/more/facets/rbsystem.rb
584
- lib/more/facets/argvector.rb
585
- lib/more/facets/nilstatus.rb
586
- lib/more/facets/ziputils.rb
447
+ lib/more/facets/inheritor.rb
448
+ lib/more/facets/instance_eval.rb
449
+ lib/more/facets/instance_function.rb
587
450
  lib/more/facets/instantiable.rb
588
- lib/more/facets/xmlhash.rb
451
+ lib/more/facets/ioredirect.rb
452
+ lib/more/facets/main.rb
453
+ lib/more/facets/memoize.rb
454
+ lib/more/facets/methodspace.rb
455
+ lib/more/facets/module
456
+ lib/more/facets/module/attr.rb
457
+ lib/more/facets/module/attr_tester.rb
458
+ lib/more/facets/module/attr_toggler.rb
459
+ lib/more/facets/module/attr_validator.rb
460
+ lib/more/facets/module/class_extend.rb
461
+ lib/more/facets/multipliers.rb
462
+ lib/more/facets/multiton.rb
463
+ lib/more/facets/nullclass.rb
464
+ lib/more/facets/once.rb
589
465
  lib/more/facets/opencascade.rb
466
+ lib/more/facets/opencollection.rb
467
+ lib/more/facets/openhash.rb
468
+ lib/more/facets/openmodule.rb
469
+ lib/more/facets/openobject.rb
470
+ lib/more/facets/opesc.rb
471
+ lib/more/facets/orderedhash.rb
472
+ lib/more/facets/ostruct.rb
590
473
  lib/more/facets/ostructable.rb
591
- lib/more/facets/elementor.rb
592
- lib/more/facets/succ.rb
593
- lib/more/facets/inheritor.rb
594
- lib/more/facets/equatable.rb
595
- lib/more/facets/nackclass.rb
596
- lib/more/facets/binreadable.rb
597
- lib/more/facets/timer.rb
598
- lib/more/facets/bbcode.rb
474
+ lib/more/facets/partial.rb
475
+ lib/more/facets/pathlist.rb
476
+ lib/more/facets/pathname.rb
477
+ lib/more/facets/platform.rb
478
+ lib/more/facets/preinitialize.rb
599
479
  lib/more/facets/progressbar.rb
600
- lib/more/facets/advisable.rb
601
- lib/more/facets/ini.rb
602
- lib/more/facets/uninheritable.rb
603
- lib/more/facets/enumerablepass.rb
604
- lib/more/facets/snapshot.rb
605
- lib/more/facets/minitar.rb
606
- lib/more/facets/paramix.rb
607
- lib/more/facets/class_extension.rb
608
- lib/more/facets/crypt.rb
609
- lib/more/facets/stash.rb
610
- lib/more/facets/openobject.rb
611
480
  lib/more/facets/random.rb
612
- lib/more/facets/opencollection.rb
613
- lib/more/facets/fileable.rb
614
- lib/more/facets/linkedlist.rb
481
+ lib/more/facets/rbconfig.rb
482
+ lib/more/facets/rbsystem.rb
483
+ lib/more/facets/recorder.rb
484
+ lib/more/facets/reference.rb
485
+ lib/more/facets/registerable.rb
486
+ lib/more/facets/set.rb
487
+ lib/more/facets/shellwords.rb
488
+ lib/more/facets/stash.rb
489
+ lib/more/facets/succ.rb
490
+ lib/more/facets/thread.rb
491
+ lib/more/facets/timer.rb
615
492
  lib/more/facets/tracepoint.rb
616
- lib/more/facets/net/smtp_tls.rb
617
- lib/more/facets/string/stylize.rb
618
- lib/more/facets/string/obfuscate.rb
619
- lib/more/facets/string/words.rb
620
- lib/more/facets/string/mask.rb
493
+ lib/more/facets/tuple.rb
494
+ lib/more/facets/uri.rb
495
+ lib/more/facets/version.rb
496
+ lib/more/facets/yaml.rb
497
+ lib/more/facets/zlib.rb
498
+ meta
499
+ meta/abstract
500
+ meta/authors
501
+ meta/contact
502
+ meta/contributors
621
503
  meta/created
622
504
  meta/homepage
623
- meta/summary
624
- meta/abstract
505
+ meta/license
506
+ meta/loadpath
507
+ meta/modified
625
508
  meta/package
626
509
  meta/releases
627
- meta/contributors
628
- meta/version
629
- meta/license
630
- meta/authors
510
+ meta/sitemap
631
511
  meta/slogan
632
- meta/modified
633
- meta/loadpath
634
- meta/contact
635
- task/methods
636
- task/test.rake
637
- task/conflicts
638
- task/rdoc.rake
639
- task/setup.rake
640
- task/coverage.rake
641
- test/lore
512
+ meta/summary
513
+ meta/version
514
+ test
642
515
  test/core
643
- test/more
644
- test/test_facets.rb
645
- test/lore/test_basicobject.rb
646
- test/lore/test_continuation.rb
647
- test/lore/test_ostruct.rb
648
- test/lore/test_date.rb
649
- test/lore/fileutils
650
- test/core/integer
651
- test/core/test_metaid.rb
652
- test/core/symbol
653
- test/core/unboundmethod
654
- test/core/nilclass
655
- test/core/numeric
656
- test/core/binding
657
- test/core/proc
658
- test/core/range
659
- test/core/file
660
- test/core/hash
661
- test/core/kernel
662
- test/core/comparable
663
- test/core/method
664
- test/core/enumerable
665
- test/core/string
666
- test/core/module
667
- test/core/test_to_hash.rb
668
- test/core/time
669
- test/core/dir
670
- test/core/filetest
671
- test/core/class
672
516
  test/core/array
673
- test/core/regexp
674
- test/core/matchdata
675
- test/core/exception
676
- test/core/integer/test_of.rb
677
- test/core/integer/test_factorial.rb
678
- test/core/integer/test_even.rb
679
- test/core/integer/test_ordinal.rb
680
- test/core/integer/test_odd.rb
681
- test/core/integer/test_bitmask.rb
682
- test/core/integer/test_length.rb
683
- test/core/integer/test_multiple.rb
684
- test/core/symbol/test_plain.rb
685
- test/core/symbol/test_generate.rb
686
- test/core/symbol/test_setter.rb
687
- test/core/symbol/test_chomp.rb
688
- test/core/symbol/test_not.rb
689
- test/core/symbol/test_succ.rb
690
- test/core/symbol/test_query.rb
691
- test/core/symbol/test_to_proc.rb
692
- test/core/unboundmethod/test_name.rb
693
- test/core/unboundmethod/test_arguments.rb
694
- test/core/nilclass/test_to_f.rb
695
- test/core/numeric/test_distance.rb
696
- test/core/numeric/test_round.rb
697
- test/core/numeric/test_approx.rb
517
+ test/core/array/test_combination.rb
518
+ test/core/array/test_delete.rb
519
+ test/core/array/test_index.rb
520
+ test/core/array/test_indexable.rb
521
+ test/core/array/test_merge.rb
522
+ test/core/array/test_only.rb
523
+ test/core/array/test_pad.rb
524
+ test/core/array/test_permutation.rb
525
+ test/core/array/test_product.rb
526
+ test/core/array/test_rotate.rb
527
+ test/core/array/test_select.rb
528
+ test/core/array/test_stackable.rb
529
+ test/core/binding
530
+ test/core/binding/test_caller.rb
698
531
  test/core/binding/test_defined.rb
699
- test/core/binding/test_self.rb
700
532
  test/core/binding/test_eval.rb
701
- test/core/binding/test_caller.rb
702
533
  test/core/binding/test_local_variables.rb
703
534
  test/core/binding/test_opvars.rb
704
- test/core/proc/test_bind.rb
705
- test/core/proc/test_to_method.rb
706
- test/core/proc/test_curry.rb
707
- test/core/proc/test_compose.rb
708
- test/core/range/test_overlap.rb
709
- test/core/range/test_combine.rb
710
- test/core/range/test_to_r.rb
711
- test/core/range/test_within.rb
712
- test/core/file/test_write.rb
713
- test/core/file/test_writelines.rb
714
- test/core/file/test_null.rb
715
- test/core/file/test_split_all.rb
716
- test/core/file/test_file.rb
535
+ test/core/binding/test_self.rb
536
+ test/core/class
537
+ test/core/class/test_cattr.rb
538
+ test/core/class/test_cattr_accessor.rb
539
+ test/core/class/test_cattr_reader.rb
540
+ test/core/class/test_cattr_writer.rb
541
+ test/core/class/test_descendents.rb
542
+ test/core/class/test_to_proc.rb
543
+ test/core/comparable
544
+ test/core/comparable/test_cap.rb
545
+ test/core/comparable/test_clip.rb
546
+ test/core/comparable/test_cmp.rb
547
+ test/core/comparable/test_comparable.rb
548
+ test/core/dir
549
+ test/core/dir/test_ascend.rb
550
+ test/core/dir/test_descend.rb
551
+ test/core/dir/test_multiglob.rb
552
+ test/core/dir/test_parent.rb
553
+ test/core/dir/test_recurse.rb
554
+ test/core/enumerable
555
+ test/core/enumerable/test_cluster_by.rb
556
+ test/core/enumerable/test_collect.rb
557
+ test/core/enumerable/test_commonality.rb
558
+ test/core/enumerable/test_count.rb
559
+ test/core/enumerable/test_defer.rb
560
+ test/core/enumerable/test_each_by.rb
561
+ test/core/enumerable/test_entropy.rb
562
+ test/core/enumerable/test_every.rb
563
+ test/core/enumerable/test_ewise.rb
564
+ test/core/enumerable/test_frequency.rb
565
+ test/core/enumerable/test_group_by.rb
566
+ test/core/enumerable/test_inject.rb
567
+ test/core/enumerable/test_mash.rb
568
+ test/core/enumerable/test_modulate.rb
569
+ test/core/enumerable/test_none.rb
570
+ test/core/enumerable/test_occur.rb
571
+ test/core/enumerable/test_one.rb
572
+ test/core/enumerable/test_per.rb
573
+ test/core/enumerable/test_probability.rb
574
+ test/core/enumerable/test_split.rb
575
+ test/core/enumerable/test_take.rb
576
+ test/core/enumerable/test_uniq_by.rb
577
+ test/core/exception
578
+ test/core/exception/test_exception.rb
579
+ test/core/file
717
580
  test/core/file/test_create.rb
581
+ test/core/file/test_file.rb
582
+ test/core/file/test_null.rb
718
583
  test/core/file/test_rewrite.rb
719
- test/core/hash/test_collate.rb
720
- test/core/hash/test_op_add.rb
721
- test/core/hash/test_keys.rb
722
- test/core/hash/test_inverse.rb
723
- test/core/hash/test_stringify_keys.rb
724
- test/core/hash/test_replace_each.rb
725
- test/core/hash/test_delete.rb
726
- test/core/hash/test_slice.rb
727
- test/core/hash/test_op_mul.rb
728
- test/core/hash/test_symbolize_keys.rb
729
- test/core/hash/test_weave.rb
730
- test/core/hash/test_update_keys.rb
584
+ test/core/file/test_split_all.rb
585
+ test/core/file/test_write.rb
586
+ test/core/file/test_writelines.rb
587
+ test/core/filetest
588
+ test/core/filetest/test_filetest.rb
589
+ test/core/hash
731
590
  test/core/hash/test_alias.rb
732
- test/core/hash/test_swap.rb
733
- test/core/hash/test_op_and.rb
734
591
  test/core/hash/test_at.rb
735
- test/core/hash/test_op.rb
736
- test/core/hash/test_select.rb
737
- test/core/hash/test_op_push.rb
738
- test/core/hash/test_op_or.rb
739
- test/core/hash/test_update_each.rb
740
- test/core/hash/test_update_values.rb
741
592
  test/core/hash/test_autonew.rb
742
- test/core/hash/test_insert.rb
593
+ test/core/hash/test_collate.rb
743
594
  test/core/hash/test_dearray_values.rb
744
- test/core/hash/test_traverse.rb
745
- test/core/hash/test_zipnew.rb
595
+ test/core/hash/test_delete.rb
596
+ test/core/hash/test_insert.rb
597
+ test/core/hash/test_inverse.rb
598
+ test/core/hash/test_keys.rb
746
599
  test/core/hash/test_mash.rb
747
600
  test/core/hash/test_merge.rb
601
+ test/core/hash/test_op.rb
602
+ test/core/hash/test_op_add.rb
603
+ test/core/hash/test_op_and.rb
604
+ test/core/hash/test_op_mul.rb
605
+ test/core/hash/test_op_or.rb
606
+ test/core/hash/test_op_push.rb
748
607
  test/core/hash/test_op_sub.rb
749
608
  test/core/hash/test_rekey.rb
750
- test/core/kernel/test_val.rb
751
- test/core/kernel/test_not_nil.rb
752
- test/core/kernel/test_resc.rb
609
+ test/core/hash/test_replace_each.rb
610
+ test/core/hash/test_select.rb
611
+ test/core/hash/test_slice.rb
612
+ test/core/hash/test_stringify_keys.rb
613
+ test/core/hash/test_swap.rb
614
+ test/core/hash/test_symbolize_keys.rb
615
+ test/core/hash/test_traverse.rb
616
+ test/core/hash/test_update_each.rb
617
+ test/core/hash/test_update_keys.rb
618
+ test/core/hash/test_update_values.rb
619
+ test/core/hash/test_weave.rb
620
+ test/core/hash/test_zipnew.rb
621
+ test/core/integer
622
+ test/core/integer/test_bitmask.rb
623
+ test/core/integer/test_even.rb
624
+ test/core/integer/test_factorial.rb
625
+ test/core/integer/test_length.rb
626
+ test/core/integer/test_multiple.rb
627
+ test/core/integer/test_odd.rb
628
+ test/core/integer/test_of.rb
629
+ test/core/integer/test_ordinal.rb
630
+ test/core/kernel
631
+ test/core/kernel/test_as.rb
753
632
  test/core/kernel/test_attr_singleton.rb
754
- test/core/kernel/test_constant.rb
755
- test/core/kernel/test_populate.rb
756
- test/core/kernel/test_callstack.rb
757
- test/core/kernel/test_instance_class.rb
758
- test/core/kernel/test_silence.rb
759
- test/core/kernel/test_object_hexid.rb
633
+ test/core/kernel/test_callstack.rb
634
+ test/core/kernel/test_constant.rb
635
+ test/core/kernel/test_deepcopy.rb
636
+ test/core/kernel/test_here.rb
760
637
  test/core/kernel/test_in.rb
761
638
  test/core/kernel/test_instance_assign.rb
639
+ test/core/kernel/test_instance_class.rb
640
+ test/core/kernel/test_method.rb
641
+ test/core/kernel/test_not_nil.rb
762
642
  test/core/kernel/test_object_class.rb
763
- test/core/kernel/test_tap.rb
643
+ test/core/kernel/test_object_hexid.rb
644
+ test/core/kernel/test_populate.rb
645
+ test/core/kernel/test_resc.rb
764
646
  test/core/kernel/test_returning.rb
765
- test/core/kernel/test_here.rb
766
- test/core/kernel/test_deepcopy.rb
767
- test/core/kernel/test_as.rb
768
- test/core/comparable/test_cmp.rb
769
- test/core/comparable/test_comparable.rb
770
- test/core/comparable/test_clip.rb
771
- test/core/comparable/test_cap.rb
772
- test/core/enumerable/test_uniq_by.rb
773
- test/core/enumerable/test_none.rb
774
- test/core/enumerable/test_frequency.rb
775
- test/core/enumerable/test_occur.rb
776
- test/core/enumerable/test_inject.rb
777
- test/core/enumerable/test_entropy.rb
778
- test/core/enumerable/test_modulate.rb
779
- test/core/enumerable/test_probability.rb
780
- test/core/enumerable/test_split.rb
781
- test/core/enumerable/test_cluster_by.rb
782
- test/core/enumerable/test_group_by.rb
783
- test/core/enumerable/test_commonality.rb
784
- test/core/enumerable/test_count.rb
785
- test/core/enumerable/test_each_by.rb
786
- test/core/enumerable/test_collect.rb
787
- test/core/enumerable/test_one.rb
788
- test/core/enumerable/test_mash.rb
789
- test/core/string/test_subtract.rb
790
- test/core/string/test_natcmp.rb
791
- test/core/string/test_margin.rb
792
- test/core/string/test_words.rb
647
+ test/core/kernel/test_silence.rb
648
+ test/core/kernel/test_tap.rb
649
+ test/core/kernel/test_val.rb
650
+ test/core/matchdata
651
+ test/core/matchdata/test_match.rb
652
+ test/core/matchdata/test_matchset.rb
653
+ test/core/method
654
+ test/core/module
655
+ test/core/module/test_abstract.rb
656
+ test/core/module/test_alias_accessor.rb
657
+ test/core/module/test_alias_method_chain.rb
658
+ test/core/module/test_alias_module_function.rb
659
+ test/core/module/test_ancestor.rb
660
+ test/core/module/test_basename.rb
661
+ test/core/module/test_can.rb
662
+ test/core/module/test_class.rb
663
+ test/core/module/test_conflict.rb
664
+ test/core/module/test_integrate.rb
665
+ test/core/module/test_is.rb
666
+ test/core/module/test_methodize.rb
667
+ test/core/module/test_modspace.rb
668
+ test/core/module/test_nesting.rb
669
+ test/core/module/test_op.rb
670
+ test/core/module/test_pathize.rb
671
+ test/core/module/test_prepend.rb
672
+ test/core/module/test_redefine_method.rb
673
+ test/core/module/test_redirect_method.rb
674
+ test/core/module/test_rename_method.rb
675
+ test/core/module/test_revise.rb
676
+ test/core/module/test_spacename.rb
677
+ test/core/module/test_wrap_method.rb
678
+ test/core/nilclass
679
+ test/core/nilclass/test_to_f.rb
680
+ test/core/numeric
681
+ test/core/numeric/test_approx.rb
682
+ test/core/numeric/test_distance.rb
683
+ test/core/numeric/test_round.rb
684
+ test/core/proc
685
+ test/core/proc/test_bind.rb
686
+ test/core/proc/test_compose.rb
687
+ test/core/proc/test_curry.rb
688
+ test/core/proc/test_to_method.rb
689
+ test/core/range
690
+ test/core/range/test_combine.rb
691
+ test/core/range/test_overlap.rb
692
+ test/core/range/test_to_r.rb
693
+ test/core/range/test_within.rb
694
+ test/core/regexp
695
+ test/core/regexp/test_arity.rb
696
+ test/core/regexp/test_to_re.rb
697
+ test/core/string
698
+ test/core/string/test_align.rb
699
+ test/core/string/test_bracket.rb
793
700
  test/core/string/test_bytes.rb
794
- test/core/string/test_each_char.rb
795
- test/core/string/test_tabto.rb
796
- test/core/string/test_outdent.rb
797
701
  test/core/string/test_camelcase.rb
798
- test/core/string/test_nchar.rb
799
- test/core/string/test_cleave.rb
800
702
  test/core/string/test_capitalized.rb
801
- test/core/string/test_titlecase.rb
703
+ test/core/string/test_chars.rb
704
+ test/core/string/test_cleave.rb
705
+ test/core/string/test_divide.rb
706
+ test/core/string/test_each_char.rb
707
+ test/core/string/test_each_word.rb
708
+ test/core/string/test_end_with.rb
802
709
  test/core/string/test_fold.rb
803
- test/core/string/test_line_wrap.rb
710
+ test/core/string/test_indent.rb
711
+ test/core/string/test_interpolate.rb
804
712
  test/core/string/test_lchomp.rb
805
- test/core/string/test_to_re.rb
806
- test/core/string/test_range.rb
807
- test/core/string/test_chars.rb
808
- test/core/string/test_align.rb
713
+ test/core/string/test_line_wrap.rb
809
714
  test/core/string/test_lines.rb
810
- test/core/string/test_word_wrap.rb
715
+ test/core/string/test_margin.rb
811
716
  test/core/string/test_methodize.rb
812
- test/core/string/test_xor.rb
813
- test/core/string/test_divide.rb
814
- test/core/string/test_snakecase.rb
717
+ test/core/string/test_modulize.rb
718
+ test/core/string/test_mscan.rb
719
+ test/core/string/test_natcmp.rb
720
+ test/core/string/test_nchar.rb
721
+ test/core/string/test_op_sub.rb
722
+ test/core/string/test_outdent.rb
723
+ test/core/string/test_pathize.rb
724
+ test/core/string/test_range.rb
725
+ test/core/string/test_rewrite.rb
815
726
  test/core/string/test_shatter.rb
727
+ test/core/string/test_snakecase.rb
816
728
  test/core/string/test_splice.rb
817
- test/core/string/test_end_with.rb
818
- test/core/string/test_interpolate.rb
819
729
  test/core/string/test_start_with.rb
730
+ test/core/string/test_subtract.rb
820
731
  test/core/string/test_tab.rb
821
- test/core/string/test_indent.rb
822
- test/core/string/test_rewrite.rb
823
- test/core/string/test_modulize.rb
732
+ test/core/string/test_tabto.rb
733
+ test/core/string/test_titlecase.rb
734
+ test/core/string/test_to_re.rb
735
+ test/core/string/test_unfold.rb
824
736
  test/core/string/test_variablize.rb
825
- test/core/string/test_op_sub.rb
826
- test/core/string/test_pathize.rb
827
- test/core/string/test_mscan.rb
828
- test/core/string/test_each_word.rb
829
- test/core/string/test_bracket.rb
830
- test/core/module/test_wrap_method.rb
831
- test/core/module/test_integrate.rb
832
- test/core/module/test_spacename.rb
833
- test/core/module/test_basename.rb
834
- test/core/module/test_nesting.rb
835
- test/core/module/test_class.rb
836
- test/core/module/test_alias_module_function.rb
837
- test/core/module/test_ancestor.rb
838
- test/core/module/test_modspace.rb
839
- test/core/module/test_rename_method.rb
840
- test/core/module/test_op.rb
841
- test/core/module/test_redirect_method.rb
842
- test/core/module/test_can.rb
843
- test/core/module/test_methodize.rb
844
- test/core/module/test_alias_method_chain.rb
845
- test/core/module/test_alias_accessor.rb
846
- test/core/module/test_revise.rb
847
- test/core/module/test_is.rb
848
- test/core/module/test_abstract.rb
849
- test/core/module/test_redefine_method.rb
850
- test/core/module/test_conflict.rb
851
- test/core/module/test_prepend.rb
852
- test/core/module/test_pathize.rb
853
- test/core/time/test_to_time.rb
737
+ test/core/string/test_word_wrap.rb
738
+ test/core/string/test_words.rb
739
+ test/core/string/test_xor.rb
740
+ test/core/symbol
741
+ test/core/symbol/test_chomp.rb
742
+ test/core/symbol/test_generate.rb
743
+ test/core/symbol/test_not.rb
744
+ test/core/symbol/test_plain.rb
745
+ test/core/symbol/test_query.rb
746
+ test/core/symbol/test_setter.rb
747
+ test/core/symbol/test_succ.rb
748
+ test/core/symbol/test_to_proc.rb
749
+ test/core/test_blank.rb
750
+ test/core/test_boolean.rb
751
+ test/core/test_functor.rb
752
+ test/core/test_metaid.rb
753
+ test/core/test_to_hash.rb
754
+ test/core/time
755
+ test/core/time/test_change.rb
756
+ test/core/time/test_elapse.rb
854
757
  test/core/time/test_hence.rb
855
- test/core/time/test_trunc.rb
856
758
  test/core/time/test_round.rb
857
759
  test/core/time/test_stamp.rb
858
- test/core/time/test_change.rb
859
- test/core/time/test_elapse.rb
860
- test/core/dir/test_descend.rb
861
- test/core/dir/test_ascend.rb
862
- test/core/dir/test_multiglob.rb
863
- test/core/dir/test_parent.rb
864
- test/core/dir/test_recurse.rb
865
- test/core/filetest/test_filetest.rb
866
- test/core/class/test_cattr_writer.rb
867
- test/core/class/test_cattr_reader.rb
868
- test/core/class/test_descendents.rb
869
- test/core/class/test_cattr_accessor.rb
870
- test/core/class/test_to_proc.rb
871
- test/core/class/test_cattr.rb
872
- test/core/array/test_combination.rb
873
- test/core/array/test_product.rb
874
- test/core/array/test_delete.rb
875
- test/core/array/test_stackable.rb
876
- test/core/array/test_select.rb
877
- test/core/array/test_only.rb
878
- test/core/array/test_indexable.rb
879
- test/core/array/test_index.rb
880
- test/core/array/test_permutation.rb
881
- test/core/array/test_pad.rb
882
- test/core/array/test_merge.rb
883
- test/core/array/test_rotate.rb
884
- test/core/regexp/test_to_re.rb
885
- test/core/regexp/test_arity.rb
886
- test/core/matchdata/test_matchset.rb
887
- test/core/matchdata/test_match.rb
888
- test/core/exception/test_exception.rb
889
- test/more/test_syncarray.rb
890
- test/more/test_crypt.rb
891
- test/more/test_infinity.rb
892
- test/more/test_1stclassmethod.rb
893
- test/more/test_typecast.rb
894
- test/more/test_buildable.rb
895
- test/more/test_instantise.rb
896
- test/more/test_openobject.rb
897
- test/more/test_equatable.rb
898
- test/more/test_uri.rb
899
- test/more/test_opencascade.rb
900
- test/more/test_multipliers.rb
901
- test/more/test_autoarray.rb
902
- test/more/test_random.rb
760
+ test/core/time/test_to_time.rb
761
+ test/core/time/test_trunc.rb
762
+ test/core/unboundmethod
763
+ test/core/unboundmethod/test_arguments.rb
764
+ test/core/unboundmethod/test_name.rb
765
+ test/more
766
+ test/more/test_ansicode.rb
903
767
  test/more/test_argvector.rb
904
- test/more/test_filter.rb
905
- test/more/test_boolean.rb
906
- test/more/test_prototype.rb
907
- test/more/test_elementwise.rb
908
- test/more/test_class_extension.rb
909
- test/more/test_thread.rb
910
- test/more/test_dependency.rb
911
- test/more/test_sparsearray.rb
912
- test/more/test_binreadable.rb
768
+ test/more/test_autoarray.rb
769
+ test/more/test_basicobject.rb
770
+ test/more/test_class_extend.rb
913
771
  test/more/test_cloneable.rb
914
- test/more/test_inheritor.rb
915
- test/more/test_uninheritable.rb
916
- test/more/test_timer.rb
917
- test/more/test_recorder.rb
918
- test/more/test_tuple.rb
919
- test/more/test_classmethods.rb
920
- test/more/test_association.rb
921
- test/more/test_blank.rb
922
- test/more/test_bbcode.rb
923
- test/more/test_memoize.rb
924
- test/more/test_interval.rb
925
- test/more/test_getoptlong.rb
926
- test/more/test_snapshot.rb
927
- test/more/test_succ.rb
772
+ test/more/test_continuation.rb
928
773
  test/more/test_coroutine.rb
929
- test/more/test_overload.rb
930
- test/more/test_elementor.rb
931
- test/more/test_enumerablepass.rb
932
- test/more/test_ansicode.rb
774
+ test/more/test_date.rb
933
775
  test/more/test_dictionary.rb
934
- test/more/test_lrucache.rb
935
- test/more/test_xoxo.rb
776
+ test/more/test_enumargs.rb
777
+ test/more/test_equitable.rb
778
+ test/more/test_getoptlong.rb
779
+ test/more/test_inheritor.rb
780
+ test/more/test_instance_function.rb
936
781
  test/more/test_instantiable.rb
937
- test/more/test_functor.rb
938
- test/more/test_linkedlist.rb
939
- test/more/test_partial.rb
782
+ test/more/test_memoize.rb
940
783
  test/more/test_methodspace.rb
941
- test/more/test_synchash.rb
942
- test/more/test_paramix.rb
784
+ test/more/test_multipliers.rb
943
785
  test/more/test_multiton.rb
944
- test/more/test_advisable.rb
786
+ test/more/test_opencascade.rb
787
+ test/more/test_openobject.rb
788
+ test/more/test_ostruct.rb
789
+ test/more/test_partial.rb
790
+ test/more/test_random.rb
791
+ test/more/test_recorder.rb
792
+ test/more/test_succ.rb
793
+ test/more/test_thread.rb
794
+ test/more/test_timer.rb
795
+ test/more/test_tuple.rb
796
+ test/more/test_uri.rb
797
+ Rakefile
798
+ HISTORY.rdoc
799
+ NOTES
800
+ TODO
801
+ README.rdoc
802
+ AUTHORS
803
+ COPYING