facets 1.7.46 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (764) hide show
  1. data/PROJECT +41 -23
  2. data/Rakefile +164 -0
  3. data/VERSION +1 -1
  4. data/demo/cuts/benchmark.rb +71 -0
  5. data/demo/cuts/override.rb +33 -0
  6. data/doc/AUTHORS +1 -0
  7. data/doc/{CHANGELOG.1 → HISTORY.1} +0 -0
  8. data/doc/HISTORY.txt +798 -0
  9. data/doc/LATEST +240 -0
  10. data/lib/facet/ann.rb +1 -0
  11. data/lib/facet/ann_attr.rb +1 -0
  12. data/lib/facet/arguments.rb +1 -0
  13. data/lib/facet/array/index.rb +1 -0
  14. data/lib/facet/array/to_path.rb +1 -0
  15. data/lib/facet/autoscript.rb +1 -0
  16. data/lib/facet/autovivify.rb +1 -0
  17. data/lib/facet/behvior.rb +1 -0
  18. data/lib/facet/buildingblock.rb +1 -0
  19. data/lib/facet/class/class_load.rb +1 -0
  20. data/lib/facet/class/class_require.rb +1 -0
  21. data/lib/facet/config/inspect.rb +1 -0
  22. data/lib/facet/consoleutils.rb +1 -0
  23. data/lib/facet/dependency.rb +1 -0
  24. data/lib/facet/dir/self/multiglob.rb +1 -0
  25. data/lib/facet/dir/self/multiglob_recurse.rb +1 -0
  26. data/lib/facet/dir/self/multiglob_sum.rb +1 -0
  27. data/lib/facet/enumerable/injecting.rb +1 -0
  28. data/lib/facet/file/self/yaml.rb +1 -0
  29. data/lib/facet/fileutils/compress.rb +1 -0
  30. data/lib/facet/fileutils/stage.rb +1 -0
  31. data/lib/facet/fileutils/staged.rb +1 -0
  32. data/lib/facet/hash/insert.rb +1 -0
  33. data/lib/facet/hash/op_add.rb +1 -0
  34. data/lib/facet/hash/op_and.rb +1 -0
  35. data/lib/facet/hash/op_mul.rb +1 -0
  36. data/lib/facet/hash/op_or.rb +1 -0
  37. data/lib/facet/hash/op_sub.rb +1 -0
  38. data/lib/facet/hash/pairs_at.rb +1 -0
  39. data/lib/facet/hash/rekey.rb +1 -0
  40. data/lib/facet/htmlfilter.rb +1 -0
  41. data/lib/facet/integer/to_roman.rb +1 -0
  42. data/lib/facet/kernel/ask.rb +1 -0
  43. data/lib/facet/kernel/class_def.rb +1 -0
  44. data/lib/facet/kernel/daemonize.rb +1 -0
  45. data/lib/facet/kernel/enable_warnings.rb +1 -0
  46. data/lib/facet/kernel/instance_class.rb +1 -0
  47. data/lib/facet/kernel/instance_values.rb +1 -0
  48. data/lib/facet/kernel/meta_alias.rb +1 -0
  49. data/lib/facet/kernel/meta_class.rb +1 -0
  50. data/lib/facet/kernel/meta_def.rb +1 -0
  51. data/lib/facet/kernel/meta_eval.rb +1 -0
  52. data/lib/facet/kernel/object_send.rb +1 -0
  53. data/lib/facet/kernel/populate.rb +1 -0
  54. data/lib/facet/kernel/qua_class.rb +1 -0
  55. data/lib/facet/kernel/silence_stream.rb +1 -0
  56. data/lib/facet/kernel/super_at.rb +1 -0
  57. data/lib/facet/kernel/supress.rb +1 -0
  58. data/lib/facet/kernel/with.rb +1 -0
  59. data/lib/facet/kernel/yaml.rb +1 -0
  60. data/lib/facet/minitar.rb +1 -0
  61. data/lib/facet/module/alias_accessor.rb +1 -0
  62. data/lib/facet/module/include_and_extend.rb +1 -0
  63. data/lib/facet/module/include_function_module.rb +1 -0
  64. data/lib/facet/module/module_load.rb +1 -0
  65. data/lib/facet/module/module_method.rb +1 -0
  66. data/lib/facet/module/module_require.rb +1 -0
  67. data/lib/facet/module/new.rb +1 -0
  68. data/lib/facet/module/prepend.rb +1 -0
  69. data/lib/facet/openhash.rb +1 -0
  70. data/lib/facet/ostruct/instance_delegate.rb +1 -0
  71. data/lib/facet/populate.rb +1 -0
  72. data/lib/facet/proc/bind.rb +1 -0
  73. data/lib/facet/proc/to_h.rb +1 -0
  74. data/lib/facet/proc/update.rb +1 -0
  75. data/lib/facet/script.rb +1 -0
  76. data/lib/facet/string/rewrite.rb +1 -0
  77. data/lib/facet/symbol/chomp.rb +1 -0
  78. data/lib/facet/uploadutils.rb +1 -0
  79. data/lib/facet/version_number.rb +1 -0
  80. data/lib/facets.rb +3 -207
  81. data/lib/facets/automatic.rb +29 -0
  82. data/lib/facets/core/all.rb +1 -1
  83. data/lib/facets/core/array/index.rb +15 -0
  84. data/lib/facets/core/array/to_path.rb +11 -0
  85. data/lib/facets/core/class/class_load.rb +3 -0
  86. data/lib/facets/core/class/class_require.rb +3 -0
  87. data/lib/facets/core/config/inspect.rb +9 -0
  88. data/lib/facets/core/dir/self/multiglob.rb +32 -0
  89. data/lib/facets/core/dir/self/multiglob_recurse.rb +5 -0
  90. data/lib/facets/core/dir/self/multiglob_sum.rb +40 -0
  91. data/lib/facets/core/enumerable/each_slice.rb +1 -0
  92. data/lib/facets/core/enumerable/every.rb +2 -2
  93. data/lib/facets/core/enumerable/injecting.rb +22 -0
  94. data/lib/facets/core/enumerable/partition_by.rb +10 -8
  95. data/lib/facets/core/file/self/yaml.rb +16 -0
  96. data/lib/facets/core/fileutils/compress.rb +154 -0
  97. data/lib/facets/core/fileutils/stage.rb +230 -0
  98. data/lib/facets/core/fileutils/staged.rb +3 -0
  99. data/lib/facets/core/hash/insert.rb +20 -0
  100. data/lib/facets/core/hash/op_add.rb +29 -0
  101. data/lib/facets/core/hash/op_and.rb +37 -0
  102. data/lib/facets/core/hash/op_mul.rb +17 -0
  103. data/lib/facets/core/hash/op_or.rb +2 -0
  104. data/lib/facets/core/hash/op_sub.rb +2 -0
  105. data/lib/facets/core/hash/pairs_at.rb +17 -0
  106. data/lib/facets/core/hash/rekey.rb +89 -0
  107. data/lib/facets/core/hash/reverse_merge.rb +6 -3
  108. data/lib/facets/core/inflect.rb +5 -14
  109. data/lib/facets/core/integer/to_roman.rb +20 -0
  110. data/lib/facets/core/kernel/as.rb +46 -29
  111. data/lib/facets/core/kernel/ask.rb +14 -0
  112. data/lib/facets/core/kernel/class_def.rb +10 -0
  113. data/lib/facets/core/kernel/daemonize.rb +21 -0
  114. data/lib/facets/core/kernel/enable_warnings.rb +14 -0
  115. data/lib/facets/core/kernel/{quaclass.rb → instance_class.rb} +7 -6
  116. data/lib/facets/core/kernel/instance_exec.rb +12 -10
  117. data/lib/facets/core/kernel/instance_values.rb +12 -0
  118. data/lib/facets/core/kernel/meta_alias.rb +14 -0
  119. data/lib/facets/core/kernel/meta_class.rb +38 -0
  120. data/lib/facets/core/kernel/meta_def.rb +14 -0
  121. data/lib/facets/core/kernel/meta_eval.rb +16 -0
  122. data/lib/facets/core/kernel/metaclass.rb +8 -12
  123. data/lib/facets/core/kernel/object_send.rb +21 -0
  124. data/lib/facets/core/kernel/populate.rb +39 -0
  125. data/lib/facets/core/kernel/qua_class.rb +41 -0
  126. data/lib/facets/core/kernel/returning.rb +7 -47
  127. data/lib/facets/core/kernel/send_as.rb +10 -4
  128. data/lib/facets/core/kernel/set_with.rb +25 -7
  129. data/lib/facets/core/kernel/silence_stream.rb +22 -0
  130. data/lib/facets/core/kernel/singleton.rb +1 -2
  131. data/lib/facets/core/kernel/{superior.rb → super_at.rb} +4 -1
  132. data/lib/facets/core/kernel/supermethod.rb +1 -1
  133. data/lib/facets/core/kernel/supress.rb +15 -0
  134. data/lib/facets/core/kernel/with.rb +57 -0
  135. data/lib/facets/core/kernel/yaml.rb +7 -0
  136. data/lib/facets/core/module/alias_accessor.rb +19 -0
  137. data/lib/facets/core/module/alias_method_chain.rb +33 -0
  138. data/lib/facets/core/module/class_extension.rb +1 -1
  139. data/lib/facets/core/module/include_and_extend.rb +10 -0
  140. data/lib/facets/core/module/include_as.rb +17 -16
  141. data/lib/facets/core/module/include_function_module.rb +13 -0
  142. data/lib/facets/core/module/inject.rb +1 -0
  143. data/lib/facets/core/module/memoize.rb +4 -3
  144. data/lib/facets/core/module/module_load.rb +51 -0
  145. data/lib/facets/core/module/module_method.rb +13 -0
  146. data/lib/facets/core/module/module_require.rb +3 -0
  147. data/lib/facets/core/module/namespace.rb +96 -36
  148. data/lib/facets/core/module/new.rb +37 -0
  149. data/lib/facets/core/module/prepend.rb +63 -0
  150. data/lib/facets/core/module/self/op_add.rb +16 -0
  151. data/lib/facets/core/ostruct.rb +6 -4
  152. data/lib/facets/core/ostruct/__merge__.rb +3 -50
  153. data/lib/facets/core/ostruct/__table__.rb +3 -10
  154. data/lib/facets/core/ostruct/__update__.rb +29 -0
  155. data/lib/facets/core/ostruct/instance_delegate.rb +58 -0
  156. data/lib/facets/core/ostruct/op_fetch.rb +18 -0
  157. data/lib/facets/core/ostruct/op_store.rb +3 -40
  158. data/lib/facets/core/proc/bind.rb +35 -0
  159. data/lib/facets/core/proc/to_h.rb +27 -0
  160. data/lib/facets/core/proc/to_method.rb +15 -29
  161. data/lib/facets/core/proc/update.rb +11 -0
  162. data/lib/facets/core/string/dresner.rb +1 -1
  163. data/lib/facets/core/string/rewrite.rb +34 -0
  164. data/lib/facets/core/symbol/chomp.rb +9 -0
  165. data/lib/facets/core/time/stamp.rb +32 -16
  166. data/lib/facets/more/ann.rb +249 -0
  167. data/lib/facets/more/ann_attr.rb +164 -0
  168. data/lib/facets/more/arguments.rb +479 -0
  169. data/lib/facets/more/autoscript.rb +34 -0
  170. data/lib/facets/more/autovivify.rb +16 -0
  171. data/lib/facets/more/basicobject.rb +67 -54
  172. data/lib/facets/more/behvior.rb +59 -0
  173. data/lib/facets/more/buildingblock.rb +192 -0
  174. data/lib/facets/more/command.rb +332 -146
  175. data/lib/facets/more/consoleutils.rb +45 -0
  176. data/lib/facets/more/cookie.rb +5 -2
  177. data/lib/facets/more/dependency.rb +199 -0
  178. data/lib/facets/more/dictionary.rb +49 -11
  179. data/lib/facets/more/functor.rb +33 -27
  180. data/lib/facets/more/htmlbuilder.rb +8 -18
  181. data/lib/facets/more/htmlfilter.rb +566 -0
  182. data/lib/facets/more/htmlhelper.rb +3 -8
  183. data/lib/facets/more/http.rb +0 -1
  184. data/lib/facets/more/httpaccess.rb +1 -1
  185. data/lib/facets/more/instance_intercept.rb +1 -1
  186. data/lib/facets/more/main_as_module.rb +2 -0
  187. data/lib/facets/more/methodfilter.rb +4 -0
  188. data/lib/facets/more/minitar.rb +979 -0
  189. data/lib/facets/more/multiton.rb +43 -24
  190. data/lib/facets/more/opencascade.rb +3 -3
  191. data/lib/facets/more/openhash.rb +350 -0
  192. data/lib/facets/more/openobject.rb +9 -306
  193. data/lib/facets/more/populate.rb +37 -0
  194. data/lib/facets/more/script.rb +157 -0
  195. data/lib/facets/more/uploadutils.rb +207 -0
  196. data/lib/facets/more/version_number.rb +98 -0
  197. data/lib/facets/more/xmlbuilder.rb +26 -21
  198. data/lib/facets/more/xmlhelper.rb +1 -1
  199. data/lib/facets/sys.rb +212 -0
  200. data/lib/facets/{more → yore}/annattr.rb +1 -1
  201. data/lib/facets/{more → yore}/annotation.rb +38 -32
  202. data/lib/facets/yore/builderobject.rb +222 -0
  203. data/lib/facets/{core → yore}/kernel/own.rb +0 -0
  204. data/lib/facets/{core → yore}/kernel/require_facet.rb +0 -0
  205. data/lib/facets/yore/module/inject.rb +9 -0
  206. data/lib/facets/yore/module/namespace.rb +62 -0
  207. data/setup.rb +2 -2
  208. data/test/special/main_as_module.rb +14 -0
  209. data/work/README +42 -0
  210. data/work/TODO +73 -0
  211. data/work/bin/minitar +3 -0
  212. data/work/bin/minitar.rb +814 -0
  213. data/work/core/array/at_rand.rb +95 -0
  214. data/work/core/array/each_slice.rb +23 -0
  215. data/work/core/array/pick_values.rb +32 -0
  216. data/work/core/array/rand_indexes.rb +33 -0
  217. data/work/core/binding/class.rb +11 -0
  218. data/work/core/binding/delegate-binding.rb +19 -0
  219. data/work/core/binding/delegate.rb +15 -0
  220. data/work/core/binding/proc.rb +6 -0
  221. data/work/core/class/to_module.rb +3 -0
  222. data/work/core/enumerable/op_fetch.rb +30 -0
  223. data/work/core/fileutils/cptouch.rb +20 -0
  224. data/work/core/fileutils/nl_convert.rb +133 -0
  225. data/work/core/io/expect.rb +127 -0
  226. data/work/core/join_with.rb +13 -0
  227. data/work/core/kernel/call_line.rb +15 -0
  228. data/work/core/kernel/does.rb +7 -0
  229. data/work/core/kernel/message.rb +6 -0
  230. data/work/core/kernel/query.rb +15 -0
  231. data/work/core/kernel/taint.rb +10 -0
  232. data/work/core/logger/clean_logger.rb +10 -0
  233. data/work/core/module/attr-old.rb +308 -0
  234. data/work/core/module/attr.rb +98 -0
  235. data/work/core/module/attr_xxx.rb +22 -0
  236. data/work/core/module/by_regexp.rb +21 -0
  237. data/work/core/module/cast.rb +64 -0
  238. data/work/core/module/class_attribute_accessors.rb +57 -0
  239. data/work/core/module/inherit.rb +99 -0
  240. data/work/core/module/inherit0.rb +59 -0
  241. data/work/core/module/let.rb +51 -0
  242. data/work/core/module/meta_attr.rb +60 -0
  243. data/work/core/module/module_attribute_accessors.rb +57 -0
  244. data/work/core/module/permissions.rb +32 -0
  245. data/work/core/module/preserved.rb +108 -0
  246. data/work/core/module/sattr_accessor.rb +1 -0
  247. data/work/core/module/sattr_reader.rb +1 -0
  248. data/work/core/module/sattr_setter.rb +1 -0
  249. data/work/core/module/sattr_tester.rb +1 -0
  250. data/work/core/module/sattr_writer.rb +1 -0
  251. data/work/core/module/tc_attr.rb +107 -0
  252. data/work/core/module/to_module.rb +37 -0
  253. data/work/core/module/version.rb +23 -0
  254. data/work/core/string/frequency.rb +40 -0
  255. data/work/core/string/op_add.rb +24 -0
  256. data/work/core/string/op_div.rb +15 -0
  257. data/work/core/string/pred.rb +217 -0
  258. data/work/core/string/probability.rb +35 -0
  259. data/work/core/string/succ_distance.rb +112 -0
  260. data/work/core/string/to_arr.rb +57 -0
  261. data/work/core/string/to_ary.rb +12 -0
  262. data/work/core/string/word_wrap.rb +62 -0
  263. data/work/misc/calibre/ProjectInfo.annotation +46 -0
  264. data/work/misc/calibre/ProjectInfo.ansicode +33 -0
  265. data/work/misc/calibre/ProjectInfo.association +34 -0
  266. data/work/misc/calibre/ProjectInfo.basicobject +36 -0
  267. data/work/misc/calibre/ProjectInfo.bbcode +34 -0
  268. data/work/misc/calibre/ProjectInfo.binaryreader +35 -0
  269. data/work/misc/calibre/ProjectInfo.bitmask +33 -0
  270. data/work/misc/calibre/ProjectInfo.classinherit +36 -0
  271. data/work/misc/calibre/ProjectInfo.classmethods +36 -0
  272. data/work/misc/calibre/ProjectInfo.cloneable +33 -0
  273. data/work/misc/calibre/ProjectInfo.consoleapp +35 -0
  274. data/work/misc/calibre/ProjectInfo.coroutine +37 -0
  275. data/work/misc/calibre/ProjectInfo.crypt +33 -0
  276. data/work/misc/calibre/ProjectInfo.dictionary +40 -0
  277. data/work/misc/calibre/ProjectInfo.downloader +39 -0
  278. data/work/misc/calibre/ProjectInfo.enumerablepass +35 -0
  279. data/work/misc/calibre/ProjectInfo.expirable +37 -0
  280. data/work/misc/calibre/ProjectInfo.floatstring +35 -0
  281. data/work/misc/calibre/ProjectInfo.functor +40 -0
  282. data/work/misc/calibre/ProjectInfo.heap +33 -0
  283. data/work/misc/calibre/ProjectInfo.inheritor +36 -0
  284. data/work/misc/calibre/ProjectInfo.interval +36 -0
  285. data/work/misc/calibre/ProjectInfo.lisp +38 -0
  286. data/work/misc/calibre/ProjectInfo.lrucache +34 -0
  287. data/work/misc/calibre/ProjectInfo.mathconstants +41 -0
  288. data/work/misc/calibre/ProjectInfo.methodprobe +38 -0
  289. data/work/misc/calibre/ProjectInfo.mock +34 -0
  290. data/work/misc/calibre/ProjectInfo.multiton +36 -0
  291. data/work/misc/calibre/ProjectInfo.nackclass +33 -0
  292. data/work/misc/calibre/ProjectInfo.nilcomparable +35 -0
  293. data/work/misc/calibre/ProjectInfo.nullclass +35 -0
  294. data/work/misc/calibre/ProjectInfo.one +37 -0
  295. data/work/misc/calibre/ProjectInfo.openobject +39 -0
  296. data/work/misc/calibre/ProjectInfo.paramix +38 -0
  297. data/work/misc/calibre/ProjectInfo.pool +33 -0
  298. data/work/misc/calibre/ProjectInfo.progressbar +37 -0
  299. data/work/misc/calibre/ProjectInfo.reference +36 -0
  300. data/work/misc/calibre/ProjectInfo.semaphore +36 -0
  301. data/work/misc/calibre/ProjectInfo.stateparser +39 -0
  302. data/work/misc/calibre/ProjectInfo.statichash +33 -0
  303. data/work/misc/calibre/ProjectInfo.system +34 -0
  304. data/work/misc/calibre/ProjectInfo.tagiterator +36 -0
  305. data/work/misc/calibre/ProjectInfo.timer +35 -0
  306. data/work/misc/calibre/ProjectInfo.tracepoint +37 -0
  307. data/work/misc/calibre/ProjectInfo.tuple +36 -0
  308. data/work/misc/calibre/ProjectInfo.uniheritable +34 -0
  309. data/work/misc/calibre/ProjectInfo.units +34 -0
  310. data/work/misc/calibre/ProjectInfo.yamlstruct +34 -0
  311. data/work/more/annotation-rw.rb +217 -0
  312. data/work/more/aobject.rb +132 -0
  313. data/work/more/autohash.rb +67 -0
  314. data/work/more/cache.rb +189 -0
  315. data/work/more/class_inheritable_attributes.rb +120 -0
  316. data/work/more/commandrunner.rb +101 -0
  317. data/work/more/daemon.rb +70 -0
  318. data/work/more/debugger.rb +167 -0
  319. data/work/more/detach.rb +423 -0
  320. data/work/more/enumtype.rb +115 -0
  321. data/work/more/ioreactor.rb +671 -0
  322. data/work/more/logger_sing.rb +207 -0
  323. data/work/more/must.rb +37 -0
  324. data/work/more/old-tkxml.rb +189 -0
  325. data/work/more/pairhash.rb +55 -0
  326. data/work/more/password.rb +80 -0
  327. data/work/more/print_exception.rb +35 -0
  328. data/work/more/rand.rb +412 -0
  329. data/work/more/range.rb +383 -0
  330. data/work/more/sanitize.rb +48 -0
  331. data/work/more/superstruct.rb +735 -0
  332. data/work/more/tag.rb +31 -0
  333. data/work/more/timer.rb +164 -0
  334. data/work/op_rshift.rb +87 -0
  335. data/work/pore/autorequire.rb +83 -0
  336. data/work/pore/basefactory.rb +40 -0
  337. data/work/pore/hash/each.rb +76 -0
  338. data/work/pore/merge3.rb +765 -0
  339. data/work/pore/superann.rb +134 -0
  340. data/work/pore/sys.rb +186 -0
  341. data/work/pore/utils.rb +518 -0
  342. data/work/yore/HashAquisition.rb +36 -0
  343. data/work/yore/Rakefile.old +181 -0
  344. data/work/yore/Reapfile +63 -0
  345. data/work/yore/annotation.rb +489 -0
  346. data/{test/lib/facets/more/test_annotation.rb → work/yore/annotation2.rb} +166 -18
  347. data/work/yore/commandutils.rb +379 -0
  348. data/work/yore/openobject.rb +298 -0
  349. data/work/yore/reap.rb +184 -0
  350. data/work/yore/reap.yml +47 -0
  351. data/work/yore/taskable-old.rb +519 -0
  352. data/{lib/facets/more → work/yore}/taskable.rb +176 -17
  353. metadata +1164 -1427
  354. data/doc/CHANGELOG +0 -146
  355. data/lib/facet/annattr.rb +0 -1
  356. data/lib/facet/annotation.rb +0 -1
  357. data/lib/facet/builderobject.rb +0 -1
  358. data/lib/facet/kernel/own.rb +0 -1
  359. data/lib/facet/kernel/quaclass.rb +0 -1
  360. data/lib/facet/kernel/require_facet.rb +0 -1
  361. data/lib/facet/kernel/superior.rb +0 -1
  362. data/lib/facet/one.rb +0 -1
  363. data/lib/facet/ostruct/instance.rb +0 -1
  364. data/lib/facet/predicate.rb +0 -1
  365. data/lib/facet/taskable.rb +0 -1
  366. data/lib/facets/core/ostruct/instance.rb +0 -37
  367. data/lib/facets/more/builderobject.rb +0 -97
  368. data/lib/facets/more/one.rb +0 -153
  369. data/lib/facets/more/predicate.rb +0 -184
  370. data/test/lib/facets/core/array/test_at_rand.rb +0 -34
  371. data/test/lib/facets/core/array/test_delete_unless.rb +0 -28
  372. data/test/lib/facets/core/array/test_delete_values.rb +0 -28
  373. data/test/lib/facets/core/array/test_delete_values_at.rb +0 -31
  374. data/test/lib/facets/core/array/test_first.rb +0 -46
  375. data/test/lib/facets/core/array/test_head.rb +0 -42
  376. data/test/lib/facets/core/array/test_last_index.rb +0 -26
  377. data/test/lib/facets/core/array/test_merge.rb +0 -35
  378. data/test/lib/facets/core/array/test_mid.rb +0 -33
  379. data/test/lib/facets/core/array/test_middle.rb +0 -29
  380. data/test/lib/facets/core/array/test_op_fetch.rb +0 -35
  381. data/test/lib/facets/core/array/test_pick.rb +0 -40
  382. data/test/lib/facets/core/array/test_pos.rb +0 -28
  383. data/test/lib/facets/core/array/test_pot.rb +0 -28
  384. data/test/lib/facets/core/array/test_pull.rb +0 -28
  385. data/test/lib/facets/core/array/test_rand_index.rb +0 -29
  386. data/test/lib/facets/core/array/test_rand_subset.rb +0 -29
  387. data/test/lib/facets/core/array/test_range.rb +0 -32
  388. data/test/lib/facets/core/array/test_rotate.rb +0 -36
  389. data/test/lib/facets/core/array/test_select.rb +0 -28
  390. data/test/lib/facets/core/array/test_shuffle.rb +0 -35
  391. data/test/lib/facets/core/array/test_thru.rb +0 -27
  392. data/test/lib/facets/core/array/test_to_b.rb +0 -27
  393. data/test/lib/facets/core/array/test_to_h.rb +0 -33
  394. data/test/lib/facets/core/array/test_to_hash.rb +0 -27
  395. data/test/lib/facets/core/binding/self/test_of_caller.rb +0 -35
  396. data/test/lib/facets/core/binding/test___LINE__.rb +0 -43
  397. data/test/lib/facets/core/binding/test_call_stack.rb +0 -34
  398. data/test/lib/facets/core/binding/test_called.rb +0 -30
  399. data/test/lib/facets/core/binding/test_caller.rb +0 -35
  400. data/test/lib/facets/core/binding/test_defined.rb +0 -34
  401. data/test/lib/facets/core/binding/test_eval.rb +0 -34
  402. data/test/lib/facets/core/binding/test_local_variables.rb +0 -34
  403. data/test/lib/facets/core/binding/test_method_name.rb +0 -34
  404. data/test/lib/facets/core/binding/test_op_fetch.rb +0 -34
  405. data/test/lib/facets/core/binding/test_op_store.rb +0 -35
  406. data/test/lib/facets/core/binding/test_self.rb +0 -34
  407. data/test/lib/facets/core/class/test_cattr.rb +0 -63
  408. data/test/lib/facets/core/class/test_descendents.rb +0 -30
  409. data/test/lib/facets/core/class/test_method_name.rb +0 -26
  410. data/test/lib/facets/core/class/test_remove_descendents.rb +0 -32
  411. data/test/lib/facets/core/class/test_unix_path.rb +0 -26
  412. data/test/lib/facets/core/comparable/test_at_least.rb +0 -34
  413. data/test/lib/facets/core/comparable/test_clip.rb +0 -44
  414. data/test/lib/facets/core/comparable/test_cmp.rb +0 -28
  415. data/test/lib/facets/core/continuation/self/test_create.rb +0 -26
  416. data/test/lib/facets/core/date/test_days_in_month.rb +0 -30
  417. data/test/lib/facets/core/date/test_days_of_month.rb +0 -30
  418. data/test/lib/facets/core/date/test_stamp.rb +0 -38
  419. data/test/lib/facets/core/date/test_to_date.rb +0 -30
  420. data/test/lib/facets/core/date/test_to_s.rb +0 -30
  421. data/test/lib/facets/core/date/test_to_time.rb +0 -30
  422. data/test/lib/facets/core/dir/self/test_ancestor.rb +0 -26
  423. data/test/lib/facets/core/dir/self/test_ascend.rb +0 -41
  424. data/test/lib/facets/core/enumerable/self/test_combinations.rb +0 -46
  425. data/test/lib/facets/core/enumerable/self/test_cross.rb +0 -31
  426. data/test/lib/facets/core/enumerable/test_collect_with_index.rb +0 -27
  427. data/test/lib/facets/core/enumerable/test_commonality.rb +0 -31
  428. data/test/lib/facets/core/enumerable/test_compact_collect.rb +0 -27
  429. data/test/lib/facets/core/enumerable/test_count.rb +0 -38
  430. data/test/lib/facets/core/enumerable/test_cross.rb +0 -30
  431. data/test/lib/facets/core/enumerable/test_each_by.rb +0 -71
  432. data/test/lib/facets/core/enumerable/test_each_combination.rb +0 -29
  433. data/test/lib/facets/core/enumerable/test_each_pair.rb +0 -29
  434. data/test/lib/facets/core/enumerable/test_each_slice.rb +0 -57
  435. data/test/lib/facets/core/enumerable/test_each_unique_pair.rb +0 -29
  436. data/test/lib/facets/core/enumerable/test_eachn.rb +0 -34
  437. data/test/lib/facets/core/enumerable/test_entropy.rb +0 -26
  438. data/test/lib/facets/core/enumerable/test_every.rb +0 -35
  439. data/test/lib/facets/core/enumerable/test_ew.rb +0 -31
  440. data/test/lib/facets/core/enumerable/test_filter_collect.rb +0 -31
  441. data/test/lib/facets/core/enumerable/test_find_collisions.rb +0 -30
  442. data/test/lib/facets/core/enumerable/test_frequency.rb +0 -27
  443. data/test/lib/facets/core/enumerable/test_graph.rb +0 -30
  444. data/test/lib/facets/core/enumerable/test_ideal_entropy.rb +0 -27
  445. data/test/lib/facets/core/enumerable/test_none.rb +0 -33
  446. data/test/lib/facets/core/enumerable/test_occur.rb +0 -30
  447. data/test/lib/facets/core/enumerable/test_one.rb +0 -35
  448. data/test/lib/facets/core/enumerable/test_op_pow.rb +0 -27
  449. data/test/lib/facets/core/enumerable/test_partition_by.rb +0 -31
  450. data/test/lib/facets/core/enumerable/test_permutation.rb +0 -29
  451. data/test/lib/facets/core/enumerable/test_permute.rb +0 -29
  452. data/test/lib/facets/core/enumerable/test_probability.rb +0 -27
  453. data/test/lib/facets/core/enumerable/test_to_h.rb +0 -27
  454. data/test/lib/facets/core/enumerable/test_uniq_by.rb +0 -28
  455. data/test/lib/facets/core/file/self/test_create.rb +0 -44
  456. data/test/lib/facets/core/file/self/test_open_as_string.rb +0 -50
  457. data/test/lib/facets/core/file/self/test_read_list.rb +0 -40
  458. data/test/lib/facets/core/file/self/test_sanitize.rb +0 -46
  459. data/test/lib/facets/core/file/self/test_split_all.rb +0 -27
  460. data/test/lib/facets/core/float/test_round_at.rb +0 -46
  461. data/test/lib/facets/core/float/test_round_to.rb +0 -46
  462. data/test/lib/facets/core/hash/self/test_zipnew.rb +0 -28
  463. data/test/lib/facets/core/hash/test_alias.rb +0 -31
  464. data/test/lib/facets/core/hash/test_assert_has_keys.rb +0 -27
  465. data/test/lib/facets/core/hash/test_assert_has_only_keys.rb +0 -27
  466. data/test/lib/facets/core/hash/test_at.rb +0 -28
  467. data/test/lib/facets/core/hash/test_collate.rb +0 -35
  468. data/test/lib/facets/core/hash/test_each_with_index.rb +0 -29
  469. data/test/lib/facets/core/hash/test_each_with_key.rb +0 -29
  470. data/test/lib/facets/core/hash/test_graph.rb +0 -28
  471. data/test/lib/facets/core/hash/test_has_keys.rb +0 -27
  472. data/test/lib/facets/core/hash/test_has_only_keys.rb +0 -27
  473. data/test/lib/facets/core/hash/test_inverse.rb +0 -30
  474. data/test/lib/facets/core/hash/test_normalize_keys.rb +0 -34
  475. data/test/lib/facets/core/hash/test_op_fetch.rb +0 -111
  476. data/test/lib/facets/core/hash/test_op_lshift.rb +0 -29
  477. data/test/lib/facets/core/hash/test_rand_key.rb +0 -27
  478. data/test/lib/facets/core/hash/test_rand_pair.rb +0 -27
  479. data/test/lib/facets/core/hash/test_rand_value.rb +0 -27
  480. data/test/lib/facets/core/hash/test_replace_each.rb +0 -29
  481. data/test/lib/facets/core/hash/test_shuffle.rb +0 -32
  482. data/test/lib/facets/core/hash/test_slice.rb +0 -27
  483. data/test/lib/facets/core/hash/test_stringify_keys.rb +0 -34
  484. data/test/lib/facets/core/hash/test_swap.rb +0 -27
  485. data/test/lib/facets/core/hash/test_swapkey.rb +0 -29
  486. data/test/lib/facets/core/hash/test_symbolize_keys.rb +0 -34
  487. data/test/lib/facets/core/hash/test_to_h.rb +0 -27
  488. data/test/lib/facets/core/hash/test_to_ostruct.rb +0 -30
  489. data/test/lib/facets/core/hash/test_to_ostruct_recurse.rb +0 -44
  490. data/test/lib/facets/core/hash/test_traverse.rb +0 -37
  491. data/test/lib/facets/core/hash/test_update_each.rb +0 -29
  492. data/test/lib/facets/core/hash/test_update_keys.rb +0 -28
  493. data/test/lib/facets/core/hash/test_update_values.rb +0 -28
  494. data/test/lib/facets/core/hash/test_weave.rb +0 -29
  495. data/test/lib/facets/core/integer/test_factorial.rb +0 -30
  496. data/test/lib/facets/core/integer/test_multiple.rb +0 -43
  497. data/test/lib/facets/core/integer/test_of.rb +0 -28
  498. data/test/lib/facets/core/integer/test_ordinal.rb +0 -29
  499. data/test/lib/facets/core/integer/test_times_collect.rb +0 -28
  500. data/test/lib/facets/core/kernel/test___class__.rb +0 -26
  501. data/test/lib/facets/core/kernel/test_as.rb +0 -42
  502. data/test/lib/facets/core/kernel/test_assign_from.rb +0 -31
  503. data/test/lib/facets/core/kernel/test_assign_with.rb +0 -31
  504. data/test/lib/facets/core/kernel/test_bool.rb +0 -41
  505. data/test/lib/facets/core/kernel/test_bug.rb +0 -26
  506. data/test/lib/facets/core/kernel/test_call_stack.rb +0 -26
  507. data/test/lib/facets/core/kernel/test_called.rb +0 -26
  508. data/test/lib/facets/core/kernel/test_callee.rb +0 -26
  509. data/test/lib/facets/core/kernel/test_constant.rb +0 -33
  510. data/test/lib/facets/core/kernel/test_copy.rb +0 -40
  511. data/test/lib/facets/core/kernel/test_deep_copy.rb +0 -40
  512. data/test/lib/facets/core/kernel/test_demo.rb +0 -28
  513. data/test/lib/facets/core/kernel/test_fn.rb +0 -26
  514. data/test/lib/facets/core/kernel/test_get_by_id.rb +0 -28
  515. data/test/lib/facets/core/kernel/test_here.rb +0 -26
  516. data/test/lib/facets/core/kernel/test_in.rb +0 -27
  517. data/test/lib/facets/core/kernel/test_instance_exec.rb +0 -52
  518. data/test/lib/facets/core/kernel/test_maybe.rb +0 -26
  519. data/test/lib/facets/core/kernel/test_metaclass.rb +0 -34
  520. data/test/lib/facets/core/kernel/test_method.rb +0 -32
  521. data/test/lib/facets/core/kernel/test_methods.rb +0 -50
  522. data/test/lib/facets/core/kernel/test_new.rb +0 -30
  523. data/test/lib/facets/core/kernel/test_object_class.rb +0 -26
  524. data/test/lib/facets/core/kernel/test_object_hexid.rb +0 -27
  525. data/test/lib/facets/core/kernel/test_quaclass.rb +0 -27
  526. data/test/lib/facets/core/kernel/test_require_all.rb +0 -26
  527. data/test/lib/facets/core/kernel/test_require_esc.rb +0 -27
  528. data/test/lib/facets/core/kernel/test_require_facet.rb +0 -27
  529. data/test/lib/facets/core/kernel/test_resc.rb +0 -27
  530. data/test/lib/facets/core/kernel/test_returning.rb +0 -30
  531. data/test/lib/facets/core/kernel/test_send_as.rb +0 -26
  532. data/test/lib/facets/core/kernel/test_set_from.rb +0 -33
  533. data/test/lib/facets/core/kernel/test_set_with.rb +0 -33
  534. data/test/lib/facets/core/kernel/test_silently.rb +0 -28
  535. data/test/lib/facets/core/kernel/test_singleton.rb +0 -40
  536. data/test/lib/facets/core/kernel/test_singleton_class.rb +0 -27
  537. data/test/lib/facets/core/kernel/test_superior.rb +0 -30
  538. data/test/lib/facets/core/kernel/test_supermethod.rb +0 -33
  539. data/test/lib/facets/core/kernel/test_this.rb +0 -26
  540. data/test/lib/facets/core/kernel/test_to_b.rb +0 -28
  541. data/test/lib/facets/core/kernel/test_to_bool.rb +0 -28
  542. data/test/lib/facets/core/kernel/test_to_data.rb +0 -59
  543. data/test/lib/facets/core/kernel/test_uri.rb +0 -30
  544. data/test/lib/facets/core/kernel/test_val.rb +0 -43
  545. data/test/lib/facets/core/kernel/test_with_accessor.rb +0 -51
  546. data/test/lib/facets/core/matchdata/test_match.rb +0 -29
  547. data/test/lib/facets/core/matchdata/test_matchtree.rb +0 -37
  548. data/test/lib/facets/core/module/self/test_op_add.rb +0 -48
  549. data/test/lib/facets/core/module/test_abstract.rb +0 -36
  550. data/test/lib/facets/core/module/test_alias_module_function.rb +0 -34
  551. data/test/lib/facets/core/module/test_ancestor.rb +0 -26
  552. data/test/lib/facets/core/module/test_basename.rb +0 -26
  553. data/test/lib/facets/core/module/test_by_name.rb +0 -29
  554. data/test/lib/facets/core/module/test_class_extension.rb +0 -70
  555. data/test/lib/facets/core/module/test_clone_using.rb +0 -55
  556. data/test/lib/facets/core/module/test_dirname.rb +0 -26
  557. data/test/lib/facets/core/module/test_equate_on.rb +0 -37
  558. data/test/lib/facets/core/module/test_include_as.rb +0 -35
  559. data/test/lib/facets/core/module/test_initializer.rb +0 -32
  560. data/test/lib/facets/core/module/test_instance_methods.rb +0 -59
  561. data/test/lib/facets/core/module/test_integrate.rb +0 -35
  562. data/test/lib/facets/core/module/test_memoize.rb +0 -50
  563. data/test/lib/facets/core/module/test_modspace.rb +0 -27
  564. data/test/lib/facets/core/module/test_namespace.rb +0 -33
  565. data/test/lib/facets/core/module/test_nesting.rb +0 -36
  566. data/test/lib/facets/core/module/test_nodef.rb +0 -30
  567. data/test/lib/facets/core/module/test_on_included.rb +0 -36
  568. data/test/lib/facets/core/module/test_redef.rb +0 -30
  569. data/test/lib/facets/core/module/test_redefine_method.rb +0 -30
  570. data/test/lib/facets/core/module/test_redirect.rb +0 -30
  571. data/test/lib/facets/core/module/test_redirect_method.rb +0 -30
  572. data/test/lib/facets/core/module/test_remove.rb +0 -30
  573. data/test/lib/facets/core/module/test_rename.rb +0 -31
  574. data/test/lib/facets/core/module/test_rename_method.rb +0 -31
  575. data/test/lib/facets/core/module/test_revisal.rb +0 -35
  576. data/test/lib/facets/core/module/test_shadow_method.rb +0 -30
  577. data/test/lib/facets/core/module/test_sort_on.rb +0 -42
  578. data/test/lib/facets/core/module/test_this.rb +0 -31
  579. data/test/lib/facets/core/module/test_wrap.rb +0 -30
  580. data/test/lib/facets/core/module/test_wrap_method.rb +0 -30
  581. data/test/lib/facets/core/nilclass/test_blank.rb +0 -26
  582. data/test/lib/facets/core/nilclass/test_empty.rb +0 -26
  583. data/test/lib/facets/core/nilclass/test_include.rb +0 -26
  584. data/test/lib/facets/core/nilclass/test_op_fetch.rb +0 -28
  585. data/test/lib/facets/core/nilclass/test_size.rb +0 -30
  586. data/test/lib/facets/core/nilclass/test_to_h.rb +0 -26
  587. data/test/lib/facets/core/numeric/test_approx.rb +0 -29
  588. data/test/lib/facets/core/numeric/test_ceil_multiple.rb +0 -31
  589. data/test/lib/facets/core/numeric/test_distance.rb +0 -28
  590. data/test/lib/facets/core/numeric/test_succ.rb +0 -40
  591. data/test/lib/facets/core/numeric/test_to_b.rb +0 -27
  592. data/test/lib/facets/core/ostruct/test___merge__.rb +0 -38
  593. data/test/lib/facets/core/ostruct/test___update__.rb +0 -29
  594. data/test/lib/facets/core/ostruct/test_op_fetch.rb +0 -27
  595. data/test/lib/facets/core/ostruct/test_op_store.rb +0 -28
  596. data/test/lib/facets/core/proc/test_compose.rb +0 -29
  597. data/test/lib/facets/core/proc/test_op_mul.rb +0 -34
  598. data/test/lib/facets/core/proc/test_to_method.rb +0 -44
  599. data/test/lib/facets/core/range/test_to_r.rb +0 -27
  600. data/test/lib/facets/core/range/test_to_range.rb +0 -27
  601. data/test/lib/facets/core/range/test_umbrella.rb +0 -34
  602. data/test/lib/facets/core/range/test_within.rb +0 -29
  603. data/test/lib/facets/core/regexp/test_arity.rb +0 -33
  604. data/test/lib/facets/core/regexp/test_to_re.rb +0 -27
  605. data/test/lib/facets/core/regexp/test_to_regexp.rb +0 -27
  606. data/test/lib/facets/core/string/self/test_interpolate.rb +0 -27
  607. data/test/lib/facets/core/string/self/test_patterns.rb +0 -28
  608. data/test/lib/facets/core/string/self/test_rand_letter.rb +0 -26
  609. data/test/lib/facets/core/string/test_align_center.rb +0 -34
  610. data/test/lib/facets/core/string/test_at_rand.rb +0 -35
  611. data/test/lib/facets/core/string/test_basename.rb +0 -41
  612. data/test/lib/facets/core/string/test_blank.rb +0 -27
  613. data/test/lib/facets/core/string/test_bracket.rb +0 -49
  614. data/test/lib/facets/core/string/test_camelcase.rb +0 -39
  615. data/test/lib/facets/core/string/test_camelize.rb +0 -26
  616. data/test/lib/facets/core/string/test_capitalized.rb +0 -26
  617. data/test/lib/facets/core/string/test_chars.rb +0 -27
  618. data/test/lib/facets/core/string/test_cmp.rb +0 -30
  619. data/test/lib/facets/core/string/test_demodulize.rb +0 -38
  620. data/test/lib/facets/core/string/test_divide.rb +0 -29
  621. data/test/lib/facets/core/string/test_downcase.rb +0 -26
  622. data/test/lib/facets/core/string/test_dresner.rb +0 -32
  623. data/test/lib/facets/core/string/test_each_char.rb +0 -29
  624. data/test/lib/facets/core/string/test_each_word.rb +0 -29
  625. data/test/lib/facets/core/string/test_first.rb +0 -43
  626. data/test/lib/facets/core/string/test_fold.rb +0 -34
  627. data/test/lib/facets/core/string/test_humanize.rb +0 -26
  628. data/test/lib/facets/core/string/test_indent.rb +0 -40
  629. data/test/lib/facets/core/string/test_index_all.rb +0 -26
  630. data/test/lib/facets/core/string/test_last.rb +0 -46
  631. data/test/lib/facets/core/string/test_line_wrap.rb +0 -27
  632. data/test/lib/facets/core/string/test_lines.rb +0 -26
  633. data/test/lib/facets/core/string/test_lowercase.rb +0 -26
  634. data/test/lib/facets/core/string/test_margin.rb +0 -117
  635. data/test/lib/facets/core/string/test_methodize.rb +0 -27
  636. data/test/lib/facets/core/string/test_modulize.rb +0 -29
  637. data/test/lib/facets/core/string/test_mscan.rb +0 -30
  638. data/test/lib/facets/core/string/test_natcmp.rb +0 -30
  639. data/test/lib/facets/core/string/test_nchar.rb +0 -29
  640. data/test/lib/facets/core/string/test_pathize.rb +0 -29
  641. data/test/lib/facets/core/string/test_pop.rb +0 -47
  642. data/test/lib/facets/core/string/test_pot.rb +0 -39
  643. data/test/lib/facets/core/string/test_push.rb +0 -40
  644. data/test/lib/facets/core/string/test_quote.rb +0 -49
  645. data/test/lib/facets/core/string/test_rand_byte.rb +0 -35
  646. data/test/lib/facets/core/string/test_rand_index.rb +0 -26
  647. data/test/lib/facets/core/string/test_range.rb +0 -27
  648. data/test/lib/facets/core/string/test_range_all.rb +0 -27
  649. data/test/lib/facets/core/string/test_range_of_line.rb +0 -28
  650. data/test/lib/facets/core/string/test_regesc.rb +0 -28
  651. data/test/lib/facets/core/string/test_shatter.rb +0 -29
  652. data/test/lib/facets/core/string/test_shift.rb +0 -40
  653. data/test/lib/facets/core/string/test_shuffle.rb +0 -27
  654. data/test/lib/facets/core/string/test_similarity.rb +0 -26
  655. data/test/lib/facets/core/string/test_singular.rb +0 -86
  656. data/test/lib/facets/core/string/test_soundex.rb +0 -41
  657. data/test/lib/facets/core/string/test_succ.rb +0 -29
  658. data/test/lib/facets/core/string/test_to_a.rb +0 -27
  659. data/test/lib/facets/core/string/test_to_b.rb +0 -41
  660. data/test/lib/facets/core/string/test_to_const.rb +0 -28
  661. data/test/lib/facets/core/string/test_to_date.rb +0 -30
  662. data/test/lib/facets/core/string/test_to_proc.rb +0 -33
  663. data/test/lib/facets/core/string/test_to_re.rb +0 -28
  664. data/test/lib/facets/core/string/test_to_time.rb +0 -30
  665. data/test/lib/facets/core/string/test_unix_crypt.rb +0 -30
  666. data/test/lib/facets/core/string/test_unpack.rb +0 -34
  667. data/test/lib/facets/core/string/test_unshift.rb +0 -39
  668. data/test/lib/facets/core/string/test_upcase.rb +0 -30
  669. data/test/lib/facets/core/string/test_whitespace.rb +0 -27
  670. data/test/lib/facets/core/string/test_word_filter.rb +0 -34
  671. data/test/lib/facets/core/string/test_word_wrap.rb +0 -51
  672. data/test/lib/facets/core/string/test_words.rb +0 -37
  673. data/test/lib/facets/core/symbol/test_camelcase.rb +0 -26
  674. data/test/lib/facets/core/symbol/test_camelize.rb +0 -27
  675. data/test/lib/facets/core/symbol/test_capitalize.rb +0 -26
  676. data/test/lib/facets/core/symbol/test_capitalized.rb +0 -27
  677. data/test/lib/facets/core/symbol/test_downcase.rb +0 -27
  678. data/test/lib/facets/core/symbol/test_not.rb +0 -29
  679. data/test/lib/facets/core/symbol/test_pad.rb +0 -27
  680. data/test/lib/facets/core/symbol/test_succ.rb +0 -28
  681. data/test/lib/facets/core/symbol/test_to_const.rb +0 -28
  682. data/test/lib/facets/core/symbol/test_to_proc.rb +0 -33
  683. data/test/lib/facets/core/symbol/test_to_str.rb +0 -28
  684. data/test/lib/facets/core/symbol/test_underscore.rb +0 -26
  685. data/test/lib/facets/core/symbol/test_upcase.rb +0 -27
  686. data/test/lib/facets/core/time/test_change.rb +0 -33
  687. data/test/lib/facets/core/time/test_elapse.rb +0 -27
  688. data/test/lib/facets/core/time/test_stamp.rb +0 -31
  689. data/test/lib/facets/core/time/test_to_date.rb +0 -31
  690. data/test/lib/facets/core/time/test_to_s.rb +0 -31
  691. data/test/lib/facets/core/time/test_to_time.rb +0 -31
  692. data/test/lib/facets/more/test_annattr.rb +0 -39
  693. data/test/lib/facets/more/test_ansicode.rb +0 -36
  694. data/test/lib/facets/more/test_association.rb +0 -51
  695. data/test/lib/facets/more/test_autoarray.rb +0 -32
  696. data/test/lib/facets/more/test_basicobject.rb +0 -67
  697. data/test/lib/facets/more/test_bbcode.rb +0 -34
  698. data/test/lib/facets/more/test_binaryreader.rb +0 -64
  699. data/test/lib/facets/more/test_bitmask.rb +0 -47
  700. data/test/lib/facets/more/test_bytes.rb +0 -84
  701. data/test/lib/facets/more/test_classmethods.rb +0 -69
  702. data/test/lib/facets/more/test_command.rb +0 -38
  703. data/test/lib/facets/more/test_coroutine.rb +0 -60
  704. data/test/lib/facets/more/test_crypt.rb +0 -46
  705. data/test/lib/facets/more/test_cut.rb +0 -198
  706. data/test/lib/facets/more/test_dictionary.rb +0 -97
  707. data/test/lib/facets/more/test_elementor.rb +0 -52
  708. data/test/lib/facets/more/test_enumerablepass.rb +0 -86
  709. data/test/lib/facets/more/test_floatstring.rb +0 -36
  710. data/test/lib/facets/more/test_functor.rb +0 -39
  711. data/test/lib/facets/more/test_htmlbuilder.rb +0 -38
  712. data/test/lib/facets/more/test_infinity.rb +0 -50
  713. data/test/lib/facets/more/test_inheritor.rb +0 -155
  714. data/test/lib/facets/more/test_instance_intercept.rb +0 -50
  715. data/test/lib/facets/more/test_interval.rb +0 -119
  716. data/test/lib/facets/more/test_json.rb +0 -232
  717. data/test/lib/facets/more/test_linkedlist.rb +0 -53
  718. data/test/lib/facets/more/test_lisp.rb +0 -47
  719. data/test/lib/facets/more/test_lisp_format.rb +0 -37
  720. data/test/lib/facets/more/test_lrucache.rb +0 -25
  721. data/test/lib/facets/more/test_mathconstants.rb +0 -18
  722. data/test/lib/facets/more/test_methodfilter.rb +0 -45
  723. data/test/lib/facets/more/test_methodprobe.rb +0 -53
  724. data/test/lib/facets/more/test_multipliers.rb +0 -114
  725. data/test/lib/facets/more/test_multiton.rb +0 -199
  726. data/test/lib/facets/more/test_nackclass.rb +0 -45
  727. data/test/lib/facets/more/test_nilcomparable.rb +0 -47
  728. data/test/lib/facets/more/test_opencascade.rb +0 -75
  729. data/test/lib/facets/more/test_openobject.rb +0 -126
  730. data/test/lib/facets/more/test_overload.rb +0 -54
  731. data/test/lib/facets/more/test_paramix.rb +0 -100
  732. data/test/lib/facets/more/test_pqueue.rb +0 -39
  733. data/test/lib/facets/more/test_predicate.rb +0 -79
  734. data/test/lib/facets/more/test_preinitialize.rb +0 -49
  735. data/test/lib/facets/more/test_promoteself.rb +0 -45
  736. data/test/lib/facets/more/test_recorder.rb +0 -44
  737. data/test/lib/facets/more/test_snapshot.rb +0 -34
  738. data/test/lib/facets/more/test_statichash.rb +0 -31
  739. data/test/lib/facets/more/test_syncarray.rb +0 -28
  740. data/test/lib/facets/more/test_synchash.rb +0 -28
  741. data/test/lib/facets/more/test_tagiterator.rb +0 -93
  742. data/test/lib/facets/more/test_taskable.rb +0 -190
  743. data/test/lib/facets/more/test_timer.rb +0 -66
  744. data/test/lib/facets/more/test_times.rb +0 -73
  745. data/test/lib/facets/more/test_tuple.rb +0 -64
  746. data/test/lib/facets/more/test_typecast.rb +0 -68
  747. data/test/lib/facets/more/test_uninheritable.rb +0 -42
  748. data/test/lib/facets/more/test_units.rb +0 -111
  749. data/test/lib/facets/more/test_xmlbuilder.rb +0 -38
  750. data/test/lib/facets/more/test_xmlhelper.rb +0 -40
  751. data/test/lib/facets/more/test_xoxo.rb +0 -288
  752. data/test/lib/facets/more/test_yamlstruct.rb +0 -37
  753. data/util/announce +0 -20
  754. data/util/changelog +0 -8
  755. data/util/count +0 -8
  756. data/util/extest +0 -8
  757. data/util/list +0 -38
  758. data/util/package +0 -9
  759. data/util/prepare +0 -12
  760. data/util/redirect +0 -34
  761. data/util/release +0 -13
  762. data/util/setup +0 -7
  763. data/util/test +0 -7
  764. data/util/version +0 -8
@@ -11,15 +11,21 @@
11
11
  # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
12
  # FOR A PARTICULAR PURPOSE.
13
13
  #
14
- # == Auhtor(s)
14
+ # == Author(s)
15
15
  #
16
16
  # * Thomas Sawyer
17
+ #
18
+ # == Developers Notes
19
+ #
20
+ # TODO The included call back does a comparison to Object.
21
+ # This is a bit of a hack b/c there is actually no way to
22
+ # check if it is the toplevel --a flaw w/ Ruby's toplevel proxy.
17
23
 
18
24
  # Author:: Thomas Sawyer
19
25
  # Copyright:: Copyright (c) 2006 Thomas Sawyer
20
26
  # License:: Ruby License
21
27
 
22
- $main = self
28
+ $toplevel = self
23
29
 
24
30
  # = Taskable
25
31
  #
@@ -30,16 +36,24 @@ $main = self
30
36
  #
31
37
  # NOTE Unlike methods, tasks can't take independent parameters
32
38
  # if they are to be used as prerequisites. The arguments passed
33
- # to a task call will aslo be passed to it's prequisites.
39
+ # to a task call will also be passed to it's prequisites.
34
40
  #
35
- # To use Taskable at the toplevel do:
41
+ # To use Taskable at the toplevel use:
36
42
  #
37
43
  # include Taskable
44
+ #
45
+ # Or if you want all modules to be "taskable":
46
+ #
47
+ # class Module
48
+ # include Taskable
49
+ # end
38
50
 
39
51
  module Taskable
40
52
 
41
- def self.included?( base )
42
- if base == $main
53
+ #
54
+
55
+ def self.included( base )
56
+ if base == Object #$toplevel
43
57
  require 'facets/more/main_as_module.rb'
44
58
  end
45
59
  end
@@ -65,28 +79,29 @@ module Taskable
65
79
  descriptions[name.to_sym] = desc!
66
80
 
67
81
  if action
68
- define_method( "->#{name}" , &action )
82
+ define_method( name , &action )
69
83
  else
70
- define_method( "->#{name}" ) {}
84
+ define_method( name ) {}
71
85
  end
86
+ alias_method "#{name}:task", name
72
87
 
73
88
  preqs = preqs.collect { |q| q.to_sym }.uniq
74
89
 
75
- define_method( "pre-#{name}" ) do |build|
90
+ define_method( "#{name}:preq" ) do |build|
76
91
  return build if preqs.empty?
77
92
  bld = [*build]
78
93
  (preqs - build).each { |n|
79
- bld.concat( send("pre-#{n}", bld) )
94
+ bld.concat( send("#{n}:preq", bld) )
80
95
  bld << n
81
96
  }
82
97
  bld.uniq
83
98
  end
84
99
 
85
100
  define_method( name ) do |*args|
86
- first = send("pre-#{name}",[])
87
- raise if first.include?(name.to_sym)
88
- first.each{|n| send("->#{n}",*args)}
89
- send("->#{name}",*args)
101
+ preq = send("#{name}:preq",[])
102
+ raise "recursive task prerequisites" if preq.include?(name.to_sym)
103
+ preq.each{|n| send("#{n}:task",*args)}
104
+ send("#{name}:task",*args)
90
105
  end
91
106
 
92
107
  end
@@ -105,12 +120,12 @@ module Taskable
105
120
  l
106
121
  end
107
122
 
108
- public
123
+ #
109
124
 
110
125
  def instance_tasks
111
126
  i = []
112
127
  instance_methods.each do |name|
113
- if name =~ /^->(.*)/
128
+ if name =~ /^(.*):task$/
114
129
  i << $1
115
130
  end
116
131
  end
@@ -132,8 +147,152 @@ module Taskable
132
147
  end
133
148
 
134
149
 
135
- class Module
150
+ module Rakeable
151
+
136
152
  include Taskable
153
+
154
+ #
155
+ def self.included( base )
156
+ if base == Object #$toplevel
157
+ require 'facets/more/main_as_module.rb'
158
+ end
159
+ end
160
+
161
+ # <b>Build a file</b>
162
+ #
163
+ # Task must be provide instructions
164
+ # for building the file.
165
+
166
+ def file( file_to_source, &build )
167
+ if Hash === file_to_source.last
168
+ source = file_to_source.values.flatten
169
+ file = file_to_source.keys[0]
170
+ end
171
+
172
+ task(file => source) do
173
+ needed = false
174
+ if File.exist?(file)
175
+ #source.each { |s| send(s) if respond_to?(s) }
176
+ timestamp = File.mtime(file)
177
+ needed = source.any? { |f| File.mtime(f.to_s) > timestamp }
178
+ else
179
+ timestamp = Time.now - 1
180
+ needed = true
181
+ end
182
+ if needed
183
+ build.call() #(source)
184
+ unless File.exist?(file) and File.mtime(file) > timestamp
185
+ raise "failed to build -- #{file}"
186
+ end
187
+ end
188
+ end
189
+ end
190
+
191
+ def rule(pattern_to_source, &build)
192
+ if Hash === file_to_source.last
193
+ source = file_to_source.values.flatten
194
+ target = file_to_source.keys[0]
195
+ end
196
+
197
+ @task[target] = RuleTask.new(target, source, build)
198
+ end
199
+
200
+ #
201
+
202
+ def task
203
+ super.merge(@task)
204
+ end
205
+
206
+ #
207
+
208
+ def tasks
209
+ super.merge(@task).keys
210
+ end
211
+
212
+ #def namespace
213
+ #end
214
+
215
+ def method_missing(sym)
216
+ target = sym.to_s
217
+ task = task()
218
+ hit = task.keys.find { |match|
219
+ case match
220
+ when Regexp
221
+ match =~ target
222
+ elsif target.index('*')
223
+ File.fnmatch(target, match)
224
+ else
225
+ match == target
226
+ end
227
+ }
228
+ if hit
229
+ task[hit].run(self)
230
+ end
231
+ end
232
+
233
+ end
234
+
235
+ #
236
+
237
+ class Task
238
+
239
+ def initialize( target, source, &build )
240
+ @target = target
241
+ @source = source
242
+ @build = build
243
+ end
244
+
245
+ def run( context )
246
+ task = self
247
+ source = @source
248
+ build = @build
249
+
250
+ context.instance_eval {
251
+ build.call(self)
252
+ end
253
+ end
254
+
255
+ end
256
+
257
+ #
258
+
259
+ class FileTask < Task
260
+
261
+ def run( context )
262
+ task = self
263
+ source = @source
264
+ build = @build
265
+
266
+ context.instance_eval {
267
+ needed = false
268
+ if File.exist?(file)
269
+ #source.each { |s| send(s) if respond_to?(s) }
270
+ timestamp = File.mtime(file)
271
+ needed = source.any? { |f| File.mtime(f.to_s) > timestamp }
272
+ else
273
+ timestamp = Time.now - 1
274
+ needed = true
275
+ end
276
+ if needed
277
+ build.call(task)
278
+ unless File.exist?(file) and File.mtime(file) > timestamp
279
+ raise "failed to build -- #{file}"
280
+ end
281
+ end
282
+ end
283
+ end
284
+
285
+ end
286
+
287
+ #
288
+
289
+ class RuleTask < FileTask
290
+
291
+ def run( context, target )
292
+ @target = name
293
+ super( context )
294
+ end
295
+
137
296
  end
138
297
 
139
298
 
metadata CHANGED
@@ -3,9 +3,9 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: facets
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.7.46
7
- date: 2006-09-08 00:00:00 -04:00
8
- summary: Exceptional collection of extensions and additions.
6
+ version: 1.8.0
7
+ date: 2007-01-24 00:00:00 -05:00
8
+ summary: If Godzilla were a Programmer's Library
9
9
  require_paths:
10
10
  - lib
11
11
  email: transfire@gmail.com
@@ -28,1789 +28,1526 @@ cert_chain:
28
28
  authors:
29
29
  - Thomas Sawyer <transfire@gmail.com>
30
30
  files:
31
- - util
32
- - test
33
- - demo
34
- - doc
35
- - lib
36
- - data
31
+ - setup.rb
32
+ - PROJECT
37
33
  - README
38
34
  - VERSION
39
- - PROJECT
40
- - setup.rb
41
- - util/changelog
42
- - util/announce
43
- - util/count
44
- - util/release
45
- - util/extest
46
- - util/version
47
- - util/redirect
48
- - util/list
49
- - util/test
50
- - util/prepare
51
- - util/setup
52
- - util/package
53
- - test/lib
54
- - test/lib/facets
55
- - test/lib/facets/more
56
- - test/lib/facets/more/test_lisp.rb
57
- - test/lib/facets/more/test_interval.rb
58
- - test/lib/facets/more/test_ansicode.rb
59
- - test/lib/facets/more/test_openobject.rb
60
- - test/lib/facets/more/test_nackclass.rb
61
- - test/lib/facets/more/test_synchash.rb
62
- - test/lib/facets/more/test_crypt.rb
63
- - test/lib/facets/more/test_bbcode.rb
64
- - test/lib/facets/more/test_bytes.rb
65
- - test/lib/facets/more/test_paramix.rb
66
- - test/lib/facets/more/test_pqueue.rb
67
- - test/lib/facets/more/test_nilcomparable.rb
68
- - test/lib/facets/more/test_cut.rb
69
- - test/lib/facets/more/test_multiton.rb
70
- - test/lib/facets/more/test_instance_intercept.rb
71
- - test/lib/facets/more/test_xoxo.rb
72
- - test/lib/facets/more/test_lrucache.rb
73
- - test/lib/facets/more/test_functor.rb
74
- - test/lib/facets/more/test_infinity.rb
75
- - test/lib/facets/more/test_classmethods.rb
76
- - test/lib/facets/more/test_tagiterator.rb
77
- - test/lib/facets/more/test_taskable.rb
78
- - test/lib/facets/more/test_lisp_format.rb
79
- - test/lib/facets/more/test_mathconstants.rb
80
- - test/lib/facets/more/test_enumerablepass.rb
81
- - test/lib/facets/more/test_uninheritable.rb
82
- - test/lib/facets/more/test_preinitialize.rb
83
- - test/lib/facets/more/test_opencascade.rb
84
- - test/lib/facets/more/test_json.rb
85
- - test/lib/facets/more/test_dictionary.rb
86
- - test/lib/facets/more/test_methodprobe.rb
87
- - test/lib/facets/more/test_tuple.rb
88
- - test/lib/facets/more/test_syncarray.rb
89
- - test/lib/facets/more/test_association.rb
90
- - test/lib/facets/more/test_xmlbuilder.rb
91
- - test/lib/facets/more/test_statichash.rb
92
- - test/lib/facets/more/test_times.rb
93
- - test/lib/facets/more/test_bitmask.rb
94
- - test/lib/facets/more/test_elementor.rb
95
- - test/lib/facets/more/test_typecast.rb
96
- - test/lib/facets/more/test_autoarray.rb
97
- - test/lib/facets/more/test_overload.rb
98
- - test/lib/facets/more/test_recorder.rb
99
- - test/lib/facets/more/test_units.rb
100
- - test/lib/facets/more/test_htmlbuilder.rb
101
- - test/lib/facets/more/test_coroutine.rb
102
- - test/lib/facets/more/test_multipliers.rb
103
- - test/lib/facets/more/test_inheritor.rb
104
- - test/lib/facets/more/test_promoteself.rb
105
- - test/lib/facets/more/test_yamlstruct.rb
106
- - test/lib/facets/more/test_xmlhelper.rb
107
- - test/lib/facets/more/test_methodfilter.rb
108
- - test/lib/facets/more/test_predicate.rb
109
- - test/lib/facets/more/test_timer.rb
110
- - test/lib/facets/more/test_floatstring.rb
111
- - test/lib/facets/more/test_linkedlist.rb
112
- - test/lib/facets/more/test_snapshot.rb
113
- - test/lib/facets/more/test_basicobject.rb
114
- - test/lib/facets/more/test_binaryreader.rb
115
- - test/lib/facets/more/test_annotation.rb
116
- - test/lib/facets/more/test_annattr.rb
117
- - test/lib/facets/more/test_command.rb
118
- - test/lib/facets/core/kernel
119
- - test/lib/facets/core/hash
120
- - test/lib/facets/core/range
121
- - test/lib/facets/core/time
122
- - test/lib/facets/core/numeric
123
- - test/lib/facets/core/proc
124
- - test/lib/facets/core/ostruct
125
- - test/lib/facets/core/comparable
126
- - test/lib/facets/core/continuation
127
- - test/lib/facets/core/date
128
- - test/lib/facets/core/dir
129
- - test/lib/facets/core/enumerable
130
- - test/lib/facets/core/file
131
- - test/lib/facets/core/module
132
- - test/lib/facets/core/matchdata
133
- - test/lib/facets/core/regexp
134
- - test/lib/facets/core/integer
135
- - test/lib/facets/core/class
136
- - test/lib/facets/core/float
137
- - test/lib/facets/core/symbol
138
- - test/lib/facets/core/string
139
- - test/lib/facets/core/nilclass
140
- - test/lib/facets/core/binding
141
- - test/lib/facets/core/array
142
- - test/lib/facets/core/kernel/test_supermethod.rb
143
- - test/lib/facets/core/kernel/test_maybe.rb
144
- - test/lib/facets/core/kernel/test_as.rb
145
- - test/lib/facets/core/kernel/test_fn.rb
146
- - test/lib/facets/core/kernel/test_object_hexid.rb
147
- - test/lib/facets/core/kernel/test_silently.rb
148
- - test/lib/facets/core/kernel/test_method.rb
149
- - test/lib/facets/core/kernel/test_here.rb
150
- - test/lib/facets/core/kernel/test_require_all.rb
151
- - test/lib/facets/core/kernel/test_called.rb
152
- - test/lib/facets/core/kernel/test_with_accessor.rb
153
- - test/lib/facets/core/kernel/test_singleton_class.rb
154
- - test/lib/facets/core/kernel/test_object_class.rb
155
- - test/lib/facets/core/kernel/test_in.rb
156
- - test/lib/facets/core/kernel/test_resc.rb
157
- - test/lib/facets/core/kernel/test_methods.rb
158
- - test/lib/facets/core/kernel/test_deep_copy.rb
159
- - test/lib/facets/core/kernel/test_returning.rb
160
- - test/lib/facets/core/kernel/test_metaclass.rb
161
- - test/lib/facets/core/kernel/test_to_data.rb
162
- - test/lib/facets/core/kernel/test_new.rb
163
- - test/lib/facets/core/kernel/test_bug.rb
164
- - test/lib/facets/core/kernel/test_callee.rb
165
- - test/lib/facets/core/kernel/test_quaclass.rb
166
- - test/lib/facets/core/kernel/test_instance_exec.rb
167
- - test/lib/facets/core/kernel/test_call_stack.rb
168
- - test/lib/facets/core/kernel/test_singleton.rb
169
- - test/lib/facets/core/kernel/test_require_esc.rb
170
- - test/lib/facets/core/kernel/test_val.rb
171
- - test/lib/facets/core/kernel/test_to_bool.rb
172
- - test/lib/facets/core/kernel/test_constant.rb
173
- - test/lib/facets/core/kernel/test_superior.rb
174
- - test/lib/facets/core/kernel/test_copy.rb
175
- - test/lib/facets/core/kernel/test___class__.rb
176
- - test/lib/facets/core/kernel/test_require_facet.rb
177
- - test/lib/facets/core/kernel/test_this.rb
178
- - test/lib/facets/core/kernel/test_send_as.rb
179
- - test/lib/facets/core/kernel/test_to_b.rb
180
- - test/lib/facets/core/kernel/test_uri.rb
181
- - test/lib/facets/core/kernel/test_assign_from.rb
182
- - test/lib/facets/core/kernel/test_bool.rb
183
- - test/lib/facets/core/kernel/test_set_with.rb
184
- - test/lib/facets/core/kernel/test_demo.rb
185
- - test/lib/facets/core/kernel/test_set_from.rb
186
- - test/lib/facets/core/kernel/test_get_by_id.rb
187
- - test/lib/facets/core/kernel/test_assign_with.rb
188
- - test/lib/facets/core/hash/self
189
- - test/lib/facets/core/hash/test_has_only_keys.rb
190
- - test/lib/facets/core/hash/test_to_ostruct.rb
191
- - test/lib/facets/core/hash/test_rand_key.rb
192
- - test/lib/facets/core/hash/test_to_ostruct_recurse.rb
193
- - test/lib/facets/core/hash/test_rand_value.rb
194
- - test/lib/facets/core/hash/test_graph.rb
195
- - test/lib/facets/core/hash/test_rand_pair.rb
196
- - test/lib/facets/core/hash/test_swap.rb
197
- - test/lib/facets/core/hash/test_stringify_keys.rb
198
- - test/lib/facets/core/hash/test_symbolize_keys.rb
199
- - test/lib/facets/core/hash/test_at.rb
200
- - test/lib/facets/core/hash/test_collate.rb
201
- - test/lib/facets/core/hash/test_traverse.rb
202
- - test/lib/facets/core/hash/test_each_with_key.rb
203
- - test/lib/facets/core/hash/test_assert_has_only_keys.rb
204
- - test/lib/facets/core/hash/test_op_fetch.rb
205
- - test/lib/facets/core/hash/test_inverse.rb
206
- - test/lib/facets/core/hash/test_each_with_index.rb
207
- - test/lib/facets/core/hash/test_alias.rb
208
- - test/lib/facets/core/hash/test_update_keys.rb
209
- - test/lib/facets/core/hash/test_swapkey.rb
210
- - test/lib/facets/core/hash/test_shuffle.rb
211
- - test/lib/facets/core/hash/test_slice.rb
212
- - test/lib/facets/core/hash/test_assert_has_keys.rb
213
- - test/lib/facets/core/hash/test_update_each.rb
214
- - test/lib/facets/core/hash/test_replace_each.rb
215
- - test/lib/facets/core/hash/test_has_keys.rb
216
- - test/lib/facets/core/hash/test_to_h.rb
217
- - test/lib/facets/core/hash/test_normalize_keys.rb
218
- - test/lib/facets/core/hash/test_update_values.rb
219
- - test/lib/facets/core/hash/test_weave.rb
220
- - test/lib/facets/core/hash/test_op_lshift.rb
221
- - test/lib/facets/core/hash/self/test_zipnew.rb
222
- - test/lib/facets/core/range/test_umbrella.rb
223
- - test/lib/facets/core/range/test_to_range.rb
224
- - test/lib/facets/core/range/test_to_r.rb
225
- - test/lib/facets/core/range/test_within.rb
226
- - test/lib/facets/core/time/test_to_time.rb
227
- - test/lib/facets/core/time/test_change.rb
228
- - test/lib/facets/core/time/test_stamp.rb
229
- - test/lib/facets/core/time/test_elapse.rb
230
- - test/lib/facets/core/time/test_to_date.rb
231
- - test/lib/facets/core/time/test_to_s.rb
232
- - test/lib/facets/core/numeric/test_approx.rb
233
- - test/lib/facets/core/numeric/test_distance.rb
234
- - test/lib/facets/core/numeric/test_to_b.rb
235
- - test/lib/facets/core/numeric/test_succ.rb
236
- - test/lib/facets/core/numeric/test_ceil_multiple.rb
237
- - test/lib/facets/core/proc/test_to_method.rb
238
- - test/lib/facets/core/proc/test_op_mul.rb
239
- - test/lib/facets/core/proc/test_compose.rb
240
- - test/lib/facets/core/ostruct/test___update__.rb
241
- - test/lib/facets/core/ostruct/test_op_store.rb
242
- - test/lib/facets/core/ostruct/test_op_fetch.rb
243
- - test/lib/facets/core/ostruct/test___merge__.rb
244
- - test/lib/facets/core/comparable/test_at_least.rb
245
- - test/lib/facets/core/comparable/test_clip.rb
246
- - test/lib/facets/core/comparable/test_cmp.rb
247
- - test/lib/facets/core/continuation/self
248
- - test/lib/facets/core/continuation/self/test_create.rb
249
- - test/lib/facets/core/date/test_to_s.rb
250
- - test/lib/facets/core/date/test_stamp.rb
251
- - test/lib/facets/core/date/test_days_in_month.rb
252
- - test/lib/facets/core/date/test_to_date.rb
253
- - test/lib/facets/core/date/test_to_time.rb
254
- - test/lib/facets/core/date/test_days_of_month.rb
255
- - test/lib/facets/core/dir/self
256
- - test/lib/facets/core/dir/self/test_ancestor.rb
257
- - test/lib/facets/core/dir/self/test_ascend.rb
258
- - test/lib/facets/core/enumerable/self
259
- - test/lib/facets/core/enumerable/test_cross.rb
260
- - test/lib/facets/core/enumerable/test_find_collisions.rb
261
- - test/lib/facets/core/enumerable/test_collect_with_index.rb
262
- - test/lib/facets/core/enumerable/test_every.rb
263
- - test/lib/facets/core/enumerable/test_to_h.rb
264
- - test/lib/facets/core/enumerable/test_filter_collect.rb
265
- - test/lib/facets/core/enumerable/test_none.rb
266
- - test/lib/facets/core/enumerable/test_probability.rb
267
- - test/lib/facets/core/enumerable/test_frequency.rb
268
- - test/lib/facets/core/enumerable/test_partition_by.rb
269
- - test/lib/facets/core/enumerable/test_graph.rb
270
- - test/lib/facets/core/enumerable/test_compact_collect.rb
271
- - test/lib/facets/core/enumerable/test_each_pair.rb
272
- - test/lib/facets/core/enumerable/test_ideal_entropy.rb
273
- - test/lib/facets/core/enumerable/test_each_by.rb
274
- - test/lib/facets/core/enumerable/test_entropy.rb
275
- - test/lib/facets/core/enumerable/test_count.rb
276
- - test/lib/facets/core/enumerable/test_commonality.rb
277
- - test/lib/facets/core/enumerable/test_op_pow.rb
278
- - test/lib/facets/core/enumerable/test_each_unique_pair.rb
279
- - test/lib/facets/core/enumerable/test_permute.rb
280
- - test/lib/facets/core/enumerable/test_each_combination.rb
281
- - test/lib/facets/core/enumerable/test_uniq_by.rb
282
- - test/lib/facets/core/enumerable/test_occur.rb
283
- - test/lib/facets/core/enumerable/test_eachn.rb
284
- - test/lib/facets/core/enumerable/test_each_slice.rb
285
- - test/lib/facets/core/enumerable/test_ew.rb
286
- - test/lib/facets/core/enumerable/test_one.rb
287
- - test/lib/facets/core/enumerable/test_permutation.rb
288
- - test/lib/facets/core/enumerable/self/test_cross.rb
289
- - test/lib/facets/core/enumerable/self/test_combinations.rb
290
- - test/lib/facets/core/file/self
291
- - test/lib/facets/core/file/self/test_read_list.rb
292
- - test/lib/facets/core/file/self/test_sanitize.rb
293
- - test/lib/facets/core/file/self/test_open_as_string.rb
294
- - test/lib/facets/core/file/self/test_split_all.rb
295
- - test/lib/facets/core/file/self/test_create.rb
296
- - test/lib/facets/core/module/self
297
- - test/lib/facets/core/module/test_revisal.rb
298
- - test/lib/facets/core/module/test_redirect.rb
299
- - test/lib/facets/core/module/test_by_name.rb
300
- - test/lib/facets/core/module/test_memoize.rb
301
- - test/lib/facets/core/module/test_remove.rb
302
- - test/lib/facets/core/module/test_sort_on.rb
303
- - test/lib/facets/core/module/test_ancestor.rb
304
- - test/lib/facets/core/module/test_wrap.rb
305
- - test/lib/facets/core/module/test_modspace.rb
306
- - test/lib/facets/core/module/test_rename.rb
307
- - test/lib/facets/core/module/test_shadow_method.rb
308
- - test/lib/facets/core/module/test_dirname.rb
309
- - test/lib/facets/core/module/test_class_extension.rb
310
- - test/lib/facets/core/module/test_redefine_method.rb
311
- - test/lib/facets/core/module/test_redirect_method.rb
312
- - test/lib/facets/core/module/test_nesting.rb
313
- - test/lib/facets/core/module/test_nodef.rb
314
- - test/lib/facets/core/module/test_instance_methods.rb
315
- - test/lib/facets/core/module/test_include_as.rb
316
- - test/lib/facets/core/module/test_redef.rb
317
- - test/lib/facets/core/module/test_alias_module_function.rb
318
- - test/lib/facets/core/module/test_on_included.rb
319
- - test/lib/facets/core/module/test_wrap_method.rb
320
- - test/lib/facets/core/module/test_namespace.rb
321
- - test/lib/facets/core/module/test_initializer.rb
322
- - test/lib/facets/core/module/test_clone_using.rb
323
- - test/lib/facets/core/module/test_abstract.rb
324
- - test/lib/facets/core/module/test_this.rb
325
- - test/lib/facets/core/module/test_equate_on.rb
326
- - test/lib/facets/core/module/test_basename.rb
327
- - test/lib/facets/core/module/test_rename_method.rb
328
- - test/lib/facets/core/module/test_integrate.rb
329
- - test/lib/facets/core/module/self/test_op_add.rb
330
- - test/lib/facets/core/matchdata/test_matchtree.rb
331
- - test/lib/facets/core/matchdata/test_match.rb
332
- - test/lib/facets/core/regexp/test_to_regexp.rb
333
- - test/lib/facets/core/regexp/test_arity.rb
334
- - test/lib/facets/core/regexp/test_to_re.rb
335
- - test/lib/facets/core/integer/test_factorial.rb
336
- - test/lib/facets/core/integer/test_multiple.rb
337
- - test/lib/facets/core/integer/test_of.rb
338
- - test/lib/facets/core/integer/test_times_collect.rb
339
- - test/lib/facets/core/integer/test_ordinal.rb
340
- - test/lib/facets/core/class/test_unix_path.rb
341
- - test/lib/facets/core/class/test_remove_descendents.rb
342
- - test/lib/facets/core/class/test_method_name.rb
343
- - test/lib/facets/core/class/test_descendents.rb
344
- - test/lib/facets/core/class/test_cattr.rb
345
- - test/lib/facets/core/float/test_round_at.rb
346
- - test/lib/facets/core/float/test_round_to.rb
347
- - test/lib/facets/core/symbol/test_succ.rb
348
- - test/lib/facets/core/symbol/test_underscore.rb
349
- - test/lib/facets/core/symbol/test_pad.rb
350
- - test/lib/facets/core/symbol/test_camelcase.rb
351
- - test/lib/facets/core/symbol/test_camelize.rb
352
- - test/lib/facets/core/symbol/test_upcase.rb
353
- - test/lib/facets/core/symbol/test_to_proc.rb
354
- - test/lib/facets/core/symbol/test_capitalize.rb
355
- - test/lib/facets/core/symbol/test_capitalized.rb
356
- - test/lib/facets/core/symbol/test_not.rb
357
- - test/lib/facets/core/symbol/test_to_const.rb
358
- - test/lib/facets/core/symbol/test_downcase.rb
359
- - test/lib/facets/core/symbol/test_to_str.rb
360
- - test/lib/facets/core/string/self
361
- - test/lib/facets/core/string/test_downcase.rb
362
- - test/lib/facets/core/string/test_to_time.rb
363
- - test/lib/facets/core/string/test_range.rb
364
- - test/lib/facets/core/string/test_index_all.rb
365
- - test/lib/facets/core/string/test_divide.rb
366
- - test/lib/facets/core/string/test_natcmp.rb
367
- - test/lib/facets/core/string/test_word_wrap.rb
368
- - test/lib/facets/core/string/test_chars.rb
369
- - test/lib/facets/core/string/test_to_re.rb
370
- - test/lib/facets/core/string/test_line_wrap.rb
371
- - test/lib/facets/core/string/test_to_a.rb
372
- - test/lib/facets/core/string/test_lines.rb
373
- - test/lib/facets/core/string/test_singular.rb
374
- - test/lib/facets/core/string/test_shuffle.rb
375
- - test/lib/facets/core/string/test_upcase.rb
376
- - test/lib/facets/core/string/test_shift.rb
377
- - test/lib/facets/core/string/test_basename.rb
378
- - test/lib/facets/core/string/test_shatter.rb
379
- - test/lib/facets/core/string/test_to_const.rb
380
- - test/lib/facets/core/string/test_word_filter.rb
381
- - test/lib/facets/core/string/test_rand_index.rb
382
- - test/lib/facets/core/string/test_rand_byte.rb
383
- - test/lib/facets/core/string/test_to_proc.rb
384
- - test/lib/facets/core/string/test_range_of_line.rb
385
- - test/lib/facets/core/string/test_camelize.rb
386
- - test/lib/facets/core/string/test_nchar.rb
387
- - test/lib/facets/core/string/test_at_rand.rb
388
- - test/lib/facets/core/string/test_soundex.rb
389
- - test/lib/facets/core/string/test_dresner.rb
390
- - test/lib/facets/core/string/test_unix_crypt.rb
391
- - test/lib/facets/core/string/test_fold.rb
392
- - test/lib/facets/core/string/test_camelcase.rb
393
- - test/lib/facets/core/string/test_humanize.rb
394
- - test/lib/facets/core/string/test_regesc.rb
395
- - test/lib/facets/core/string/test_mscan.rb
396
- - test/lib/facets/core/string/test_unpack.rb
397
- - test/lib/facets/core/string/test_blank.rb
398
- - test/lib/facets/core/string/test_similarity.rb
399
- - test/lib/facets/core/string/test_each_char.rb
400
- - test/lib/facets/core/string/test_to_b.rb
401
- - test/lib/facets/core/string/test_margin.rb
402
- - test/lib/facets/core/string/test_quote.rb
403
- - test/lib/facets/core/string/test_demodulize.rb
404
- - test/lib/facets/core/string/test_bracket.rb
405
- - test/lib/facets/core/string/test_last.rb
406
- - test/lib/facets/core/string/test_succ.rb
407
- - test/lib/facets/core/string/test_pathize.rb
408
- - test/lib/facets/core/string/test_push.rb
409
- - test/lib/facets/core/string/test_first.rb
410
- - test/lib/facets/core/string/test_pop.rb
411
- - test/lib/facets/core/string/test_align_center.rb
412
- - test/lib/facets/core/string/test_pot.rb
413
- - test/lib/facets/core/string/test_to_date.rb
414
- - test/lib/facets/core/string/test_unshift.rb
415
- - test/lib/facets/core/string/test_modulize.rb
416
- - test/lib/facets/core/string/test_lowercase.rb
417
- - test/lib/facets/core/string/test_each_word.rb
418
- - test/lib/facets/core/string/test_words.rb
419
- - test/lib/facets/core/string/test_capitalized.rb
420
- - test/lib/facets/core/string/test_range_all.rb
421
- - test/lib/facets/core/string/test_cmp.rb
422
- - test/lib/facets/core/string/test_methodize.rb
423
- - test/lib/facets/core/string/test_whitespace.rb
424
- - test/lib/facets/core/string/test_indent.rb
425
- - test/lib/facets/core/string/self/test_patterns.rb
426
- - test/lib/facets/core/string/self/test_rand_letter.rb
427
- - test/lib/facets/core/string/self/test_interpolate.rb
428
- - test/lib/facets/core/nilclass/test_blank.rb
429
- - test/lib/facets/core/nilclass/test_op_fetch.rb
430
- - test/lib/facets/core/nilclass/test_to_h.rb
431
- - test/lib/facets/core/nilclass/test_size.rb
432
- - test/lib/facets/core/nilclass/test_include.rb
433
- - test/lib/facets/core/nilclass/test_empty.rb
434
- - test/lib/facets/core/binding/self
435
- - test/lib/facets/core/binding/test_defined.rb
436
- - test/lib/facets/core/binding/test_op_store.rb
437
- - test/lib/facets/core/binding/test_local_variables.rb
438
- - test/lib/facets/core/binding/test_eval.rb
439
- - test/lib/facets/core/binding/test_call_stack.rb
440
- - test/lib/facets/core/binding/test_called.rb
441
- - test/lib/facets/core/binding/test_method_name.rb
442
- - test/lib/facets/core/binding/test_self.rb
443
- - test/lib/facets/core/binding/test_op_fetch.rb
444
- - test/lib/facets/core/binding/test_caller.rb
445
- - test/lib/facets/core/binding/test___LINE__.rb
446
- - test/lib/facets/core/binding/self/test_of_caller.rb
447
- - test/lib/facets/core/array/test_rand_subset.rb
448
- - test/lib/facets/core/array/test_delete_unless.rb
449
- - test/lib/facets/core/array/test_to_h.rb
450
- - test/lib/facets/core/array/test_delete_values_at.rb
451
- - test/lib/facets/core/array/test_middle.rb
452
- - test/lib/facets/core/array/test_to_b.rb
453
- - test/lib/facets/core/array/test_pos.rb
454
- - test/lib/facets/core/array/test_pull.rb
455
- - test/lib/facets/core/array/test_rand_index.rb
456
- - test/lib/facets/core/array/test_merge.rb
457
- - test/lib/facets/core/array/test_pick.rb
458
- - test/lib/facets/core/array/test_pot.rb
459
- - test/lib/facets/core/array/test_range.rb
460
- - test/lib/facets/core/array/test_mid.rb
461
- - test/lib/facets/core/array/test_to_hash.rb
462
- - test/lib/facets/core/array/test_shuffle.rb
463
- - test/lib/facets/core/array/test_op_fetch.rb
464
- - test/lib/facets/core/array/test_delete_values.rb
465
- - test/lib/facets/core/array/test_last_index.rb
466
- - test/lib/facets/core/array/test_first.rb
467
- - test/lib/facets/core/array/test_head.rb
468
- - test/lib/facets/core/array/test_at_rand.rb
469
- - test/lib/facets/core/array/test_thru.rb
470
- - test/lib/facets/core/array/test_rotate.rb
471
- - test/lib/facets/core/array/test_select.rb
472
- - demo/tkxml
473
- - demo/io-reactor
474
- - demo/lisp
475
- - demo/ansicolor
476
- - demo/annotation
477
- - demo/tkxml/helloworld.rb
35
+ - Rakefile
36
+ - test/special/main_as_module.rb
37
+ - work/README
38
+ - work/TODO
39
+ - work/op_rshift.rb
40
+ - work/misc/calibre/ProjectInfo.nilcomparable
41
+ - work/misc/calibre/ProjectInfo.downloader
42
+ - work/misc/calibre/ProjectInfo.reference
43
+ - work/misc/calibre/ProjectInfo.crypt
44
+ - work/misc/calibre/ProjectInfo.units
45
+ - work/misc/calibre/ProjectInfo.inheritor
46
+ - work/misc/calibre/ProjectInfo.consoleapp
47
+ - work/misc/calibre/ProjectInfo.lisp
48
+ - work/misc/calibre/ProjectInfo.yamlstruct
49
+ - work/misc/calibre/ProjectInfo.mathconstants
50
+ - work/misc/calibre/ProjectInfo.methodprobe
51
+ - work/misc/calibre/ProjectInfo.basicobject
52
+ - work/misc/calibre/ProjectInfo.tracepoint
53
+ - work/misc/calibre/ProjectInfo.pool
54
+ - work/misc/calibre/ProjectInfo.multiton
55
+ - work/misc/calibre/ProjectInfo.expirable
56
+ - work/misc/calibre/ProjectInfo.uniheritable
57
+ - work/misc/calibre/ProjectInfo.one
58
+ - work/misc/calibre/ProjectInfo.semaphore
59
+ - work/misc/calibre/ProjectInfo.interval
60
+ - work/misc/calibre/ProjectInfo.cloneable
61
+ - work/misc/calibre/ProjectInfo.ansicode
62
+ - work/misc/calibre/ProjectInfo.tagiterator
63
+ - work/misc/calibre/ProjectInfo.enumerablepass
64
+ - work/misc/calibre/ProjectInfo.classinherit
65
+ - work/misc/calibre/ProjectInfo.openobject
66
+ - work/misc/calibre/ProjectInfo.mock
67
+ - work/misc/calibre/ProjectInfo.tuple
68
+ - work/misc/calibre/ProjectInfo.bitmask
69
+ - work/misc/calibre/ProjectInfo.statichash
70
+ - work/misc/calibre/ProjectInfo.stateparser
71
+ - work/misc/calibre/ProjectInfo.nullclass
72
+ - work/misc/calibre/ProjectInfo.paramix
73
+ - work/misc/calibre/ProjectInfo.nackclass
74
+ - work/misc/calibre/ProjectInfo.dictionary
75
+ - work/misc/calibre/ProjectInfo.binaryreader
76
+ - work/misc/calibre/ProjectInfo.coroutine
77
+ - work/misc/calibre/ProjectInfo.annotation
78
+ - work/misc/calibre/ProjectInfo.association
79
+ - work/misc/calibre/ProjectInfo.heap
80
+ - work/misc/calibre/ProjectInfo.bbcode
81
+ - work/misc/calibre/ProjectInfo.functor
82
+ - work/misc/calibre/ProjectInfo.timer
83
+ - work/misc/calibre/ProjectInfo.system
84
+ - work/misc/calibre/ProjectInfo.lrucache
85
+ - work/misc/calibre/ProjectInfo.classmethods
86
+ - work/misc/calibre/ProjectInfo.progressbar
87
+ - work/misc/calibre/ProjectInfo.floatstring
88
+ - work/more/tag.rb
89
+ - work/more/daemon.rb
90
+ - work/more/timer.rb
91
+ - work/more/detach.rb
92
+ - work/more/ioreactor.rb
93
+ - work/more/class_inheritable_attributes.rb
94
+ - work/more/print_exception.rb
95
+ - work/more/rand.rb
96
+ - work/more/password.rb
97
+ - work/more/aobject.rb
98
+ - work/more/pairhash.rb
99
+ - work/more/annotation-rw.rb
100
+ - work/more/cache.rb
101
+ - work/more/superstruct.rb
102
+ - work/more/enumtype.rb
103
+ - work/more/debugger.rb
104
+ - work/more/sanitize.rb
105
+ - work/more/must.rb
106
+ - work/more/range.rb
107
+ - work/more/logger_sing.rb
108
+ - work/more/commandrunner.rb
109
+ - work/more/old-tkxml.rb
110
+ - work/more/autohash.rb
111
+ - work/pore/superann.rb
112
+ - work/pore/sys.rb
113
+ - work/pore/utils.rb
114
+ - work/pore/merge3.rb
115
+ - work/pore/autorequire.rb
116
+ - work/pore/basefactory.rb
117
+ - work/pore/hash/each.rb
118
+ - work/core/join_with.rb
119
+ - work/core/enumerable/op_fetch.rb
120
+ - work/core/logger/clean_logger.rb
121
+ - work/core/fileutils/cptouch.rb
122
+ - work/core/fileutils/nl_convert.rb
123
+ - work/core/kernel/call_line.rb
124
+ - work/core/kernel/taint.rb
125
+ - work/core/kernel/message.rb
126
+ - work/core/kernel/query.rb
127
+ - work/core/kernel/does.rb
128
+ - work/core/class/to_module.rb
129
+ - work/core/module/sattr_setter.rb
130
+ - work/core/module/meta_attr.rb
131
+ - work/core/module/module_attribute_accessors.rb
132
+ - work/core/module/sattr_reader.rb
133
+ - work/core/module/sattr_accessor.rb
134
+ - work/core/module/attr_xxx.rb
135
+ - work/core/module/inherit0.rb
136
+ - work/core/module/sattr_tester.rb
137
+ - work/core/module/let.rb
138
+ - work/core/module/by_regexp.rb
139
+ - work/core/module/version.rb
140
+ - work/core/module/attr-old.rb
141
+ - work/core/module/to_module.rb
142
+ - work/core/module/sattr_writer.rb
143
+ - work/core/module/cast.rb
144
+ - work/core/module/preserved.rb
145
+ - work/core/module/tc_attr.rb
146
+ - work/core/module/class_attribute_accessors.rb
147
+ - work/core/module/inherit.rb
148
+ - work/core/module/attr.rb
149
+ - work/core/module/permissions.rb
150
+ - work/core/string/probability.rb
151
+ - work/core/string/to_ary.rb
152
+ - work/core/string/op_div.rb
153
+ - work/core/string/succ_distance.rb
154
+ - work/core/string/frequency.rb
155
+ - work/core/string/word_wrap.rb
156
+ - work/core/string/op_add.rb
157
+ - work/core/string/to_arr.rb
158
+ - work/core/string/pred.rb
159
+ - work/core/io/expect.rb
160
+ - work/core/binding/delegate-binding.rb
161
+ - work/core/binding/proc.rb
162
+ - work/core/binding/class.rb
163
+ - work/core/binding/delegate.rb
164
+ - work/core/array/each_slice.rb
165
+ - work/core/array/rand_indexes.rb
166
+ - work/core/array/pick_values.rb
167
+ - work/core/array/at_rand.rb
168
+ - work/yore/HashAquisition.rb
169
+ - work/yore/openobject.rb
170
+ - work/yore/Rakefile.old
171
+ - work/yore/annotation.rb
172
+ - work/yore/annotation2.rb
173
+ - work/yore/reap.rb
174
+ - work/yore/taskable-old.rb
175
+ - work/yore/reap.yml
176
+ - work/yore/Reapfile
177
+ - work/yore/commandutils.rb
178
+ - work/yore/taskable.rb
179
+ - work/bin/minitar
180
+ - work/bin/minitar.rb
181
+ - demo/cuts/benchmark.rb
182
+ - demo/cuts/override.rb
478
183
  - demo/tkxml/ui.xml
184
+ - demo/tkxml/helloworld.rb
479
185
  - demo/io-reactor/chatserver.rb
480
186
  - demo/lisp/game.rb
481
- - demo/ansicolor/cdiff.rb
482
187
  - demo/ansicolor/example.rb
188
+ - demo/ansicolor/cdiff.rb
483
189
  - demo/annotation/demo_annotation.rb
190
+ - doc/HISTORY.1
484
191
  - doc/AUTHORS
485
- - doc/CHANGELOG
486
192
  - doc/COPYING
487
- - doc/CHANGELOG.1
488
- - lib/facet
489
- - lib/facets
193
+ - doc/LATEST
194
+ - doc/HISTORY.txt
490
195
  - lib/facets.rb
491
- - lib/facet/logger
492
- - lib/facet/kernel
493
- - lib/facet/hash
494
- - lib/facet/range
495
- - lib/facet/time
496
- - lib/facet/fileutils
497
- - lib/facet/numeric
498
- - lib/facet/proc
499
- - lib/facet/ostruct
500
- - lib/facet/comparable
501
- - lib/facet/gem
502
- - lib/facet/continuation
503
- - lib/facet/unboundmethod
504
- - lib/facet/date
505
- - lib/facet/dir
506
- - lib/facet/enumerable
507
- - lib/facet/file
508
- - lib/facet/module
509
- - lib/facet/matchdata
510
- - lib/facet/regexp
511
- - lib/facet/pathname
512
- - lib/facet/integer
513
- - lib/facet/class
514
- - lib/facet/config
515
- - lib/facet/float
516
- - lib/facet/symbol
517
- - lib/facet/string
518
- - lib/facet/nilclass
519
- - lib/facet/binding
520
- - lib/facet/array
521
- - lib/facet/filetest
522
- - lib/facet/cut.rb
523
- - lib/facet/quaternion.rb
524
- - lib/facet/cloneable.rb
525
- - lib/facet/interval.rb
526
- - lib/facet/ansicode.rb
527
- - lib/facet/classmethods.rb
528
- - lib/facet/bytes.rb
196
+ - lib/facet/random.rb
197
+ - lib/facet/ostruct.rb
198
+ - lib/facet/nil_as_emptiness.rb
199
+ - lib/facet/all.rb
200
+ - lib/facet/binding.rb
201
+ - lib/facet/inflect.rb
202
+ - lib/facet/string_as_array.rb
203
+ - lib/facet/infinity.rb
529
204
  - lib/facet/heap.rb
530
- - lib/facet/progressbar.rb
531
- - lib/facet/orderedhash.rb
532
- - lib/facet/instance_intercept.rb
533
- - lib/facet/xoxo.rb
534
- - lib/facet/main_as_module.rb
535
- - lib/facet/expirable.rb
205
+ - lib/facet/lazy.rb
536
206
  - lib/facet/http.rb
537
- - lib/facet/predicate.rb
538
- - lib/facet/times.rb
539
- - lib/facet/yamlstruct.rb
540
- - lib/facet/pathlist.rb
541
- - lib/facet/units.rb
542
- - lib/facet/multiton.rb
543
- - lib/facet/bitmask.rb
544
- - lib/facet/downloader.rb
545
- - lib/facet/infinity.rb
546
- - lib/facet/stateparser.rb
207
+ - lib/facet/timer.rb
208
+ - lib/facet/rwdelegator.rb
209
+ - lib/facet/bytes.rb
547
210
  - lib/facet/tagiterator.rb
548
- - lib/facet/system.rb
549
- - lib/facet/dictionary.rb
550
- - lib/facet/autoarray.rb
551
211
  - lib/facet/methodfilter.rb
552
- - lib/facet/doublemetaphone.rb
553
- - lib/facet/methodprobe.rb
554
- - lib/facet/nullclass.rb
555
- - lib/facet/lisp_format.rb
556
- - lib/facet/json.rb
557
- - lib/facet/promoteself.rb
558
- - lib/facet/linkedlist.rb
559
- - lib/facet/recorder.rb
560
212
  - lib/facet/enumerablepass.rb
561
- - lib/facet/coroutine.rb
562
- - lib/facet/opencascade.rb
563
- - lib/facet/binaryreader.rb
564
- - lib/facet/lisp.rb
565
- - lib/facet/tracepoint.rb
566
- - lib/facet/inheritor.rb
213
+ - lib/facet/classmethods.rb
567
214
  - lib/facet/tuple.rb
568
- - lib/facet/lazy.rb
569
- - lib/facet/rexmlbuilder.rb
570
- - lib/facet/xmlhelper.rb
571
- - lib/facet/annotation.rb
572
- - lib/facet/nilcomparable.rb
573
- - lib/facet/association.rb
574
- - lib/facet/semaphore.rb
575
- - lib/facet/string_as_array.rb
576
- - lib/facet/openobject.rb
577
- - lib/facet/ioredirect.rb
578
- - lib/facet/random.rb
579
- - lib/facet/cache.rb
215
+ - lib/facet/uninheritable.rb
216
+ - lib/facet/typecast.rb
217
+ - lib/facet/xoxo.rb
580
218
  - lib/facet/httpaccess.rb
581
- - lib/facet/basicobject.rb
582
- - lib/facet/settings.rb
583
219
  - lib/facet/aspects.rb
584
- - lib/facet/bbcode.rb
585
- - lib/facet/htmlhelper.rb
220
+ - lib/facet/eventhook.rb
221
+ - lib/facet/units.rb
222
+ - lib/facet/recorder.rb
223
+ - lib/facet/lisp.rb
224
+ - lib/facet/nilcomparable.rb
225
+ - lib/facet/coroutine.rb
226
+ - lib/facet/methodprobe.rb
227
+ - lib/facet/basicobject.rb
228
+ - lib/facet/json.rb
229
+ - lib/facet/multiton.rb
230
+ - lib/facet/htmlbuilder.rb
231
+ - lib/facet/buildingblock.rb
232
+ - lib/facet/lisp_format.rb
233
+ - lib/facet/cloneable.rb
586
234
  - lib/facet/mathconstants.rb
587
- - lib/facet/typecast.rb
588
- - lib/facet/uninheritable.rb
235
+ - lib/facet/cache.rb
236
+ - lib/facet/mock.rb
237
+ - lib/facet/ioredirect.rb
238
+ - lib/facet/elementor.rb
239
+ - lib/facet/downloader.rb
240
+ - lib/facet/rexmlbuilder.rb
241
+ - lib/facet/promoteself.rb
589
242
  - lib/facet/tkxml.rb
590
- - lib/facet/overload.rb
591
- - lib/facet/builderobject.rb
592
- - lib/facet/binding.rb
243
+ - lib/facet/ann.rb
244
+ - lib/facet/settings.rb
245
+ - lib/facet/crypt.rb
246
+ - lib/facet/nackclass.rb
247
+ - lib/facet/inheritor.rb
248
+ - lib/facet/opencascade.rb
249
+ - lib/facet/dictionary.rb
250
+ - lib/facet/binaryreader.rb
251
+ - lib/facet/autoarray.rb
252
+ - lib/facet/xmlbuilder.rb
593
253
  - lib/facet/preinitialize.rb
594
- - lib/facet/all.rb
595
- - lib/facet/htmlbuilder.rb
596
- - lib/facet/snapshot.rb
597
- - lib/facet/eventhook.rb
598
- - lib/facet/mock.rb
254
+ - lib/facet/tracepoint.rb
599
255
  - lib/facet/multipliers.rb
600
- - lib/facet/annattr.rb
256
+ - lib/facet/overload.rb
257
+ - lib/facet/filelist.rb
258
+ - lib/facet/syncarray.rb
601
259
  - lib/facet/command.rb
602
- - lib/facet/nackclass.rb
603
- - lib/facet/pqueue.rb
260
+ - lib/facet/functor.rb
604
261
  - lib/facet/synchash.rb
605
- - lib/facet/rwdelegator.rb
606
- - lib/facet/nil_as_emptiness.rb
607
- - lib/facet/filelist.rb
608
- - lib/facet/timer.rb
262
+ - lib/facet/semaphore.rb
263
+ - lib/facet/interval.rb
264
+ - lib/facet/quaternion.rb
265
+ - lib/facet/orderedhash.rb
266
+ - lib/facet/openobject.rb
267
+ - lib/facet/hashbuilder.rb
268
+ - lib/facet/floatstring.rb
269
+ - lib/facet/stateparser.rb
270
+ - lib/facet/reference.rb
609
271
  - lib/facet/paramix.rb
610
- - lib/facet/syncarray.rb
272
+ - lib/facet/htmlhelper.rb
273
+ - lib/facet/yamlstruct.rb
611
274
  - lib/facet/pool.rb
612
275
  - lib/facet/cookie.rb
613
- - lib/facet/inflect.rb
614
- - lib/facet/floatstring.rb
615
- - lib/facet/ostruct.rb
616
- - lib/facet/filesystem.rb
617
- - lib/facet/functor.rb
618
- - lib/facet/one.rb
619
- - lib/facet/xmlbuilder.rb
620
- - lib/facet/lrucache.rb
276
+ - lib/facet/ann_attr.rb
277
+ - lib/facet/bbcode.rb
278
+ - lib/facet/times.rb
279
+ - lib/facet/system.rb
280
+ - lib/facet/instance_intercept.rb
281
+ - lib/facet/ansicode.rb
621
282
  - lib/facet/rtals.rb
622
- - lib/facet/hashbuilder.rb
623
- - lib/facet/elementor.rb
624
- - lib/facet/statichash.rb
625
- - lib/facet/reference.rb
626
- - lib/facet/taskable.rb
283
+ - lib/facet/lrucache.rb
284
+ - lib/facet/pathlist.rb
285
+ - lib/facet/progressbar.rb
627
286
  - lib/facet/ormsupport.rb
628
- - lib/facet/crypt.rb
629
- - lib/facet/logger/format_message.rb
287
+ - lib/facet/bitmask.rb
288
+ - lib/facet/cut.rb
289
+ - lib/facet/statichash.rb
290
+ - lib/facet/snapshot.rb
291
+ - lib/facet/nullclass.rb
292
+ - lib/facet/xmlhelper.rb
293
+ - lib/facet/pqueue.rb
294
+ - lib/facet/expirable.rb
295
+ - lib/facet/association.rb
296
+ - lib/facet/filesystem.rb
297
+ - lib/facet/doublemetaphone.rb
298
+ - lib/facet/openhash.rb
299
+ - lib/facet/main_as_module.rb
300
+ - lib/facet/linkedlist.rb
301
+ - lib/facet/autovivify.rb
302
+ - lib/facet/dependency.rb
303
+ - lib/facet/populate.rb
304
+ - lib/facet/minitar.rb
305
+ - lib/facet/version_number.rb
306
+ - lib/facet/behvior.rb
307
+ - lib/facet/uploadutils.rb
308
+ - lib/facet/arguments.rb
309
+ - lib/facet/script.rb
310
+ - lib/facet/autoscript.rb
311
+ - lib/facet/htmlfilter.rb
312
+ - lib/facet/consoleutils.rb
630
313
  - lib/facet/logger/format.rb
631
- - lib/facet/kernel/deep_copy.rb
632
- - lib/facet/kernel/val.rb
633
- - lib/facet/kernel/send_as.rb
634
- - lib/facet/kernel/metaclass.rb
635
- - lib/facet/kernel/nack.rb
636
- - lib/facet/kernel/require_local.rb
637
- - lib/facet/kernel/singleton.rb
314
+ - lib/facet/logger/format_message.rb
315
+ - lib/facet/kernel/autoreload_files.rb
316
+ - lib/facet/kernel/eigenclass.rb
317
+ - lib/facet/kernel/object_dup.rb
318
+ - lib/facet/kernel/called.rb
319
+ - lib/facet/kernel/to_b.rb
638
320
  - lib/facet/kernel/object_hexid.rb
639
- - lib/facet/kernel/silently.rb
640
- - lib/facet/kernel/respond.rb
641
- - lib/facet/kernel/as.rb
642
- - lib/facet/kernel/methods.rb
643
- - lib/facet/kernel/assign_from.rb
321
+ - lib/facet/kernel/set_with.rb
322
+ - lib/facet/kernel/instvar.rb
323
+ - lib/facet/kernel/with_accessor.rb
324
+ - lib/facet/kernel/constant.rb
325
+ - lib/facet/kernel/__DIR__.rb
326
+ - lib/facet/kernel/uri.rb
327
+ - lib/facet/kernel/autoreload_glob.rb
328
+ - lib/facet/kernel/call_stack.rb
329
+ - lib/facet/kernel/this.rb
330
+ - lib/facet/kernel/p.rb
331
+ - lib/facet/kernel/require_all.rb
332
+ - lib/facet/kernel/warn_with_line.rb
333
+ - lib/facet/kernel/instance_exec.rb
334
+ - lib/facet/kernel/nack.rb
335
+ - lib/facet/kernel/__method__.rb
336
+ - lib/facet/kernel/returning.rb
337
+ - lib/facet/kernel/true.rb
338
+ - lib/facet/kernel/method.rb
644
339
  - lib/facet/kernel/__callee__.rb
645
- - lib/facet/kernel/instance_assign.rb
340
+ - lib/facet/kernel/demo.rb
646
341
  - lib/facet/kernel/get_by_id.rb
342
+ - lib/facet/kernel/object_clone.rb
343
+ - lib/facet/kernel/meta.rb
344
+ - lib/facet/kernel/false.rb
647
345
  - lib/facet/kernel/object_class.rb
648
- - lib/facet/kernel/copy.rb
649
- - lib/facet/kernel/assign_with.rb
650
- - lib/facet/kernel/with_accessor.rb
651
- - lib/facet/kernel/cache.rb
652
- - lib/facet/kernel/autoreload.rb
653
- - lib/facet/kernel/is.rb
654
- - lib/facet/kernel/method.rb
346
+ - lib/facet/kernel/resc.rb
347
+ - lib/facet/kernel/to_bool.rb
655
348
  - lib/facet/kernel/supermethod.rb
656
349
  - lib/facet/kernel/__class__.rb
657
- - lib/facet/kernel/autoreload_files.rb
350
+ - lib/facet/kernel/singleton.rb
351
+ - lib/facet/kernel/ask.rb
352
+ - lib/facet/kernel/as.rb
353
+ - lib/facet/kernel/require_esc.rb
354
+ - lib/facet/kernel/op_esc.rb
355
+ - lib/facet/kernel/complete.rb
658
356
  - lib/facet/kernel/to_data.rb
659
- - lib/facet/kernel/eigenclass.rb
357
+ - lib/facet/kernel/is.rb
358
+ - lib/facet/kernel/assign_with.rb
359
+ - lib/facet/kernel/send_as.rb
360
+ - lib/facet/kernel/set_from.rb
660
361
  - lib/facet/kernel/__self__.rb
661
- - lib/facet/kernel/object_clone.rb
662
- - lib/facet/kernel/uri.rb
663
- - lib/facet/kernel/this.rb
664
- - lib/facet/kernel/fn.rb
665
- - lib/facet/kernel/require_all.rb
666
- - lib/facet/kernel/quaclass.rb
667
- - lib/facet/kernel/with_writer.rb
668
- - lib/facet/kernel/called.rb
669
- - lib/facet/kernel/deep_clone.rb
670
- - lib/facet/kernel/to_b.rb
671
- - lib/facet/kernel/to_bool.rb
672
- - lib/facet/kernel/instance_exec.rb
673
- - lib/facet/kernel/__DIR__.rb
362
+ - lib/facet/kernel/val.rb
363
+ - lib/facet/kernel/super_at.rb
674
364
  - lib/facet/kernel/singleton_class.rb
675
365
  - lib/facet/kernel/bool.rb
676
- - lib/facet/kernel/constant.rb
677
- - lib/facet/kernel/__get__.rb
678
- - lib/facet/kernel/superior.rb
679
- - lib/facet/kernel/instvar.rb
680
- - lib/facet/kernel/demo.rb
681
- - lib/facet/kernel/in.rb
366
+ - lib/facet/kernel/deep_clone.rb
682
367
  - lib/facet/kernel/unuri.rb
683
- - lib/facet/kernel/op_esc.rb
684
- - lib/facet/kernel/p.rb
685
- - lib/facet/kernel/complete.rb
686
- - lib/facet/kernel/pp_exception.rb
687
- - lib/facet/kernel/with_reader.rb
688
- - lib/facet/kernel/silence_warnings.rb
689
- - lib/facet/kernel/false.rb
690
- - lib/facet/kernel/warn_with_line.rb
691
- - lib/facet/kernel/callee.rb
692
- - lib/facet/kernel/here.rb
693
- - lib/facet/kernel/require_facet.rb
694
- - lib/facet/kernel/require_esc.rb
695
- - lib/facet/kernel/true.rb
696
- - lib/facet/kernel/object_dup.rb
697
- - lib/facet/kernel/autoreload_glob.rb
698
- - lib/facet/kernel/call_stack.rb
699
- - lib/facet/kernel/new.rb
700
- - lib/facet/kernel/__method__.rb
368
+ - lib/facet/kernel/silently.rb
369
+ - lib/facet/kernel/methods.rb
370
+ - lib/facet/kernel/cache.rb
371
+ - lib/facet/kernel/fn.rb
372
+ - lib/facet/kernel/in.rb
373
+ - lib/facet/kernel/instance_assign.rb
374
+ - lib/facet/kernel/with.rb
375
+ - lib/facet/kernel/__get__.rb
376
+ - lib/facet/kernel/supress.rb
701
377
  - lib/facet/kernel/bug.rb
378
+ - lib/facet/kernel/here.rb
379
+ - lib/facet/kernel/callee.rb
380
+ - lib/facet/kernel/require_local.rb
702
381
  - lib/facet/kernel/__set__.rb
703
- - lib/facet/kernel/load_local.rb
704
- - lib/facet/kernel/set_with.rb
705
- - lib/facet/kernel/returning.rb
706
- - lib/facet/kernel/set_from.rb
707
- - lib/facet/kernel/own.rb
708
- - lib/facet/kernel/resc.rb
382
+ - lib/facet/kernel/new.rb
383
+ - lib/facet/kernel/silence_warnings.rb
384
+ - lib/facet/kernel/pp_exception.rb
709
385
  - lib/facet/kernel/maybe.rb
710
- - lib/facet/kernel/meta.rb
711
- - lib/facet/hash/self
712
- - lib/facet/hash/to_struct.rb
713
- - lib/facet/hash/stringify_keys.rb
714
- - lib/facet/hash/keys_to_sym.rb
715
- - lib/facet/hash/delete_values.rb
716
- - lib/facet/hash/rand_pair.rb
717
- - lib/facet/hash/to_ostruct.rb
718
- - lib/facet/hash/reverse_update.rb
719
- - lib/facet/hash/slice.rb
720
- - lib/facet/hash/assert_has_keys.rb
721
- - lib/facet/hash/shuffle.rb
722
- - lib/facet/hash/rand_key.rb
386
+ - lib/facet/kernel/with_reader.rb
387
+ - lib/facet/kernel/autoreload.rb
388
+ - lib/facet/kernel/assign_from.rb
389
+ - lib/facet/kernel/deep_copy.rb
390
+ - lib/facet/kernel/with_writer.rb
391
+ - lib/facet/kernel/respond.rb
392
+ - lib/facet/kernel/copy.rb
393
+ - lib/facet/kernel/metaclass.rb
394
+ - lib/facet/kernel/load_local.rb
395
+ - lib/facet/kernel/yaml.rb
396
+ - lib/facet/kernel/populate.rb
397
+ - lib/facet/kernel/meta_alias.rb
398
+ - lib/facet/kernel/meta_def.rb
399
+ - lib/facet/kernel/meta_eval.rb
400
+ - lib/facet/kernel/class_def.rb
401
+ - lib/facet/kernel/meta_class.rb
402
+ - lib/facet/kernel/instance_class.rb
403
+ - lib/facet/kernel/instance_values.rb
404
+ - lib/facet/kernel/silence_stream.rb
405
+ - lib/facet/kernel/enable_warnings.rb
406
+ - lib/facet/kernel/daemonize.rb
407
+ - lib/facet/kernel/object_send.rb
408
+ - lib/facet/kernel/qua_class.rb
409
+ - lib/facet/hash/reverse_merge.rb
723
410
  - lib/facet/hash/op_div.rb
724
- - lib/facet/hash/graph.rb
725
- - lib/facet/hash/each_with_key.rb
726
- - lib/facet/hash/update_values.rb
727
- - lib/facet/hash/replace_each.rb
728
- - lib/facet/hash/to_ostruct_recurse.rb
729
- - lib/facet/hash/rand_value.rb
411
+ - lib/facet/hash/collate.rb
730
412
  - lib/facet/hash/having_aquisition.rb
731
- - lib/facet/hash/diff.rb
732
- - lib/facet/hash/delete_unless.rb
733
- - lib/facet/hash/weave.rb
734
- - lib/facet/hash/swap.rb
735
- - lib/facet/hash/update_each.rb
413
+ - lib/facet/hash/each_with_index.rb
414
+ - lib/facet/hash/swapkey.rb
415
+ - lib/facet/hash/op_lshift.rb
736
416
  - lib/facet/hash/variablize_keys.rb
737
- - lib/facet/hash/has_keys.rb
738
- - lib/facet/hash/traverse.rb
739
417
  - lib/facet/hash/op_fetch.rb
740
- - lib/facet/hash/reverse_merge.rb
741
- - lib/facet/hash/collate.rb
418
+ - lib/facet/hash/to_h.rb
419
+ - lib/facet/hash/op_store.rb
420
+ - lib/facet/hash/assert_has_only_keys.rb
742
421
  - lib/facet/hash/normalize_keys.rb
743
- - lib/facet/hash/each_with_index.rb
744
- - lib/facet/hash/delete_at.rb
422
+ - lib/facet/hash/delete_unless.rb
423
+ - lib/facet/hash/replace_each.rb
424
+ - lib/facet/hash/traverse.rb
425
+ - lib/facet/hash/to_ostruct_recurse.rb
745
426
  - lib/facet/hash/having_fallback.rb
746
- - lib/facet/hash/alias.rb
747
- - lib/facet/hash/to_proc.rb
427
+ - lib/facet/hash/shuffle.rb
428
+ - lib/facet/hash/has_keys.rb
748
429
  - lib/facet/hash/join.rb
749
- - lib/facet/hash/inverse.rb
750
- - lib/facet/hash/delete_values_at.rb
751
- - lib/facet/hash/update_keys.rb
752
- - lib/facet/hash/op_lshift.rb
430
+ - lib/facet/hash/graph.rb
753
431
  - lib/facet/hash/at.rb
432
+ - lib/facet/hash/update_values.rb
433
+ - lib/facet/hash/update_each.rb
434
+ - lib/facet/hash/each_with_key.rb
435
+ - lib/facet/hash/stringify_keys.rb
754
436
  - lib/facet/hash/has_only_keys.rb
755
- - lib/facet/hash/to_h.rb
756
- - lib/facet/hash/op_store.rb
757
- - lib/facet/hash/assert_has_only_keys.rb
758
- - lib/facet/hash/symbolize_keys.rb
437
+ - lib/facet/hash/to_struct.rb
438
+ - lib/facet/hash/swap.rb
439
+ - lib/facet/hash/delete_values.rb
440
+ - lib/facet/hash/reverse_update.rb
441
+ - lib/facet/hash/update_keys.rb
442
+ - lib/facet/hash/rand_value.rb
443
+ - lib/facet/hash/assert_has_keys.rb
444
+ - lib/facet/hash/alias.rb
445
+ - lib/facet/hash/rand_key.rb
446
+ - lib/facet/hash/rand_pair.rb
759
447
  - lib/facet/hash/keys_to_s.rb
760
- - lib/facet/hash/swapkey.rb
448
+ - lib/facet/hash/slice.rb
449
+ - lib/facet/hash/rekey.rb
450
+ - lib/facet/hash/keys_to_sym.rb
451
+ - lib/facet/hash/to_ostruct.rb
452
+ - lib/facet/hash/to_proc.rb
453
+ - lib/facet/hash/weave.rb
454
+ - lib/facet/hash/diff.rb
455
+ - lib/facet/hash/symbolize_keys.rb
456
+ - lib/facet/hash/inverse.rb
457
+ - lib/facet/hash/delete_values_at.rb
458
+ - lib/facet/hash/delete_at.rb
459
+ - lib/facet/hash/op_add.rb
460
+ - lib/facet/hash/op_sub.rb
461
+ - lib/facet/hash/op_and.rb
462
+ - lib/facet/hash/op_mul.rb
463
+ - lib/facet/hash/op_or.rb
464
+ - lib/facet/hash/insert.rb
465
+ - lib/facet/hash/pairs_at.rb
761
466
  - lib/facet/hash/self/zipnew.rb
762
467
  - lib/facet/hash/self/auto.rb
763
- - lib/facet/range/umbrella.rb
764
468
  - lib/facet/range/to_range.rb
765
469
  - lib/facet/range/within.rb
766
470
  - lib/facet/range/to_r.rb
767
- - lib/facet/time/self
768
- - lib/facet/time/change.rb
471
+ - lib/facet/range/umbrella.rb
769
472
  - lib/facet/time/to_date.rb
770
- - lib/facet/time/to_s.rb
771
473
  - lib/facet/time/to_time.rb
772
- - lib/facet/time/elapse.rb
773
474
  - lib/facet/time/stamp.rb
774
- - lib/facet/time/self/days_extrema.rb
475
+ - lib/facet/time/to_s.rb
476
+ - lib/facet/time/change.rb
477
+ - lib/facet/time/elapse.rb
775
478
  - lib/facet/time/self/stamp.rb
479
+ - lib/facet/time/self/days_extrema.rb
480
+ - lib/facet/fileutils/split_all.rb
776
481
  - lib/facet/fileutils/slice.rb
482
+ - lib/facet/fileutils/head.rb
777
483
  - lib/facet/fileutils/which.rb
484
+ - lib/facet/fileutils/stage.rb
778
485
  - lib/facet/fileutils/whereis.rb
779
- - lib/facet/fileutils/head.rb
486
+ - lib/facet/fileutils/safe_ln.rb
780
487
  - lib/facet/fileutils/tail.rb
781
488
  - lib/facet/fileutils/wc.rb
782
- - lib/facet/fileutils/safe_ln.rb
783
- - lib/facet/fileutils/split_all.rb
489
+ - lib/facet/fileutils/compress.rb
490
+ - lib/facet/fileutils/staged.rb
491
+ - lib/facet/numeric/approx.rb
492
+ - lib/facet/numeric/succ.rb
784
493
  - lib/facet/numeric/to_b.rb
494
+ - lib/facet/numeric/ceil_multiple.rb
785
495
  - lib/facet/numeric/distance.rb
786
- - lib/facet/numeric/succ.rb
787
- - lib/facet/numeric/approx.rb
788
496
  - lib/facet/numeric/pred.rb
789
- - lib/facet/numeric/ceil_multiple.rb
790
- - lib/facet/proc/op_mul.rb
791
- - lib/facet/proc/compose.rb
497
+ - lib/facet/proc/bind.rb
498
+ - lib/facet/proc/to_h.rb
792
499
  - lib/facet/proc/to_method.rb
500
+ - lib/facet/proc/compose.rb
501
+ - lib/facet/proc/op_mul.rb
502
+ - lib/facet/proc/update.rb
503
+ - lib/facet/ostruct/instance_delegate.rb
793
504
  - lib/facet/ostruct/__update__.rb
794
- - lib/facet/ostruct/instance.rb
795
505
  - lib/facet/ostruct/__table__.rb
796
- - lib/facet/ostruct/__merge__.rb
797
506
  - lib/facet/ostruct/op_fetch.rb
798
507
  - lib/facet/ostruct/to_h.rb
799
508
  - lib/facet/ostruct/op_store.rb
800
- - lib/facet/comparable/cap.rb
801
- - lib/facet/comparable/clip.rb
802
- - lib/facet/comparable/at_least.rb
509
+ - lib/facet/ostruct/__merge__.rb
803
510
  - lib/facet/comparable/at_most.rb
804
511
  - lib/facet/comparable/cmp.rb
805
- - lib/facet/gem/self
806
- - lib/facet/gem/self/active.rb
807
- - lib/facet/gem/self/gempath.rb
512
+ - lib/facet/comparable/cap.rb
513
+ - lib/facet/comparable/at_least.rb
514
+ - lib/facet/comparable/clip.rb
808
515
  - lib/facet/gem/self/gemspec.rb
809
- - lib/facet/continuation/self
516
+ - lib/facet/gem/self/gempath.rb
517
+ - lib/facet/gem/self/active.rb
810
518
  - lib/facet/continuation/self/create.rb
811
519
  - lib/facet/unboundmethod/name.rb
812
520
  - lib/facet/date/days_of_month.rb
813
521
  - lib/facet/date/to_date.rb
814
522
  - lib/facet/date/to_time.rb
815
- - lib/facet/date/days_in_month.rb
816
- - lib/facet/date/to_s.rb
817
523
  - lib/facet/date/stamp.rb
818
- - lib/facet/dir/self
524
+ - lib/facet/date/to_s.rb
525
+ - lib/facet/date/days_in_month.rb
526
+ - lib/facet/dir/self/multiglob.rb
819
527
  - lib/facet/dir/self/ascend.rb
820
528
  - lib/facet/dir/self/ancestor.rb
821
- - lib/facet/dir/self/recurse.rb
822
529
  - lib/facet/dir/self/ls_r.rb
823
530
  - lib/facet/dir/self/descend.rb
824
- - lib/facet/enumerable/self
825
- - lib/facet/enumerable/cross.rb
826
- - lib/facet/enumerable/nonuniq.rb
827
- - lib/facet/enumerable/ew.rb
828
- - lib/facet/enumerable/occur.rb
829
- - lib/facet/enumerable/every.rb
830
- - lib/facet/enumerable/each_unique_pair.rb
531
+ - lib/facet/dir/self/recurse.rb
532
+ - lib/facet/dir/self/multiglob_recurse.rb
533
+ - lib/facet/dir/self/multiglob_sum.rb
534
+ - lib/facet/enumerable/each_combination.rb
831
535
  - lib/facet/enumerable/each_slice.rb
832
- - lib/facet/enumerable/collect_if.rb
833
- - lib/facet/enumerable/permutation.rb
834
- - lib/facet/enumerable/map_if.rb
536
+ - lib/facet/enumerable/probability.rb
537
+ - lib/facet/enumerable/elementwise.rb
538
+ - lib/facet/enumerable/one.rb
539
+ - lib/facet/enumerable/each_with_counter.rb
540
+ - lib/facet/enumerable/accumulate.rb
541
+ - lib/facet/enumerable/cascade.rb
835
542
  - lib/facet/enumerable/compact_map.rb
836
- - lib/facet/enumerable/project.rb
543
+ - lib/facet/enumerable/cross.rb
544
+ - lib/facet/enumerable/to_h.rb
545
+ - lib/facet/enumerable/every.rb
546
+ - lib/facet/enumerable/ideal_entropy.rb
547
+ - lib/facet/enumerable/each_by.rb
837
548
  - lib/facet/enumerable/collect_with_index.rb
549
+ - lib/facet/enumerable/compact_collect.rb
550
+ - lib/facet/enumerable/map_with_index.rb
551
+ - lib/facet/enumerable/graph.rb
552
+ - lib/facet/enumerable/each_unique_pair.rb
838
553
  - lib/facet/enumerable/partition_by.rb
839
- - lib/facet/enumerable/cascade.rb
840
- - lib/facet/enumerable/sum.rb
841
- - lib/facet/enumerable/frequency.rb
842
- - lib/facet/enumerable/where.rb
554
+ - lib/facet/enumerable/divide.rb
555
+ - lib/facet/enumerable/map_with_counter.rb
556
+ - lib/facet/enumerable/filter_map.rb
557
+ - lib/facet/enumerable/each_pair.rb
558
+ - lib/facet/enumerable/occur.rb
559
+ - lib/facet/enumerable/collect_with_counter.rb
843
560
  - lib/facet/enumerable/find_collisions.rb
561
+ - lib/facet/enumerable/nonuniq.rb
844
562
  - lib/facet/enumerable/mode.rb
845
- - lib/facet/enumerable/filter_collect.rb
846
- - lib/facet/enumerable/graph.rb
847
- - lib/facet/enumerable/each_by.rb
848
- - lib/facet/enumerable/entropy.rb
849
- - lib/facet/enumerable/each_pair.rb
850
- - lib/facet/enumerable/probability.rb
851
- - lib/facet/enumerable/filter_map.rb
852
- - lib/facet/enumerable/uniq_by.rb
853
- - lib/facet/enumerable/map_with_index.rb
854
- - lib/facet/enumerable/accumulate.rb
855
- - lib/facet/enumerable/op_pow.rb
856
- - lib/facet/enumerable/ideal_entropy.rb
857
563
  - lib/facet/enumerable/eachn.rb
858
- - lib/facet/enumerable/collect_with_counter.rb
564
+ - lib/facet/enumerable/sum.rb
859
565
  - lib/facet/enumerable/each_permutation.rb
860
- - lib/facet/enumerable/each_combination.rb
861
566
  - lib/facet/enumerable/count.rb
862
- - lib/facet/enumerable/map_with_counter.rb
863
- - lib/facet/enumerable/divide.rb
864
- - lib/facet/enumerable/to_h.rb
865
- - lib/facet/enumerable/each_with_counter.rb
866
- - lib/facet/enumerable/compact_collect.rb
567
+ - lib/facet/enumerable/filter_collect.rb
568
+ - lib/facet/enumerable/map_if.rb
867
569
  - lib/facet/enumerable/commonality.rb
868
- - lib/facet/enumerable/one.rb
869
570
  - lib/facet/enumerable/none.rb
870
- - lib/facet/enumerable/elementwise.rb
571
+ - lib/facet/enumerable/entropy.rb
572
+ - lib/facet/enumerable/frequency.rb
573
+ - lib/facet/enumerable/collect_if.rb
574
+ - lib/facet/enumerable/op_pow.rb
575
+ - lib/facet/enumerable/project.rb
576
+ - lib/facet/enumerable/uniq_by.rb
577
+ - lib/facet/enumerable/where.rb
578
+ - lib/facet/enumerable/ew.rb
579
+ - lib/facet/enumerable/permutation.rb
580
+ - lib/facet/enumerable/injecting.rb
871
581
  - lib/facet/enumerable/self/combinations.rb
872
582
  - lib/facet/enumerable/self/cross.rb
873
- - lib/facet/file/self
583
+ - lib/facet/file/self/open_as_string.rb
874
584
  - lib/facet/file/self/read_binary.rb
875
- - lib/facet/file/self/append.rb
876
585
  - lib/facet/file/self/create.rb
877
586
  - lib/facet/file/self/split_all.rb
878
- - lib/facet/file/self/sanitize.rb
587
+ - lib/facet/file/self/rootname.rb
879
588
  - lib/facet/file/self/read_list.rb
880
- - lib/facet/file/self/open_as_string.rb
589
+ - lib/facet/file/self/sanitize.rb
590
+ - lib/facet/file/self/append.rb
881
591
  - lib/facet/file/self/write.rb
882
592
  - lib/facet/file/self/null.rb
883
- - lib/facet/file/self/rootname.rb
884
- - lib/facet/module/self
593
+ - lib/facet/file/self/yaml.rb
885
594
  - lib/facet/module/on_included.rb
886
- - lib/facet/module/basename.rb
887
- - lib/facet/module/wrap_method.rb
595
+ - lib/facet/module/ancestor.rb
596
+ - lib/facet/module/integrate.rb
597
+ - lib/facet/module/redirect_method.rb
888
598
  - lib/facet/module/initializer.rb
889
- - lib/facet/module/clone_using.rb
890
- - lib/facet/module/rename_method.rb
891
- - lib/facet/module/dirname.rb
892
599
  - lib/facet/module/sort_on.rb
893
- - lib/facet/module/modspace.rb
894
- - lib/facet/module/inject.rb
895
600
  - lib/facet/module/redef.rb
601
+ - lib/facet/module/shadow_method.rb
896
602
  - lib/facet/module/nodef.rb
897
- - lib/facet/module/wrap.rb
898
- - lib/facet/module/redirect.rb
899
- - lib/facet/module/namespace.rb
900
- - lib/facet/module/is.rb
603
+ - lib/facet/module/modspace.rb
604
+ - lib/facet/module/attr_setter.rb
901
605
  - lib/facet/module/attr_tester.rb
902
- - lib/facet/module/ancestor.rb
903
- - lib/facet/module/include_as.rb
904
- - lib/facet/module/equate_on.rb
905
- - lib/facet/module/class_extension.rb
906
606
  - lib/facet/module/attr_validator.rb
907
- - lib/facet/module/redirect_method.rb
908
- - lib/facet/module/attr_query.rb
909
- - lib/facet/module/integrate.rb
910
- - lib/facet/module/attr.rb
607
+ - lib/facet/module/clone_using.rb
608
+ - lib/facet/module/revisal.rb
609
+ - lib/facet/module/include_as.rb
911
610
  - lib/facet/module/nesting.rb
912
- - lib/facet/module/remove.rb
913
- - lib/facet/module/attr_setter.rb
914
- - lib/facet/module/class.rb
915
- - lib/facet/module/alias_module_function.rb
916
- - lib/facet/module/instance_methods.rb
917
- - lib/facet/module/by_name.rb
918
- - lib/facet/module/memoize.rb
919
- - lib/facet/module/clone_removing.rb
920
- - lib/facet/module/shadow_all.rb
921
611
  - lib/facet/module/rename.rb
922
612
  - lib/facet/module/this.rb
613
+ - lib/facet/module/wrap_method.rb
614
+ - lib/facet/module/shadow_all.rb
615
+ - lib/facet/module/dirname.rb
616
+ - lib/facet/module/attr_query.rb
617
+ - lib/facet/module/equate_on.rb
618
+ - lib/facet/module/alias_method_chain.rb
619
+ - lib/facet/module/clone_renaming.rb
923
620
  - lib/facet/module/redefine_method.rb
924
- - lib/facet/module/revisal.rb
621
+ - lib/facet/module/instance_methods.rb
622
+ - lib/facet/module/namespace.rb
623
+ - lib/facet/module/remove.rb
624
+ - lib/facet/module/rename_method.rb
625
+ - lib/facet/module/redirect.rb
925
626
  - lib/facet/module/abstract.rb
926
- - lib/facet/module/clone_renaming.rb
927
- - lib/facet/module/shadow_method.rb
928
- - lib/facet/module/alias_method_chain.rb
929
- - lib/facet/module/self/op_sub.rb
627
+ - lib/facet/module/class_extension.rb
628
+ - lib/facet/module/memoize.rb
629
+ - lib/facet/module/class.rb
630
+ - lib/facet/module/alias_module_function.rb
631
+ - lib/facet/module/clone_removing.rb
632
+ - lib/facet/module/wrap.rb
633
+ - lib/facet/module/attr.rb
634
+ - lib/facet/module/by_name.rb
635
+ - lib/facet/module/is.rb
636
+ - lib/facet/module/basename.rb
637
+ - lib/facet/module/inject.rb
638
+ - lib/facet/module/new.rb
639
+ - lib/facet/module/alias_accessor.rb
640
+ - lib/facet/module/prepend.rb
641
+ - lib/facet/module/include_and_extend.rb
642
+ - lib/facet/module/module_method.rb
643
+ - lib/facet/module/module_load.rb
644
+ - lib/facet/module/include_function_module.rb
645
+ - lib/facet/module/module_require.rb
930
646
  - lib/facet/module/self/op_add.rb
647
+ - lib/facet/module/self/op_sub.rb
648
+ - lib/facet/matchdata/matchset.rb
931
649
  - lib/facet/matchdata/match.rb
932
650
  - lib/facet/matchdata/matchtree.rb
933
- - lib/facet/matchdata/matchset.rb
651
+ - lib/facet/regexp/to_regexp.rb
934
652
  - lib/facet/regexp/arity.rb
935
653
  - lib/facet/regexp/to_re.rb
936
- - lib/facet/regexp/to_regexp.rb
937
654
  - lib/facet/pathname/op_div.rb
938
- - lib/facet/pathname/descend.rb
939
655
  - lib/facet/pathname/ascend.rb
940
- - lib/facet/integer/factorial.rb
941
- - lib/facet/integer/odd.rb
942
- - lib/facet/integer/fact.rb
656
+ - lib/facet/pathname/descend.rb
943
657
  - lib/facet/integer/times_map.rb
658
+ - lib/facet/integer/even.rb
659
+ - lib/facet/integer/fact.rb
660
+ - lib/facet/integer/factorial.rb
661
+ - lib/facet/integer/each.rb
944
662
  - lib/facet/integer/ordinal.rb
945
- - lib/facet/integer/multiple.rb
663
+ - lib/facet/integer/of.rb
664
+ - lib/facet/integer/odd.rb
946
665
  - lib/facet/integer/times_collect.rb
947
666
  - lib/facet/integer/fac.rb
948
- - lib/facet/integer/of.rb
949
- - lib/facet/integer/even.rb
950
- - lib/facet/integer/each.rb
951
- - lib/facet/class/to_proc.rb
952
- - lib/facet/class/remove_subclasses.rb
953
- - lib/facet/class/subclasses.rb
954
- - lib/facet/class/cattr_reader.rb
667
+ - lib/facet/integer/multiple.rb
668
+ - lib/facet/integer/to_roman.rb
669
+ - lib/facet/class/unix_path.rb
955
670
  - lib/facet/class/cattr.rb
671
+ - lib/facet/class/remove_descendents.rb
956
672
  - lib/facet/class/cattr_accessor.rb
957
- - lib/facet/class/by_name.rb
958
- - lib/facet/class/cattr_writer.rb
673
+ - lib/facet/class/cattr_reader.rb
959
674
  - lib/facet/class/descendents.rb
960
- - lib/facet/class/unix_path.rb
961
675
  - lib/facet/class/method_name.rb
962
- - lib/facet/class/remove_descendents.rb
676
+ - lib/facet/class/remove_subclasses.rb
677
+ - lib/facet/class/to_proc.rb
678
+ - lib/facet/class/subclasses.rb
679
+ - lib/facet/class/cattr_writer.rb
680
+ - lib/facet/class/by_name.rb
681
+ - lib/facet/class/class_require.rb
682
+ - lib/facet/class/class_load.rb
963
683
  - lib/facet/config/datadir.rb
684
+ - lib/facet/config/inspect.rb
964
685
  - lib/facet/float/round_off.rb
965
686
  - lib/facet/float/approx.rb
966
- - lib/facet/float/round_at.rb
967
687
  - lib/facet/float/round_to.rb
968
- - lib/facet/symbol/self
688
+ - lib/facet/float/round_at.rb
689
+ - lib/facet/symbol/capitalize.rb
969
690
  - lib/facet/symbol/camelcase.rb
970
691
  - lib/facet/symbol/succ.rb
971
- - lib/facet/symbol/to_proc.rb
972
- - lib/facet/symbol/camelize.rb
973
692
  - lib/facet/symbol/not.rb
974
- - lib/facet/symbol/capitalized.rb
693
+ - lib/facet/symbol/upcase.rb
694
+ - lib/facet/symbol/downcase.rb
975
695
  - lib/facet/symbol/pad.rb
696
+ - lib/facet/symbol/capitalized.rb
697
+ - lib/facet/symbol/to_proc.rb
698
+ - lib/facet/symbol/to_const.rb
699
+ - lib/facet/symbol/camelize.rb
976
700
  - lib/facet/symbol/underscore.rb
977
- - lib/facet/symbol/to_s.rb
978
701
  - lib/facet/symbol/to_str.rb
979
- - lib/facet/symbol/upcase.rb
980
- - lib/facet/symbol/to_const.rb
981
- - lib/facet/symbol/downcase.rb
982
- - lib/facet/symbol/capitalize.rb
702
+ - lib/facet/symbol/to_s.rb
703
+ - lib/facet/symbol/chomp.rb
983
704
  - lib/facet/symbol/self/generate.rb
984
- - lib/facet/string/self
985
- - lib/facet/string/shell_escape.rb
986
- - lib/facet/string/blank.rb
987
- - lib/facet/string/at_rand.rb
705
+ - lib/facet/string/word_filter.rb
706
+ - lib/facet/string/upcase.rb
707
+ - lib/facet/string/align_center.rb
708
+ - lib/facet/string/natcmp.rb
709
+ - lib/facet/string/to_b.rb
988
710
  - lib/facet/string/soundex.rb
989
- - lib/facet/string/lowercase.rb
990
- - lib/facet/string/rand_index.rb
991
- - lib/facet/string/each_word.rb
992
- - lib/facet/string/brief.rb
993
- - lib/facet/string/camelize.rb
994
- - lib/facet/string/to_proc.rb
995
- - lib/facet/string/range_all.rb
996
- - lib/facet/string/modulize.rb
997
- - lib/facet/string/methodize.rb
998
- - lib/facet/string/indent.rb
999
- - lib/facet/string/bracket.rb
1000
- - lib/facet/string/succ.rb
1001
- - lib/facet/string/pop.rb
1002
- - lib/facet/string/index_all.rb
1003
- - lib/facet/string/divide.rb
711
+ - lib/facet/string/bytes.rb
1004
712
  - lib/facet/string/ordinal.rb
1005
- - lib/facet/string/pathize.rb
1006
- - lib/facet/string/unpack.rb
1007
- - lib/facet/string/pot.rb
1008
- - lib/facet/string/chars.rb
1009
- - lib/facet/string/word_wrap.rb
1010
- - lib/facet/string/demodulize.rb
1011
- - lib/facet/string/words.rb
1012
- - lib/facet/string/uppercase.rb
1013
- - lib/facet/string/align_left.rb
1014
- - lib/facet/string/to_re.rb
1015
- - lib/facet/string/to_a.rb
1016
- - lib/facet/string/cmp.rb
1017
- - lib/facet/string/similarity.rb
1018
- - lib/facet/string/regesc.rb
1019
- - lib/facet/string/line_wrap.rb
1020
713
  - lib/facet/string/format.rb
1021
- - lib/facet/string/to_date.rb
1022
- - lib/facet/string/unshift.rb
1023
- - lib/facet/string/tabto.rb
1024
- - lib/facet/string/align_center.rb
1025
- - lib/facet/string/upcase.rb
1026
- - lib/facet/string/shift.rb
1027
- - lib/facet/string/dresner.rb
1028
- - lib/facet/string/margin.rb
1029
- - lib/facet/string/range.rb
1030
- - lib/facet/string/dequote.rb
1031
- - lib/facet/string/capitalized.rb
1032
- - lib/facet/string/first_char.rb
1033
- - lib/facet/string/rand_byte.rb
1034
- - lib/facet/string/to_time.rb
714
+ - lib/facet/string/shuffle.rb
1035
715
  - lib/facet/string/nchar.rb
1036
- - lib/facet/string/tab.rb
1037
- - lib/facet/string/singular.rb
716
+ - lib/facet/string/to_rx.rb
717
+ - lib/facet/string/divide.rb
718
+ - lib/facet/string/pop.rb
719
+ - lib/facet/string/mscan.rb
720
+ - lib/facet/string/pot.rb
721
+ - lib/facet/string/last.rb
1038
722
  - lib/facet/string/at.rb
1039
- - lib/facet/string/whitespace.rb
1040
- - lib/facet/string/to_const.rb
1041
- - lib/facet/string/downcase.rb
1042
- - lib/facet/string/starts_with.rb
723
+ - lib/facet/string/rand_index.rb
724
+ - lib/facet/string/dequote.rb
725
+ - lib/facet/string/regesc.rb
1043
726
  - lib/facet/string/camelcase.rb
1044
- - lib/facet/string/lines.rb
1045
- - lib/facet/string/each_char.rb
1046
- - lib/facet/string/quote.rb
1047
- - lib/facet/string/ends_with.rb
1048
727
  - lib/facet/string/pull.rb
728
+ - lib/facet/string/shift.rb
729
+ - lib/facet/string/similarity.rb
730
+ - lib/facet/string/unbracket.rb
731
+ - lib/facet/string/push.rb
732
+ - lib/facet/string/line_wrap.rb
1049
733
  - lib/facet/string/humanize.rb
734
+ - lib/facet/string/unshift.rb
735
+ - lib/facet/string/indent.rb
736
+ - lib/facet/string/to_a.rb
737
+ - lib/facet/string/singular.rb
738
+ - lib/facet/string/lowercase.rb
739
+ - lib/facet/string/shell_escape.rb
740
+ - lib/facet/string/align_right.rb
1050
741
  - lib/facet/string/first.rb
1051
- - lib/facet/string/plural.rb
1052
- - lib/facet/string/last.rb
1053
- - lib/facet/string/to_rx.rb
1054
- - lib/facet/string/shuffle.rb
742
+ - lib/facet/string/modulize.rb
743
+ - lib/facet/string/to_const.rb
744
+ - lib/facet/string/each_word.rb
745
+ - lib/facet/string/words.rb
746
+ - lib/facet/string/index_all.rb
747
+ - lib/facet/string/chars.rb
1055
748
  - lib/facet/string/last_char.rb
1056
- - lib/facet/string/push.rb
1057
- - lib/facet/string/unbracket.rb
749
+ - lib/facet/string/pathize.rb
750
+ - lib/facet/string/align_left.rb
751
+ - lib/facet/string/to_proc.rb
752
+ - lib/facet/string/tab.rb
1058
753
  - lib/facet/string/shatter.rb
1059
- - lib/facet/string/range_of_line.rb
1060
- - lib/facet/string/unix_crypt.rb
754
+ - lib/facet/string/starts_with.rb
755
+ - lib/facet/string/margin.rb
756
+ - lib/facet/string/to_date.rb
757
+ - lib/facet/string/unpack.rb
758
+ - lib/facet/string/first_char.rb
1061
759
  - lib/facet/string/fold.rb
1062
- - lib/facet/string/word_filter.rb
760
+ - lib/facet/string/blank.rb
761
+ - lib/facet/string/methodize.rb
762
+ - lib/facet/string/camelize.rb
763
+ - lib/facet/string/whitespace.rb
764
+ - lib/facet/string/quote.rb
765
+ - lib/facet/string/plural.rb
766
+ - lib/facet/string/to_time.rb
767
+ - lib/facet/string/demodulize.rb
768
+ - lib/facet/string/dresner.rb
769
+ - lib/facet/string/unix_crypt.rb
770
+ - lib/facet/string/word_wrap.rb
771
+ - lib/facet/string/rand_byte.rb
772
+ - lib/facet/string/to_re.rb
773
+ - lib/facet/string/bracket.rb
774
+ - lib/facet/string/cmp.rb
775
+ - lib/facet/string/range_all.rb
776
+ - lib/facet/string/ends_with.rb
777
+ - lib/facet/string/range_of_line.rb
778
+ - lib/facet/string/brief.rb
779
+ - lib/facet/string/uppercase.rb
780
+ - lib/facet/string/capitalized.rb
781
+ - lib/facet/string/range.rb
782
+ - lib/facet/string/each_char.rb
783
+ - lib/facet/string/succ.rb
784
+ - lib/facet/string/downcase.rb
785
+ - lib/facet/string/at_rand.rb
786
+ - lib/facet/string/tabto.rb
1063
787
  - lib/facet/string/underscore.rb
788
+ - lib/facet/string/lines.rb
1064
789
  - lib/facet/string/basename.rb
1065
- - lib/facet/string/natcmp.rb
1066
- - lib/facet/string/align_right.rb
1067
- - lib/facet/string/mscan.rb
1068
- - lib/facet/string/bytes.rb
1069
- - lib/facet/string/to_b.rb
1070
- - lib/facet/string/self/random.rb
1071
- - lib/facet/string/self/patterns.rb
1072
- - lib/facet/string/self/format.rb
790
+ - lib/facet/string/rewrite.rb
1073
791
  - lib/facet/string/self/rand_letter.rb
792
+ - lib/facet/string/self/patterns.rb
793
+ - lib/facet/string/self/random.rb
1074
794
  - lib/facet/string/self/interpolate.rb
1075
- - lib/facet/nilclass/to_path.rb
795
+ - lib/facet/string/self/format.rb
1076
796
  - lib/facet/nilclass/op_cmp.rb
1077
- - lib/facet/nilclass/blank.rb
1078
- - lib/facet/nilclass/size.rb
1079
- - lib/facet/nilclass/op_fetch.rb
1080
- - lib/facet/nilclass/to_h.rb
1081
797
  - lib/facet/nilclass/succ.rb
1082
- - lib/facet/nilclass/include.rb
798
+ - lib/facet/nilclass/empty.rb
1083
799
  - lib/facet/nilclass/length.rb
800
+ - lib/facet/nilclass/include.rb
1084
801
  - lib/facet/nilclass/status.rb
1085
- - lib/facet/nilclass/empty.rb
1086
- - lib/facet/binding/self
1087
- - lib/facet/binding/eval.rb
1088
- - lib/facet/binding/__LINE__.rb
802
+ - lib/facet/nilclass/blank.rb
803
+ - lib/facet/nilclass/op_fetch.rb
804
+ - lib/facet/nilclass/to_h.rb
805
+ - lib/facet/nilclass/size.rb
806
+ - lib/facet/nilclass/to_path.rb
807
+ - lib/facet/binding/call_stack.rb
1089
808
  - lib/facet/binding/defined.rb
1090
- - lib/facet/binding/self.rb
1091
- - lib/facet/binding/op_store.rb
1092
- - lib/facet/binding/__FILE__.rb
809
+ - lib/facet/binding/local_variables.rb
810
+ - lib/facet/binding/method_name.rb
1093
811
  - lib/facet/binding/caller.rb
812
+ - lib/facet/binding/__LINE__.rb
1094
813
  - lib/facet/binding/called.rb
1095
- - lib/facet/binding/local_variables.rb
1096
- - lib/facet/binding/__DIR__.rb
1097
- - lib/facet/binding/call_stack.rb
814
+ - lib/facet/binding/eval.rb
1098
815
  - lib/facet/binding/op_fetch.rb
1099
- - lib/facet/binding/method_name.rb
816
+ - lib/facet/binding/self.rb
817
+ - lib/facet/binding/__DIR__.rb
818
+ - lib/facet/binding/op_store.rb
819
+ - lib/facet/binding/__FILE__.rb
1100
820
  - lib/facet/binding/self/of_caller.rb
1101
- - lib/facet/array/each_combo.rb
1102
- - lib/facet/array/last_index.rb
1103
821
  - lib/facet/array/delete_unless.rb
1104
- - lib/facet/array/last.rb
1105
- - lib/facet/array/first.rb
1106
- - lib/facet/array/pick.rb
1107
- - lib/facet/array/at_rand.rb
1108
- - lib/facet/array/body.rb
1109
- - lib/facet/array/pos.rb
1110
- - lib/facet/array/delete_values.rb
1111
- - lib/facet/array/combos.rb
1112
- - lib/facet/array/join_sentence.rb
1113
- - lib/facet/array/foot.rb
1114
- - lib/facet/array/op_store.rb
1115
- - lib/facet/array/op_fetch.rb
1116
- - lib/facet/array/rand_subset.rb
1117
- - lib/facet/array/merge.rb
1118
822
  - lib/facet/array/select.rb
1119
- - lib/facet/array/store.rb
1120
- - lib/facet/array/head.rb
1121
- - lib/facet/array/thru.rb
1122
- - lib/facet/array/pull.rb
1123
- - lib/facet/array/to_hash.rb
1124
- - lib/facet/array/rand_index.rb
1125
- - lib/facet/array/shuffle.rb
1126
823
  - lib/facet/array/op_div.rb
1127
- - lib/facet/array/range.rb
1128
- - lib/facet/array/rotate.rb
824
+ - lib/facet/array/to_b.rb
825
+ - lib/facet/array/op_fetch.rb
826
+ - lib/facet/array/tail.rb
1129
827
  - lib/facet/array/to_h.rb
1130
- - lib/facet/array/unzip.rb
828
+ - lib/facet/array/op_store.rb
829
+ - lib/facet/array/shuffle.rb
830
+ - lib/facet/array/store.rb
1131
831
  - lib/facet/array/op_mod.rb
832
+ - lib/facet/array/merge.rb
1132
833
  - lib/facet/array/pot.rb
1133
- - lib/facet/array/to_b.rb
834
+ - lib/facet/array/last.rb
835
+ - lib/facet/array/each_with_key.rb
836
+ - lib/facet/array/unzip.rb
837
+ - lib/facet/array/foot.rb
838
+ - lib/facet/array/mid.rb
839
+ - lib/facet/array/pull.rb
840
+ - lib/facet/array/rand_index.rb
1134
841
  - lib/facet/array/delete_values_at.rb
842
+ - lib/facet/array/delete_values.rb
843
+ - lib/facet/array/thru.rb
844
+ - lib/facet/array/join_sentence.rb
845
+ - lib/facet/array/to_hash.rb
846
+ - lib/facet/array/pick.rb
847
+ - lib/facet/array/first.rb
848
+ - lib/facet/array/last_index.rb
849
+ - lib/facet/array/range.rb
850
+ - lib/facet/array/body.rb
851
+ - lib/facet/array/rotate.rb
1135
852
  - lib/facet/array/middle.rb
1136
- - lib/facet/array/mid.rb
1137
- - lib/facet/array/tail.rb
1138
- - lib/facet/array/each_with_key.rb
1139
- - lib/facet/filetest/self
853
+ - lib/facet/array/pos.rb
854
+ - lib/facet/array/head.rb
855
+ - lib/facet/array/rand_subset.rb
856
+ - lib/facet/array/at_rand.rb
857
+ - lib/facet/array/each_combo.rb
858
+ - lib/facet/array/combos.rb
859
+ - lib/facet/array/to_path.rb
860
+ - lib/facet/array/index.rb
1140
861
  - lib/facet/filetest/self/root.rb
1141
- - lib/facets/more
1142
- - lib/facets/more/inheritor.rb
1143
- - lib/facets/more/yamlstruct.rb
1144
- - lib/facets/more/filesystem.rb
1145
- - lib/facets/more/overload.rb
1146
- - lib/facets/more/downloader.rb
1147
- - lib/facets/more/xmlhelper.rb
1148
- - lib/facets/more/semaphore.rb
1149
- - lib/facets/more/classmethods.rb
1150
- - lib/facets/more/quaternion.rb
1151
- - lib/facets/more/orderedhash.rb
1152
- - lib/facets/more/synchash.rb
1153
- - lib/facets/more/command.rb
862
+ - lib/facets/sys.rb
863
+ - lib/facets/automatic.rb
864
+ - lib/facets/more/infinity.rb
1154
865
  - lib/facets/more/heap.rb
1155
- - lib/facets/more/filelist.rb
1156
- - lib/facets/more/instance_intercept.rb
866
+ - lib/facets/more/lazy.rb
867
+ - lib/facets/more/http.rb
868
+ - lib/facets/more/timer.rb
869
+ - lib/facets/more/rwdelegator.rb
870
+ - lib/facets/more/bytes.rb
1157
871
  - lib/facets/more/tagiterator.rb
1158
- - lib/facets/more/lrucache.rb
1159
- - lib/facets/more/lisp_format.rb
1160
- - lib/facets/more/taskable.rb
872
+ - lib/facets/more/methodfilter.rb
873
+ - lib/facets/more/enumerablepass.rb
874
+ - lib/facets/more/classmethods.rb
1161
875
  - lib/facets/more/tuple.rb
1162
- - lib/facets/more/one.rb
1163
- - lib/facets/more/paramix.rb
876
+ - lib/facets/more/uninheritable.rb
877
+ - lib/facets/more/typecast.rb
878
+ - lib/facets/more/xoxo.rb
879
+ - lib/facets/more/httpaccess.rb
880
+ - lib/facets/more/aspects.rb
1164
881
  - lib/facets/more/eventhook.rb
1165
- - lib/facets/more/opencascade.rb
1166
- - lib/facets/more/htmlbuilder.rb
1167
- - lib/facets/more/stateparser.rb
1168
- - lib/facets/more/methodfilter.rb
1169
- - lib/facets/more/nackclass.rb
1170
- - lib/facets/more/multipliers.rb
882
+ - lib/facets/more/units.rb
883
+ - lib/facets/more/recorder.rb
884
+ - lib/facets/more/lisp.rb
885
+ - lib/facets/more/nilcomparable.rb
886
+ - lib/facets/more/coroutine.rb
1171
887
  - lib/facets/more/methodprobe.rb
1172
- - lib/facets/more/bitmask.rb
1173
- - lib/facets/more/cut.rb
1174
- - lib/facets/more/cookie.rb
888
+ - lib/facets/more/basicobject.rb
889
+ - lib/facets/more/json.rb
890
+ - lib/facets/more/multiton.rb
891
+ - lib/facets/more/htmlbuilder.rb
892
+ - lib/facets/more/buildingblock.rb
893
+ - lib/facets/more/lisp_format.rb
894
+ - lib/facets/more/cloneable.rb
895
+ - lib/facets/more/mathconstants.rb
896
+ - lib/facets/more/cache.rb
897
+ - lib/facets/more/mock.rb
898
+ - lib/facets/more/ioredirect.rb
899
+ - lib/facets/more/elementor.rb
900
+ - lib/facets/more/downloader.rb
901
+ - lib/facets/more/rexmlbuilder.rb
1175
902
  - lib/facets/more/promoteself.rb
1176
903
  - lib/facets/more/tkxml.rb
1177
- - lib/facets/more/association.rb
1178
- - lib/facets/more/units.rb
1179
- - lib/facets/more/cache.rb
904
+ - lib/facets/more/ann.rb
905
+ - lib/facets/more/settings.rb
906
+ - lib/facets/more/crypt.rb
907
+ - lib/facets/more/nackclass.rb
908
+ - lib/facets/more/inheritor.rb
909
+ - lib/facets/more/opencascade.rb
910
+ - lib/facets/more/dictionary.rb
1180
911
  - lib/facets/more/binaryreader.rb
1181
- - lib/facets/more/rwdelegator.rb
1182
- - lib/facets/more/interval.rb
1183
- - lib/facets/more/ansicode.rb
1184
- - lib/facets/more/nilcomparable.rb
1185
- - lib/facets/more/linkedlist.rb
1186
- - lib/facets/more/syncarray.rb
1187
- - lib/facets/more/rexmlbuilder.rb
1188
- - lib/facets/more/lisp.rb
912
+ - lib/facets/more/autoarray.rb
913
+ - lib/facets/more/xmlbuilder.rb
914
+ - lib/facets/more/preinitialize.rb
1189
915
  - lib/facets/more/tracepoint.rb
1190
- - lib/facets/more/bbcode.rb
1191
- - lib/facets/more/floatstring.rb
1192
- - lib/facets/more/annotation.rb
1193
- - lib/facets/more/elementor.rb
1194
- - lib/facets/more/basicobject.rb
1195
- - lib/facets/more/typecast.rb
1196
- - lib/facets/more/aspects.rb
1197
- - lib/facets/more/pathlist.rb
1198
- - lib/facets/more/mathconstants.rb
916
+ - lib/facets/more/multipliers.rb
917
+ - lib/facets/more/overload.rb
918
+ - lib/facets/more/filelist.rb
919
+ - lib/facets/more/syncarray.rb
920
+ - lib/facets/more/command.rb
921
+ - lib/facets/more/functor.rb
922
+ - lib/facets/more/synchash.rb
923
+ - lib/facets/more/semaphore.rb
924
+ - lib/facets/more/interval.rb
925
+ - lib/facets/more/quaternion.rb
926
+ - lib/facets/more/orderedhash.rb
1199
927
  - lib/facets/more/openobject.rb
1200
- - lib/facets/more/multiton.rb
1201
- - lib/facets/more/ioredirect.rb
1202
- - lib/facets/more/uninheritable.rb
928
+ - lib/facets/more/hashbuilder.rb
929
+ - lib/facets/more/floatstring.rb
930
+ - lib/facets/more/stateparser.rb
1203
931
  - lib/facets/more/reference.rb
1204
- - lib/facets/more/builderobject.rb
1205
- - lib/facets/more/preinitialize.rb
1206
- - lib/facets/more/infinity.rb
1207
- - lib/facets/more/httpaccess.rb
1208
- - lib/facets/more/xoxo.rb
1209
- - lib/facets/more/expirable.rb
1210
- - lib/facets/more/pqueue.rb
1211
- - lib/facets/more/cloneable.rb
1212
- - lib/facets/more/http.rb
932
+ - lib/facets/more/paramix.rb
1213
933
  - lib/facets/more/htmlhelper.rb
1214
- - lib/facets/more/main_as_module.rb
1215
- - lib/facets/more/timer.rb
1216
- - lib/facets/more/progressbar.rb
1217
- - lib/facets/more/recorder.rb
1218
- - lib/facets/more/annattr.rb
1219
- - lib/facets/more/xmlbuilder.rb
1220
- - lib/facets/more/mock.rb
1221
- - lib/facets/more/statichash.rb
934
+ - lib/facets/more/yamlstruct.rb
935
+ - lib/facets/more/pool.rb
936
+ - lib/facets/more/cookie.rb
937
+ - lib/facets/more/ann_attr.rb
938
+ - lib/facets/more/bbcode.rb
939
+ - lib/facets/more/times.rb
1222
940
  - lib/facets/more/system.rb
1223
- - lib/facets/more/predicate.rb
1224
- - lib/facets/more/nullclass.rb
1225
- - lib/facets/more/ormsupport.rb
941
+ - lib/facets/more/instance_intercept.rb
942
+ - lib/facets/more/ansicode.rb
1226
943
  - lib/facets/more/rtals.rb
1227
- - lib/facets/more/json.rb
1228
- - lib/facets/more/bytes.rb
1229
- - lib/facets/more/hashbuilder.rb
1230
- - lib/facets/more/autoarray.rb
1231
- - lib/facets/more/crypt.rb
1232
- - lib/facets/more/enumerablepass.rb
1233
- - lib/facets/more/lazy.rb
1234
- - lib/facets/more/pool.rb
1235
- - lib/facets/more/settings.rb
944
+ - lib/facets/more/lrucache.rb
945
+ - lib/facets/more/pathlist.rb
946
+ - lib/facets/more/progressbar.rb
947
+ - lib/facets/more/ormsupport.rb
948
+ - lib/facets/more/bitmask.rb
949
+ - lib/facets/more/cut.rb
950
+ - lib/facets/more/statichash.rb
1236
951
  - lib/facets/more/snapshot.rb
1237
- - lib/facets/more/times.rb
1238
- - lib/facets/more/functor.rb
1239
- - lib/facets/more/dictionary.rb
1240
- - lib/facets/more/coroutine.rb
952
+ - lib/facets/more/nullclass.rb
953
+ - lib/facets/more/xmlhelper.rb
954
+ - lib/facets/more/pqueue.rb
955
+ - lib/facets/more/expirable.rb
956
+ - lib/facets/more/association.rb
957
+ - lib/facets/more/filesystem.rb
1241
958
  - lib/facets/more/doublemetaphone.rb
1242
- - lib/facets/core/logger
1243
- - lib/facets/core/kernel
1244
- - lib/facets/core/hash
1245
- - lib/facets/core/range
1246
- - lib/facets/core/time
1247
- - lib/facets/core/fileutils
1248
- - lib/facets/core/numeric
1249
- - lib/facets/core/proc
1250
- - lib/facets/core/ostruct
1251
- - lib/facets/core/comparable
1252
- - lib/facets/core/gem
1253
- - lib/facets/core/continuation
1254
- - lib/facets/core/unboundmethod
1255
- - lib/facets/core/date
1256
- - lib/facets/core/dir
1257
- - lib/facets/core/enumerable
1258
- - lib/facets/core/file
1259
- - lib/facets/core/module
1260
- - lib/facets/core/matchdata
1261
- - lib/facets/core/regexp
1262
- - lib/facets/core/pathname
1263
- - lib/facets/core/integer
1264
- - lib/facets/core/class
1265
- - lib/facets/core/config
1266
- - lib/facets/core/float
1267
- - lib/facets/core/symbol
1268
- - lib/facets/core/string
1269
- - lib/facets/core/nilclass
1270
- - lib/facets/core/binding
1271
- - lib/facets/core/array
1272
- - lib/facets/core/filetest
1273
- - lib/facets/core/ostruct.rb
959
+ - lib/facets/more/openhash.rb
960
+ - lib/facets/more/main_as_module.rb
961
+ - lib/facets/more/linkedlist.rb
962
+ - lib/facets/more/autovivify.rb
963
+ - lib/facets/more/dependency.rb
964
+ - lib/facets/more/populate.rb
965
+ - lib/facets/more/minitar.rb
966
+ - lib/facets/more/version_number.rb
967
+ - lib/facets/more/behvior.rb
968
+ - lib/facets/more/uploadutils.rb
969
+ - lib/facets/more/arguments.rb
970
+ - lib/facets/more/script.rb
971
+ - lib/facets/more/autoscript.rb
972
+ - lib/facets/more/htmlfilter.rb
973
+ - lib/facets/more/consoleutils.rb
1274
974
  - lib/facets/core/random.rb
1275
- - lib/facets/core/binding.rb
1276
- - lib/facets/core/string_as_array.rb
1277
- - lib/facets/core/inflect.rb
975
+ - lib/facets/core/ostruct.rb
1278
976
  - lib/facets/core/nil_as_emptiness.rb
1279
977
  - lib/facets/core/all.rb
1280
- - lib/facets/core/logger/format_message.rb
978
+ - lib/facets/core/binding.rb
979
+ - lib/facets/core/inflect.rb
980
+ - lib/facets/core/string_as_array.rb
1281
981
  - lib/facets/core/logger/format.rb
1282
- - lib/facets/core/kernel/require_all.rb
1283
- - lib/facets/core/kernel/p.rb
1284
- - lib/facets/core/kernel/with_writer.rb
1285
- - lib/facets/core/kernel/silently.rb
1286
- - lib/facets/core/kernel/maybe.rb
1287
- - lib/facets/core/kernel/fn.rb
1288
- - lib/facets/core/kernel/to_b.rb
1289
- - lib/facets/core/kernel/__class__.rb
1290
- - lib/facets/core/kernel/op_esc.rb
1291
- - lib/facets/core/kernel/get_by_id.rb
1292
- - lib/facets/core/kernel/respond.rb
1293
- - lib/facets/core/kernel/bool.rb
1294
- - lib/facets/core/kernel/meta.rb
1295
- - lib/facets/core/kernel/instvar.rb
982
+ - lib/facets/core/logger/format_message.rb
1296
983
  - lib/facets/core/kernel/autoreload_files.rb
1297
- - lib/facets/core/kernel/warn_with_line.rb
1298
- - lib/facets/core/kernel/callee.rb
1299
- - lib/facets/core/kernel/__method__.rb
1300
- - lib/facets/core/kernel/val.rb
1301
- - lib/facets/core/kernel/silence_warnings.rb
1302
- - lib/facets/core/kernel/__get__.rb
1303
- - lib/facets/core/kernel/__self__.rb
984
+ - lib/facets/core/kernel/eigenclass.rb
1304
985
  - lib/facets/core/kernel/object_dup.rb
1305
- - lib/facets/core/kernel/pp_exception.rb
1306
- - lib/facets/core/kernel/with_reader.rb
1307
- - lib/facets/core/kernel/object_clone.rb
1308
- - lib/facets/core/kernel/require_esc.rb
1309
- - lib/facets/core/kernel/new.rb
986
+ - lib/facets/core/kernel/called.rb
987
+ - lib/facets/core/kernel/to_b.rb
988
+ - lib/facets/core/kernel/object_hexid.rb
989
+ - lib/facets/core/kernel/set_with.rb
990
+ - lib/facets/core/kernel/instvar.rb
991
+ - lib/facets/core/kernel/with_accessor.rb
1310
992
  - lib/facets/core/kernel/constant.rb
1311
- - lib/facets/core/kernel/quaclass.rb
1312
- - lib/facets/core/kernel/__set__.rb
1313
- - lib/facets/core/kernel/superior.rb
1314
- - lib/facets/core/kernel/to_bool.rb
1315
993
  - lib/facets/core/kernel/__DIR__.rb
1316
- - lib/facets/core/kernel/bug.rb
1317
- - lib/facets/core/kernel/deep_clone.rb
1318
- - lib/facets/core/kernel/is.rb
1319
- - lib/facets/core/kernel/resc.rb
1320
- - lib/facets/core/kernel/instance_exec.rb
1321
- - lib/facets/core/kernel/instance_assign.rb
1322
- - lib/facets/core/kernel/own.rb
1323
994
  - lib/facets/core/kernel/uri.rb
1324
- - lib/facets/core/kernel/with_accessor.rb
1325
- - lib/facets/core/kernel/__callee__.rb
995
+ - lib/facets/core/kernel/autoreload_glob.rb
996
+ - lib/facets/core/kernel/call_stack.rb
997
+ - lib/facets/core/kernel/this.rb
998
+ - lib/facets/core/kernel/p.rb
999
+ - lib/facets/core/kernel/require_all.rb
1000
+ - lib/facets/core/kernel/warn_with_line.rb
1001
+ - lib/facets/core/kernel/instance_exec.rb
1326
1002
  - lib/facets/core/kernel/nack.rb
1327
- - lib/facets/core/kernel/eigenclass.rb
1328
- - lib/facets/core/kernel/unuri.rb
1329
- - lib/facets/core/kernel/require_facet.rb
1330
- - lib/facets/core/kernel/object_hexid.rb
1331
- - lib/facets/core/kernel/send_as.rb
1332
- - lib/facets/core/kernel/demo.rb
1333
- - lib/facets/core/kernel/autoreload.rb
1334
- - lib/facets/core/kernel/as.rb
1335
- - lib/facets/core/kernel/assign_from.rb
1336
- - lib/facets/core/kernel/cache.rb
1337
- - lib/facets/core/kernel/supermethod.rb
1003
+ - lib/facets/core/kernel/__method__.rb
1338
1004
  - lib/facets/core/kernel/returning.rb
1339
- - lib/facets/core/kernel/copy.rb
1340
- - lib/facets/core/kernel/in.rb
1341
- - lib/facets/core/kernel/this.rb
1005
+ - lib/facets/core/kernel/true.rb
1006
+ - lib/facets/core/kernel/method.rb
1007
+ - lib/facets/core/kernel/__callee__.rb
1008
+ - lib/facets/core/kernel/demo.rb
1009
+ - lib/facets/core/kernel/get_by_id.rb
1010
+ - lib/facets/core/kernel/object_clone.rb
1011
+ - lib/facets/core/kernel/meta.rb
1012
+ - lib/facets/core/kernel/false.rb
1342
1013
  - lib/facets/core/kernel/object_class.rb
1343
- - lib/facets/core/kernel/set_from.rb
1014
+ - lib/facets/core/kernel/resc.rb
1015
+ - lib/facets/core/kernel/to_bool.rb
1016
+ - lib/facets/core/kernel/supermethod.rb
1017
+ - lib/facets/core/kernel/__class__.rb
1018
+ - lib/facets/core/kernel/singleton.rb
1019
+ - lib/facets/core/kernel/ask.rb
1020
+ - lib/facets/core/kernel/as.rb
1021
+ - lib/facets/core/kernel/require_esc.rb
1022
+ - lib/facets/core/kernel/op_esc.rb
1023
+ - lib/facets/core/kernel/complete.rb
1024
+ - lib/facets/core/kernel/to_data.rb
1025
+ - lib/facets/core/kernel/is.rb
1344
1026
  - lib/facets/core/kernel/assign_with.rb
1027
+ - lib/facets/core/kernel/send_as.rb
1028
+ - lib/facets/core/kernel/set_from.rb
1029
+ - lib/facets/core/kernel/__self__.rb
1030
+ - lib/facets/core/kernel/val.rb
1031
+ - lib/facets/core/kernel/super_at.rb
1032
+ - lib/facets/core/kernel/singleton_class.rb
1033
+ - lib/facets/core/kernel/bool.rb
1034
+ - lib/facets/core/kernel/deep_clone.rb
1035
+ - lib/facets/core/kernel/unuri.rb
1036
+ - lib/facets/core/kernel/silently.rb
1345
1037
  - lib/facets/core/kernel/methods.rb
1346
- - lib/facets/core/kernel/call_stack.rb
1038
+ - lib/facets/core/kernel/cache.rb
1039
+ - lib/facets/core/kernel/fn.rb
1040
+ - lib/facets/core/kernel/in.rb
1041
+ - lib/facets/core/kernel/instance_assign.rb
1042
+ - lib/facets/core/kernel/with.rb
1043
+ - lib/facets/core/kernel/__get__.rb
1044
+ - lib/facets/core/kernel/supress.rb
1045
+ - lib/facets/core/kernel/bug.rb
1046
+ - lib/facets/core/kernel/here.rb
1047
+ - lib/facets/core/kernel/callee.rb
1048
+ - lib/facets/core/kernel/require_local.rb
1049
+ - lib/facets/core/kernel/__set__.rb
1050
+ - lib/facets/core/kernel/new.rb
1051
+ - lib/facets/core/kernel/silence_warnings.rb
1052
+ - lib/facets/core/kernel/pp_exception.rb
1053
+ - lib/facets/core/kernel/maybe.rb
1054
+ - lib/facets/core/kernel/with_reader.rb
1055
+ - lib/facets/core/kernel/autoreload.rb
1056
+ - lib/facets/core/kernel/assign_from.rb
1347
1057
  - lib/facets/core/kernel/deep_copy.rb
1348
- - lib/facets/core/kernel/autoreload_glob.rb
1349
- - lib/facets/core/kernel/method.rb
1350
- - lib/facets/core/kernel/singleton_class.rb
1351
- - lib/facets/core/kernel/false.rb
1058
+ - lib/facets/core/kernel/with_writer.rb
1059
+ - lib/facets/core/kernel/respond.rb
1060
+ - lib/facets/core/kernel/copy.rb
1352
1061
  - lib/facets/core/kernel/metaclass.rb
1353
- - lib/facets/core/kernel/to_data.rb
1354
- - lib/facets/core/kernel/here.rb
1355
- - lib/facets/core/kernel/singleton.rb
1356
- - lib/facets/core/kernel/set_with.rb
1357
1062
  - lib/facets/core/kernel/load_local.rb
1358
- - lib/facets/core/kernel/true.rb
1359
- - lib/facets/core/kernel/called.rb
1360
- - lib/facets/core/kernel/require_local.rb
1361
- - lib/facets/core/kernel/complete.rb
1362
- - lib/facets/core/hash/self
1363
- - lib/facets/core/hash/to_ostruct.rb
1364
- - lib/facets/core/hash/to_h.rb
1063
+ - lib/facets/core/kernel/yaml.rb
1064
+ - lib/facets/core/kernel/populate.rb
1065
+ - lib/facets/core/kernel/meta_alias.rb
1066
+ - lib/facets/core/kernel/meta_def.rb
1067
+ - lib/facets/core/kernel/meta_eval.rb
1068
+ - lib/facets/core/kernel/class_def.rb
1069
+ - lib/facets/core/kernel/meta_class.rb
1070
+ - lib/facets/core/kernel/instance_class.rb
1071
+ - lib/facets/core/kernel/instance_values.rb
1072
+ - lib/facets/core/kernel/silence_stream.rb
1073
+ - lib/facets/core/kernel/enable_warnings.rb
1074
+ - lib/facets/core/kernel/daemonize.rb
1075
+ - lib/facets/core/kernel/object_send.rb
1076
+ - lib/facets/core/kernel/qua_class.rb
1365
1077
  - lib/facets/core/hash/reverse_merge.rb
1366
- - lib/facets/core/hash/assert_has_keys.rb
1367
- - lib/facets/core/hash/alias.rb
1368
- - lib/facets/core/hash/rand_value.rb
1078
+ - lib/facets/core/hash/op_div.rb
1079
+ - lib/facets/core/hash/collate.rb
1080
+ - lib/facets/core/hash/having_aquisition.rb
1081
+ - lib/facets/core/hash/each_with_index.rb
1082
+ - lib/facets/core/hash/swapkey.rb
1083
+ - lib/facets/core/hash/op_lshift.rb
1084
+ - lib/facets/core/hash/variablize_keys.rb
1085
+ - lib/facets/core/hash/op_fetch.rb
1086
+ - lib/facets/core/hash/to_h.rb
1087
+ - lib/facets/core/hash/op_store.rb
1088
+ - lib/facets/core/hash/assert_has_only_keys.rb
1369
1089
  - lib/facets/core/hash/normalize_keys.rb
1370
- - lib/facets/core/hash/update_each.rb
1371
- - lib/facets/core/hash/delete_values_at.rb
1372
- - lib/facets/core/hash/join.rb
1090
+ - lib/facets/core/hash/delete_unless.rb
1373
1091
  - lib/facets/core/hash/replace_each.rb
1374
- - lib/facets/core/hash/slice.rb
1375
- - lib/facets/core/hash/op_store.rb
1092
+ - lib/facets/core/hash/traverse.rb
1093
+ - lib/facets/core/hash/to_ostruct_recurse.rb
1094
+ - lib/facets/core/hash/having_fallback.rb
1095
+ - lib/facets/core/hash/shuffle.rb
1096
+ - lib/facets/core/hash/has_keys.rb
1097
+ - lib/facets/core/hash/join.rb
1098
+ - lib/facets/core/hash/graph.rb
1099
+ - lib/facets/core/hash/at.rb
1376
1100
  - lib/facets/core/hash/update_values.rb
1377
- - lib/facets/core/hash/op_lshift.rb
1101
+ - lib/facets/core/hash/update_each.rb
1102
+ - lib/facets/core/hash/each_with_key.rb
1103
+ - lib/facets/core/hash/stringify_keys.rb
1378
1104
  - lib/facets/core/hash/has_only_keys.rb
1379
- - lib/facets/core/hash/swapkey.rb
1380
- - lib/facets/core/hash/weave.rb
1381
- - lib/facets/core/hash/each_with_index.rb
1382
- - lib/facets/core/hash/keys_to_s.rb
1105
+ - lib/facets/core/hash/to_struct.rb
1383
1106
  - lib/facets/core/hash/swap.rb
1384
- - lib/facets/core/hash/at.rb
1385
- - lib/facets/core/hash/delete_at.rb
1386
- - lib/facets/core/hash/update_keys.rb
1387
- - lib/facets/core/hash/shuffle.rb
1388
- - lib/facets/core/hash/op_div.rb
1389
1107
  - lib/facets/core/hash/delete_values.rb
1390
- - lib/facets/core/hash/variablize_keys.rb
1391
- - lib/facets/core/hash/stringify_keys.rb
1392
- - lib/facets/core/hash/graph.rb
1393
- - lib/facets/core/hash/to_struct.rb
1394
- - lib/facets/core/hash/to_proc.rb
1395
1108
  - lib/facets/core/hash/reverse_update.rb
1396
- - lib/facets/core/hash/collate.rb
1397
- - lib/facets/core/hash/having_aquisition.rb
1109
+ - lib/facets/core/hash/update_keys.rb
1110
+ - lib/facets/core/hash/rand_value.rb
1111
+ - lib/facets/core/hash/assert_has_keys.rb
1112
+ - lib/facets/core/hash/alias.rb
1398
1113
  - lib/facets/core/hash/rand_key.rb
1399
- - lib/facets/core/hash/rand_pair.rb
1400
- - lib/facets/core/hash/delete_unless.rb
1401
- - lib/facets/core/hash/to_ostruct_recurse.rb
1402
- - lib/facets/core/hash/each_with_key.rb
1403
- - lib/facets/core/hash/has_keys.rb
1114
+ - lib/facets/core/hash/rand_pair.rb
1115
+ - lib/facets/core/hash/keys_to_s.rb
1116
+ - lib/facets/core/hash/slice.rb
1117
+ - lib/facets/core/hash/rekey.rb
1404
1118
  - lib/facets/core/hash/keys_to_sym.rb
1405
- - lib/facets/core/hash/inverse.rb
1119
+ - lib/facets/core/hash/to_ostruct.rb
1120
+ - lib/facets/core/hash/to_proc.rb
1121
+ - lib/facets/core/hash/weave.rb
1406
1122
  - lib/facets/core/hash/diff.rb
1407
- - lib/facets/core/hash/having_fallback.rb
1408
- - lib/facets/core/hash/assert_has_only_keys.rb
1409
1123
  - lib/facets/core/hash/symbolize_keys.rb
1410
- - lib/facets/core/hash/op_fetch.rb
1411
- - lib/facets/core/hash/traverse.rb
1124
+ - lib/facets/core/hash/inverse.rb
1125
+ - lib/facets/core/hash/delete_values_at.rb
1126
+ - lib/facets/core/hash/delete_at.rb
1127
+ - lib/facets/core/hash/op_add.rb
1128
+ - lib/facets/core/hash/op_sub.rb
1129
+ - lib/facets/core/hash/op_and.rb
1130
+ - lib/facets/core/hash/op_mul.rb
1131
+ - lib/facets/core/hash/op_or.rb
1132
+ - lib/facets/core/hash/insert.rb
1133
+ - lib/facets/core/hash/pairs_at.rb
1412
1134
  - lib/facets/core/hash/self/zipnew.rb
1413
1135
  - lib/facets/core/hash/self/auto.rb
1414
- - lib/facets/core/range/umbrella.rb
1415
1136
  - lib/facets/core/range/to_range.rb
1416
- - lib/facets/core/range/to_r.rb
1417
1137
  - lib/facets/core/range/within.rb
1418
- - lib/facets/core/time/self
1419
- - lib/facets/core/time/stamp.rb
1420
- - lib/facets/core/time/elapse.rb
1138
+ - lib/facets/core/range/to_r.rb
1139
+ - lib/facets/core/range/umbrella.rb
1140
+ - lib/facets/core/time/to_date.rb
1421
1141
  - lib/facets/core/time/to_time.rb
1142
+ - lib/facets/core/time/stamp.rb
1422
1143
  - lib/facets/core/time/to_s.rb
1423
- - lib/facets/core/time/to_date.rb
1424
1144
  - lib/facets/core/time/change.rb
1425
- - lib/facets/core/time/self/days_extrema.rb
1145
+ - lib/facets/core/time/elapse.rb
1426
1146
  - lib/facets/core/time/self/stamp.rb
1427
- - lib/facets/core/fileutils/wc.rb
1147
+ - lib/facets/core/time/self/days_extrema.rb
1148
+ - lib/facets/core/fileutils/split_all.rb
1428
1149
  - lib/facets/core/fileutils/slice.rb
1429
1150
  - lib/facets/core/fileutils/head.rb
1430
1151
  - lib/facets/core/fileutils/which.rb
1152
+ - lib/facets/core/fileutils/stage.rb
1153
+ - lib/facets/core/fileutils/whereis.rb
1431
1154
  - lib/facets/core/fileutils/safe_ln.rb
1432
1155
  - lib/facets/core/fileutils/tail.rb
1433
- - lib/facets/core/fileutils/split_all.rb
1434
- - lib/facets/core/fileutils/whereis.rb
1435
- - lib/facets/core/numeric/distance.rb
1156
+ - lib/facets/core/fileutils/wc.rb
1157
+ - lib/facets/core/fileutils/compress.rb
1158
+ - lib/facets/core/fileutils/staged.rb
1436
1159
  - lib/facets/core/numeric/approx.rb
1437
- - lib/facets/core/numeric/ceil_multiple.rb
1438
- - lib/facets/core/numeric/to_b.rb
1439
1160
  - lib/facets/core/numeric/succ.rb
1161
+ - lib/facets/core/numeric/to_b.rb
1162
+ - lib/facets/core/numeric/ceil_multiple.rb
1163
+ - lib/facets/core/numeric/distance.rb
1440
1164
  - lib/facets/core/numeric/pred.rb
1165
+ - lib/facets/core/proc/bind.rb
1166
+ - lib/facets/core/proc/to_h.rb
1441
1167
  - lib/facets/core/proc/to_method.rb
1442
1168
  - lib/facets/core/proc/compose.rb
1443
1169
  - lib/facets/core/proc/op_mul.rb
1444
- - lib/facets/core/ostruct/instance.rb
1170
+ - lib/facets/core/proc/update.rb
1171
+ - lib/facets/core/ostruct/instance_delegate.rb
1172
+ - lib/facets/core/ostruct/__update__.rb
1445
1173
  - lib/facets/core/ostruct/__table__.rb
1446
1174
  - lib/facets/core/ostruct/op_fetch.rb
1447
- - lib/facets/core/ostruct/__update__.rb
1448
1175
  - lib/facets/core/ostruct/to_h.rb
1449
1176
  - lib/facets/core/ostruct/op_store.rb
1450
1177
  - lib/facets/core/ostruct/__merge__.rb
1451
- - lib/facets/core/comparable/clip.rb
1452
- - lib/facets/core/comparable/cap.rb
1453
1178
  - lib/facets/core/comparable/at_most.rb
1454
- - lib/facets/core/comparable/at_least.rb
1455
1179
  - lib/facets/core/comparable/cmp.rb
1456
- - lib/facets/core/gem/self
1457
- - lib/facets/core/gem/self/active.rb
1458
- - lib/facets/core/gem/self/gempath.rb
1180
+ - lib/facets/core/comparable/cap.rb
1181
+ - lib/facets/core/comparable/at_least.rb
1182
+ - lib/facets/core/comparable/clip.rb
1459
1183
  - lib/facets/core/gem/self/gemspec.rb
1460
- - lib/facets/core/continuation/self
1184
+ - lib/facets/core/gem/self/gempath.rb
1185
+ - lib/facets/core/gem/self/active.rb
1461
1186
  - lib/facets/core/continuation/self/create.rb
1462
1187
  - lib/facets/core/unboundmethod/name.rb
1463
- - lib/facets/core/date/to_s.rb
1464
- - lib/facets/core/date/days_in_month.rb
1465
- - lib/facets/core/date/to_date.rb
1466
- - lib/facets/core/date/stamp.rb
1467
1188
  - lib/facets/core/date/days_of_month.rb
1189
+ - lib/facets/core/date/to_date.rb
1468
1190
  - lib/facets/core/date/to_time.rb
1469
- - lib/facets/core/dir/self
1470
- - lib/facets/core/dir/self/ls_r.rb
1191
+ - lib/facets/core/date/stamp.rb
1192
+ - lib/facets/core/date/to_s.rb
1193
+ - lib/facets/core/date/days_in_month.rb
1194
+ - lib/facets/core/dir/self/multiglob.rb
1471
1195
  - lib/facets/core/dir/self/ascend.rb
1196
+ - lib/facets/core/dir/self/ancestor.rb
1197
+ - lib/facets/core/dir/self/ls_r.rb
1472
1198
  - lib/facets/core/dir/self/descend.rb
1473
1199
  - lib/facets/core/dir/self/recurse.rb
1474
- - lib/facets/core/dir/self/ancestor.rb
1475
- - lib/facets/core/enumerable/self
1476
- - lib/facets/core/enumerable/each_with_counter.rb
1477
- - lib/facets/core/enumerable/uniq_by.rb
1478
- - lib/facets/core/enumerable/op_pow.rb
1479
- - lib/facets/core/enumerable/where.rb
1480
- - lib/facets/core/enumerable/map_if.rb
1481
- - lib/facets/core/enumerable/none.rb
1482
- - lib/facets/core/enumerable/graph.rb
1483
- - lib/facets/core/enumerable/find_collisions.rb
1484
- - lib/facets/core/enumerable/commonality.rb
1485
- - lib/facets/core/enumerable/each_permutation.rb
1486
- - lib/facets/core/enumerable/mode.rb
1200
+ - lib/facets/core/dir/self/multiglob_recurse.rb
1201
+ - lib/facets/core/dir/self/multiglob_sum.rb
1202
+ - lib/facets/core/enumerable/each_combination.rb
1203
+ - lib/facets/core/enumerable/each_slice.rb
1204
+ - lib/facets/core/enumerable/probability.rb
1487
1205
  - lib/facets/core/enumerable/elementwise.rb
1488
- - lib/facets/core/enumerable/project.rb
1206
+ - lib/facets/core/enumerable/one.rb
1207
+ - lib/facets/core/enumerable/each_with_counter.rb
1208
+ - lib/facets/core/enumerable/accumulate.rb
1489
1209
  - lib/facets/core/enumerable/cascade.rb
1490
- - lib/facets/core/enumerable/each_pair.rb
1491
- - lib/facets/core/enumerable/count.rb
1492
- - lib/facets/core/enumerable/occur.rb
1493
- - lib/facets/core/enumerable/ew.rb
1494
- - lib/facets/core/enumerable/eachn.rb
1495
1210
  - lib/facets/core/enumerable/compact_map.rb
1496
- - lib/facets/core/enumerable/each_slice.rb
1497
- - lib/facets/core/enumerable/nonuniq.rb
1498
- - lib/facets/core/enumerable/one.rb
1499
- - lib/facets/core/enumerable/collect_if.rb
1500
- - lib/facets/core/enumerable/frequency.rb
1501
- - lib/facets/core/enumerable/filter_collect.rb
1502
- - lib/facets/core/enumerable/permutation.rb
1503
- - lib/facets/core/enumerable/partition_by.rb
1504
- - lib/facets/core/enumerable/collect_with_index.rb
1505
- - lib/facets/core/enumerable/filter_map.rb
1211
+ - lib/facets/core/enumerable/cross.rb
1506
1212
  - lib/facets/core/enumerable/to_h.rb
1213
+ - lib/facets/core/enumerable/every.rb
1214
+ - lib/facets/core/enumerable/ideal_entropy.rb
1215
+ - lib/facets/core/enumerable/each_by.rb
1216
+ - lib/facets/core/enumerable/collect_with_index.rb
1217
+ - lib/facets/core/enumerable/compact_collect.rb
1218
+ - lib/facets/core/enumerable/map_with_index.rb
1219
+ - lib/facets/core/enumerable/graph.rb
1507
1220
  - lib/facets/core/enumerable/each_unique_pair.rb
1508
- - lib/facets/core/enumerable/each_combination.rb
1509
- - lib/facets/core/enumerable/map_with_counter.rb
1221
+ - lib/facets/core/enumerable/partition_by.rb
1510
1222
  - lib/facets/core/enumerable/divide.rb
1511
- - lib/facets/core/enumerable/accumulate.rb
1223
+ - lib/facets/core/enumerable/map_with_counter.rb
1224
+ - lib/facets/core/enumerable/filter_map.rb
1225
+ - lib/facets/core/enumerable/each_pair.rb
1226
+ - lib/facets/core/enumerable/occur.rb
1512
1227
  - lib/facets/core/enumerable/collect_with_counter.rb
1513
- - lib/facets/core/enumerable/cross.rb
1514
- - lib/facets/core/enumerable/probability.rb
1228
+ - lib/facets/core/enumerable/find_collisions.rb
1229
+ - lib/facets/core/enumerable/nonuniq.rb
1230
+ - lib/facets/core/enumerable/mode.rb
1231
+ - lib/facets/core/enumerable/eachn.rb
1515
1232
  - lib/facets/core/enumerable/sum.rb
1516
- - lib/facets/core/enumerable/compact_collect.rb
1517
- - lib/facets/core/enumerable/ideal_entropy.rb
1518
- - lib/facets/core/enumerable/map_with_index.rb
1519
- - lib/facets/core/enumerable/every.rb
1520
- - lib/facets/core/enumerable/each_by.rb
1233
+ - lib/facets/core/enumerable/each_permutation.rb
1234
+ - lib/facets/core/enumerable/count.rb
1235
+ - lib/facets/core/enumerable/filter_collect.rb
1236
+ - lib/facets/core/enumerable/map_if.rb
1237
+ - lib/facets/core/enumerable/commonality.rb
1238
+ - lib/facets/core/enumerable/none.rb
1521
1239
  - lib/facets/core/enumerable/entropy.rb
1240
+ - lib/facets/core/enumerable/frequency.rb
1241
+ - lib/facets/core/enumerable/collect_if.rb
1242
+ - lib/facets/core/enumerable/op_pow.rb
1243
+ - lib/facets/core/enumerable/project.rb
1244
+ - lib/facets/core/enumerable/uniq_by.rb
1245
+ - lib/facets/core/enumerable/where.rb
1246
+ - lib/facets/core/enumerable/ew.rb
1247
+ - lib/facets/core/enumerable/permutation.rb
1248
+ - lib/facets/core/enumerable/injecting.rb
1522
1249
  - lib/facets/core/enumerable/self/combinations.rb
1523
1250
  - lib/facets/core/enumerable/self/cross.rb
1524
- - lib/facets/core/file/self
1525
- - lib/facets/core/file/self/append.rb
1526
- - lib/facets/core/file/self/read_list.rb
1527
- - lib/facets/core/file/self/create.rb
1528
- - lib/facets/core/file/self/null.rb
1529
- - lib/facets/core/file/self/rootname.rb
1530
1251
  - lib/facets/core/file/self/open_as_string.rb
1531
- - lib/facets/core/file/self/write.rb
1532
1252
  - lib/facets/core/file/self/read_binary.rb
1533
- - lib/facets/core/file/self/sanitize.rb
1253
+ - lib/facets/core/file/self/create.rb
1534
1254
  - lib/facets/core/file/self/split_all.rb
1535
- - lib/facets/core/module/self
1536
- - lib/facets/core/module/attr.rb
1537
- - lib/facets/core/module/is.rb
1538
- - lib/facets/core/module/dirname.rb
1539
- - lib/facets/core/module/clone_renaming.rb
1540
- - lib/facets/core/module/shadow_all.rb
1541
- - lib/facets/core/module/redirect.rb
1542
- - lib/facets/core/module/nesting.rb
1543
- - lib/facets/core/module/remove.rb
1544
- - lib/facets/core/module/namespace.rb
1545
- - lib/facets/core/module/alias_method_chain.rb
1546
- - lib/facets/core/module/clone_using.rb
1547
- - lib/facets/core/module/attr_setter.rb
1548
- - lib/facets/core/module/clone_removing.rb
1549
- - lib/facets/core/module/instance_methods.rb
1550
- - lib/facets/core/module/this.rb
1551
- - lib/facets/core/module/equate_on.rb
1255
+ - lib/facets/core/file/self/rootname.rb
1256
+ - lib/facets/core/file/self/read_list.rb
1257
+ - lib/facets/core/file/self/sanitize.rb
1258
+ - lib/facets/core/file/self/append.rb
1259
+ - lib/facets/core/file/self/write.rb
1260
+ - lib/facets/core/file/self/null.rb
1261
+ - lib/facets/core/file/self/yaml.rb
1262
+ - lib/facets/core/module/on_included.rb
1552
1263
  - lib/facets/core/module/ancestor.rb
1553
- - lib/facets/core/module/alias_module_function.rb
1554
- - lib/facets/core/module/rename.rb
1555
- - lib/facets/core/module/by_name.rb
1556
- - lib/facets/core/module/redef.rb
1557
1264
  - lib/facets/core/module/integrate.rb
1558
- - lib/facets/core/module/rename_method.rb
1265
+ - lib/facets/core/module/redirect_method.rb
1266
+ - lib/facets/core/module/initializer.rb
1267
+ - lib/facets/core/module/sort_on.rb
1268
+ - lib/facets/core/module/redef.rb
1269
+ - lib/facets/core/module/shadow_method.rb
1559
1270
  - lib/facets/core/module/nodef.rb
1560
1271
  - lib/facets/core/module/modspace.rb
1561
- - lib/facets/core/module/wrap_method.rb
1562
- - lib/facets/core/module/attr_query.rb
1272
+ - lib/facets/core/module/attr_setter.rb
1273
+ - lib/facets/core/module/attr_tester.rb
1274
+ - lib/facets/core/module/attr_validator.rb
1275
+ - lib/facets/core/module/clone_using.rb
1563
1276
  - lib/facets/core/module/revisal.rb
1564
- - lib/facets/core/module/on_included.rb
1565
- - lib/facets/core/module/inject.rb
1566
- - lib/facets/core/module/initializer.rb
1567
1277
  - lib/facets/core/module/include_as.rb
1278
+ - lib/facets/core/module/nesting.rb
1279
+ - lib/facets/core/module/rename.rb
1280
+ - lib/facets/core/module/this.rb
1281
+ - lib/facets/core/module/wrap_method.rb
1282
+ - lib/facets/core/module/shadow_all.rb
1283
+ - lib/facets/core/module/dirname.rb
1284
+ - lib/facets/core/module/attr_query.rb
1285
+ - lib/facets/core/module/equate_on.rb
1286
+ - lib/facets/core/module/alias_method_chain.rb
1287
+ - lib/facets/core/module/clone_renaming.rb
1288
+ - lib/facets/core/module/redefine_method.rb
1289
+ - lib/facets/core/module/instance_methods.rb
1290
+ - lib/facets/core/module/namespace.rb
1291
+ - lib/facets/core/module/remove.rb
1292
+ - lib/facets/core/module/rename_method.rb
1293
+ - lib/facets/core/module/redirect.rb
1294
+ - lib/facets/core/module/abstract.rb
1295
+ - lib/facets/core/module/class_extension.rb
1568
1296
  - lib/facets/core/module/memoize.rb
1569
1297
  - lib/facets/core/module/class.rb
1298
+ - lib/facets/core/module/alias_module_function.rb
1299
+ - lib/facets/core/module/clone_removing.rb
1570
1300
  - lib/facets/core/module/wrap.rb
1571
- - lib/facets/core/module/sort_on.rb
1572
- - lib/facets/core/module/class_extension.rb
1301
+ - lib/facets/core/module/attr.rb
1302
+ - lib/facets/core/module/by_name.rb
1303
+ - lib/facets/core/module/is.rb
1573
1304
  - lib/facets/core/module/basename.rb
1574
- - lib/facets/core/module/attr_validator.rb
1575
- - lib/facets/core/module/shadow_method.rb
1576
- - lib/facets/core/module/abstract.rb
1577
- - lib/facets/core/module/redefine_method.rb
1578
- - lib/facets/core/module/redirect_method.rb
1579
- - lib/facets/core/module/attr_tester.rb
1580
- - lib/facets/core/module/self/op_sub.rb
1305
+ - lib/facets/core/module/inject.rb
1306
+ - lib/facets/core/module/new.rb
1307
+ - lib/facets/core/module/alias_accessor.rb
1308
+ - lib/facets/core/module/prepend.rb
1309
+ - lib/facets/core/module/include_and_extend.rb
1310
+ - lib/facets/core/module/module_method.rb
1311
+ - lib/facets/core/module/module_load.rb
1312
+ - lib/facets/core/module/include_function_module.rb
1313
+ - lib/facets/core/module/module_require.rb
1581
1314
  - lib/facets/core/module/self/op_add.rb
1315
+ - lib/facets/core/module/self/op_sub.rb
1582
1316
  - lib/facets/core/matchdata/matchset.rb
1583
- - lib/facets/core/matchdata/matchtree.rb
1584
1317
  - lib/facets/core/matchdata/match.rb
1318
+ - lib/facets/core/matchdata/matchtree.rb
1585
1319
  - lib/facets/core/regexp/to_regexp.rb
1586
1320
  - lib/facets/core/regexp/arity.rb
1587
1321
  - lib/facets/core/regexp/to_re.rb
1588
1322
  - lib/facets/core/pathname/op_div.rb
1589
- - lib/facets/core/pathname/descend.rb
1590
1323
  - lib/facets/core/pathname/ascend.rb
1591
- - lib/facets/core/integer/times_collect.rb
1592
- - lib/facets/core/integer/fac.rb
1324
+ - lib/facets/core/pathname/descend.rb
1325
+ - lib/facets/core/integer/times_map.rb
1593
1326
  - lib/facets/core/integer/even.rb
1327
+ - lib/facets/core/integer/fact.rb
1328
+ - lib/facets/core/integer/factorial.rb
1329
+ - lib/facets/core/integer/each.rb
1594
1330
  - lib/facets/core/integer/ordinal.rb
1595
- - lib/facets/core/integer/times_map.rb
1596
1331
  - lib/facets/core/integer/of.rb
1597
- - lib/facets/core/integer/multiple.rb
1598
- - lib/facets/core/integer/each.rb
1599
- - lib/facets/core/integer/factorial.rb
1600
1332
  - lib/facets/core/integer/odd.rb
1601
- - lib/facets/core/integer/fact.rb
1602
- - lib/facets/core/class/subclasses.rb
1603
- - lib/facets/core/class/method_name.rb
1604
- - lib/facets/core/class/descendents.rb
1605
- - lib/facets/core/class/by_name.rb
1606
- - lib/facets/core/class/cattr_writer.rb
1607
- - lib/facets/core/class/cattr_accessor.rb
1608
- - lib/facets/core/class/cattr.rb
1609
- - lib/facets/core/class/to_proc.rb
1333
+ - lib/facets/core/integer/times_collect.rb
1334
+ - lib/facets/core/integer/fac.rb
1335
+ - lib/facets/core/integer/multiple.rb
1336
+ - lib/facets/core/integer/to_roman.rb
1610
1337
  - lib/facets/core/class/unix_path.rb
1338
+ - lib/facets/core/class/cattr.rb
1611
1339
  - lib/facets/core/class/remove_descendents.rb
1340
+ - lib/facets/core/class/cattr_accessor.rb
1612
1341
  - lib/facets/core/class/cattr_reader.rb
1342
+ - lib/facets/core/class/descendents.rb
1343
+ - lib/facets/core/class/method_name.rb
1613
1344
  - lib/facets/core/class/remove_subclasses.rb
1345
+ - lib/facets/core/class/to_proc.rb
1346
+ - lib/facets/core/class/subclasses.rb
1347
+ - lib/facets/core/class/cattr_writer.rb
1348
+ - lib/facets/core/class/by_name.rb
1349
+ - lib/facets/core/class/class_require.rb
1350
+ - lib/facets/core/class/class_load.rb
1614
1351
  - lib/facets/core/config/datadir.rb
1615
- - lib/facets/core/float/round_at.rb
1352
+ - lib/facets/core/config/inspect.rb
1616
1353
  - lib/facets/core/float/round_off.rb
1617
- - lib/facets/core/float/round_to.rb
1618
1354
  - lib/facets/core/float/approx.rb
1619
- - lib/facets/core/symbol/self
1620
- - lib/facets/core/symbol/underscore.rb
1621
- - lib/facets/core/symbol/pad.rb
1622
- - lib/facets/core/symbol/capitalized.rb
1623
- - lib/facets/core/symbol/to_str.rb
1624
- - lib/facets/core/symbol/to_s.rb
1625
- - lib/facets/core/symbol/camelize.rb
1355
+ - lib/facets/core/float/round_to.rb
1356
+ - lib/facets/core/float/round_at.rb
1626
1357
  - lib/facets/core/symbol/capitalize.rb
1627
- - lib/facets/core/symbol/to_proc.rb
1628
- - lib/facets/core/symbol/upcase.rb
1358
+ - lib/facets/core/symbol/camelcase.rb
1629
1359
  - lib/facets/core/symbol/succ.rb
1630
1360
  - lib/facets/core/symbol/not.rb
1631
- - lib/facets/core/symbol/to_const.rb
1361
+ - lib/facets/core/symbol/upcase.rb
1632
1362
  - lib/facets/core/symbol/downcase.rb
1633
- - lib/facets/core/symbol/camelcase.rb
1363
+ - lib/facets/core/symbol/pad.rb
1364
+ - lib/facets/core/symbol/capitalized.rb
1365
+ - lib/facets/core/symbol/to_proc.rb
1366
+ - lib/facets/core/symbol/to_const.rb
1367
+ - lib/facets/core/symbol/camelize.rb
1368
+ - lib/facets/core/symbol/underscore.rb
1369
+ - lib/facets/core/symbol/to_str.rb
1370
+ - lib/facets/core/symbol/to_s.rb
1371
+ - lib/facets/core/symbol/chomp.rb
1634
1372
  - lib/facets/core/symbol/self/generate.rb
1635
- - lib/facets/core/string/self
1636
- - lib/facets/core/string/to_rx.rb
1637
- - lib/facets/core/string/dresner.rb
1638
- - lib/facets/core/string/shell_escape.rb
1373
+ - lib/facets/core/string/word_filter.rb
1374
+ - lib/facets/core/string/upcase.rb
1639
1375
  - lib/facets/core/string/align_center.rb
1640
- - lib/facets/core/string/mscan.rb
1376
+ - lib/facets/core/string/natcmp.rb
1377
+ - lib/facets/core/string/to_b.rb
1378
+ - lib/facets/core/string/soundex.rb
1641
1379
  - lib/facets/core/string/bytes.rb
1380
+ - lib/facets/core/string/ordinal.rb
1381
+ - lib/facets/core/string/format.rb
1382
+ - lib/facets/core/string/shuffle.rb
1383
+ - lib/facets/core/string/nchar.rb
1384
+ - lib/facets/core/string/to_rx.rb
1385
+ - lib/facets/core/string/divide.rb
1386
+ - lib/facets/core/string/pop.rb
1387
+ - lib/facets/core/string/mscan.rb
1388
+ - lib/facets/core/string/pot.rb
1389
+ - lib/facets/core/string/last.rb
1390
+ - lib/facets/core/string/at.rb
1642
1391
  - lib/facets/core/string/rand_index.rb
1643
- - lib/facets/core/string/fold.rb
1644
- - lib/facets/core/string/blank.rb
1392
+ - lib/facets/core/string/dequote.rb
1393
+ - lib/facets/core/string/regesc.rb
1394
+ - lib/facets/core/string/camelcase.rb
1395
+ - lib/facets/core/string/pull.rb
1396
+ - lib/facets/core/string/shift.rb
1397
+ - lib/facets/core/string/similarity.rb
1398
+ - lib/facets/core/string/unbracket.rb
1399
+ - lib/facets/core/string/push.rb
1400
+ - lib/facets/core/string/line_wrap.rb
1645
1401
  - lib/facets/core/string/humanize.rb
1646
- - lib/facets/core/string/whitespace.rb
1647
- - lib/facets/core/string/index_all.rb
1648
- - lib/facets/core/string/capitalized.rb
1649
1402
  - lib/facets/core/string/unshift.rb
1403
+ - lib/facets/core/string/indent.rb
1404
+ - lib/facets/core/string/to_a.rb
1405
+ - lib/facets/core/string/singular.rb
1406
+ - lib/facets/core/string/lowercase.rb
1407
+ - lib/facets/core/string/shell_escape.rb
1408
+ - lib/facets/core/string/align_right.rb
1409
+ - lib/facets/core/string/first.rb
1650
1410
  - lib/facets/core/string/modulize.rb
1651
- - lib/facets/core/string/to_b.rb
1411
+ - lib/facets/core/string/to_const.rb
1412
+ - lib/facets/core/string/each_word.rb
1413
+ - lib/facets/core/string/words.rb
1414
+ - lib/facets/core/string/index_all.rb
1415
+ - lib/facets/core/string/chars.rb
1416
+ - lib/facets/core/string/last_char.rb
1417
+ - lib/facets/core/string/pathize.rb
1418
+ - lib/facets/core/string/align_left.rb
1419
+ - lib/facets/core/string/to_proc.rb
1420
+ - lib/facets/core/string/tab.rb
1421
+ - lib/facets/core/string/shatter.rb
1652
1422
  - lib/facets/core/string/starts_with.rb
1653
- - lib/facets/core/string/word_wrap.rb
1654
- - lib/facets/core/string/dequote.rb
1655
- - lib/facets/core/string/range_of_line.rb
1656
- - lib/facets/core/string/uppercase.rb
1657
- - lib/facets/core/string/bracket.rb
1658
- - lib/facets/core/string/pull.rb
1659
- - lib/facets/core/string/unix_crypt.rb
1660
- - lib/facets/core/string/quote.rb
1661
- - lib/facets/core/string/brief.rb
1662
- - lib/facets/core/string/last.rb
1663
- - lib/facets/core/string/underscore.rb
1664
- - lib/facets/core/string/regesc.rb
1665
- - lib/facets/core/string/line_wrap.rb
1666
- - lib/facets/core/string/at.rb
1667
- - lib/facets/core/string/push.rb
1668
1423
  - lib/facets/core/string/margin.rb
1669
- - lib/facets/core/string/demodulize.rb
1670
- - lib/facets/core/string/succ.rb
1671
- - lib/facets/core/string/align_left.rb
1672
- - lib/facets/core/string/plural.rb
1673
- - lib/facets/core/string/words.rb
1674
1424
  - lib/facets/core/string/to_date.rb
1675
- - lib/facets/core/string/rand_byte.rb
1676
- - lib/facets/core/string/similarity.rb
1677
- - lib/facets/core/string/natcmp.rb
1678
- - lib/facets/core/string/pop.rb
1679
- - lib/facets/core/string/align_right.rb
1680
- - lib/facets/core/string/tabto.rb
1681
- - lib/facets/core/string/shift.rb
1682
- - lib/facets/core/string/word_filter.rb
1683
- - lib/facets/core/string/range.rb
1684
- - lib/facets/core/string/range_all.rb
1685
- - lib/facets/core/string/shuffle.rb
1686
- - lib/facets/core/string/singular.rb
1425
+ - lib/facets/core/string/unpack.rb
1426
+ - lib/facets/core/string/first_char.rb
1427
+ - lib/facets/core/string/fold.rb
1428
+ - lib/facets/core/string/blank.rb
1687
1429
  - lib/facets/core/string/methodize.rb
1688
- - lib/facets/core/string/camelcase.rb
1430
+ - lib/facets/core/string/camelize.rb
1431
+ - lib/facets/core/string/whitespace.rb
1432
+ - lib/facets/core/string/quote.rb
1433
+ - lib/facets/core/string/plural.rb
1689
1434
  - lib/facets/core/string/to_time.rb
1690
- - lib/facets/core/string/to_const.rb
1435
+ - lib/facets/core/string/demodulize.rb
1436
+ - lib/facets/core/string/dresner.rb
1437
+ - lib/facets/core/string/unix_crypt.rb
1438
+ - lib/facets/core/string/word_wrap.rb
1439
+ - lib/facets/core/string/rand_byte.rb
1440
+ - lib/facets/core/string/to_re.rb
1441
+ - lib/facets/core/string/bracket.rb
1442
+ - lib/facets/core/string/cmp.rb
1443
+ - lib/facets/core/string/range_all.rb
1444
+ - lib/facets/core/string/ends_with.rb
1445
+ - lib/facets/core/string/range_of_line.rb
1446
+ - lib/facets/core/string/brief.rb
1447
+ - lib/facets/core/string/uppercase.rb
1448
+ - lib/facets/core/string/capitalized.rb
1449
+ - lib/facets/core/string/range.rb
1450
+ - lib/facets/core/string/each_char.rb
1451
+ - lib/facets/core/string/succ.rb
1691
1452
  - lib/facets/core/string/downcase.rb
1692
1453
  - lib/facets/core/string/at_rand.rb
1693
- - lib/facets/core/string/soundex.rb
1694
- - lib/facets/core/string/each_char.rb
1695
- - lib/facets/core/string/ends_with.rb
1696
- - lib/facets/core/string/to_proc.rb
1697
- - lib/facets/core/string/nchar.rb
1698
- - lib/facets/core/string/divide.rb
1699
- - lib/facets/core/string/last_char.rb
1700
- - lib/facets/core/string/indent.rb
1701
- - lib/facets/core/string/unbracket.rb
1454
+ - lib/facets/core/string/tabto.rb
1455
+ - lib/facets/core/string/underscore.rb
1702
1456
  - lib/facets/core/string/lines.rb
1703
- - lib/facets/core/string/chars.rb
1704
- - lib/facets/core/string/to_re.rb
1705
- - lib/facets/core/string/ordinal.rb
1706
- - lib/facets/core/string/tab.rb
1707
1457
  - lib/facets/core/string/basename.rb
1708
- - lib/facets/core/string/shatter.rb
1709
- - lib/facets/core/string/unpack.rb
1710
- - lib/facets/core/string/format.rb
1711
- - lib/facets/core/string/lowercase.rb
1712
- - lib/facets/core/string/upcase.rb
1713
- - lib/facets/core/string/each_word.rb
1714
- - lib/facets/core/string/to_a.rb
1715
- - lib/facets/core/string/pot.rb
1716
- - lib/facets/core/string/camelize.rb
1717
- - lib/facets/core/string/pathize.rb
1718
- - lib/facets/core/string/first.rb
1719
- - lib/facets/core/string/first_char.rb
1720
- - lib/facets/core/string/cmp.rb
1458
+ - lib/facets/core/string/rewrite.rb
1721
1459
  - lib/facets/core/string/self/rand_letter.rb
1722
1460
  - lib/facets/core/string/self/patterns.rb
1723
1461
  - lib/facets/core/string/self/random.rb
1724
1462
  - lib/facets/core/string/self/interpolate.rb
1725
1463
  - lib/facets/core/string/self/format.rb
1726
- - lib/facets/core/nilclass/succ.rb
1727
1464
  - lib/facets/core/nilclass/op_cmp.rb
1728
- - lib/facets/core/nilclass/op_fetch.rb
1729
- - lib/facets/core/nilclass/include.rb
1730
- - lib/facets/core/nilclass/size.rb
1731
- - lib/facets/core/nilclass/blank.rb
1465
+ - lib/facets/core/nilclass/succ.rb
1466
+ - lib/facets/core/nilclass/empty.rb
1732
1467
  - lib/facets/core/nilclass/length.rb
1468
+ - lib/facets/core/nilclass/include.rb
1733
1469
  - lib/facets/core/nilclass/status.rb
1734
- - lib/facets/core/nilclass/to_path.rb
1470
+ - lib/facets/core/nilclass/blank.rb
1471
+ - lib/facets/core/nilclass/op_fetch.rb
1735
1472
  - lib/facets/core/nilclass/to_h.rb
1736
- - lib/facets/core/nilclass/empty.rb
1737
- - lib/facets/core/binding/self
1738
- - lib/facets/core/binding/__LINE__.rb
1473
+ - lib/facets/core/nilclass/size.rb
1474
+ - lib/facets/core/nilclass/to_path.rb
1475
+ - lib/facets/core/binding/call_stack.rb
1739
1476
  - lib/facets/core/binding/defined.rb
1740
- - lib/facets/core/binding/eval.rb
1741
- - lib/facets/core/binding/caller.rb
1742
- - lib/facets/core/binding/op_store.rb
1743
1477
  - lib/facets/core/binding/local_variables.rb
1744
- - lib/facets/core/binding/__FILE__.rb
1745
- - lib/facets/core/binding/self.rb
1746
- - lib/facets/core/binding/call_stack.rb
1747
1478
  - lib/facets/core/binding/method_name.rb
1479
+ - lib/facets/core/binding/caller.rb
1480
+ - lib/facets/core/binding/__LINE__.rb
1748
1481
  - lib/facets/core/binding/called.rb
1749
- - lib/facets/core/binding/__DIR__.rb
1482
+ - lib/facets/core/binding/eval.rb
1750
1483
  - lib/facets/core/binding/op_fetch.rb
1484
+ - lib/facets/core/binding/self.rb
1485
+ - lib/facets/core/binding/__DIR__.rb
1486
+ - lib/facets/core/binding/op_store.rb
1487
+ - lib/facets/core/binding/__FILE__.rb
1751
1488
  - lib/facets/core/binding/self/of_caller.rb
1752
- - lib/facets/core/array/middle.rb
1753
1489
  - lib/facets/core/array/delete_unless.rb
1754
- - lib/facets/core/array/pot.rb
1755
- - lib/facets/core/array/pull.rb
1490
+ - lib/facets/core/array/select.rb
1491
+ - lib/facets/core/array/op_div.rb
1492
+ - lib/facets/core/array/to_b.rb
1493
+ - lib/facets/core/array/op_fetch.rb
1494
+ - lib/facets/core/array/tail.rb
1495
+ - lib/facets/core/array/to_h.rb
1496
+ - lib/facets/core/array/op_store.rb
1756
1497
  - lib/facets/core/array/shuffle.rb
1757
- - lib/facets/core/array/delete_values_at.rb
1758
- - lib/facets/core/array/head.rb
1498
+ - lib/facets/core/array/store.rb
1499
+ - lib/facets/core/array/op_mod.rb
1500
+ - lib/facets/core/array/merge.rb
1501
+ - lib/facets/core/array/pot.rb
1759
1502
  - lib/facets/core/array/last.rb
1760
- - lib/facets/core/array/op_store.rb
1761
- - lib/facets/core/array/pick.rb
1762
- - lib/facets/core/array/rand_subset.rb
1503
+ - lib/facets/core/array/each_with_key.rb
1763
1504
  - lib/facets/core/array/unzip.rb
1764
- - lib/facets/core/array/to_h.rb
1765
- - lib/facets/core/array/combos.rb
1766
- - lib/facets/core/array/to_b.rb
1767
- - lib/facets/core/array/tail.rb
1768
1505
  - lib/facets/core/array/foot.rb
1769
- - lib/facets/core/array/to_hash.rb
1770
- - lib/facets/core/array/rand_index.rb
1771
- - lib/facets/core/array/select.rb
1772
1506
  - lib/facets/core/array/mid.rb
1507
+ - lib/facets/core/array/pull.rb
1508
+ - lib/facets/core/array/rand_index.rb
1509
+ - lib/facets/core/array/delete_values_at.rb
1510
+ - lib/facets/core/array/delete_values.rb
1511
+ - lib/facets/core/array/thru.rb
1512
+ - lib/facets/core/array/join_sentence.rb
1513
+ - lib/facets/core/array/to_hash.rb
1514
+ - lib/facets/core/array/pick.rb
1773
1515
  - lib/facets/core/array/first.rb
1774
- - lib/facets/core/array/at_rand.rb
1516
+ - lib/facets/core/array/last_index.rb
1517
+ - lib/facets/core/array/range.rb
1775
1518
  - lib/facets/core/array/body.rb
1776
- - lib/facets/core/array/thru.rb
1777
- - lib/facets/core/array/delete_values.rb
1519
+ - lib/facets/core/array/rotate.rb
1520
+ - lib/facets/core/array/middle.rb
1778
1521
  - lib/facets/core/array/pos.rb
1779
- - lib/facets/core/array/merge.rb
1522
+ - lib/facets/core/array/head.rb
1523
+ - lib/facets/core/array/rand_subset.rb
1524
+ - lib/facets/core/array/at_rand.rb
1780
1525
  - lib/facets/core/array/each_combo.rb
1781
- - lib/facets/core/array/op_fetch.rb
1782
- - lib/facets/core/array/range.rb
1783
- - lib/facets/core/array/op_mod.rb
1784
- - lib/facets/core/array/last_index.rb
1785
- - lib/facets/core/array/op_div.rb
1786
- - lib/facets/core/array/join_sentence.rb
1787
- - lib/facets/core/array/rotate.rb
1788
- - lib/facets/core/array/each_with_key.rb
1789
- - lib/facets/core/array/store.rb
1790
- - lib/facets/core/filetest/self
1526
+ - lib/facets/core/array/combos.rb
1527
+ - lib/facets/core/array/to_path.rb
1528
+ - lib/facets/core/array/index.rb
1791
1529
  - lib/facets/core/filetest/self/root.rb
1792
- - data/facets
1793
- - data/facets/units
1794
- - data/facets/units/uk
1795
- - data/facets/units/binary
1796
- - data/facets/units/us
1797
- - data/facets/units/currency
1798
- - data/facets/units/si
1799
- - data/facets/units/xmethods
1530
+ - lib/facets/yore/annotation.rb
1531
+ - lib/facets/yore/annattr.rb
1532
+ - lib/facets/yore/builderobject.rb
1533
+ - lib/facets/yore/module/namespace.rb
1534
+ - lib/facets/yore/module/inject.rb
1535
+ - lib/facets/yore/kernel/require_facet.rb
1536
+ - lib/facets/yore/kernel/own.rb
1800
1537
  - data/facets/units/default.yaml
1538
+ - data/facets/units/cex.yaml
1801
1539
  - data/facets/units/uk.yaml
1802
1540
  - data/facets/units/standard.yaml
1803
- - data/facets/units/dump_yaml.rb
1804
- - data/facets/units/cex.yaml
1805
1541
  - data/facets/units/us.yaml
1542
+ - data/facets/units/dump_yaml.rb
1806
1543
  - data/facets/units/uk/base.yaml
1807
- - data/facets/units/binary/base.yaml
1808
1544
  - data/facets/units/binary/extra.yaml
1545
+ - data/facets/units/binary/base.yaml
1809
1546
  - data/facets/units/us/base.yaml
1810
1547
  - data/facets/units/currency/base.yaml
1811
- - data/facets/units/si/base.yaml
1812
1548
  - data/facets/units/si/derived.yaml
1813
1549
  - data/facets/units/si/extra.yaml
1550
+ - data/facets/units/si/base.yaml
1814
1551
  - data/facets/units/xmethods/cached.yaml
1815
1552
  - data/facets/units/xmethods/mapping.yaml
1816
1553
  test_files: []