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
@@ -0,0 +1,765 @@
1
+ #
2
+ # merge3.rb - a 3 way text merging tool
3
+ #
4
+ # Copyright 2004 Helsinki Institute for Information Technology (HIIT)
5
+ # and the authors. All rights reserved.
6
+ #
7
+ # Authors: Torsten Rueger <torsten@lightning.nu>
8
+ #
9
+
10
+ # Permission is hereby granted, free of charge, to any person
11
+ # obtaining a copy of this software and associated documentation files
12
+ # (the "Software"), to deal in the Software without restriction,
13
+ # including without limitation the rights to use, copy, modify, merge,
14
+ # publish, distribute, sublicense, and/or sell copies of the Software,
15
+ # and to permit persons to whom the Software is furnished to do so,
16
+ # subject to the following conditions:
17
+ #
18
+ # The above copyright notice and this permission notice shall be
19
+ # included in all copies or substantial portions of the Software.
20
+ #
21
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
25
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
26
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
27
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ # SOFTWARE.
29
+ #
30
+ # start : last week it was really nice weather
31
+ # one (+end) : last weekend it was really nice weather
32
+ # two (order) : it was really nice weather last week
33
+ #
34
+ # merged : it was really nice weather last weekend
35
+
36
+ # It's a simple example, but getting that merged result is not.
37
+
38
+ # it seems the standard diff/patch does not use move or copy as a command
39
+ # as a consequence, simple avoidable conflicts are produced as soon as
40
+ # move + edit touch the same data.
41
+
42
+ # this is not only surprising as diff/patch have been around for so long
43
+ # also the algorithms for detecting moves have been around for long:
44
+ # basically there are the two approaches of using add/delete
45
+ # or add/copy (or just copy). Diff/Patch just use the first, whereas the second
46
+ # would allow better patching.
47
+
48
+ # now the really interesting thing is that modern diff algorithms I know
49
+ # (xdelta + vcdiff) use copy. As these algorithms are used to work on
50
+ # 2 versions, A,B , producing a diff ab that then may be aplied to A and
51
+ # A only, the algorithms use copy not because it's better for 3-way merging,
52
+ # but because it's more efficient.
53
+
54
+ # This algorithm is a 3 way merge on text files.
55
+ # It turns out that it merges xml just fine though.
56
+
57
+ # A very rough scetch is:
58
+ # -- find the common parts of two files . We do this by a hashing technique
59
+ # once we have the common (copied) parts we add the added/deleted ones
60
+ # -- common parts are sorted according to both original nad edited file order
61
+ # -- merge by going through the list of parts. Start at one file and always
62
+ # swap to the other when there is a change in the other, a change from
63
+ # the original files order
64
+
65
+ # Note: While this does not concentrate performance, it is quite reasonable,
66
+ # meaning linear in file size and quadrtic in numer of edits.
67
+ # Performace may be tested with the speedy.rb file in test directory
68
+ #
69
+
70
+ DEBUG = false #toggle this to true to get a complete trace of what happens
71
+
72
+
73
+ # so here comes the main algorithm. We have the class to carry the original file
74
+ # and it's hash codes we need for the matching of the files
75
+
76
+ class Merge3
77
+
78
+ # make a three way merge, passing in strings and returning a string
79
+ # strings are byte arrays (not line arrays as in diff)
80
+ def Merge3::three_way( start_file , one_file , two_file , ignore_white_space = false )
81
+ # We also create chunks of the whole files, in case whitespace
82
+ # handling is on. Chunk::subchunk passed compressed whitespace on
83
+ start_chunk = Chunk.new( 0 , start_file.length , start_file )
84
+ one_chunk = Chunk.new( 0 , one_file.length , one_file )
85
+ two_chunk = Chunk.new( 0 , two_file.length , two_file )
86
+ if ignore_white_space
87
+ start_chunk.squeeze # all consecutive whitespace is then squeezed
88
+ one_chunk.squeeze # into one, and a talbe create to unsqueeze later
89
+ two_chunk.squeeze # Yes, this is expensive
90
+ end
91
+ # only create the macthes hash once for the start file
92
+ start_matches = Merge3::all_matches(start_chunk)
93
+ # Create the chunks( moves first , then added and deleted)
94
+ one_seq = Sequence.new( one_chunk , start_chunk , start_matches )
95
+ two_seq = Sequence.new( two_chunk , start_chunk , start_matches )
96
+ puts "Diff original 0" , one_seq if DEBUG
97
+ puts "Diff original 1" , two_seq if DEBUG
98
+ # break all chunks into non overlapping regions (in the original file order)
99
+ one_seq.no_overlap( two_seq )
100
+ two_seq.no_overlap( one_seq )
101
+ puts "Diff non-overlapping 0" , one_seq if DEBUG
102
+ puts "Diff non-overlapping 1" , two_seq if DEBUG
103
+ # and finally (and most simply) do the merge
104
+ Merge3::merge( one_seq , two_seq )
105
+ end
106
+
107
+ # given the Sequences of both files, attempt merging them.
108
+ # the chunks in the sequences are non-overlapping, so we can always work
109
+ # on whole chunks.
110
+ # In a sentence, the algorithm is now: Follow the line of change
111
+ def Merge3::merge( one_seq , two_seq )
112
+ # we go along the original file's order and change to the other sequence
113
+ # if there has been a change compared to the original file.
114
+ out = [] # this is the array of string to be outputted, the result
115
+ # this doesn't consider changes at the beginning of the file
116
+ # which just goes to prove that we're researchers
117
+ one_chunk = one_seq.chunks.first
118
+ two_chunk = two_seq.chunks.first
119
+ last_choosen = one_chunk
120
+ break_flag = nil
121
+ while break_flag.nil?
122
+ if DEBUG and one_chunk.from != two_chunk.from
123
+ #chunks are non overlapping, so they must be the same
124
+ raise "CHUNKS differ #{one_chunk}\n#{two_chunk}"
125
+ end
126
+ # we start with the next in the edited file order and then check where
127
+ next_one = one_seq.get_next( one_chunk ) # the change is
128
+ next_two = two_seq.get_next( two_chunk )
129
+ break_flag = true if next_one.nil? or next_two.nil? #eof
130
+ # so if the change is in the first file,
131
+ if break_flag.nil? and one_chunk.org_stop != next_one.from
132
+ raise "conflict at #{one_chunk.org_stop}" if two_chunk.org_stop != next_two.from
133
+ # we find the one in file two that starts where it (one) ends
134
+ next_two = two_seq.find_from( next_one.from )
135
+ puts "ONE #{one_chunk}\n #{two_chunk} nNEXT #{next_one}\n #{next_two}" if DEBUG
136
+ next_choosen = next_one
137
+ # otherwise the change must be in file two
138
+ elsif break_flag.nil?
139
+ # and we look for the chunk in one, that starts where two ends
140
+ next_one = one_seq.find_from( next_two.from )
141
+ puts "TWO #{two_chunk}\n #{one_chunk}\nNEXT #{next_two}\n #{next_one}" if DEBUG
142
+ next_choosen = next_two
143
+ else
144
+ next_one , next_two = nil ,nil
145
+ end
146
+ this_del = ( one_chunk.kind_of?(Deleted) or two_chunk.kind_of?(Deleted) )
147
+ # Output the associated (real==whitespace expanded) string if not deleted
148
+ out << last_choosen.real_string unless this_del
149
+ puts "OUT #{Chunk::short_string(one_chunk.real_string)}" if DEBUG and not this_del
150
+ # we ignore adds (from one file) that happen to fall in the middle of a deleted in the other
151
+ one_del = ( one_chunk.kind_of?( Deleted) and next_one.kind_of?( Deleted) )
152
+ two_del = ( two_chunk.kind_of?( Deleted) and next_two.kind_of?( Deleted) )
153
+ unless one_del or two_del
154
+ # otherwise we output added text from both files
155
+ puts "ADD one #{one_chunk.added}" if DEBUG and not one_chunk.added.nil?
156
+ out << one_chunk.added.real_string unless one_chunk.added.nil?
157
+ # and if both have added text create an asymetric result, hmm
158
+ puts "ADD two #{ two_chunk.added}" if DEBUG and not two_chunk.added.nil?
159
+ out << two_chunk.added.real_string unless two_chunk.added.nil?
160
+ end
161
+ one_chunk = next_one
162
+ two_chunk = next_two
163
+ last_choosen = next_choosen
164
+ end
165
+ puts "RESULT" , out.join , "END" if DEBUG
166
+ return out.join # joins the pieces and returns the merged string
167
+ end
168
+
169
+ # build a hash of chunks( hash of the chunks string against the chunk).
170
+ # This is the backbone of the matching algorithm, so that finding a match
171
+ # is basically a hash lookup
172
+ # Matches may be of different sizes, we use 16,32,48 and -1 for line matching
173
+ def Merge3::matches( chunk , size )
174
+ if size == -1 then
175
+ return Merge3::match_newlines( chunk )
176
+ else
177
+ return Merge3::match( chunk , size )
178
+ end
179
+ end
180
+
181
+ # collect all matches (for the start file, so it doesn't have to be done twice)
182
+ def Merge3::all_matches( chunk )
183
+ # order counts, so large chunks overwrites small for hash collisions
184
+ matches = Merge3::match(chunk,16)
185
+ matches.update(match(chunk,32))
186
+ matches.update(match(chunk,48))
187
+ matches.update(match_newlines(chunk))
188
+ matches
189
+ end
190
+
191
+ # find matches according to newline seperation.
192
+ def Merge3::match_newlines( chunk )
193
+ match = {} # the hash of matches , using the strings as key, chunk as value
194
+ index = 0 #count through the string length
195
+ if chunk.whitespace.empty? # whitespace compression on or not ?
196
+ # because there are only newline if whitespace compression is off
197
+ chunk.str.split("\n").each do |line|
198
+ # this logic strips the whitespace off both sides of the line, in an
199
+ # effort to match things like changed indentation
200
+ offset = 0
201
+ offset += 1 while line[offset,1] =~ /\s/
202
+ index += offset
203
+ line.strip!
204
+ cop = chunk.subchunk( index , line.length , index )
205
+ match[cop.str] = cop # and store in our hash (no collision detection)
206
+ #puts "LINE #{index} #{line.length} #{offset}--#{cop.str}--"
207
+ index += line.length + 1 # 1 is the newline
208
+ end
209
+ else #whitespace compression is on, so the whitespace table contains
210
+ # the newlines, just have to find them
211
+ chunk.whitespace.each do | at , str |
212
+ #puts "###{str}##"
213
+ next unless str.include?( "\n" )
214
+ cop = chunk.subchunk( index + 1 , at - index , index )
215
+ index =at
216
+ #puts "###{cop.str}##" if cop.str.include?("Four")
217
+ match[cop.str] = cop # and store in our hash (no collision detection)
218
+ end
219
+ end
220
+ match
221
+ end
222
+
223
+ # find matches for around the given length. Exactly the length for binary files,
224
+ # but if there is whitespace, we use that to break within 70% of the given
225
+ # value
226
+ def Merge3::match( chunk , around )
227
+ match = {} # the hash of matches , using the strings as key, chunks as value
228
+ index = 0 #count through the string length
229
+ while index < chunk.length # also possible here to do half from the
230
+ left = chunk.length - index #front and half from the back (?)
231
+ if left > 0.7*around and left <= 1.5*around # are we at the end
232
+ len = chunk.length - index
233
+ else
234
+ sub = chunk.str[index , 1.5*around] # take the maximum length we want
235
+ if (white = sub.index( /\W/ , 0.7 * around )).nil? # and check for non char
236
+ len = around # either taking the whole
237
+ else #or the "words" we found
238
+ len = white #hoping this is better for text, so we have no allignment
239
+ end # issues
240
+ end #then create a chunk with the indexes and string
241
+ cop = chunk.subchunk( index , len , index )
242
+ match[cop.str] = cop # and store in our hash (no collision detection)
243
+ index += len
244
+ end
245
+ # now we only take one from the back,because that's often a match and will be
246
+ at = (chunk.length - 0.7*around).to_i
247
+ cop = chunk.subchunk( at , (0.7*around).to_i , at )
248
+ match[cop.str] = cop
249
+ match
250
+ end
251
+ end
252
+
253
+ # A Sequence represents a sequence of chunks , in other words the modified file
254
+ # broken into the chunks that were found
255
+
256
+ # the sequence keeps the chunks as lists, one in edited file order
257
+ # and one in original file order
258
+ class Sequence
259
+ attr :chunks # the list of chunks, sorted in order of the edited file
260
+ attr :org_chunks # the list of chunks, sorted in order of the original file
261
+
262
+ # output both lists of chunks, edited and original, with chunks and numbers
263
+ # but strings only up to 70 chars (for readability)
264
+ def to_s
265
+ ret = ""
266
+ @chunks.each_with_index do | chunk , index |
267
+ ret += index.to_s + " - " + chunk.to_s + "\n"
268
+ end
269
+ @org_chunks.each_with_index do | chunk , index |
270
+ ret += index.to_s + " - " + chunk.to_s + "\n"
271
+ end
272
+ return ret
273
+ end
274
+
275
+ # find the difference from (file, or byte array) too to start
276
+ # (matches are precalculated matches for start ) start.
277
+ # Collect the differences as chunks (copies or adds) and mark deletes
278
+ # The algorithm is "greedy", meaning if it finds a match (using the
279
+ # matches) it tries to extend in both directions
280
+ def initialize too_chunk , start_chunk , start_matches
281
+ @chunks = []
282
+ @org_chunks = []
283
+ # run by length to get big (sure) hits first (-1 == newlines)
284
+ [ -1 , 48 , 32, 16 ].each do |c_size|
285
+ two_matches = Merge3::matches(too_chunk , c_size).each do |key , two|
286
+ next if (start = start_matches[two.str]).nil?
287
+ raise "Keys collide :#{start}" if start.str != two.str
288
+ next if done?( two , start )
289
+ # here comes the greedy part, first left then right
290
+ two_start , start_start , len = two.start , start.start , two.length
291
+ puts two , "MINUS" if len <= 0 and DEBUG
292
+ start_rim , edit_rim = find_left_rim( start_start , two_start )
293
+ while ( start_chunk.str[start_start - 1] == too_chunk.str[two_start - 1] ) and
294
+ ( edit_rim < two_start ) and ( start_rim < start_start )
295
+ two_start -= 1
296
+ start_start -= 1
297
+ len += 1 # to keep the right end where it was
298
+ end
299
+ start_rim , edit_rim = find_right_rim( start_start + len , two_start + len , start_chunk.length , too_chunk.length )
300
+ while ( start_chunk.str[start_start + len ] == too_chunk.str[two_start + len ] ) and
301
+ ((len + start_start) < start_rim) and ((two_start + len) < edit_rim)
302
+ len += 1
303
+ end
304
+ chunk = too_chunk.subchunk(two_start,len , start_start )
305
+ puts "Matched #{chunk}" if DEBUG
306
+ add_chunk( chunk )
307
+ end
308
+ end
309
+ # now find the parts that were deleted
310
+ # (gaps in the matching of the original file)
311
+ each_org_pair do | org , next_org |
312
+ if org.org_stop < next_org.from
313
+ del_str = start_chunk.str[org.org_stop , next_org.from - org.org_stop ]
314
+ puts "DELETED #{org.org_stop} --#{del_str}--" if DEBUG
315
+ del = Deleted.new( org.stop , org.org_stop , del_str)
316
+ add_chunk( del )
317
+ end
318
+ end
319
+ # now find the parts that were added (gaps in the matching of the edited file)
320
+ adds = {}
321
+ each_pair do |chunk , next_chunk |
322
+ if chunk.stop < next_chunk.start
323
+ add = too_chunk.subchunk( chunk.stop , next_chunk.start - chunk.stop , -1 )
324
+ puts "ADDING #{add} " if DEBUG
325
+ chunk.added = add # hang the add onto the chunk
326
+ # this following logic has fixed some cases, where the matching had
327
+ # been somewhat unintuitive. Though correct it produced
328
+ # unneccessary conflicts, in conjunction with deletes
329
+ while add.str[0] == next_chunk.str[0] and
330
+ add.str[0] != 32 and # not spaces, avoid whitespace headaches
331
+ chunk.org_stop == next_chunk.from
332
+ puts "before: #{chunk} \nNext:#{next_chunk}" if DEBUG
333
+ add.rotate #put the first to the end
334
+ remove_chunk( next_chunk )
335
+ # move the first from the next to the end of the last
336
+ chunk.push( next_chunk.pop )
337
+ puts "after: #{chunk} \nNext:#{next_chunk}" if DEBUG
338
+ add_chunk( next_chunk )
339
+ end unless chunk.kind_of?(Deleted) or next_chunk.kind_of?(Deleted)
340
+ end
341
+ end
342
+ end
343
+
344
+ # helper to iterate over each pair in the edited file order
345
+ def each_pair
346
+ return if @chunks.length < 2
347
+ idx = 1
348
+ chunk = @chunks[0]
349
+ while idx < @chunks.length
350
+ next_chunk = @chunks[idx]
351
+ yield(chunk , next_chunk)
352
+ chunk = next_chunk
353
+ idx = idx + 1
354
+ end
355
+ end
356
+
357
+ # helper to iterate over each pair in the original file order
358
+ def each_org_pair
359
+ return if @org_chunks.length < 2
360
+ idx = 1
361
+ chunk = @org_chunks[0]
362
+ while idx < @org_chunks.length
363
+ next_chunk = @org_chunks[idx]
364
+ yield(chunk , next_chunk)
365
+ chunk = next_chunk
366
+ idx = idx + 1
367
+ end
368
+ end
369
+
370
+ # get the next chunk in edited file order
371
+ def get_next( prev )
372
+ idx = @chunks.index prev
373
+ return nil unless idx
374
+ return nil if idx == @chunks.length - 1
375
+ nekst = @chunks[idx + 1 ]
376
+ return nekst
377
+ end
378
+
379
+ # add this chunk. This implementation keeps the order of both
380
+ # arrays correct all the time
381
+ def add_chunk( chunk )
382
+ raise "Nil added " if not chunk
383
+ raise "False added " if chunk == false
384
+ @chunks.push( chunk )
385
+ @chunks.sort! { |a , b |
386
+ ret = a.start <=> b.start
387
+ # so this adds the Deleted chunks into the edited file too
388
+ if ret == 0
389
+ ret = -1 if a.kind_of? Deleted
390
+ ret = 1 if b.kind_of? Deleted
391
+ end
392
+ ret
393
+ }
394
+ @org_chunks.push(chunk)
395
+ @org_chunks.sort! do |a , b | a.from <=> b.from end
396
+ end
397
+
398
+ def remove_chunk( chunk ) # for rotation, will be readded
399
+ @chunks.delete(chunk)
400
+ @org_chunks.delete(chunk)
401
+ end
402
+
403
+ #find the chunk that starts at the given position in the original file
404
+ def find_from pos
405
+ each_org do | chunk |
406
+ #puts "FOUND for #{pos} #{chunk}"
407
+ return chunk if chunk.from == pos
408
+ end
409
+ raise "Not found #{pos} in\n#{self}"
410
+ # hmmm this was here for some reason I don't recall
411
+ # return chunk.next if chunk.added and chunk.added.start == pos
412
+ end
413
+
414
+ # find the chunk left to these positions (original and edited) and return
415
+ # the maximum bound a new chunk can expand too in both coordinates.
416
+ def find_left_rim org , pos
417
+ start_rim , two_rim = 0 ,0
418
+ each_org do | two |
419
+ start_rim = two.org_stop if start_rim <= two.org_stop and two.org_stop <= org
420
+ end
421
+ each do | one |
422
+ two_rim = one.stop if two_rim <= one.stop and one.stop <= pos
423
+ end
424
+ #puts "Left rim #{org} #{pos} is #{start_rim} #{two_rim}" if DEBUG
425
+ return start_rim , two_rim
426
+ end
427
+
428
+ # find the chunk right to these positions (original and edited) and return
429
+ # the maximum bound a new chunk can expand too in both coordinates.
430
+ def find_right_rim start , two , start_start , two_start
431
+ start_rim , two_rim = start_start , two_start
432
+ each_org do | tw |
433
+ start_rim = tw.from if start <= tw.from and tw.from <= start_rim
434
+ end
435
+ each do | one |
436
+ two_rim = one.start if two <= one.start and one.start <= two_rim
437
+ end
438
+ #puts "\Right rim #{start} #{two} is #{start_rim} #{two_rim}" if DEBUG
439
+ return start_rim , two_rim
440
+ end
441
+
442
+ # that part is done if the are (start-stop) is already included in the
443
+ # patches (first if) or the org part overlaps any of the patches org's
444
+ # the second case is then a copy
445
+ def done? two , org
446
+ #puts "checking done? \n #{two} \n #{org} "
447
+ each do |chunk|
448
+ return true if chunk.overlaps? two
449
+ end
450
+ each_org do |chunk|
451
+ return true if chunk.org_overlaps? org
452
+ end
453
+ #puts "NOT DONE? : \n #{self}"
454
+ false
455
+ end
456
+
457
+ # yields all chunks in the sequence in edited file order
458
+ def each
459
+ @chunks.each do |chunk|
460
+ yield chunk if chunk
461
+ end
462
+ end
463
+
464
+ # yields all chunks in original file order
465
+ def each_org
466
+ @org_chunks.each do |chunk|
467
+ yield chunk if chunk
468
+ end
469
+ end
470
+
471
+ # change all chunks in this sequence so that they don't have overlaps with
472
+ # any of the chunks in the given sequence. done both ways results in
473
+ # non-overlapping sequences
474
+ def no_overlap sequence
475
+ each_org do |one|
476
+ sequence.each_org do |two|
477
+ break_at( one , two.from ) if one.org_includes?( two.from )
478
+ break_at( one , two.org_stop ) if one.org_includes?( two.org_stop )
479
+ end
480
+ end
481
+ end
482
+
483
+ # split in two at pos (thus assuming pos is included) and link the
484
+ def break_at( chunk , pos )
485
+ return if pos == chunk.from or pos == chunk.org_stop
486
+ old_s = chunk.to_s
487
+ new_chunk = chunk.split_at_org!(pos)
488
+ if not new_chunk.kind_of? Deleted
489
+ new_chunk.added = chunk.added
490
+ chunk.added = nil
491
+ end
492
+ #puts "SPLIT #{pos}\nBEFORE #{old_s}\nOLD:#{chunk} \nNEW:#{new_chunk} \n" if DEBUG
493
+ idx = @chunks.index(chunk)
494
+ @chunks[idx+1,0] = new_chunk
495
+ idx = @org_chunks.index(chunk)
496
+ @org_chunks[idx+1,0] = new_chunk
497
+ end
498
+
499
+ end
500
+
501
+ # this is a little holder class (struct?) that represents a piece of text in
502
+ # a file.
503
+
504
+ class Chunk
505
+ # the byte index into the file where the string is in (the edited file)
506
+ attr_reader :start
507
+ #length of the string (somewhat redundant with the string below)
508
+ attr_reader :length
509
+ # the actual string. This is just here for convinience, it's in the file
510
+ attr_reader :str
511
+ # the index into the original file where the string starts, -1 for adds
512
+ attr_reader :from
513
+ attr :added , true # a chunk that was added (if there is such a one)
514
+ attr :whitespace , true # the table for whitespace
515
+
516
+ # cut the chunk to max 71 characters for readable output
517
+ def Chunk::short_string( s )
518
+ if s.length < 71
519
+ return "--" + s.to_s + "--"
520
+ else
521
+ return "--" + s[0,20] + "...Cut #{s.length-40} chars..." + s[s.length - 20 , 20] + "--"
522
+ end
523
+ end
524
+
525
+ def initialize( start , length , string , from = -1)
526
+ raise "Error nil string passed start=#{start} length=#{length} str=-#{str}=" if string.nil?
527
+ @start , @length , @str , @from = start , length , string , from
528
+ @whitespace = []
529
+ end
530
+
531
+ # outputs all attributes and a readable version of the string
532
+ # also whitespace if present
533
+ def to_s #for debug output
534
+ st = "start=#{start} len=#{length} stop=#{stop} from=#{from} org_stop=#{org_stop} "
535
+ st += Chunk::short_string(real_string)
536
+ st += " \n added=#{added} " unless added.nil?
537
+ st += " \n whitespace=#{@whitespace.length} " unless @whitespace.empty?
538
+ ws_count = 0
539
+ @whitespace.each do | start , s |
540
+ st += "-" + start.to_s + " " + s.length.to_s + " "
541
+ st += "n " if s.include?( "\n" )
542
+ ws_count += 1
543
+ break if ws_count > 5
544
+ end
545
+ st
546
+ end
547
+
548
+ # put the first character at the end
549
+ def rotate
550
+ @str = @str[1..-1] + @str[0,1]
551
+ @start += 1
552
+ end
553
+
554
+ # puts the char at the end of the string, adjusting the length
555
+ # add the whitespace if it's not nil
556
+ def push( arg )
557
+ char , space = arg
558
+ @str << char
559
+ @length += 1
560
+ @whitespace << space unless space.nil?
561
+ end
562
+
563
+ # return the first char, and remove it from the string, adjusting length + start
564
+ # also return any whitespace entry, if there is such a thing
565
+ def pop
566
+ white = nil
567
+ if (not @whitespace.empty?) and (@whitespace.first[0] == @start )
568
+ white = @whitespace.delete_at(0)
569
+ puts "White --#{white}--#{@start}"
570
+ end
571
+ char = @str[0]
572
+ @str = @str[1..-1]
573
+ @length -= 1
574
+ @start += 1
575
+ @from += 1 if @from != -1
576
+ return [ char , white ]
577
+ end
578
+
579
+ # squeeze the whitespace, ie for all sequences of whitespace(space,tab,newline),
580
+ # and all non space whitespaces, replace it with a single whitespace and record
581
+ # the change in the array
582
+ def squeeze
583
+ old = @str.dup
584
+ @whitespace = []
585
+ at = 0
586
+ while ( index = @str.index(/\s+/ , at ) )
587
+ at = index + $&.length
588
+ if $& != ' ' # do nothing for single spaces
589
+ @whitespace.push [ index , $& ]
590
+ @str[index , $&.length] = ' '
591
+ end
592
+ end
593
+ @length = @str.length
594
+ throw old if DEBUG and old != real_string
595
+ end
596
+
597
+ # unsqueeze whitespace if present
598
+ def real_string
599
+ return @str if @whitespace.empty?
600
+ stri = @str.dup
601
+ #puts "--" + str + "--" + @str.length.to_s
602
+ begin
603
+ @whitespace.reverse.each do | index , st |
604
+ stri[index - @start ,1] = st
605
+ end
606
+ rescue
607
+ st = "start=#{start} len=#{length} stop=#{stop} from=#{from} org_stop=#{org_stop} " + @str
608
+ st += " \n whitespace=#{@whitespace.length} "
609
+ @whitespace.each do | start , s |
610
+ st += "-" + start.to_s + " " + s.length.to_s + " "
611
+ st += "n " if s.include?( "\n" )
612
+ end
613
+ puts st
614
+ raise
615
+ end
616
+ stri
617
+ end
618
+
619
+ # get a substring from the chunk and carry whitespace table accross
620
+ # start is in the files coordinates (not the strings of the chunk)
621
+ def subchunk( startt , len , fromm )
622
+ stri = @str[ startt - @start , len ]
623
+ table = []
624
+ @whitespace.each do | arr |
625
+ table << arr if arr[0] >= startt and arr[0] < ( startt + len )
626
+ end
627
+ chunk = Chunk.new( startt , len , stri , fromm )
628
+ chunk.whitespace = table
629
+ #puts "SUB at #{startt} #{len} #{chunk}" if fromm == 62
630
+ chunk
631
+ end
632
+
633
+ # index of where the string ends.
634
+ # this should be called end, but that's a keyword.
635
+ def stop
636
+ @start + @length
637
+ end
638
+
639
+ # index of where the string ends in the original file (nonsense for adds)
640
+ def org_stop
641
+ @from + @length
642
+ end
643
+
644
+ def add? # adds are not copied, hence have no from attribute.
645
+ @from == -1 # a copy carries a positive number as offset into the original
646
+ end
647
+
648
+ # is the point (char index) in the original copied string
649
+ def org_includes? point
650
+ ( @from != -1 ) and ( @from <= point ) and ( point < org_stop )
651
+ end
652
+
653
+ def includes_copy? copy # is the copy chunk fully inside this
654
+ (copy.start >= @start) and (copy.stop <= stop)
655
+ end
656
+
657
+ # return a substring in the original files coordinates
658
+ def rstring( fro , to )
659
+ to = org_stop if to == -1
660
+ throw "error #{fro} #{to} #{self}" if fro < @from or to > org_stop
661
+ @length -= to - fro
662
+ @str[ fro - @from , to - @from ]
663
+ end
664
+
665
+ # does some part of two overlap. always takes me 5 minutes to get
666
+ def overlaps? two # but a drawing helps
667
+ start > two.start ? start < two.stop : stop > two.start
668
+ end
669
+
670
+ #does any part of the original overlap (from - org_stop )
671
+ def org_overlaps? two
672
+ from > two.from ? from < two.org_stop : org_stop > two.from
673
+ end
674
+
675
+ # this joins two chunks, which are presumed to be adds (so no fiddling with from)
676
+ # self is changed and the argument untouched (to be deleted)
677
+ def join_adds add
678
+ @str += add.str
679
+ @length = @str.length
680
+ end
681
+
682
+ #split the chunk into two at the given position,
683
+ # change this and return the right one
684
+ def split_at_org! pos
685
+ #puts "SPLIT #{pos} #{self}"
686
+ throw "position not in chunk #{pos} : #{self}" unless org_includes?( pos )
687
+ left_length = pos - @from
688
+ right_length = org_stop - pos
689
+ right = Chunk.new( @start + left_length , right_length , @str[left_length, right_length] , pos )
690
+ right.whitespace = @whitespace.dup.delete_if do | index , s |
691
+ index < right.start
692
+ end
693
+ #puts " split #{right} "
694
+ throw "Right split error #{self} , #{right} :#{pos}" if right.length != right_length
695
+ @str = @str[0, left_length]
696
+ raise "Error nil string =#{start} length=#{length} str=-#{@str}=" if @str.nil?
697
+ @length = @str.length
698
+ @whitespace.delete_if do | index , s |
699
+ index >= right.start
700
+ end
701
+ #puts " white #{@whitespace} "
702
+ #puts " left #{self} "
703
+ throw "Left split error #{self} , #{right} :#{pos} :#{left_length}" if @length != left_length
704
+ return right
705
+ end
706
+
707
+ end
708
+
709
+ # a seperate class for deleted chunks (for destinction)
710
+ class Deleted < Chunk
711
+
712
+ def initialize start , from , string
713
+ @start = start
714
+ @length = string.length
715
+ @str = string
716
+ @from = from
717
+ @whitespace = []
718
+ raise "Error nil string =#{start} length=#{length} str=-#{@str}=" if string.nil?
719
+ end
720
+
721
+ def stop # no length in the modified file
722
+ @start
723
+ end
724
+
725
+ def split_at_org! pos
726
+ raise "position not in chunk #{pos} : #{self}" unless org_includes?( pos )
727
+ left_length = pos - @from
728
+ right_length = org_stop - pos
729
+ right = Deleted.new( @start + left_length , pos , @str[left_length, @length] )
730
+ raise "Back to the right drawingboard #{self} , #{right} :#{pos}" if right.length != right_length
731
+ @str = @str[0, left_length]
732
+ @length = @str.length
733
+ raise "Back to the left drawingboard #{self} , #{right} :#{pos} :#{left_length}" if @length != left_length
734
+ raise "Error nil string =#{start} length=#{length} str=-#{@str}=" if @str.nil?
735
+ return right
736
+ end
737
+
738
+ def to_s
739
+ super.to_s + " deleted"
740
+ end
741
+
742
+ end
743
+
744
+ def main()
745
+
746
+ ignore_whitespace = false
747
+
748
+ args = ARGV.dup
749
+
750
+ if args[0] == "-w"
751
+ ignore_whitespace = true
752
+ args.shift
753
+ end
754
+ start = File.new( args.shift ).read
755
+ one = File.new( args.shift ).read
756
+ two = File.new( args.shift ).read
757
+
758
+ result = Merge3::three_way( start , one , two , ignore_whitespace )
759
+
760
+ puts result
761
+
762
+ end
763
+
764
+ main() if $0 == __FILE__
765
+