facets 2.9.2 → 2.9.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1109) hide show
  1. data/.ruby +9 -12
  2. data/.yardopts +10 -0
  3. data/HISTORY.rdoc +586 -898
  4. data/NOTICE.rdoc +30 -30
  5. data/README.rdoc +50 -60
  6. data/lib/core/facets.rb +1 -59
  7. data/lib/core/facets/array.rb +63 -89
  8. data/lib/core/facets/array/each_pair.rb +14 -0
  9. data/lib/core/facets/array/each_value.rb +6 -0
  10. data/lib/core/facets/array/median.rb +32 -0
  11. data/lib/core/facets/array/mode.rb +1 -1
  12. data/lib/core/facets/array/nonuniq.rb +41 -4
  13. data/{src/core/facets/array/duplicates.rb → lib/core/facets/array/occurent.rb} +0 -0
  14. data/{src/core-uncommon → lib/core}/facets/array/op_pow.rb +6 -1
  15. data/lib/core/facets/binding.rb +14 -36
  16. data/lib/core/facets/binding/local_variables.rb +1 -0
  17. data/lib/core/facets/binding/op.rb +3 -23
  18. data/{src/core/facets/binding/op.rb → lib/core/facets/binding/op_get.rb} +3 -0
  19. data/lib/core/facets/binding/op_set.rb +1 -0
  20. data/lib/core/facets/binding/self.rb +8 -3
  21. data/lib/core/facets/binding/with.rb +12 -0
  22. data/lib/core/facets/class.rb +9 -14
  23. data/lib/core/facets/class/descendants.rb +2 -1
  24. data/lib/core/facets/class/hierarchically.rb +12 -0
  25. data/lib/{core-uncommon → core}/facets/class/preallocate.rb +5 -2
  26. data/lib/core/facets/class/singleton.rb +13 -0
  27. data/lib/core/facets/comparable.rb +8 -18
  28. data/lib/core/facets/denumerable.rb +3 -2
  29. data/lib/core/facets/dir.rb +7 -16
  30. data/lib/core/facets/enumerable.rb +37 -74
  31. data/lib/core/facets/enumerable/accumulate.rb +8 -4
  32. data/lib/core/facets/enumerable/defer.rb +0 -27
  33. data/lib/core/facets/enumerable/hashify.rb +31 -0
  34. data/lib/core/facets/enumerable/incase.rb +19 -0
  35. data/lib/core/facets/enumerable/map_with.rb +3 -0
  36. data/lib/core/facets/enumerable/modulate.rb +1 -1
  37. data/lib/core/facets/enumerable/sum.rb +4 -2
  38. data/lib/core/facets/exception.rb +4 -11
  39. data/lib/core/facets/exception/detail.rb +3 -9
  40. data/lib/core/facets/exception/error_print.rb +80 -0
  41. data/lib/core/facets/file.rb +15 -30
  42. data/lib/core/facets/file/atomic_id.rb +9 -0
  43. data/lib/core/facets/file/atomic_open.rb +26 -0
  44. data/lib/{supplemental/facets/atomicfile.rb → core/facets/file/atomic_write.rb} +15 -8
  45. data/lib/core/facets/filetest.rb +7 -16
  46. data/lib/core/facets/fixnum.rb +7 -0
  47. data/lib/core/facets/float.rb +2 -6
  48. data/lib/core/facets/functor.rb +16 -0
  49. data/lib/core/facets/hash.rb +54 -108
  50. data/lib/core/facets/hash/collate.rb +3 -30
  51. data/lib/core/facets/hash/op_sub.rb +1 -0
  52. data/lib/core/facets/hash/rekey.rb +18 -8
  53. data/lib/core/facets/hash/slice.rb +3 -2
  54. data/lib/core/facets/hash/update_keys.rb +2 -1
  55. data/lib/core/facets/hash/url_params.rb +21 -0
  56. data/lib/core/facets/indexable.rb +0 -2
  57. data/lib/core/facets/integer.rb +10 -20
  58. data/lib/core/facets/integer/roman.rb +1 -0
  59. data/lib/core/facets/kernel.rb +77 -140
  60. data/lib/core/facets/kernel/assign.rb +11 -13
  61. data/lib/{core-uncommon → core}/facets/kernel/demo.rb +8 -5
  62. data/lib/core/facets/kernel/eigen.rb +33 -0
  63. data/{src/core-uncommon → lib/core}/facets/kernel/eigenclass.rb +5 -2
  64. data/lib/core/facets/kernel/extend.rb +4 -1
  65. data/lib/core/facets/kernel/extension.rb +2 -2
  66. data/lib/core/facets/kernel/hierarchical_send.rb +44 -0
  67. data/lib/{core-uncommon → core}/facets/kernel/instance_exec.rb +4 -1
  68. data/lib/{core-uncommon → core}/facets/kernel/memo.rb +5 -2
  69. data/lib/core/facets/kernel/object_hexid.rb +23 -21
  70. data/lib/core/facets/kernel/singleton_class.rb +3 -2
  71. data/{src/core-uncommon → lib/core}/facets/kernel/trap_chain.rb +6 -1
  72. data/lib/{core-uncommon → core}/facets/kernel/y.rb +5 -2
  73. data/lib/core/facets/lazy.rb +6 -7
  74. data/lib/core/facets/matchdata.rb +3 -8
  75. data/lib/{supplemental → core}/facets/metaid.rb +0 -0
  76. data/lib/core/facets/method.rb +5 -6
  77. data/lib/core/facets/method/composition.rb +80 -0
  78. data/lib/{core-uncommon → core}/facets/method/memoize.rb +5 -1
  79. data/lib/core/facets/method/op_mul.rb +1 -0
  80. data/lib/core/facets/method/op_pow.rb +1 -0
  81. data/lib/core/facets/module.rb +60 -86
  82. data/{src/core-uncommon → lib/core}/facets/module/attr_class_accessor.rb +15 -3
  83. data/{src/core-uncommon → lib/core}/facets/module/attr_tester.rb +12 -5
  84. data/lib/{core-uncommon → core}/facets/module/attr_validator.rb +11 -5
  85. data/lib/core/facets/module/class.rb +1 -1
  86. data/lib/{core-uncommon → core}/facets/module/class_accessor.rb +16 -3
  87. data/lib/{core-uncommon → core}/facets/module/class_extend.rb +9 -2
  88. data/{src/core-uncommon → lib/core}/facets/module/class_inheritor.rb +5 -2
  89. data/lib/{core-uncommon → core}/facets/module/copy_inheritor.rb +5 -2
  90. data/{src/core-uncommon → lib/core}/facets/module/enclosure.rb +16 -4
  91. data/lib/{core-uncommon → core}/facets/module/enclosures.rb +0 -0
  92. data/lib/{core-uncommon → core}/facets/module/include_as.rb +0 -0
  93. data/{src/core-uncommon → lib/core}/facets/module/instance_function.rb +5 -1
  94. data/lib/{core-uncommon → core}/facets/module/let.rb +4 -0
  95. data/{src/core-uncommon/facets/module/cattr.rb → lib/core/facets/module/mattr.rb} +40 -8
  96. data/{src/core-uncommon → lib/core}/facets/module/memoize.rb +4 -0
  97. data/lib/{core-uncommon → core}/facets/module/method_clash.rb +11 -4
  98. data/lib/{core-uncommon → core}/facets/module/method_space.rb +10 -2
  99. data/{src/core-uncommon → lib/core}/facets/module/module_load.rb +10 -5
  100. data/lib/{core-uncommon → core}/facets/module/preextend.rb +4 -1
  101. data/lib/core/facets/nilclass.rb +3 -8
  102. data/lib/core/facets/numeric.rb +10 -18
  103. data/lib/core/facets/numeric/approx.rb +29 -6
  104. data/lib/core/facets/numeric/close.rb +1 -0
  105. data/lib/core/facets/numeric/negative.rb +1 -0
  106. data/lib/core/facets/numeric/positive.rb +15 -0
  107. data/lib/core/facets/object.rb +6 -14
  108. data/lib/core/facets/objectspace.rb +4 -10
  109. data/lib/core/facets/proc.rb +8 -18
  110. data/lib/core/facets/process.rb +2 -6
  111. data/lib/core/facets/range.rb +7 -14
  112. data/lib/core/facets/range/quantile.rb +18 -0
  113. data/lib/core/facets/regexp.rb +6 -14
  114. data/lib/core/facets/regexp/op_or.rb +5 -8
  115. data/lib/{core-uncommon/facets/integer → core/facets}/roman.rb +15 -3
  116. data/lib/core/facets/string.rb +69 -134
  117. data/{src/core-uncommon → lib/core}/facets/string/acronym.rb +4 -1
  118. data/lib/core/facets/string/briefcase.rb +1 -0
  119. data/lib/core/facets/string/camelcase.rb +60 -49
  120. data/{src/core-uncommon → lib/core}/facets/string/crypt.rb +5 -2
  121. data/lib/core/facets/string/methodize.rb +10 -11
  122. data/lib/core/facets/string/modulize.rb +12 -12
  123. data/lib/core/facets/string/natcmp.rb +3 -1
  124. data/lib/core/facets/string/pathize.rb +8 -4
  125. data/lib/core/facets/string/roman.rb +1 -0
  126. data/lib/core/facets/string/snakecase.rb +19 -9
  127. data/lib/core/facets/string/titlecase.rb +14 -2
  128. data/lib/core/facets/string/underscore.rb +1 -22
  129. data/lib/core/facets/struct.rb +2 -6
  130. data/lib/core/facets/symbol.rb +14 -30
  131. data/lib/core/facets/symbol/plain.rb +8 -0
  132. data/{src/core/facets/symbol/bang.rb → lib/core/facets/symbol/reader.rb} +0 -0
  133. data/{src/core/facets/symbol/query.rb → lib/core/facets/symbol/writer.rb} +0 -0
  134. data/lib/core/facets/time.rb +16 -34
  135. data/lib/core/facets/time/shift.rb +2 -0
  136. data/lib/core/facets/time/stamp.rb +14 -12
  137. data/lib/core/facets/unboundmethod.rb +3 -8
  138. data/lib/core/facets/version.rb +19 -0
  139. data/lib/{supplemental → standard}/facets/argvector.rb +0 -0
  140. data/lib/standard/facets/cloneable.rb +64 -0
  141. data/lib/{supplemental → standard}/facets/enumargs.rb +0 -0
  142. data/lib/standard/facets/equitable.rb +76 -0
  143. data/lib/standard/facets/fileutils/amass.rb +9 -8
  144. data/lib/standard/facets/instantiable.rb +25 -0
  145. data/lib/{supplemental → standard}/facets/interval.rb +60 -67
  146. data/lib/standard/facets/math.rb +57 -5
  147. data/lib/standard/facets/math/lgamma.rb +3 -1
  148. data/lib/standard/facets/math/linsolve.rb +2 -0
  149. data/lib/standard/facets/math/median.rb +15 -0
  150. data/lib/standard/facets/math/percentile.rb +40 -0
  151. data/lib/standard/facets/math/round.rb +9 -0
  152. data/lib/standard/facets/math/sqsolve.rb +7 -5
  153. data/lib/standard/facets/math/tgamma.rb +10 -0
  154. data/lib/{supplemental → standard}/facets/memoizable.rb +0 -0
  155. data/lib/{supplemental → standard}/facets/multipliers.rb +0 -0
  156. data/lib/{supplemental → standard}/facets/multiton.rb +0 -0
  157. data/lib/{supplemental → standard}/facets/nullclass.rb +0 -0
  158. data/lib/{supplemental → standard}/facets/opesc.rb +0 -0
  159. data/lib/standard/facets/pathname.rb +14 -1
  160. data/lib/{supplemental → standard}/facets/platform.rb +0 -0
  161. data/lib/standard/facets/set.rb +5 -1
  162. data/{src/supplemental → lib/standard}/facets/timer.rb +3 -2
  163. data/lib/{supplemental → standard}/facets/tuple.rb +0 -0
  164. data/qed/applique/file_helpers.rb +1 -1
  165. data/qed/core/dir/multiglob.rdoc +10 -10
  166. data/qed/core/dir/recurse.rdoc +13 -13
  167. data/qed/{core-uncommon → core}/module/cattr.rdoc +0 -0
  168. data/qed/{core-uncommon → core}/module/class_extend.rdoc +0 -0
  169. data/qed/{core-uncommon → core}/module/class_inheritor.rdoc +0 -0
  170. data/qed/{core-uncommon → core}/module/copy_inheritor.rdoc +0 -0
  171. data/qed/{core-uncommon → core}/module/method_space.rdoc +0 -0
  172. data/qed/core/string/camelcase.rdoc +19 -39
  173. data/qed/core/string/snakecase.rdoc +4 -3
  174. data/qed/standard/02_cloneable.rdoc +46 -0
  175. data/qed/standard/03_enumargs.rdoc +75 -0
  176. data/qed/standard/04_equitable.rdoc +35 -0
  177. data/qed/standard/05_instantiable.rdoc +42 -0
  178. data/qed/{supplemental → standard}/memoizable.rdoc +0 -0
  179. data/qed/{supplemental → standard}/mulititon.rdoc +0 -0
  180. data/test/core/array/test_duplicates.rb +15 -1
  181. data/test/core/array/test_median.rb +27 -0
  182. data/test/core/array/test_nonuniq.rb +2 -2
  183. data/test/core/array/test_occurent.rb +33 -0
  184. data/test/{core-uncommon → core}/class/test_preallocate.rb +0 -0
  185. data/test/core/denumerable_tc.rb +7 -8
  186. data/test/core/dir/test_each_child.rb +1 -1
  187. data/test/core/dir/test_multiglob.rb +1 -1
  188. data/test/core/enumerable/test_sum.rb +22 -0
  189. data/test/core/hash/test_url_params.rb +26 -0
  190. data/test/core/kernel/test_constant.rb +3 -3
  191. data/test/core/kernel/test_hierarchical_send.rb +48 -0
  192. data/test/core/kernel/test_object_hexid.rb +8 -4
  193. data/test/core/kernel/test_super_method.rb +1 -1
  194. data/test/{core-uncommon → core}/module/test_class_extend.rb +0 -0
  195. data/test/{core-uncommon → core}/module/test_class_inheritor.rb +0 -0
  196. data/test/{core-uncommon → core}/module/test_copy_inheritor.rb +0 -0
  197. data/test/{core-uncommon → core}/module/test_enclosure.rb +0 -0
  198. data/test/{core-uncommon → core}/module/test_instance_function.rb +0 -0
  199. data/test/{core-uncommon → core}/module/test_memoize.rb +0 -0
  200. data/test/{core-uncommon → core}/module/test_method_clash.rb +0 -0
  201. data/test/{core-uncommon → core}/module/test_method_space.rb +0 -0
  202. data/test/{core-uncommon → core}/module/test_module_load.rb +0 -0
  203. data/test/{core-uncommon → core}/module/test_preextend.rb +0 -0
  204. data/test/core/numeric/test_approx.rb +10 -1
  205. data/test/core/string/test_camelcase.rb +21 -38
  206. data/test/core/string/test_index_all.rb +5 -1
  207. data/test/core/string/test_pathize.rb +4 -0
  208. data/test/core/string/test_snakecase.rb +9 -4
  209. data/test/core/string/test_underscore.rb +2 -2
  210. data/test/core/time/test_dst_adjustment.rb +9 -1
  211. data/test/core/time/test_less.rb +1 -1
  212. data/test/core/time/test_shift.rb +6 -6
  213. data/test/core/time/test_stamp.rb +7 -3
  214. data/test/standard/math/test_abs.rb +13 -0
  215. data/test/standard/math/test_median.rb +17 -0
  216. data/test/standard/math/test_percentile.rb +13 -0
  217. data/test/standard/math/test_sign.rb +14 -0
  218. data/test/{supplemental → standard}/test_argvector.rb +0 -0
  219. data/test/standard/test_cloneable.rb +60 -0
  220. data/test/{supplemental → standard}/test_enumargs.rb +0 -0
  221. data/test/standard/test_equitable.rb +46 -0
  222. data/test/standard/test_instantiable.rb +40 -0
  223. data/test/{supplemental → standard}/test_memoizable.rb +0 -0
  224. data/test/{supplemental → standard}/test_multipliers.rb +0 -0
  225. data/test/standard/test_timer.rb +24 -12
  226. data/test/{supplemental → standard}/test_tuple.rb +0 -0
  227. metadata +209 -1070
  228. data/.gitignore +0 -11
  229. data/.locat +0 -24
  230. data/.reap/ignore +0 -1
  231. data/.reap/yard.reap +0 -42
  232. data/.test +0 -31
  233. data/.yard/core.yardopts +0 -7
  234. data/.yard/standard.yardopts +0 -7
  235. data/.yard/supplemental.yardopts +0 -7
  236. data/.yard/uncommon.yardopts +0 -7
  237. data/AUTHORS.rdoc +0 -100
  238. data/Assembly +0 -38
  239. data/GPL3.txt +0 -282
  240. data/MANIFEST +0 -1107
  241. data/Profile +0 -41
  242. data/Rakefile +0 -403
  243. data/VERSION +0 -1
  244. data/facets.gemspec +0 -152
  245. data/lib/core-uncommon/facets/array/median.rb +0 -17
  246. data/lib/core-uncommon/facets/array/op_pow.rb +0 -9
  247. data/lib/core-uncommon/facets/array/percentile.rb +0 -32
  248. data/lib/core-uncommon/facets/class/singleton.rb +0 -8
  249. data/lib/core-uncommon/facets/enumerable/has.rb +0 -22
  250. data/lib/core-uncommon/facets/enumerable/have.rb +0 -1
  251. data/lib/core-uncommon/facets/kernel/eigenclass.rb +0 -21
  252. data/lib/core-uncommon/facets/kernel/trap_chain.rb +0 -23
  253. data/lib/core-uncommon/facets/module/attr_class_accessor.rb +0 -39
  254. data/lib/core-uncommon/facets/module/attr_inheritor.rb +0 -15
  255. data/lib/core-uncommon/facets/module/attr_tester.rb +0 -49
  256. data/lib/core-uncommon/facets/module/cattr.rb +0 -264
  257. data/lib/core-uncommon/facets/module/class_inheritor.rb +0 -77
  258. data/lib/core-uncommon/facets/module/enclosure.rb +0 -82
  259. data/lib/core-uncommon/facets/module/instance_function.rb +0 -90
  260. data/lib/core-uncommon/facets/module/memoize.rb +0 -12
  261. data/lib/core-uncommon/facets/module/module_load.rb +0 -78
  262. data/lib/core-uncommon/facets/module/prepend.rb +0 -61
  263. data/lib/core-uncommon/facets/regexp/op_or.rb +0 -13
  264. data/lib/core-uncommon/facets/string/acronym.rb +0 -8
  265. data/lib/core-uncommon/facets/string/crypt.rb +0 -19
  266. data/lib/core-uncommon/facets/string/roman.rb +0 -1
  267. data/lib/supplemental/facets/main.rb +0 -62
  268. data/lib/supplemental/facets/reference.rb +0 -83
  269. data/lib/supplemental/facets/timer.rb +0 -207
  270. data/rdoc.assembly +0 -50
  271. data/site/.brite +0 -2
  272. data/site/assets/hover.js +0 -14
  273. data/site/assets/rdocs.js +0 -28
  274. data/site/assets/site.css +0 -324
  275. data/site/assets/syntax.css +0 -60
  276. data/site/atom.page +0 -25
  277. data/site/atom.xml +0 -20
  278. data/site/brite.yml +0 -3
  279. data/site/default.layout +0 -114
  280. data/site/index.html +0 -110
  281. data/site/index.page +0 -94
  282. data/site/learn.html +0 -110
  283. data/site/learn.page +0 -78
  284. data/site/media/APIdocs.png +0 -0
  285. data/site/media/RubyFacets.png +0 -0
  286. data/site/media/RubyFacetsShadow.png +0 -0
  287. data/site/media/RubyFacetsShadow2.png +0 -0
  288. data/site/media/RubyFacetsShadowFade.png +0 -0
  289. data/site/media/SPYlights.png +0 -0
  290. data/site/media/WeHeartFacets.png +0 -0
  291. data/site/media/abc.png +0 -0
  292. data/site/media/abc1.png +0 -0
  293. data/site/media/adverts/21-5G3Eta1L._AA_SL160_.jpg +0 -0
  294. data/site/media/adverts/21B53PF6W5L._AA_SL160_.jpg +0 -0
  295. data/site/media/adverts/21OsAAT9MaL._AA_SL160_.jpg +0 -0
  296. data/site/media/adverts/21PYg8IoswL._AA_SL160_.jpg +0 -0
  297. data/site/media/adverts/21WvvRAsbhL._AA_SL160_.jpg +0 -0
  298. data/site/media/adverts/amazon.html +0 -30
  299. data/site/media/adverts/rdoc.html +0 -15
  300. data/site/media/appleslice.jpg +0 -0
  301. data/site/media/clear.gif +0 -0
  302. data/site/media/core.jpg +0 -0
  303. data/site/media/fade_black_down.png +0 -0
  304. data/site/media/fade_blue_down.gif +0 -0
  305. data/site/media/fade_blue_up.gif +0 -0
  306. data/site/media/fade_red_down.png +0 -0
  307. data/site/media/fade_red_up (copy).png +0 -0
  308. data/site/media/fade_red_up.png +0 -0
  309. data/site/media/fade_yellow_down.jpg +0 -0
  310. data/site/media/fade_yellow_right.jpg +0 -0
  311. data/site/media/fade_yellow_up.jpg +0 -0
  312. data/site/media/favicon.ico +0 -0
  313. data/site/media/forkme.png +0 -0
  314. data/site/media/gray.jpg +0 -0
  315. data/site/media/heart.gif +0 -0
  316. data/site/media/itcamefrom.png +0 -0
  317. data/site/media/license.jpg +0 -0
  318. data/site/media/lightbulb.jpg +0 -0
  319. data/site/media/menu_bkg.png +0 -0
  320. data/site/media/mini.png +0 -0
  321. data/site/media/nitro.png +0 -0
  322. data/site/media/patch125.jpg +0 -0
  323. data/site/media/people.jpg +0 -0
  324. data/site/media/reap.png +0 -0
  325. data/site/media/ruby-lg.png +0 -0
  326. data/site/media/ruby.gif +0 -0
  327. data/site/media/temp.png +0 -0
  328. data/site/media/treetop.jpg +0 -0
  329. data/site/news.html +0 -110
  330. data/site/news.page +0 -22
  331. data/site/post.layout +0 -23
  332. data/site/posts/2008-01-01-how-facets-was-born.html +0 -110
  333. data/site/posts/2008-01-01-how-facets-was-born.post +0 -26
  334. data/site/posts/2008-03-24-release-2-4.html +0 -110
  335. data/site/posts/2008-03-24-release-2-4.post +0 -61
  336. data/site/posts/2009-07-21-new-website.html +0 -110
  337. data/site/posts/2009-07-21-new-website.post +0 -17
  338. data/site/posts/2009-08-22-release-2-7.html +0 -110
  339. data/site/posts/2009-08-22-release-2-7.post +0 -130
  340. data/site/posts/2009-11-09-release-2-8.html +0 -110
  341. data/site/posts/2009-11-09-release-2-8.post +0 -61
  342. data/site/posts/2010-09-01-release-2-9.html +0 -110
  343. data/site/posts/2010-09-01-release-2-9.post +0 -39
  344. data/site/source.html +0 -110
  345. data/site/source.page +0 -46
  346. data/src/core-uncommon/facets/array/median.rb +0 -17
  347. data/src/core-uncommon/facets/array/percentile.rb +0 -32
  348. data/src/core-uncommon/facets/class/preallocate.rb +0 -52
  349. data/src/core-uncommon/facets/class/singleton.rb +0 -8
  350. data/src/core-uncommon/facets/enumerable/has.rb +0 -22
  351. data/src/core-uncommon/facets/enumerable/have.rb +0 -1
  352. data/src/core-uncommon/facets/integer/roman.rb +0 -77
  353. data/src/core-uncommon/facets/kernel/demo.rb +0 -27
  354. data/src/core-uncommon/facets/kernel/instance_exec.rb +0 -44
  355. data/src/core-uncommon/facets/kernel/memo.rb +0 -41
  356. data/src/core-uncommon/facets/kernel/y.rb +0 -20
  357. data/src/core-uncommon/facets/method/memoize.rb +0 -13
  358. data/src/core-uncommon/facets/module/attr_inheritor.rb +0 -15
  359. data/src/core-uncommon/facets/module/attr_validator.rb +0 -40
  360. data/src/core-uncommon/facets/module/class_accessor.rb +0 -33
  361. data/src/core-uncommon/facets/module/class_extend.rb +0 -85
  362. data/src/core-uncommon/facets/module/copy_inheritor.rb +0 -42
  363. data/src/core-uncommon/facets/module/enclosures.rb +0 -1
  364. data/src/core-uncommon/facets/module/include_as.rb +0 -1
  365. data/src/core-uncommon/facets/module/let.rb +0 -27
  366. data/src/core-uncommon/facets/module/method_clash.rb +0 -59
  367. data/src/core-uncommon/facets/module/method_space.rb +0 -99
  368. data/src/core-uncommon/facets/module/preextend.rb +0 -29
  369. data/src/core-uncommon/facets/module/prepend.rb +0 -61
  370. data/src/core-uncommon/facets/regexp/op_or.rb +0 -13
  371. data/src/core-uncommon/facets/string/roman.rb +0 -1
  372. data/src/core/facets.rb +0 -70
  373. data/src/core/facets.yml +0 -57
  374. data/src/core/facets/applique/file_helpers.rb +0 -33
  375. data/src/core/facets/array.rb +0 -28
  376. data/src/core/facets/array/after.rb +0 -1
  377. data/src/core/facets/array/before.rb +0 -39
  378. data/src/core/facets/array/collapse.rb +0 -12
  379. data/src/core/facets/array/collisions.rb +0 -1
  380. data/src/core/facets/array/combination.rb +0 -43
  381. data/src/core/facets/array/commonality.rb +0 -37
  382. data/src/core/facets/array/conjoin.rb +0 -89
  383. data/src/core/facets/array/contains.rb +0 -7
  384. data/src/core/facets/array/delete.rb +0 -4
  385. data/src/core/facets/array/delete_unless.rb +0 -15
  386. data/src/core/facets/array/delete_values.rb +0 -50
  387. data/src/core/facets/array/divide.rb +0 -20
  388. data/src/core/facets/array/entropy.rb +0 -39
  389. data/src/core/facets/array/extract_options.rb +0 -31
  390. data/src/core/facets/array/from.rb +0 -33
  391. data/src/core/facets/array/index.rb +0 -23
  392. data/src/core/facets/array/indexable.rb +0 -31
  393. data/src/core/facets/array/merge.rb +0 -22
  394. data/src/core/facets/array/mode.rb +0 -22
  395. data/src/core/facets/array/nonuniq.rb +0 -37
  396. data/src/core/facets/array/not_empty.rb +0 -13
  397. data/src/core/facets/array/only.rb +0 -26
  398. data/src/core/facets/array/pad.rb +0 -41
  399. data/src/core/facets/array/peek.rb +0 -1
  400. data/src/core/facets/array/permutation.rb +0 -32
  401. data/src/core/facets/array/poke.rb +0 -1
  402. data/src/core/facets/array/probability.rb +0 -39
  403. data/src/core/facets/array/product.rb +0 -30
  404. data/src/core/facets/array/pull.rb +0 -30
  405. data/src/core/facets/array/recurse.rb +0 -29
  406. data/src/core/facets/array/recursively.rb +0 -47
  407. data/src/core/facets/array/rotate.rb +0 -48
  408. data/src/core/facets/array/select.rb +0 -20
  409. data/src/core/facets/array/splice.rb +0 -27
  410. data/src/core/facets/array/split.rb +0 -27
  411. data/src/core/facets/array/store.rb +0 -12
  412. data/src/core/facets/array/thru.rb +0 -1
  413. data/src/core/facets/array/traverse.rb +0 -44
  414. data/src/core/facets/array/uniq_by.rb +0 -16
  415. data/src/core/facets/binding.rb +0 -32
  416. data/src/core/facets/binding/__callee__.rb +0 -1
  417. data/src/core/facets/binding/__method__.rb +0 -1
  418. data/src/core/facets/binding/call_stack.rb +0 -1
  419. data/src/core/facets/binding/caller.rb +0 -44
  420. data/src/core/facets/binding/callstack.rb +0 -1
  421. data/src/core/facets/binding/defined.rb +0 -12
  422. data/src/core/facets/binding/eval.rb +0 -14
  423. data/src/core/facets/binding/local_variables.rb +0 -17
  424. data/src/core/facets/binding/self.rb +0 -12
  425. data/src/core/facets/boolean.rb +0 -121
  426. data/src/core/facets/class.rb +0 -20
  427. data/src/core/facets/class/descendants.rb +0 -35
  428. data/src/core/facets/class/methodize.rb +0 -19
  429. data/src/core/facets/class/pathize.rb +0 -19
  430. data/src/core/facets/class/subclasses.rb +0 -28
  431. data/src/core/facets/class/to_proc.rb +0 -25
  432. data/src/core/facets/comparable.rb +0 -20
  433. data/src/core/facets/comparable/at_least.rb +0 -1
  434. data/src/core/facets/comparable/at_most.rb +0 -1
  435. data/src/core/facets/comparable/bound.rb +0 -1
  436. data/src/core/facets/comparable/cap.rb +0 -34
  437. data/src/core/facets/comparable/clip.rb +0 -38
  438. data/src/core/facets/comparable/cmp.rb +0 -41
  439. data/src/core/facets/comparable/op_get.rb +0 -45
  440. data/src/core/facets/denumerable.rb +0 -76
  441. data/src/core/facets/dir.rb +0 -20
  442. data/src/core/facets/dir/ascend.rb +0 -56
  443. data/src/core/facets/dir/descend.rb +0 -1
  444. data/src/core/facets/dir/each_child.rb +0 -16
  445. data/src/core/facets/dir/multiglob.rb +0 -78
  446. data/src/core/facets/dir/parent.rb +0 -16
  447. data/src/core/facets/dir/recurse.rb +0 -35
  448. data/src/core/facets/enumerable.rb +0 -20
  449. data/src/core/facets/enumerable/accumulate.rb +0 -61
  450. data/src/core/facets/enumerable/cluster_by.rb +0 -18
  451. data/src/core/facets/enumerable/collect_with_index.rb +0 -2
  452. data/src/core/facets/enumerable/compact_map.rb +0 -36
  453. data/src/core/facets/enumerable/count.rb +0 -53
  454. data/src/core/facets/enumerable/defer.rb +0 -73
  455. data/src/core/facets/enumerable/each_by.rb +0 -33
  456. data/src/core/facets/enumerable/each_with_object.rb +0 -38
  457. data/src/core/facets/enumerable/every.rb +0 -40
  458. data/src/core/facets/enumerable/ewise.rb +0 -59
  459. data/src/core/facets/enumerable/exclude.rb +0 -16
  460. data/src/core/facets/enumerable/expand.rb +0 -15
  461. data/src/core/facets/enumerable/filter.rb +0 -33
  462. data/src/core/facets/enumerable/find_yield.rb +0 -42
  463. data/src/core/facets/enumerable/frequency.rb +0 -24
  464. data/src/core/facets/enumerable/graph.rb +0 -37
  465. data/src/core/facets/enumerable/group_by.rb +0 -33
  466. data/src/core/facets/enumerable/map_by.rb +0 -35
  467. data/src/core/facets/enumerable/map_detect.rb +0 -1
  468. data/src/core/facets/enumerable/map_send.rb +0 -26
  469. data/src/core/facets/enumerable/map_with.rb +0 -18
  470. data/src/core/facets/enumerable/map_with_index.rb +0 -23
  471. data/src/core/facets/enumerable/mash.rb +0 -1
  472. data/src/core/facets/enumerable/modulate.rb +0 -22
  473. data/src/core/facets/enumerable/none.rb +0 -32
  474. data/src/core/facets/enumerable/occur.rb +0 -38
  475. data/src/core/facets/enumerable/one.rb +0 -39
  476. data/src/core/facets/enumerable/per.rb +0 -85
  477. data/src/core/facets/enumerable/purge.rb +0 -43
  478. data/src/core/facets/enumerable/recursively.rb +0 -66
  479. data/src/core/facets/enumerable/sum.rb +0 -16
  480. data/src/core/facets/enumerable/take.rb +0 -16
  481. data/src/core/facets/enumerable/uniq_by.rb +0 -13
  482. data/src/core/facets/enumerable/visit.rb +0 -30
  483. data/src/core/facets/enumerable/zip_map.rb +0 -1
  484. data/src/core/facets/enumerator.rb +0 -75
  485. data/src/core/facets/enumerator/fx.rb +0 -36
  486. data/src/core/facets/exception.rb +0 -21
  487. data/src/core/facets/exception/detail.rb +0 -23
  488. data/src/core/facets/exception/raised.rb +0 -14
  489. data/src/core/facets/exception/suppress.rb +0 -22
  490. data/src/core/facets/file.rb +0 -20
  491. data/src/core/facets/file/append.rb +0 -14
  492. data/src/core/facets/file/create.rb +0 -21
  493. data/src/core/facets/file/ext.rb +0 -36
  494. data/src/core/facets/file/null.rb +0 -21
  495. data/src/core/facets/file/read_binary.rb +0 -18
  496. data/src/core/facets/file/read_list.rb +0 -34
  497. data/src/core/facets/file/rewrite.rb +0 -90
  498. data/src/core/facets/file/rootname.rb +0 -23
  499. data/src/core/facets/file/sanitize.rb +0 -18
  500. data/src/core/facets/file/split_all.rb +0 -19
  501. data/src/core/facets/file/split_root.rb +0 -13
  502. data/src/core/facets/file/write.rb +0 -24
  503. data/src/core/facets/file/writelines.rb +0 -27
  504. data/src/core/facets/filetest.rb +0 -20
  505. data/src/core/facets/filetest/absolute.rb +0 -1
  506. data/src/core/facets/filetest/contains.rb +0 -12
  507. data/src/core/facets/filetest/relative.rb +0 -38
  508. data/src/core/facets/filetest/root.rb +0 -17
  509. data/src/core/facets/filetest/safe.rb +0 -20
  510. data/src/core/facets/filetest/separator_pattern.rb +0 -19
  511. data/src/core/facets/float.rb +0 -20
  512. data/src/core/facets/float/round.rb +0 -2
  513. data/src/core/facets/functor.rb +0 -78
  514. data/src/core/facets/hash.rb +0 -20
  515. data/src/core/facets/hash/alias.rb +0 -31
  516. data/src/core/facets/hash/argumentize.rb +0 -28
  517. data/src/core/facets/hash/at.rb +0 -8
  518. data/src/core/facets/hash/autonew.rb +0 -24
  519. data/src/core/facets/hash/collate.rb +0 -62
  520. data/src/core/facets/hash/count.rb +0 -12
  521. data/src/core/facets/hash/data.rb +0 -41
  522. data/src/core/facets/hash/dearray_values.rb +0 -46
  523. data/src/core/facets/hash/deep_merge.rb +0 -33
  524. data/src/core/facets/hash/delete.rb +0 -4
  525. data/src/core/facets/hash/delete_at.rb +0 -7
  526. data/src/core/facets/hash/delete_unless.rb +0 -17
  527. data/src/core/facets/hash/delete_values.rb +0 -41
  528. data/src/core/facets/hash/diff.rb +0 -17
  529. data/src/core/facets/hash/except.rb +0 -25
  530. data/src/core/facets/hash/graph.rb +0 -18
  531. data/src/core/facets/hash/insert.rb +0 -19
  532. data/src/core/facets/hash/inverse.rb +0 -30
  533. data/src/core/facets/hash/join.rb +0 -17
  534. data/src/core/facets/hash/keys.rb +0 -45
  535. data/src/core/facets/hash/mash.rb +0 -1
  536. data/src/core/facets/hash/new_with.rb +0 -15
  537. data/src/core/facets/hash/op.rb +0 -7
  538. data/src/core/facets/hash/op_add.rb +0 -12
  539. data/src/core/facets/hash/op_and.rb +0 -33
  540. data/src/core/facets/hash/op_mul.rb +0 -18
  541. data/src/core/facets/hash/op_or.rb +0 -12
  542. data/src/core/facets/hash/op_push.rb +0 -17
  543. data/src/core/facets/hash/op_sub.rb +0 -26
  544. data/src/core/facets/hash/recurse.rb +0 -29
  545. data/src/core/facets/hash/recursively.rb +0 -61
  546. data/src/core/facets/hash/rekey.rb +0 -79
  547. data/src/core/facets/hash/replace_each.rb +0 -16
  548. data/src/core/facets/hash/reverse_merge.rb +0 -30
  549. data/src/core/facets/hash/select.rb +0 -17
  550. data/src/core/facets/hash/slice.rb +0 -37
  551. data/src/core/facets/hash/stringify_keys.rb +0 -1
  552. data/src/core/facets/hash/subset.rb +0 -24
  553. data/src/core/facets/hash/swap.rb +0 -17
  554. data/src/core/facets/hash/symbolize_keys.rb +0 -92
  555. data/src/core/facets/hash/to_h.rb +0 -1
  556. data/src/core/facets/hash/to_mod.rb +0 -33
  557. data/src/core/facets/hash/to_options.rb +0 -1
  558. data/src/core/facets/hash/to_proc.rb +0 -39
  559. data/src/core/facets/hash/to_struct.rb +0 -17
  560. data/src/core/facets/hash/traverse.rb +0 -47
  561. data/src/core/facets/hash/update.rb +0 -6
  562. data/src/core/facets/hash/update_each.rb +0 -18
  563. data/src/core/facets/hash/update_keys.rb +0 -20
  564. data/src/core/facets/hash/update_values.rb +0 -20
  565. data/src/core/facets/hash/weave.rb +0 -76
  566. data/src/core/facets/hash/zip.rb +0 -18
  567. data/src/core/facets/indexable.rb +0 -270
  568. data/src/core/facets/instance.rb +0 -157
  569. data/src/core/facets/integer.rb +0 -20
  570. data/src/core/facets/integer/bit.rb +0 -1
  571. data/src/core/facets/integer/bitmask.rb +0 -99
  572. data/src/core/facets/integer/even.rb +0 -1
  573. data/src/core/facets/integer/factorial.rb +0 -21
  574. data/src/core/facets/integer/multiple.rb +0 -19
  575. data/src/core/facets/integer/odd.rb +0 -37
  576. data/src/core/facets/integer/of.rb +0 -18
  577. data/src/core/facets/integer/ordinal.rb +0 -24
  578. data/src/core/facets/kernel.rb +0 -20
  579. data/src/core/facets/kernel/__callee__.rb +0 -1
  580. data/src/core/facets/kernel/__class__.rb +0 -9
  581. data/src/core/facets/kernel/__dir__.rb +0 -26
  582. data/src/core/facets/kernel/__get__.rb +0 -15
  583. data/src/core/facets/kernel/__method__.rb +0 -48
  584. data/src/core/facets/kernel/__set__.rb +0 -1
  585. data/src/core/facets/kernel/as.rb +0 -115
  586. data/src/core/facets/kernel/ask.rb +0 -28
  587. data/src/core/facets/kernel/assign.rb +0 -76
  588. data/src/core/facets/kernel/assign_from.rb +0 -1
  589. data/src/core/facets/kernel/attr_singleton.rb +0 -59
  590. data/src/core/facets/kernel/blank.rb +0 -84
  591. data/src/core/facets/kernel/call_stack.rb +0 -56
  592. data/src/core/facets/kernel/callstack.rb +0 -1
  593. data/src/core/facets/kernel/case.rb +0 -8
  594. data/src/core/facets/kernel/complete.rb +0 -26
  595. data/src/core/facets/kernel/constant.rb +0 -20
  596. data/src/core/facets/kernel/d.rb +0 -27
  597. data/src/core/facets/kernel/deep_clone.rb +0 -1
  598. data/src/core/facets/kernel/deep_copy.rb +0 -38
  599. data/src/core/facets/kernel/disable_warnings.rb +0 -26
  600. data/src/core/facets/kernel/enable_warnings.rb +0 -1
  601. data/src/core/facets/kernel/equate.rb +0 -16
  602. data/src/core/facets/kernel/ergo.rb +0 -43
  603. data/src/core/facets/kernel/extend.rb +0 -27
  604. data/src/core/facets/kernel/extension.rb +0 -12
  605. data/src/core/facets/kernel/false.rb +0 -2
  606. data/src/core/facets/kernel/here.rb +0 -11
  607. data/src/core/facets/kernel/identical.rb +0 -4
  608. data/src/core/facets/kernel/in.rb +0 -13
  609. data/src/core/facets/kernel/instance_assign.rb +0 -20
  610. data/src/core/facets/kernel/instance_class.rb +0 -26
  611. data/src/core/facets/kernel/instance_send.rb +0 -7
  612. data/src/core/facets/kernel/load_all.rb +0 -1
  613. data/src/core/facets/kernel/load_relative.rb +0 -1
  614. data/src/core/facets/kernel/maybe.rb +0 -19
  615. data/src/core/facets/kernel/meta_alias.rb +0 -23
  616. data/src/core/facets/kernel/meta_class.rb +0 -17
  617. data/src/core/facets/kernel/meta_def.rb +0 -20
  618. data/src/core/facets/kernel/meta_eval.rb +0 -20
  619. data/src/core/facets/kernel/method.rb +0 -50
  620. data/src/core/facets/kernel/no.rb +0 -1
  621. data/src/core/facets/kernel/not.rb +0 -37
  622. data/src/core/facets/kernel/not_nil.rb +0 -18
  623. data/src/core/facets/kernel/object_class.rb +0 -10
  624. data/src/core/facets/kernel/object_hexid.rb +0 -31
  625. data/src/core/facets/kernel/object_send.rb +0 -33
  626. data/src/core/facets/kernel/p.rb +0 -24
  627. data/src/core/facets/kernel/presence.rb +0 -1
  628. data/src/core/facets/kernel/present.rb +0 -1
  629. data/src/core/facets/kernel/qua_class.rb +0 -31
  630. data/src/core/facets/kernel/require_all.rb +0 -42
  631. data/src/core/facets/kernel/require_relative.rb +0 -52
  632. data/src/core/facets/kernel/respond.rb +0 -42
  633. data/src/core/facets/kernel/returning.rb +0 -27
  634. data/src/core/facets/kernel/silence.rb +0 -73
  635. data/src/core/facets/kernel/silence_warnings.rb +0 -1
  636. data/src/core/facets/kernel/singleton_class.rb +0 -9
  637. data/src/core/facets/kernel/source_location.rb +0 -13
  638. data/src/core/facets/kernel/super_method.rb +0 -11
  639. data/src/core/facets/kernel/tap.rb +0 -48
  640. data/src/core/facets/kernel/temporarily.rb +0 -23
  641. data/src/core/facets/kernel/true.rb +0 -26
  642. data/src/core/facets/kernel/try.rb +0 -58
  643. data/src/core/facets/kernel/val.rb +0 -19
  644. data/src/core/facets/kernel/with.rb +0 -20
  645. data/src/core/facets/kernel/writers.rb +0 -91
  646. data/src/core/facets/kernel/yes.rb +0 -25
  647. data/src/core/facets/lazy.rb +0 -238
  648. data/src/core/facets/matchdata.rb +0 -20
  649. data/src/core/facets/matchdata/match.rb +0 -15
  650. data/src/core/facets/matchdata/matchset.rb +0 -44
  651. data/src/core/facets/method.rb +0 -20
  652. data/src/core/facets/module.rb +0 -20
  653. data/src/core/facets/module/abstract.rb +0 -24
  654. data/src/core/facets/module/alias_accessor.rb +0 -45
  655. data/src/core/facets/module/alias_method_chain.rb +0 -67
  656. data/src/core/facets/module/alias_module_function.rb +0 -30
  657. data/src/core/facets/module/all_instance_methods.rb +0 -19
  658. data/src/core/facets/module/ancestor.rb +0 -16
  659. data/src/core/facets/module/anonymous.rb +0 -25
  660. data/src/core/facets/module/attr_setter.rb +0 -52
  661. data/src/core/facets/module/basename.rb +0 -31
  662. data/src/core/facets/module/can.rb +0 -20
  663. data/src/core/facets/module/class.rb +0 -12
  664. data/src/core/facets/module/class_def.rb +0 -2
  665. data/src/core/facets/module/class_method_defined.rb +0 -1
  666. data/src/core/facets/module/extend.rb +0 -1
  667. data/src/core/facets/module/home.rb +0 -90
  668. data/src/core/facets/module/homename.rb +0 -1
  669. data/src/core/facets/module/housing.rb +0 -1
  670. data/src/core/facets/module/include_function_module.rb +0 -25
  671. data/src/core/facets/module/instance_method.rb +0 -25
  672. data/src/core/facets/module/instance_method_defined.rb +0 -23
  673. data/src/core/facets/module/integrate.rb +0 -49
  674. data/src/core/facets/module/is.rb +0 -57
  675. data/src/core/facets/module/methodize.rb +0 -20
  676. data/src/core/facets/module/modname.rb +0 -1
  677. data/src/core/facets/module/module_def.rb +0 -31
  678. data/src/core/facets/module/nodef.rb +0 -13
  679. data/src/core/facets/module/op.rb +0 -107
  680. data/src/core/facets/module/op_add.rb +0 -1
  681. data/src/core/facets/module/op_mul.rb +0 -1
  682. data/src/core/facets/module/op_sub.rb +0 -1
  683. data/src/core/facets/module/pathize.rb +0 -20
  684. data/src/core/facets/module/redefine_method.rb +0 -37
  685. data/src/core/facets/module/redirect_method.rb +0 -46
  686. data/src/core/facets/module/remove.rb +0 -1
  687. data/src/core/facets/module/rename_method.rb +0 -30
  688. data/src/core/facets/module/revise.rb +0 -41
  689. data/src/core/facets/module/set.rb +0 -36
  690. data/src/core/facets/module/singleton_method_defined.rb +0 -1
  691. data/src/core/facets/module/spacename.rb +0 -25
  692. data/src/core/facets/module/to_obj.rb +0 -20
  693. data/src/core/facets/module/wrap_method.rb +0 -35
  694. data/src/core/facets/na.rb +0 -21
  695. data/src/core/facets/nilclass.rb +0 -20
  696. data/src/core/facets/nilclass/ergo.rb +0 -1
  697. data/src/core/facets/nilclass/to_f.rb +0 -17
  698. data/src/core/facets/numeric.rb +0 -20
  699. data/src/core/facets/numeric/approx.rb +0 -15
  700. data/src/core/facets/numeric/distance.rb +0 -14
  701. data/src/core/facets/numeric/length.rb +0 -10
  702. data/src/core/facets/numeric/round.rb +0 -69
  703. data/src/core/facets/numeric/round_at.rb +0 -1
  704. data/src/core/facets/numeric/round_to.rb +0 -1
  705. data/src/core/facets/numeric/spacing.rb +0 -20
  706. data/src/core/facets/object.rb +0 -20
  707. data/src/core/facets/object/clone.rb +0 -1
  708. data/src/core/facets/object/dup.rb +0 -79
  709. data/src/core/facets/object/object_state.rb +0 -77
  710. data/src/core/facets/object/replace.rb +0 -43
  711. data/src/core/facets/object/try_dup.rb +0 -1
  712. data/src/core/facets/objectspace.rb +0 -20
  713. data/src/core/facets/objectspace/classes.rb +0 -11
  714. data/src/core/facets/objectspace/op_fetch.rb +0 -3
  715. data/src/core/facets/objectspace/reflect.rb +0 -62
  716. data/src/core/facets/proc.rb +0 -20
  717. data/src/core/facets/proc/bind.rb +0 -24
  718. data/src/core/facets/proc/bind_to.rb +0 -17
  719. data/src/core/facets/proc/compose.rb +0 -42
  720. data/src/core/facets/proc/curry.rb +0 -32
  721. data/src/core/facets/proc/partial.rb +0 -33
  722. data/src/core/facets/proc/to_method.rb +0 -38
  723. data/src/core/facets/proc/update.rb +0 -9
  724. data/src/core/facets/process.rb +0 -20
  725. data/src/core/facets/process/daemon.rb +0 -32
  726. data/src/core/facets/range.rb +0 -20
  727. data/src/core/facets/range/combine.rb +0 -47
  728. data/src/core/facets/range/overlap.rb +0 -12
  729. data/src/core/facets/range/to_r.rb +0 -26
  730. data/src/core/facets/range/umbrella.rb +0 -1
  731. data/src/core/facets/range/within.rb +0 -64
  732. data/src/core/facets/regexp.rb +0 -20
  733. data/src/core/facets/regexp/arity.rb +0 -17
  734. data/src/core/facets/regexp/multiline.rb +0 -13
  735. data/src/core/facets/regexp/op_add.rb +0 -18
  736. data/src/core/facets/regexp/op_or.rb +0 -18
  737. data/src/core/facets/regexp/to_re.rb +0 -28
  738. data/src/core/facets/string.rb +0 -20
  739. data/src/core/facets/string/align.rb +0 -125
  740. data/src/core/facets/string/bracket.rb +0 -64
  741. data/src/core/facets/string/bytes.rb +0 -21
  742. data/src/core/facets/string/camelcase.rb +0 -62
  743. data/src/core/facets/string/capitalized.rb +0 -49
  744. data/src/core/facets/string/characters.rb +0 -13
  745. data/src/core/facets/string/cleanlines.rb +0 -27
  746. data/src/core/facets/string/cleave.rb +0 -36
  747. data/src/core/facets/string/cmp.rb +0 -1
  748. data/src/core/facets/string/compress_lines.rb +0 -17
  749. data/src/core/facets/string/divide.rb +0 -18
  750. data/src/core/facets/string/each_char.rb +0 -31
  751. data/src/core/facets/string/each_word.rb +0 -17
  752. data/src/core/facets/string/edit_distance.rb +0 -124
  753. data/src/core/facets/string/end_with.rb +0 -1
  754. data/src/core/facets/string/exclude.rb +0 -10
  755. data/src/core/facets/string/expand_tab.rb +0 -35
  756. data/src/core/facets/string/file.rb +0 -35
  757. data/src/core/facets/string/fold.rb +0 -39
  758. data/src/core/facets/string/indent.rb +0 -67
  759. data/src/core/facets/string/index_all.rb +0 -24
  760. data/src/core/facets/string/interpolate.rb +0 -19
  761. data/src/core/facets/string/lchomp.rb +0 -33
  762. data/src/core/facets/string/line_wrap.rb +0 -18
  763. data/src/core/facets/string/lines.rb +0 -19
  764. data/src/core/facets/string/lowercase.rb +0 -1
  765. data/src/core/facets/string/margin.rb +0 -31
  766. data/src/core/facets/string/methodize.rb +0 -27
  767. data/src/core/facets/string/modulize.rb +0 -31
  768. data/src/core/facets/string/mscan.rb +0 -19
  769. data/src/core/facets/string/natcmp.rb +0 -86
  770. data/src/core/facets/string/nchar.rb +0 -32
  771. data/src/core/facets/string/newlines.rb +0 -32
  772. data/src/core/facets/string/op_div.rb +0 -14
  773. data/src/core/facets/string/op_sub.rb +0 -14
  774. data/src/core/facets/string/outdent.rb +0 -1
  775. data/src/core/facets/string/pathize.rb +0 -28
  776. data/src/core/facets/string/quote.rb +0 -93
  777. data/src/core/facets/string/random_binary.rb +0 -10
  778. data/src/core/facets/string/range.rb +0 -60
  779. data/src/core/facets/string/range_all.rb +0 -1
  780. data/src/core/facets/string/range_of_line.rb +0 -1
  781. data/src/core/facets/string/rewrite.rb +0 -24
  782. data/src/core/facets/string/shatter.rb +0 -22
  783. data/src/core/facets/string/similarity.rb +0 -89
  784. data/src/core/facets/string/snakecase.rb +0 -21
  785. data/src/core/facets/string/splice.rb +0 -33
  786. data/src/core/facets/string/squish.rb +0 -22
  787. data/src/core/facets/string/start_with.rb +0 -60
  788. data/src/core/facets/string/store.rb +0 -7
  789. data/src/core/facets/string/subtract.rb +0 -4
  790. data/src/core/facets/string/tab.rb +0 -17
  791. data/src/core/facets/string/tabto.rb +0 -19
  792. data/src/core/facets/string/titlecase.rb +0 -15
  793. data/src/core/facets/string/to_re.rb +0 -26
  794. data/src/core/facets/string/unbracket.rb +0 -1
  795. data/src/core/facets/string/underscore.rb +0 -22
  796. data/src/core/facets/string/unfold.rb +0 -27
  797. data/src/core/facets/string/unindent.rb +0 -1
  798. data/src/core/facets/string/unquote.rb +0 -1
  799. data/src/core/facets/string/uppercase.rb +0 -23
  800. data/src/core/facets/string/variablize.rb +0 -13
  801. data/src/core/facets/string/word_wrap.rb +0 -32
  802. data/src/core/facets/string/words.rb +0 -12
  803. data/src/core/facets/string/xor.rb +0 -26
  804. data/src/core/facets/struct.rb +0 -20
  805. data/src/core/facets/struct/attributes.rb +0 -15
  806. data/src/core/facets/symbol.rb +0 -20
  807. data/src/core/facets/symbol/as_s.rb +0 -17
  808. data/src/core/facets/symbol/chomp.rb +0 -24
  809. data/src/core/facets/symbol/generate.rb +0 -24
  810. data/src/core/facets/symbol/not.rb +0 -29
  811. data/src/core/facets/symbol/op_div.rb +0 -21
  812. data/src/core/facets/symbol/plain.rb +0 -43
  813. data/src/core/facets/symbol/setter.rb +0 -1
  814. data/src/core/facets/symbol/succ.rb +0 -23
  815. data/src/core/facets/symbol/thrown.rb +0 -18
  816. data/src/core/facets/symbol/to_proc.rb +0 -33
  817. data/src/core/facets/symbol/variablize.rb +0 -14
  818. data/src/core/facets/time.rb +0 -20
  819. data/src/core/facets/time/ago.rb +0 -1
  820. data/src/core/facets/time/change.rb +0 -46
  821. data/src/core/facets/time/dst_adjustment.rb +0 -24
  822. data/src/core/facets/time/elapse.rb +0 -18
  823. data/src/core/facets/time/future.rb +0 -14
  824. data/src/core/facets/time/hence.rb +0 -1
  825. data/src/core/facets/time/in.rb +0 -1
  826. data/src/core/facets/time/less.rb +0 -1
  827. data/src/core/facets/time/past.rb +0 -1
  828. data/src/core/facets/time/round_to.rb +0 -21
  829. data/src/core/facets/time/set.rb +0 -27
  830. data/src/core/facets/time/shift.rb +0 -95
  831. data/src/core/facets/time/stamp.rb +0 -45
  832. data/src/core/facets/time/to_time.rb +0 -21
  833. data/src/core/facets/time/trunc.rb +0 -15
  834. data/src/core/facets/to_hash.rb +0 -336
  835. data/src/core/facets/unboundmethod.rb +0 -20
  836. data/src/core/facets/unboundmethod/arguments.rb +0 -44
  837. data/src/core/facets/unboundmethod/name.rb +0 -28
  838. data/src/standard/facets/basicobject.rb +0 -75
  839. data/src/standard/facets/cgi.rb +0 -44
  840. data/src/standard/facets/continuation.rb +0 -56
  841. data/src/standard/facets/date.rb +0 -433
  842. data/src/standard/facets/digest.rb +0 -2
  843. data/src/standard/facets/digest/base64digest.rb +0 -45
  844. data/src/standard/facets/digest/salted_digest.rb +0 -44
  845. data/src/standard/facets/erb.rb +0 -66
  846. data/src/standard/facets/fileutils.rb +0 -13
  847. data/src/standard/facets/fileutils/amass.rb +0 -33
  848. data/src/standard/facets/fileutils/cp_rx.rb +0 -44
  849. data/src/standard/facets/fileutils/head.rb +0 -1
  850. data/src/standard/facets/fileutils/ln_r.rb +0 -99
  851. data/src/standard/facets/fileutils/outofdate.rb +0 -38
  852. data/src/standard/facets/fileutils/safe_ln.rb +0 -27
  853. data/src/standard/facets/fileutils/slice.rb +0 -55
  854. data/src/standard/facets/fileutils/stage.rb +0 -66
  855. data/src/standard/facets/fileutils/tail.rb +0 -1
  856. data/src/standard/facets/fileutils/wc.rb +0 -63
  857. data/src/standard/facets/fileutils/whereis.rb +0 -66
  858. data/src/standard/facets/fileutils/which.rb +0 -60
  859. data/src/standard/facets/find.rb +0 -16
  860. data/src/standard/facets/getoptlong.rb +0 -59
  861. data/src/standard/facets/math.rb +0 -6
  862. data/src/standard/facets/math/abs.rb +0 -8
  863. data/src/standard/facets/math/acot.rb +0 -8
  864. data/src/standard/facets/math/acoth.rb +0 -8
  865. data/src/standard/facets/math/acsc.rb +0 -8
  866. data/src/standard/facets/math/acsch.rb +0 -8
  867. data/src/standard/facets/math/amd.rb +0 -17
  868. data/src/standard/facets/math/approx_equal.rb +0 -15
  869. data/src/standard/facets/math/asec.rb +0 -8
  870. data/src/standard/facets/math/asech.rb +0 -8
  871. data/src/standard/facets/math/atkinson_index.rb +0 -16
  872. data/src/standard/facets/math/beta.rb +0 -9
  873. data/src/standard/facets/math/cdf.rb +0 -10
  874. data/src/standard/facets/math/ceil.rb +0 -8
  875. data/src/standard/facets/math/cot.rb +0 -8
  876. data/src/standard/facets/math/coth.rb +0 -8
  877. data/src/standard/facets/math/csc.rb +0 -8
  878. data/src/standard/facets/math/csch.rb +0 -8
  879. data/src/standard/facets/math/delta.rb +0 -9
  880. data/src/standard/facets/math/epsilon.rb +0 -21
  881. data/src/standard/facets/math/exp10.rb +0 -8
  882. data/src/standard/facets/math/exp2.rb +0 -8
  883. data/src/standard/facets/math/factorial.rb +0 -37
  884. data/src/standard/facets/math/floor.rb +0 -8
  885. data/src/standard/facets/math/gamma.rb +0 -12
  886. data/src/standard/facets/math/gcd.rb +0 -23
  887. data/src/standard/facets/math/gini_coefficient.rb +0 -33
  888. data/src/standard/facets/math/kldivergence.rb +0 -19
  889. data/src/standard/facets/math/lcm.rb +0 -15
  890. data/src/standard/facets/math/lgamma.rb +0 -21
  891. data/src/standard/facets/math/linsolve.rb +0 -10
  892. data/src/standard/facets/math/log2.rb +0 -14
  893. data/src/standard/facets/math/max.rb +0 -1
  894. data/src/standard/facets/math/mean.rb +0 -16
  895. data/src/standard/facets/math/median.rb +0 -15
  896. data/src/standard/facets/math/min.rb +0 -35
  897. data/src/standard/facets/math/pow.rb +0 -8
  898. data/src/standard/facets/math/pstd.rb +0 -1
  899. data/src/standard/facets/math/pvariance.rb +0 -1
  900. data/src/standard/facets/math/rmd.rb +0 -16
  901. data/src/standard/facets/math/root.rb +0 -8
  902. data/src/standard/facets/math/sec.rb +0 -8
  903. data/src/standard/facets/math/sech.rb +0 -8
  904. data/src/standard/facets/math/sign.rb +0 -9
  905. data/src/standard/facets/math/sinc.rb +0 -8
  906. data/src/standard/facets/math/sqr.rb +0 -8
  907. data/src/standard/facets/math/sqsolve.rb +0 -53
  908. data/src/standard/facets/math/std.rb +0 -27
  909. data/src/standard/facets/math/stderr.rb +0 -1
  910. data/src/standard/facets/math/sum.rb +0 -16
  911. data/src/standard/facets/math/summed_sqdevs.rb +0 -14
  912. data/src/standard/facets/math/theil_index.rb +0 -24
  913. data/src/standard/facets/math/variance.rb +0 -31
  914. data/src/standard/facets/net/http.rb +0 -32
  915. data/src/standard/facets/ostruct.rb +0 -210
  916. data/src/standard/facets/pathname.rb +0 -240
  917. data/src/standard/facets/random.rb +0 -446
  918. data/src/standard/facets/rbconfig.rb +0 -78
  919. data/src/standard/facets/set.rb +0 -32
  920. data/src/standard/facets/shellwords.rb +0 -112
  921. data/src/standard/facets/strscan.rb +0 -16
  922. data/src/standard/facets/thread.rb +0 -98
  923. data/src/standard/facets/uri.rb +0 -211
  924. data/src/standard/facets/yaml.rb +0 -59
  925. data/src/standard/facets/zlib.rb +0 -38
  926. data/src/supplemental/facets/argvector.rb +0 -343
  927. data/src/supplemental/facets/atomicfile.rb +0 -51
  928. data/src/supplemental/facets/enumargs.rb +0 -195
  929. data/src/supplemental/facets/interval.rb +0 -284
  930. data/src/supplemental/facets/main.rb +0 -62
  931. data/src/supplemental/facets/memoizable.rb +0 -141
  932. data/src/supplemental/facets/metaid.rb +0 -7
  933. data/src/supplemental/facets/multipliers.rb +0 -65
  934. data/src/supplemental/facets/multiton.rb +0 -387
  935. data/src/supplemental/facets/nullclass.rb +0 -38
  936. data/src/supplemental/facets/opesc.rb +0 -79
  937. data/src/supplemental/facets/platform.rb +0 -377
  938. data/src/supplemental/facets/reference.rb +0 -83
  939. data/src/supplemental/facets/tuple.rb +0 -282
  940. data/test/core-uncommon/array/test_median.rb +0 -12
  941. data/test/core-uncommon/array/test_percentile.rb +0 -12
  942. data/test/core-uncommon/module/test_cattr.rb +0 -53
  943. data/test/core-uncommon/module/test_prepend.rb +0 -26
  944. data/work/CHANGES +0 -2529
  945. data/work/NOTES.rdoc +0 -143
  946. data/work/bench/bench_load.rb +0 -56
  947. data/work/bench/enumerable/bench_collect.rb +0 -84
  948. data/work/bench/enumerable/bench_count.rb +0 -58
  949. data/work/bench/general/bench_calls.rb +0 -74
  950. data/work/bench/general/bench_includes.rb +0 -25
  951. data/work/bench/general/bench_methods.rb +0 -17
  952. data/work/bench/general/bench_pathname.rb +0 -24
  953. data/work/bench/general/bench_range.rb +0 -64
  954. data/work/bench/general/bench_return.rb +0 -56
  955. data/work/bench/general/bench_yeild.rb +0 -75
  956. data/work/bench/general/comment_loading/bench.rb +0 -46
  957. data/work/bench/general/comment_loading/comments_begin.rb +0 -109
  958. data/work/bench/general/comment_loading/comments_end.rb +0 -127
  959. data/work/bench/general/comment_loading/comments_none.rb +0 -1
  960. data/work/bench/general/comment_loading/comments_sharp.rb +0 -125
  961. data/work/bench/hash/bench_slice.rb +0 -62
  962. data/work/bench/integer/bench_factorial.rb +0 -31
  963. data/work/consider/aspects.rb +0 -254
  964. data/work/consider/attr.rb +0 -82
  965. data/work/consider/bin.rb +0 -26
  966. data/work/consider/blackmagic.rb +0 -103
  967. data/work/consider/bool_attr_accessor.rb +0 -414
  968. data/work/consider/duration.rb +0 -286
  969. data/work/consider/forwardable_chain.patch +0 -448
  970. data/work/consider/knowself.rb +0 -42
  971. data/work/consider/lib/core/facets.rb +0 -37
  972. data/work/consider/lib/core/facets/array/fetch.rb +0 -37
  973. data/work/consider/lib/core/facets/array/op_div.rb +0 -23
  974. data/work/consider/lib/core/facets/hash/having.rb +0 -75
  975. data/work/consider/lib/core/facets/string/trim.rb +0 -70
  976. data/work/consider/lib/more/facets/argv.rb +0 -47
  977. data/work/consider/lib/more/facets/extension.rb +0 -30
  978. data/work/consider/lib/more/facets/fixnum.rb +0 -55
  979. data/work/consider/lib/more/facets/forwardable_chain.patch +0 -448
  980. data/work/consider/lib/more/facets/gem.rb +0 -23
  981. data/work/consider/lib/more/facets/interface.rb +0 -230
  982. data/work/consider/lib/more/facets/plugin.rb +0 -153
  983. data/work/consider/lib/more/facets/recorder.rb +0 -54
  984. data/work/consider/lib/more/facets/tasksystem.rb +0 -350
  985. data/work/consider/mapcar.rb +0 -74
  986. data/work/consider/require_directory.rb +0 -4
  987. data/work/consider/set.rb +0 -47
  988. data/work/consider/succ.rb +0 -44
  989. data/work/consider/succ_case.rb +0 -39
  990. data/work/defunct/core/facets/array/combinations.rb +0 -33
  991. data/work/defunct/core/facets/array/combos.rb +0 -47
  992. data/work/defunct/core/facets/array/each_uniq_pair.rb +0 -43
  993. data/work/defunct/core/facets/array/permutation.rb +0 -75
  994. data/work/defunct/core/facets/array/to_path.rb +0 -14
  995. data/work/defunct/core/facets/class/initializer.rb +0 -60
  996. data/work/defunct/core/facets/class/prepend.rb +0 -52
  997. data/work/defunct/core/facets/class/remove_descendents.rb +0 -42
  998. data/work/defunct/core/facets/enumerable/cascade.rb +0 -28
  999. data/work/defunct/core/facets/enumerable/each.rb +0 -89
  1000. data/work/defunct/core/facets/enumerable/to_hash.rb +0 -30
  1001. data/work/defunct/core/facets/hash/access.rb +0 -146
  1002. data/work/defunct/core/facets/hash/group_by_value.rb +0 -66
  1003. data/work/defunct/core/facets/hash/normalize_keys.rb +0 -134
  1004. data/work/defunct/core/facets/hash/op_div.rb +0 -11
  1005. data/work/defunct/core/facets/hash/variablize_keys.rb +0 -48
  1006. data/work/defunct/core/facets/kernel/__assign__.rb +0 -28
  1007. data/work/defunct/core/facets/kernel/__real__.rb +0 -48
  1008. data/work/defunct/core/facets/kernel/deep_clone.rb +0 -48
  1009. data/work/defunct/core/facets/kernel/instance_assume.rb +0 -66
  1010. data/work/defunct/core/facets/kernel/once.rb +0 -54
  1011. data/work/defunct/core/facets/kernel/warn_with_line.rb +0 -29
  1012. data/work/defunct/core/facets/method/curry.rb +0 -10
  1013. data/work/defunct/core/facets/method/partial.rb +0 -10
  1014. data/work/defunct/core/facets/module/attr_toggler.rb +0 -59
  1015. data/work/defunct/core/facets/module/by_name.rb +0 -56
  1016. data/work/defunct/core/facets/module/compare_on.rb +0 -35
  1017. data/work/defunct/core/facets/module/equate_on.rb +0 -36
  1018. data/work/defunct/core/facets/module/methodize.rb +0 -19
  1019. data/work/defunct/core/facets/module/module_method.rb +0 -14
  1020. data/work/defunct/core/facets/module/on_included.rb +0 -80
  1021. data/work/defunct/core/facets/proc/bind.rb +0 -38
  1022. data/work/defunct/core/facets/proc/to_h.rb +0 -22
  1023. data/work/defunct/core/facets/string/camelcase.rb +0 -25
  1024. data/work/defunct/core/facets/string/indexable.rb +0 -144
  1025. data/work/defunct/core/facets/string/stackable.rb +0 -181
  1026. data/work/defunct/core/facets/string/to_const.rb +0 -31
  1027. data/work/defunct/core/facets/string/to_proc.rb +0 -52
  1028. data/work/defunct/core/facets/symbol/pad.rb +0 -1
  1029. data/work/defunct/core/facets/symbol/shadow.rb +0 -37
  1030. data/work/defunct/core/facets/symbol/to_const.rb +0 -31
  1031. data/work/defunct/more/facets/annotations.rb +0 -302
  1032. data/work/defunct/more/facets/duration.rb +0 -540
  1033. data/work/defunct/more/facets/logger.rb +0 -158
  1034. data/work/defunct/more/facets/multiton.rb +0 -390
  1035. data/work/defunct/more/facets/multiton2.rb +0 -237
  1036. data/work/defunct/more/facets/uploadutils.rb +0 -466
  1037. data/work/defunct/script/conflicts +0 -63
  1038. data/work/defunct/script/methods +0 -49
  1039. data/work/defunct/test/string/test_crypt.rb +0 -17
  1040. data/work/defunct/test/string/test_indexable.rb +0 -68
  1041. data/work/defunct/test/string/test_stackable.rb +0 -94
  1042. data/work/defunct/test/string/test_stylize.rb +0 -52
  1043. data/work/defunct/test/test_continuation.rb +0 -15
  1044. data/work/defunct/test/test_instance_exec.rb +0 -44
  1045. data/work/defunct/test/test_ioredirect.rb +0 -23
  1046. data/work/defunct/test/test_prepend.rb +0 -19
  1047. data/work/defunct/test/test_succ.rb +0 -35
  1048. data/work/defunct/yard.assembly +0 -44
  1049. data/work/sandbox/component.rb +0 -120
  1050. data/work/sandbox/enumerator.rb +0 -12
  1051. data/work/sandbox/enumx.rb +0 -116
  1052. data/work/sandbox/express.rb +0 -48
  1053. data/work/sandbox/multidispatch.rb +0 -236
  1054. data/work/sandbox/multidispatch0.rb +0 -224
  1055. data/work/sandbox/multiton2.rb +0 -590
  1056. data/work/sandbox/namespace.rb +0 -169
  1057. data/work/sandbox/safe-study/safe_extension.rb +0 -17
  1058. data/work/sandbox/safe-study/safe_study.rb +0 -16
  1059. data/work/sandbox/to_data.rb +0 -141
  1060. data/work/sandbox/visit.rb +0 -62
  1061. data/work/site/endorse.page +0 -65
  1062. data/work/site/posts/2010-01-25-test_rails_with_facets.post +0 -151
  1063. data/work/site/posts/enumargs.md +0 -30
  1064. data/work/site/posts/tomslib.rb +0 -47
  1065. data/work/site/posts/weblog.xml +0 -78
  1066. data/work/site/sidebar.txt +0 -19
  1067. data/work/todo/more/test_basicobject.rb +0 -34
  1068. data/work/todo/more/test_fileutils_slice.rb +0 -88
  1069. data/work/todo/more/test_fileutils_wc.rb +0 -53
  1070. data/work/todo/more/test_fileutils_which.rb +0 -45
  1071. data/work/todo/more/test_getoptlong.rb +0 -26
  1072. data/work/todo/more/test_multiton.rb +0 -184
  1073. data/work/trash/hook.rdoc +0 -49
  1074. data/work/trash/menu.html +0 -71
  1075. data/work/trash/site-jekyll/.htaccess +0 -1
  1076. data/work/trash/site-jekyll/.rsync-filter +0 -7
  1077. data/work/trash/site-jekyll/.till +0 -1
  1078. data/work/trash/site-jekyll/_config.yml +0 -6
  1079. data/work/trash/site-jekyll/_layouts/default.html +0 -101
  1080. data/work/trash/site-jekyll/_layouts/post.html +0 -23
  1081. data/work/trash/site-jekyll/_posts/2008-01-01-how-facets-was-born.markdown +0 -25
  1082. data/work/trash/site-jekyll/_posts/2008-04-04-times-collect.markdown +0 -33
  1083. data/work/trash/site-jekyll/_posts/2008-10-10-string-margin.markdown +0 -52
  1084. data/work/trash/site-jekyll/_posts/2009-07-21-new-website.markdown +0 -16
  1085. data/work/trash/site-jekyll/_posts/2009-08-22-release-2-7.markdown +0 -127
  1086. data/work/trash/site-jekyll/_posts/2009-11-09-release-2-8.markdown +0 -58
  1087. data/work/trash/site-jekyll/about.html +0 -79
  1088. data/work/trash/site-jekyll/assets/scripts/hover.js +0 -14
  1089. data/work/trash/site-jekyll/assets/scripts/rdocs.js +0 -28
  1090. data/work/trash/site-jekyll/assets/styles/site.css +0 -317
  1091. data/work/trash/site-jekyll/assets/styles/syntax.css +0 -60
  1092. data/work/trash/site-jekyll/atom.xml +0 -23
  1093. data/work/trash/site-jekyll/community.html +0 -72
  1094. data/work/trash/site-jekyll/download.html +0 -84
  1095. data/work/trash/site-jekyll/endorse.html +0 -64
  1096. data/work/trash/site-jekyll/index.html +0 -17
  1097. data/work/trash/site-jekyll/learn.html +0 -221
  1098. data/work/trash/site-jekyll/source.html +0 -74
  1099. data/work/trash/site/.htaccess +0 -1
  1100. data/work/trash/site/.rsync-filter +0 -10
  1101. data/work/trash/site/js/hover.js +0 -14
  1102. data/work/trash/site/js/rdocs.js +0 -28
  1103. data/work/trash/site/quick.html +0 -250
  1104. data/work/trash/site/splash.html +0 -44
  1105. data/work/trash/task/count +0 -48
  1106. data/work/trash/task/load +0 -40
  1107. data/work/trash/task/publish +0 -83
  1108. data/work/trash/task/tag +0 -26
  1109. data/work/trash/test_inject.rb +0 -17
data/.ruby CHANGED
@@ -1,4 +1,6 @@
1
1
  ---
2
+ source:
3
+ - var
2
4
  authors:
3
5
  - name: Thomas Sawyer
4
6
  email: transfire@gmail.com
@@ -7,7 +9,7 @@ copyrights:
7
9
  year: '2004'
8
10
  license: Ruby
9
11
  replacements: []
10
- conflicts: []
12
+ alternatives: []
11
13
  requirements:
12
14
  - name: lemon
13
15
  groups:
@@ -22,6 +24,7 @@ requirements:
22
24
  - build
23
25
  development: true
24
26
  dependencies: []
27
+ conflicts: []
25
28
  repositories:
26
29
  - uri: git@github.com:rubyworks/facets.git
27
30
  scm: git
@@ -32,26 +35,20 @@ resources:
32
35
  docs: http://rubyworks.github.com/facets/learn.html
33
36
  wiki: http://wiki.github.com/rubyworks/facets
34
37
  talk: http://groups.google.com/group/facets-universal
38
+ extra: {}
35
39
  load_path:
36
40
  - lib/core
37
- - lib/core-uncommon
38
41
  - lib/standard
39
- - lib/supplemental
40
- extra:
41
- slogan: ALL YOUR BASE ARE BELONG TO RUBY!
42
- manifest: MANIFEST
43
- source: []
44
- alternatives: []
45
42
  revision: 0
43
+ created: '2004-12-16'
44
+ summary: Premium Ruby Extensions
46
45
  title: Facets
46
+ version: 2.9.3
47
47
  name: facets
48
- summary: Premium Ruby Extensions
49
- created: '2004-12-16'
50
48
  description: Facets is the premier collection of extension methods for the Ruby programming
51
49
  language. Facets extensions are unique by virtue of thier atomicity. They are stored
52
50
  in individual files allowing for highly granular control of requirements. In addition,
53
51
  Facets includes a few additional classes and mixins suitable to wide variety of
54
52
  applications.
55
53
  organization: rubyworks
56
- version: 2.9.2
57
- date: '2011-08-23'
54
+ date: '2011-12-31'
@@ -0,0 +1,10 @@
1
+ --title "Ruby Facets"
2
+ --readme README.rdoc
3
+ --protected
4
+ --private
5
+ --tag uncommon:Uncommon
6
+ --tag standard:Standard
7
+ lib/core
8
+ lib/standard
9
+ -
10
+ [A-Z]*.*
@@ -1,5 +1,63 @@
1
1
  = Facets Release History
2
2
 
3
+ == 2.9.3 / 2011-12-31
4
+
5
+ Happy New Year! Ruby Facets kicks off the year with a 2.9.x release.
6
+ This release adds a number of new methods, a few general improvements
7
+ and bug fixes, a couple of deprecations and finally settles the
8
+ project down to a two-part core/standard project organization.
9
+
10
+ Changes:
11
+
12
+ * New Features
13
+
14
+ * Add Hash#url_params. (Matt Kirk)
15
+ * Add Enumerable#hashify. (Ronen Barzel)
16
+ * Add String#briefcase, similar to #titlecase.
17
+ * Add Kernel#hierarchical_send (better replacement for preinitialize.rb).
18
+ * Add Class#hierarchically, which supports #hierarchical_send.
19
+ * Add Array#median, to get the sorted middle of an array.
20
+ * Add Math#percentile and Math#median.
21
+ * Add Instantiable mixin (returns from Mixers spin-off project).
22
+ * Add Equitable mixin (returns from Mixers spin-off project).
23
+ * Add Cloneable mixin (returns from Mixers spin-off project).
24
+ * Add Array#each_pair and #each_value.
25
+ * Add Numeric#positive? and #numeric?.
26
+ * Add Method#* and #^ composition methods. (Mike Burns)
27
+ * Add back Fixnum::MAX and MIN constants.
28
+ * Add Binding#with.
29
+
30
+ * Improved Features
31
+
32
+ * Improve FileUtils#amass to be more robust.
33
+ * Improve String#snakecase to convert spaces to underscores.
34
+ * Improve String#camelcase to convert spaces to "camels".
35
+ * Improve String#snakecase to not handle path names (use #pathize).
36
+ * Improve String#camelcase to not handle module names (ise #modulize).
37
+ * Improve Numeric#approx? bu using ratio.
38
+
39
+ * Renamed Features
40
+
41
+ * Rename Enumerable#has? to #incase?.
42
+
43
+ * Bug Fixes
44
+
45
+ * Fix Hash#rekey to keep default_proc.
46
+ * Fix Binding#self to not be defined for Rubinius.
47
+
48
+ * Deprecations
49
+
50
+ * Deprecate Preinitializable mixin.
51
+ * Deprecate main.rb, spun-off to `main_like_module` gem.
52
+
53
+ * Implementation Details
54
+
55
+ * Reconsolidated library into just two parts, `core` and `standard`.
56
+ * The term "more" is just a synonym for "standard" now.
57
+ * Relative requires are being used more extensively.
58
+ * Collection scripts, e.g. `require 'facets'`, are static.
59
+
60
+
3
61
  == 2.9.2 / 2011-08-23
4
62
 
5
63
  The main purpose of this release is a fix for Module#redefine_method,
@@ -844,14 +902,7 @@ Note that this release does not include a setup.rb script. We are working
844
902
  on a new version of this script, which we plan to include in the next release.
845
903
 
846
904
  This release give special thanks to the following people for their contributions:
847
-
848
- * Ken Bloom
849
- * Nick Caruso
850
- * Evgeniy Dolzhenko
851
- * Andy Freeman
852
- * Tomasz Muras
853
- * Dave Myron
854
-
905
+ Ken Bloom, Nick Caruso, Evgeniy Dolzhenko, Andy Freeman, Tomasz Muras and Dave Myron.
855
906
  And of course, to anyone else I failed to mention that has contributed.
856
907
 
857
908
  (NOTE: 2.4.3's changes may actually be long to 2.4.2. Notice the releases are
@@ -1295,11 +1346,17 @@ Changes:
1295
1346
 
1296
1347
  Changes:
1297
1348
 
1349
+ * Additions
1350
+
1351
+ * Added Exception#details.
1352
+
1353
+ * General Enhancements
1354
+
1298
1355
  * Dir::multiglob no longer handels -/+ modifiers. Use FileList instead.
1356
+
1357
+ * Administrative Adjustments
1358
+
1299
1359
  * Fixed task/install script.
1300
- * Added copyright notice to COPYING file.
1301
- * Renamed LICENSE to COPYING according to offical GPL policy.
1302
- * Added exception#details.
1303
1360
  * Improved task/changes.
1304
1361
 
1305
1362
 
@@ -1307,176 +1364,172 @@ Changes:
1307
1364
 
1308
1365
  Changes:
1309
1366
 
1310
- * Fixed bug in command.rb that clobbered options.
1367
+ * Additions
1368
+
1311
1369
  * Added kernel/ergo.rb.
1312
- * Removed debug code.
1313
- * Fixed options bug in command.rb
1314
- * Moved nilclass/ergo to kernel/ergo.
1315
- * Update Kernel#ergo.
1316
1370
  * Added pp_s.rb (Questionable addition, but we'll leave it for now.)
1317
1371
  * Added validation.rb. This is here for Nitro's sake --better techinques may replace it in the future.
1318
- * Removed tracepoint.rb.
1319
1372
  * Added Console::Logger to logger.rb (may be separated in future).
1320
1373
  * Added option arity to command.rb.
1321
1374
 
1375
+ * Deprecations
1376
+
1377
+ * Removed tracepoint.rb.
1378
+
1379
+ * Bug Fixes
1380
+
1381
+ * Fixed bug in command.rb that clobbered options.
1382
+ * Fixed options bug in command.rb.
1383
+
1322
1384
 
1323
1385
  == 2.1.0 / 2007-11-10
1324
1386
 
1325
- Major changes include a new and much-improved command.rb,
1326
- a new BiCrypt class for simple two-way crypotgraphy,
1327
- as well as attr_reader!, attr_writer! and attr_accessor!
1328
- for flag attributes, plus alias_xxx methods for all
1329
- attr_xxx methods.
1387
+ Major changes include a new and much-improved command.rb, a new BiCrypt
1388
+ class for simple two-way crypotgraphy, as well as attr_reader!,
1389
+ attr_writer! and attr_accessor! for flag attributes, plus
1390
+ alias_xxx methods for all attr_xxx methods.
1391
+
1330
1392
 
1331
1393
  Changes:
1332
1394
 
1333
- * command.rb has been completely rewritten. The API has changed completely!
1334
- * There is no longer a Commmand::Optoins class. Use Console::Arguments instead.
1335
- * Added BiCrypt class to crypt.rb for simple two-way encyrption.
1395
+ * Additions
1396
+
1397
+ * Added BiCrypt class for simple two-way encryption.
1336
1398
  * module/attr.rb now has attr_reader!, attr_writer! and attr_accessor!
1337
1399
  * All attr_xxx methods have coresponding alias_xxx methods.
1338
- * Fixed bug in Enumerable#cluster_by which returned nil instead of [].
1339
1400
  * Added UniversalOptions module.
1340
- * Fixed minor bug in arguments.rb that prevented proper repeat parameters.
1341
- * Fixed bug in to_console.
1401
+ * Added "tester" attribues attr_xxx!. Also added alias_xxx for all attr_xxx methods.
1402
+
1403
+ * Enhancements
1404
+
1405
+ * command.rb has been completely rewritten. The API has changed completely!
1406
+ * There is no longer a Commmand::Optoins class. Use Console::Arguments instead.
1342
1407
  * Moved common alias methods from attr.rb to alias.rb.
1343
1408
  * MasterCommand now passes (args, opts), until 1.9 is main stream.
1344
- * Added BiCrypt class for simple two-way encryption.
1409
+ * Cleaned up enumerable/permutation.rb
1410
+ * Added -q option to zip method in ZipUtils.
1411
+ * Ok. #p is back. This will in fact be in 1.9, so we're good.
1412
+
1413
+ * Bug Fixes
1414
+
1415
+ * Fixed bug in Enumerable#cluster_by which returned nil instead of [].
1416
+ * Fixed minor bug in arguments.rb that prevented proper repeat parameters.
1417
+ * Fixed bug in to_console.
1418
+ * Fixed bug in enumerable/cluster_by (returned nil instead of []).
1419
+ * Fixed bug in Hash#- Thanks to Xavier Shay.
1420
+ * Fixed to_h in Command::Options
1421
+
1422
+ * Admin Changes
1345
1423
 
1346
1424
  * Added dev/test
1347
1425
  * Renamed RELEASE to WHATSNEW
1348
1426
  * Added injecting test and cleaned up.
1349
- * Fixed bud in enumerable/cluster_by (returned nil instead of []).
1350
- * Cleaned up enumerable/permutation.rb
1351
- * minor space removal
1352
- * Complete rewrite of command.rb.
1353
1427
  * Added comment for potential future #is.
1354
- * Added "tester" attribues attr_xxx!. Also added alias_xxx for all attr_xxx methods.
1355
1428
  * Added top-level log directory.
1356
-
1357
- * Added -q option to zip method in ZipUtils.
1358
-
1359
1429
  * Remove #q reference from RELEASE.
1360
1430
  * Cleanup of test_initializer.rb.
1361
- * VERSION 2.0.5
1362
- * Fixed return bug in hash/op.rb.
1363
- * Ok. #p is back. This will in fact be in 1.9, so we're good.
1364
- * Allowed Class#initializer to return the attribute names.
1365
- * This should allow things like: 'private *initializer(...)'
1366
-
1367
- * Added missing (*args) in #initialize on Hash.new.
1368
- * Renamed #p to #q, because of multiple args problem.
1369
- * I don't know how Ruby 1.9 plans to handle multiple args.
1370
- * Will deprecate for 1.9 anyway so doesn't matter much.
1371
- * Fixed package name in icli.yaml.
1372
- * Added name field to meta/icli.yaml.
1373
- * Added meta/icli.yaml.
1374
- * Added a RELEASE file to hold current release notes.
1375
- * Added log task.
1376
- * Added changelog file in doc/log/.
1377
- * Up'd version to 2.0.4.
1378
- * Update task/groups.
1379
- * Fixed to_h in Command::Options
1380
- * Fixed bug in initialize.
1381
-
1382
- * Removed extest task. We will no longer need it.
1383
- * Fixed bug in Hash#- Thanks to Xavier Shay.
1384
- * Minor update to rdoc.yaml.
1385
- * Renamed old changelogs.
1386
1431
 
1387
1432
 
1388
1433
  == 2.0.5 / 2007-11-07
1389
1434
 
1390
- Minor release that fixes a couple of bugs and adds the last of adopted
1391
- methods from Gavin Sinclair's Extensions project.
1435
+ Minor release that fixes a couple of bugs and adds the last of
1436
+ adopted methods from Gavin Sinclair's Extensions project.
1437
+
1438
+ Also, renamed #p to #q, because of multiple args problem.
1439
+ I don't know how Ruby 1.9 plans to handle multiple args.
1440
+ Will deprecate for 1.9 anyway so doesn't matter much.
1392
1441
 
1393
1442
  Changes:
1394
1443
 
1395
1444
  * Additions
1396
1445
 
1397
- * Added final methods Gavin Sinclair's Extensions project (contributed by Noah Gibbs).
1446
+ * Added final methods Gavin Sinclair's Extensions project. (Noah Gibbs)
1398
1447
 
1399
- * 1 General Improvement
1448
+ * General Improvements
1400
1449
 
1401
1450
  * Made #alias_method_chain compatible with current ActiveSupport version.
1451
+ * Rename #p to #q, because of multiple args problem.
1452
+ * Allow Class#initializer to return the attribute names.
1402
1453
 
1403
- * 2 Bug Fixes
1454
+ * Bug Fixes
1404
1455
 
1405
- * Fixes bug with Dictionary#initialize
1406
- * Fixes bug with Hash#-
1456
+ * Fixe return bug in hash/op.rb.
1457
+ * Fixe bug with Dictionary#initialize.
1458
+ * Fixe bug with Hash#-. (Xavier Shay)
1407
1459
 
1460
+ * Admin Adjustments
1408
1461
 
1409
- == 2.0.4 / 2007-11-04
1462
+ * Fixed package name in icli.yaml.
1463
+ * Added name field to meta/icli.yaml.
1464
+ * Added meta/icli.yaml.
1465
+ * Added a RELEASE file to hold current release notes.
1466
+ * Added log task.
1467
+ * Added changelog file in doc/log/.
1410
1468
 
1411
- Changes:
1412
1469
 
1413
- == 2.0.3 / 2007-11-02
1470
+ == 2.0.4 / 2007-11-04
1414
1471
 
1415
1472
  Changes:
1416
1473
 
1417
- * Touch up to methods task.
1418
- * Update rsync filter
1419
- * Minor updates fixing issues highlighted by running crosstest.
1420
- * Many minor bug fixes after running against crosstest.
1421
- * Added usage support for __foo options.
1422
- * Fixed a many a test after running against crosstest.
1423
- * Removed load task. It did not isolate the libs, so wasn't effective.
1424
- * Added a number of new tasks.
1425
- * Rename SMTP_TLS to Smtp_tls for Rdocs.
1426
- * Moved rdoc.yaml to config/.
1427
- * moved task/config to task/config/general.
1428
- * Update tasks.
1474
+ * Unsorted Changes
1429
1475
 
1430
-
1431
- 2007-11-01 transami
1432
-
1433
- Changes:
1434
-
1435
- * Added array/only, symbol/to_proc (where did it go?) and hash/select.
1476
+ * Up'd version to 2.0.4.
1477
+ * Update task/groups.
1478
+ * Removed extest task. We will no longer need it.
1479
+ * Minor update to rdoc.yaml.
1480
+ * Renamed old changelogs.
1436
1481
 
1437
1482
 
1438
- 2007-10-31 transami
1483
+ == 2.0.3 / 2007-11-02
1439
1484
 
1440
1485
  Changes:
1441
1486
 
1442
- * Update roll file.
1443
- * Moved test_command_options to test_command.
1444
- * Update dictionary test to check dup and autohash.
1445
- * Fixed autohash and dup bugs.
1446
- * Verbatim support for Rails' version of #alias_method_chain.
1447
- * Remove site/ directory.
1448
- * Moved rsync filter up too.
1449
- * Moved doc/site/ up to doc/.
1450
- * Added javascript directory to doc/.
1451
-
1452
-
1453
- 2007-10-30 transami
1487
+ * Unsorted Changes
1454
1488
 
1455
- * Updates across the board.
1456
- * Updates to stylize and command.rb.
1457
- * Made facets.rb a shortcut to facets/facets.rb (this is for Rolls, better way?)
1458
- * Oh smack. Lots of stuff fixed.
1489
+ * Touch up to methods task.
1490
+ * Update rsync filter
1491
+ * Minor updates fixing issues highlighted by running crosstest.
1492
+ * Many minor bug fixes after running against crosstest.
1493
+ * Added usage support for __foo options.
1494
+ * Fixed a many a test after running against crosstest.
1495
+ * Removed load task. It did not isolate the libs, so wasn't effective.
1496
+ * Added a number of new tasks.
1497
+ * Rename SMTP_TLS to Smtp_tls for Rdocs.
1498
+ * Moved rdoc.yaml to config/.
1499
+ * moved task/config to task/config/general.
1500
+ * Update tasks.
1459
1501
 
1460
1502
 
1461
- 2007-10-29 transami
1503
+ 2007-11-01 transami
1462
1504
 
1463
- * Remove version.txt. No longer needed.
1464
- * Removed meta/project.yaml, replaced by facets roll file.
1505
+ Changes:
1465
1506
 
1507
+ * Unsorted Changes
1466
1508
 
1467
- 2007-10-28 transami
1509
+ * Added array/only, symbol/to_proc (where did it go?) and hash/select.
1468
1510
 
1469
- Changes:
1511
+ * Update roll file.
1512
+ * Moved test_command_options to test_command.
1513
+ * Update dictionary test to check dup and autohash.
1514
+ * Fixed autohash and dup bugs.
1515
+ * Verbatim support for Rails' version of #alias_method_chain.
1516
+ * Remove site/ directory.
1517
+ * Moved rsync filter up too.
1518
+ * Moved doc/site/ up to doc/.
1519
+ * Added javascript directory to doc/.
1470
1520
 
1471
- * Modifications to command.rb, snapshot and rbsystem.
1472
- * Merged command.rb and command_options.rb into command.rb.
1473
- * Added to_data aliases to snapshot.rb
1474
- * Minor additions to rbsystem. Rather than System, maybe Ruby?
1521
+ * Updates across the board.
1522
+ * Updates to stylize and command.rb.
1523
+ * Made facets.rb a shortcut to facets/facets.rb (this is for Rolls, better way?)
1524
+ * Oh smack. Lots of stuff fixed.
1475
1525
 
1526
+ * Remove version.txt. No longer needed.
1527
+ * Removed meta/project.yaml, replaced by facets roll file.
1476
1528
 
1477
- 2007-10-27 transami
1478
-
1479
- Changes:
1529
+ * Modifications to command.rb, snapshot and rbsystem.
1530
+ * Merged command.rb and command_options.rb into command.rb.
1531
+ * Added to_data aliases to snapshot.rb
1532
+ * Minor additions to rbsystem. Rather than System, maybe Ruby?
1480
1533
 
1481
1534
  * Removed embedded test from overload.rb.
1482
1535
  * Allow OpenStruct#initialize to take a setter block.
@@ -1491,14 +1544,18 @@ Changes:
1491
1544
 
1492
1545
  Changes:
1493
1546
 
1494
- * cleaned up some test and updated version to 2.0.2
1495
- * update methods to eleminate duplicate file names between lib/core and lib/methods
1547
+ * Administrative Changes
1548
+
1549
+ * Cleaned up some test and updated version to 2.0.2
1550
+ * Update methods to eleminate duplicate file names between lib/core and lib/methods
1496
1551
 
1497
1552
 
1498
1553
  == 2.0.1 / 2007-10-06
1499
1554
 
1500
1555
  Changes:
1501
1556
 
1557
+ * Unsorted Changes
1558
+
1502
1559
  * updated version to 2.0.1
1503
1560
  * minor bugs fixes
1504
1561
  * update methods task to display each file as it process it
@@ -1511,345 +1568,249 @@ Changes:
1511
1568
  * Improved Integer#of.
1512
1569
  * Minor improvements to collect.rb and partition.rb
1513
1570
  * Deprecated nonuniq!, bug fixed cluster_by and aliased group_by and partition_by.
1514
- * Rennamed Enumerable#partition_by to group_by (like RUby 1.9) and fixed bug in cluster_by.
1571
+ * Renamed Enumerable#partition_by to group_by (like Ruby 1.9) and fixed bug in cluster_by.
1515
1572
 
1516
1573
 
1517
1574
  == 2.0.0 / 2007-10-02
1518
1575
 
1519
1576
  Changes:
1520
1577
 
1521
- * Added Oliver Renaud to the AUTHORS list (oops!)
1522
- * update README to not use folded lines
1523
- * spellchecked README
1524
- * update test task and test_aop.rb
1525
- * minor update to meta/project.yaml
1526
- * updates to groups task and methods task and version to 'stable'
1527
- * updated test task to allow 'live' test
1528
- * update AUTHORS
1529
- * update test task and move AUTHORS file to toplevel
1530
- * moved note/ to doc/notes
1531
- * update tasks for core/fore move and moved todo to dev/
1532
- * moved fore to core (and core to methods)
1533
-
1534
-
1535
- 2007-09-20 transami
1536
-
1537
- * update test and install tasks
1538
- * require fixes to cut.rb and attributes.rb
1539
- * fixed tests for string/nchar and kernel/silence
1540
- * Fixed String#brief in format.rb
1541
-
1542
-
1543
- 2007-09-13 transami
1544
-
1545
- * removed 1stClassMethod from "more" docs
1546
- * removed 1stClassMethod as a rdoc target (now in Core target)
1547
- * update install and rdoc tasks
1548
- * moved string/test_index.rb to string/test_nchar.rb
1549
- * updated indexable tests
1550
- * update string.rb to include string/nchar.rb
1551
- * moved index.rb to nchar.rb
1552
- * clean up string/index.rb
1553
-
1554
-
1555
- 2007-09-12 transami
1556
-
1557
- * moved facets.rb to fore directory
1558
- * add comment to groups task
1559
- * added groups task
1560
- * updated all extrension group files (array.rb, binding.rb, etc.)
1561
- * uncapitalize meta files
1562
- * update methods task a bit more, plus related configuration
1563
- * updated methods task
1564
- * removed lib/core --this is generated content (may be renamed too)
1565
- * added load and stats tasks
1566
- * update install task --this replaces setup b/c of Facets' special install needs
1567
- * update project file
1568
- * removed lib/facets
1569
- * moved remaining libs to fore (will later consider an additional subdivision)
1570
- * move facets/fore to fore/facets
1571
- * move facets/more to more/facets
1572
- * added ;ob/core, more and fore
1573
- * move memorize
1574
-
1575
-
1576
- 2007-09-10 transami
1577
-
1578
- * removed io and net directories
1579
- * moved io/redirect.rb to more/ioredirect.rb and net/smtp_tls.rb and net/uploadutils.rb libs to more too.
1580
- * few more libs moved to more/ directory
1581
- * moved all the most obvious more libs to the more directory
1582
- * moved fore "grouping" libs to fore directory
1583
- * moved "fore" libs to fore directory
1584
- * create for and more directories (yes, you know what's coming ;)
1585
- * renamed remain.rb (was main_as_module.rb) to just main.rb
1586
- * improved rdoc task and project.yaml file
1587
- * better docs for OpenObject
1588
- * improved method hiding
1589
-
1590
-
1591
- 2007-09-07 transami
1592
-
1593
- * documentation touch ups
1594
- * fixes for conversion.rb rather than conversions.rb
1595
- * updated to website docs
1596
- * moved demos to demo/sample
1597
- * added bench and sample dir to demo
1598
-
1599
-
1600
- 2007-09-06 transami
1601
-
1602
- * moved spy.html to light.html
1603
- * menum change to webpage, fixed core doc link
1604
- * moved metadata files to meta/ (info/ or box/ would be better?)
1605
- * updated test_conversion.rb for to_h/to_hash
1606
- * reverse_each instead of each for after advice in advice.rb
1607
- * final fix to to_h/to_hash discrepency
1608
- * added a Path and Root features to Pathname (good idea?)
1609
-
1610
-
1611
- 2007-09-05 transami
1612
-
1613
- * update advice.rb test and moved old cut test to dev/scrap
1614
- * updated advice; removed preinitialize.rb to trinkets project (it was too expiremental)
1615
- * command_filter.rb needs to considered/developed; moved to dev/new/
1616
- * fixed interface.rb fo singelton methods
1617
- * updates to tests
1618
- * whole lot of small bug fixes
1619
- * add tests to revision control
1620
- * removed old cut test (moved to dev/scrap)
1621
- * working on tests
1622
-
1623
-
1624
- 2007-09-04 transami
1625
-
1626
- * added read.rb (taken from readwrite.rb)
1627
- * split readwrite.rb into read.rb and write.rb
1628
- * remove string/unpack.rb, offset can be had using '@' format instead
1629
- * renamed conversions.rb to conversion.rb, fixed some requires
1630
- * improved attr.rb
1631
- * some cleanup of enumerable extensions
1632
- * setup annotations demo
1633
-
1634
-
1635
- 2007-09-03 transami
1636
-
1637
- * add non-embedded tests
1638
-
1639
-
1640
- 2007-09-02 transami
1641
-
1642
- * finally brough over toadcode prototype.rb and cleaned it up enough to be useful
1643
- * removed annotations subdir
1644
- * moved annotations/ann.rb and attr.rb to annotations.rb and attributes.rb
1645
- * remove annotations.rb
1646
- * moved annotations/settings.rb up a dir
1647
- * remove settings.rb
1648
- * chnaged multiton_id(e) to multiton_id(*e,&b)
1649
- * updated test task
1650
- * added Christoph Rippel to authors lists
1651
- * added doc header to new multiton class
1652
- * update to new version of multiton
1653
- * playing around with multiton2.rb
1654
- * renamed dev/try to dev/new
1655
- * created dev/old to temporarily house old versions of libs that have been replaced.
1656
- * fixed quick.html documentation
1657
- * used old wiki.gif as email.gif instead
1658
- * fixed config.yaml publish entry
1659
- * some minor updates to index.html
1660
-
1661
-
1662
- 2007-09-01 transami
1663
-
1664
- * moved site to doc/site
1665
- * update to publish task
1666
- * updates of tasks
1667
- * added kernel/report.rb to hold debug/warn extensions.
1668
- * renamed reporting.rb to silence.rb
1669
- * update reporting.rb (created report.rb from it)
1670
- * task work
1671
- * clean up dev finis
1672
- * cleanup dev just a bit more
1673
- * continue cleanup of dev directory
1674
- * moved dev/twiki to misc/
1675
- * removed dev/core
1676
- * moved require_directory.rb to misc/
1677
- * added dev/misc for code scraps that might be useful but are not straight lib or task code
1678
- * more dev changes
1679
- * organize dev better
1680
- * cleanup of dev continues
1681
- * cleanup of dev dir
1682
- * clean up dev dir more
1683
- * some cleanup of dev directory
1684
-
1578
+ * General Enhancements
1685
1579
 
1686
- 2007-08-31 transami
1687
-
1688
- * almost completed advice lib
1689
- * added comment about possible update
1690
- * deprecate instance_send and instance_map
1691
- * work on rdoc task
1692
- * work on rdoc task
1693
-
1694
-
1695
- 2007-08-30 transami
1696
-
1697
- * added dev/cut dir
1698
-
1699
-
1700
- 2007-08-29 transami
1701
-
1702
- * no reason to track .config
1703
- * clean up trunk
1704
- * added todo comment
1705
- * added advice.rb to replace old aspects.rb
1706
- * removed aspects.rb (sucked), added prototype.rb (infancy) and adjusted to class_extension.rb
1707
- * removed #to_roman (now part of the English project)
1708
- * cont. work on aop and cuts
1709
- * fixed IMG tag bug
1710
- * added yaml.rb
1711
- * move #here convenience method to binding/eval (separate?)
1712
- * added in order to remove kernel/misc.rb
1713
- * consolidate string/regesc
1714
- * added module/methods
1715
- * updates to include and attr
1716
-
1717
-
1718
- 2007-08-28 transami
1719
-
1720
- * fixed Range#umbrella
1721
- * more organization of docs
1722
- * orginizing docs
1723
-
1724
-
1725
- 2007-08-27 transami
1726
-
1727
- * update val.rb
1728
- * added proc/fn.rb (from kernel/misc.rb) and fixed typo in compose.rb
1729
- * moved misc.rb to val.rb
1730
- * better organization of some kernel methods
1731
- * moved #here alias to eval.rb
1732
- * minor updates and some bug fixes (modspace what broke)
1733
- * removed file/yaml.rb in favor or just yaml.rb
1734
- * moved this to facets/yaml.rb
1735
-
1736
-
1737
- 2007-08-25 transami
1738
-
1739
- * work on aop system
1740
- * Added aop.rb, and cut.r and recursive.rb
1741
- * moved cut.rb to dev (old version will be deprecated)
1742
- * added to_hash to Dictionary, and minor mods to others
1743
-
1744
-
1745
- 2007-08-24 transami
1746
-
1747
- * oops, no need for enumerator directory
1748
- * moved threaded_send.rb to mapsend.rb
1749
- * moved threaded_send out of enumerable/ dir
1750
- * updates to elementor.rb
1751
- * merged instance_map into threaded_send
1752
- * removed map_send
1753
- * merging map_send with threaded_send
1754
-
1755
-
1756
- 2007-08-23 transami
1757
-
1758
- * cont work on elementwise methods
1759
- * divide elementwise functions betwee two libs
1760
- * uniq.rb is merged into count.rb
1761
- * removed count.rb (uniq.rb will become count.rb)
1762
-
1763
-
1764
- 2007-08-22 transami
1765
-
1766
- * continued refinement of enumerable extensions
1767
- * general improvements to the organization of enumerable extensions
1768
-
1769
-
1770
- 2007-08-19 transami
1771
-
1772
- * removed facets/cli dir
1773
- * moved all cli libs from facets/cli to facets/
1774
- * moved cli support files to facets locations
1775
- * moved cli lib to facets main (also modified functor)
1776
-
1777
-
1778
- 2007-08-18 transami
1779
-
1780
- * renamed hash/reverse to hash/merge (it contains #reverse_merge)
1781
-
1782
-
1783
- 2007-08-11 transami
1784
-
1785
- * remove instance_intercept (moced to Trinkets project)
1786
-
1787
-
1788
- 2007-08-10 transami
1580
+ * Added Oliver Renaud to the AUTHORS list (oops!)
1789
1581
 
1790
- * continued modification of those tasky tools
1791
- * removed lib/more (this is it!)
1792
- * moved M-Z of more/facets to facets (this is it!)
1793
- * moved A-L of more/facets to facets (this is it!)
1794
- * removed lib/core (this is it!)
1795
- * moved lib/core/facets.rb to lib/facets.rb (this is it!)
1796
- * moved lib/core/facets to lib/facets (this is it!)
1797
- * added file/yaml.rb
1798
- * added a list of libraries considered "core"
1799
- * continued work on build tools
1800
- * change tools for core/more convergence (so help us god!)
1801
- * added conversion requirement to some core libs
1802
- * update methods task
1803
-
1804
- * update quick.html to mirror rdoc changes --still needs work though
1805
- * remove old rdoc task
1806
- * added rdoc section (minimal) to tool/config.yaml
1807
- * nope. remove site/rdoc
1808
- * add rdoc dir, should we?
1809
- * remove site/rdoc in preperation for new way
1810
- * facets.rb belongs to core/
1811
- * renamed some doc files
1812
- * removed src/core
1813
- * move src/core/lin to lib/core
1814
- * added kernel/constant
1815
- * remove src/core/web
1816
- * moving more of core to top-level (svn sucks!)
1817
- * moving core support files to top-level
1818
- * removed src/more
1819
- * move src/more/lib to lib/more
1820
- * made lib dir (to replace src)
1821
- * added settings.rb which points to annotations/settings.rb
1822
- * moved svn to annotations/ subdir
1823
- * moved dev files to top-level as part of more transition
1824
- * temporarily removed dev/more
1825
- * moved annotations demo to demo dir
1826
- * added demo folder
1827
- * add dev/more
1828
- * remove struct again! (stupid svn)
1829
- * moved file to top-level doc as part of more transisiton
1830
- * bullshit svn crap
1831
- * ann moved back to more (strongly considering annotations for it's own project)
1832
- * build moved back to more
1833
- * aop moved back to more
1834
- * cast moved back to more
1835
- * crypt moved back to more
1836
- * exts moved back to more
1837
- * file moved back to more
1838
- * meta moved back to more
1839
- * misc moved back to more
1840
- * model moved back to more
1841
- * struct moved to back to more
1842
- * moved sync back to more
1582
+ * Bug Fixes
1843
1583
 
1584
+ * Fix requires in `cut.rb` and `attributes.rb`.
1585
+ * Fix `String#brief` in `format.rb`.
1586
+
1587
+ * Unsorted Changes
1588
+
1589
+ * removed 1stClassMethod from "more" docs
1590
+ * removed 1stClassMethod as a rdoc target (now in Core target)
1591
+ * update install and rdoc tasks
1592
+ * moved string/test_index.rb to string/test_nchar.rb
1593
+ * updated indexable tests
1594
+ * update string.rb to include string/nchar.rb
1595
+ * moved index.rb to nchar.rb
1596
+ * clean up string/index.rb
1597
+ * moved facets.rb to fore directory
1598
+ * add comment to groups task
1599
+ * added groups task
1600
+ * updated all extrension group files (array.rb, binding.rb, etc.)
1601
+ * uncapitalize meta files
1602
+ * update methods task a bit more, plus related configuration
1603
+ * updated methods task
1604
+ * removed lib/core --this is generated content (may be renamed too)
1605
+ * added load and stats tasks
1606
+ * update install task --this replaces setup b/c of Facets' special install needs
1607
+ * update project file
1608
+ * removed lib/facets
1609
+ * moved remaining libs to fore (will later consider an additional subdivision)
1610
+ * move facets/fore to fore/facets
1611
+ * move facets/more to more/facets
1612
+ * added ;ob/core, more and fore
1613
+ * move memorize
1614
+ * removed io and net directories
1615
+ * moved io/redirect.rb to more/ioredirect.rb and net/smtp_tls.rb and net/uploadutils.rb libs to more too.
1616
+ * few more libs moved to more/ directory
1617
+ * moved all the most obvious more libs to the more directory
1618
+ * moved fore "grouping" libs to fore directory
1619
+ * moved "fore" libs to fore directory
1620
+ * create for and more directories (yes, you know what's coming ;)
1621
+ * renamed remain.rb (was main_as_module.rb) to just main.rb
1622
+ * improved rdoc task and project.yaml file
1623
+ * better docs for OpenObject
1624
+ * improved method hiding
1625
+ * documentation touch ups
1626
+ * fixes for conversion.rb rather than conversions.rb
1627
+ * updated to website docs
1628
+ * moved demos to demo/sample
1629
+ * added bench and sample dir to demo
1630
+ * moved spy.html to light.html
1631
+ * menum change to webpage, fixed core doc link
1632
+ * moved metadata files to meta/ (info/ or box/ would be better?)
1633
+ * updated test_conversion.rb for to_h/to_hash
1634
+ * reverse_each instead of each for after advice in advice.rb
1635
+ * final fix to to_h/to_hash discrepency
1636
+ * added a Path and Root features to Pathname (good idea?)
1637
+ * update advice.rb test and moved old cut test to dev/scrap
1638
+ * updated advice; removed preinitialize.rb to trinkets project (it was too expiremental)
1639
+ * command_filter.rb needs to considered/developed; moved to dev/new/
1640
+ * fixed interface.rb fo singelton methods
1641
+ * updates to tests
1642
+ * whole lot of small bug fixes
1643
+ * add tests to revision control
1644
+ * removed old cut test (moved to dev/scrap)
1645
+ * working on tests
1646
+ * added read.rb (taken from readwrite.rb)
1647
+ * split readwrite.rb into read.rb and write.rb
1648
+ * remove string/unpack.rb, offset can be had using '@' format instead
1649
+ * renamed conversions.rb to conversion.rb, fixed some requires
1650
+ * improved attr.rb
1651
+ * some cleanup of enumerable extensions
1652
+ * setup annotations demo
1653
+ * add non-embedded tests
1654
+ * finally brough over toadcode prototype.rb and cleaned it up enough to be useful
1655
+ * removed annotations subdir
1656
+ * moved annotations/ann.rb and attr.rb to annotations.rb and attributes.rb
1657
+ * remove annotations.rb
1658
+ * moved annotations/settings.rb up a dir
1659
+ * remove settings.rb
1660
+ * chnaged multiton_id(e) to multiton_id(*e,&b)
1661
+ * updated test task
1662
+ * added Christoph Rippel to authors lists
1663
+ * added doc header to new multiton class
1664
+ * update to new version of multiton
1665
+ * playing around with multiton2.rb
1666
+ * renamed dev/try to dev/new
1667
+ * created dev/old to temporarily house old versions of libs that have been replaced.
1668
+ * fixed quick.html documentation
1669
+ * used old wiki.gif as email.gif instead
1670
+ * fixed config.yaml publish entry
1671
+ * some minor updates to index.html
1672
+ * moved site to doc/site
1673
+ * update to publish task
1674
+ * updates of tasks
1675
+ * added kernel/report.rb to hold debug/warn extensions.
1676
+ * renamed reporting.rb to silence.rb
1677
+ * update reporting.rb (created report.rb from it)
1678
+ * task work
1679
+ * clean up dev finis
1680
+ * cleanup dev just a bit more
1681
+ * continue cleanup of dev directory
1682
+ * moved dev/twiki to misc/
1683
+ * removed dev/core
1684
+ * moved require_directory.rb to misc/
1685
+ * added dev/misc for code scraps that might be useful but are not straight lib or task code
1686
+ * more dev changes
1687
+ * organize dev better
1688
+ * cleanup of dev continues
1689
+ * cleanup of dev dir
1690
+ * clean up dev dir more
1691
+ * some cleanup of dev directory
1692
+ * almost completed advice lib
1693
+ * added comment about possible update
1694
+ * deprecate instance_send and instance_map
1695
+ * work on rdoc task
1696
+ * work on rdoc task
1697
+ * added dev/cut dir
1698
+ * no reason to track .config
1699
+ * clean up trunk
1700
+ * added todo comment
1701
+ * added advice.rb to replace old aspects.rb
1702
+ * removed aspects.rb (sucked), added prototype.rb (infancy) and adjusted to class_extension.rb
1703
+ * removed #to_roman (now part of the English project)
1704
+ * cont. work on aop and cuts
1705
+ * fixed IMG tag bug
1706
+ * added yaml.rb
1707
+ * move #here convenience method to binding/eval (separate?)
1708
+ * added in order to remove kernel/misc.rb
1709
+ * consolidate string/regesc
1710
+ * added module/methods
1711
+ * updates to include and attr
1712
+ * fixed Range#umbrella
1713
+ * more organization of docs
1714
+ * orginizing docs
1715
+ * update val.rb
1716
+ * added proc/fn.rb (from kernel/misc.rb) and fixed typo in compose.rb
1717
+ * moved misc.rb to val.rb
1718
+ * better organization of some kernel methods
1719
+ * moved #here alias to eval.rb
1720
+ * minor updates and some bug fixes (modspace what broke)
1721
+ * removed file/yaml.rb in favor or just yaml.rb
1722
+ * moved this to facets/yaml.rb
1723
+ * work on aop system
1724
+ * Added aop.rb, and cut.r and recursive.rb
1725
+ * moved cut.rb to dev (old version will be deprecated)
1726
+ * added to_hash to Dictionary, and minor mods to others
1727
+ * oops, no need for enumerator directory
1728
+ * moved threaded_send.rb to mapsend.rb
1729
+ * moved threaded_send out of enumerable/ dir
1730
+ * updates to elementor.rb
1731
+ * merged instance_map into threaded_send
1732
+ * removed map_send
1733
+ * merging map_send with threaded_send
1734
+ * cont work on elementwise methods
1735
+ * divide elementwise functions betwee two libs
1736
+ * uniq.rb is merged into count.rb
1737
+ * removed count.rb (uniq.rb will become count.rb)
1738
+ * continued refinement of enumerable extensions
1739
+ * general improvements to the organization of enumerable extensions
1740
+ * removed facets/cli dir
1741
+ * moved all cli libs from facets/cli to facets/
1742
+ * moved cli support files to facets locations
1743
+ * moved cli lib to facets main (also modified functor)
1744
+ * renamed hash/reverse to hash/merge (it contains #reverse_merge)
1745
+ * remove instance_intercept (moced to Trinkets project)
1746
+ * continued modification of those tasky tools
1747
+ * removed lib/more (this is it!)
1748
+ * moved M-Z of more/facets to facets (this is it!)
1749
+ * moved A-L of more/facets to facets (this is it!)
1750
+ * removed lib/core (this is it!)
1751
+ * moved lib/core/facets.rb to lib/facets.rb (this is it!)
1752
+ * moved lib/core/facets to lib/facets (this is it!)
1753
+ * added file/yaml.rb
1754
+ * added a list of libraries considered "core"
1755
+ * continued work on build tools
1756
+ * change tools for core/more convergence (so help us god!)
1757
+ * added conversion requirement to some core libs
1758
+ * update methods task
1759
+ * update quick.html to mirror rdoc changes --still needs work though
1760
+ * remove old rdoc task
1761
+ * added rdoc section (minimal) to tool/config.yaml
1762
+ * nope. remove site/rdoc
1763
+ * add rdoc dir, should we?
1764
+ * remove site/rdoc in preperation for new way
1765
+ * facets.rb belongs to core/
1766
+ * renamed some doc files
1767
+ * removed src/core
1768
+ * move src/core/lin to lib/core
1769
+ * added kernel/constant
1770
+ * remove src/core/web
1771
+ * moving more of core to top-level (svn sucks!)
1772
+ * moving core support files to top-level
1773
+ * removed src/more
1774
+ * move src/more/lib to lib/more
1775
+ * made lib dir (to replace src)
1776
+ * added settings.rb which points to annotations/settings.rb
1777
+ * moved svn to annotations/ subdir
1778
+ * moved dev files to top-level as part of more transition
1779
+ * temporarily removed dev/more
1780
+ * moved annotations demo to demo dir
1781
+ * added demo folder
1782
+ * add dev/more
1783
+ * remove struct again! (stupid svn)
1784
+ * moved file to top-level doc as part of more transisiton
1785
+ * bullshit svn crap
1786
+ * ann moved back to more (strongly considering annotations for it's own project)
1787
+ * build moved back to more
1788
+ * aop moved back to more
1789
+ * cast moved back to more
1790
+ * crypt moved back to more
1791
+ * exts moved back to more
1792
+ * file moved back to more
1793
+ * meta moved back to more
1794
+ * misc moved back to more
1795
+ * model moved back to more
1796
+ * struct moved to back to more
1797
+ * moved sync back to more
1844
1798
  * moved commandoptions.rb to command_options.rb
1845
1799
  * rewrote command and command options libs
1846
1800
  * initial Subversion import
1847
1801
 
1848
1802
 
1849
- == 1.8.54 / 2007-02-19
1803
+ == 1.8.54 / 2007-03-21
1804
+
1805
+ The following list of changes also includes changes from intrim releases,
1806
+ `1.8.51 / 2007-02-19`, `1.8.49 / 2007-02-16`, `1.8.20 / 2007-02-06` and
1807
+ `1.8.8 / 2007-01-31`. Unfortuantely the transition form darcs to git,
1808
+ led to some information loss in this regard.
1850
1809
 
1851
1810
  Changes:
1852
1811
 
1812
+ * Unsorted Changes:
1813
+
1853
1814
  * added reqiure to ostruct.rb test
1854
1815
  * fix to command.rb's initializer
1855
1816
  * fixed bug with times.rb beginning_of_year and beginning_of_month
@@ -1911,23 +1872,16 @@ Changes:
1911
1872
 
1912
1873
  == 1.8.0 / 2007-01-24
1913
1874
 
1875
+ The list of changes also includes intrim releases `1.7.46 September 8, 2006`,
1876
+ `1.7.38 August 31, 2006`, and `1.7.30 August 23, 2006`.
1877
+
1914
1878
  Changes:
1915
1879
 
1916
- * added buildingblock.rb, replaced builderobject.rb
1917
- * adjust require for "yored" files
1918
- * HtmlBuilder and XMLBuilder aer now based on BuildingBlock
1919
- * bug fix for command.rb
1920
- * minor improvements to basic object (object_self to access kernel methods)
1921
- * ostuct adjustment, use #instance_delegate to get underneth the open access
1922
- * module/include_as is now based on module/namespace (thanks Pit!)
1923
- * minor adjustments to methods for (class<<self;self;end)
1924
- * fixed enumerable/partition_by
1925
- * further updates to project info file (need to stop versioning this)
1926
- * deprecated (yored) builderobject.rb (poor implementation)
1880
+ * Additions
1881
+
1882
+ * Add facets/automatic.rb, very cool, albiet experimental, way to load core methods automatically!
1927
1883
  * added hash/insert; like store but only if key isn't already present
1928
1884
  * added module/include_and_extend
1929
- * facets.rb now references facets/sys.rb
1930
- * added facets/automatic -- very cool, albiet expiremental way to load core methods automatically!
1931
1885
  * added File::mulitglob_sum; accumulates file patterns, and accepts '+' and '-' prefixes
1932
1886
  * added module/module_method; like module_function but makes method public
1933
1887
  * added module/include_function_module; attempts to properly include one function_module into another
@@ -1939,7 +1893,6 @@ Changes:
1939
1893
  * added module/prepend; provides dyanamic method wraps for modules, and static wraps for classes
1940
1894
  * added module/new; use a module as if it were a class
1941
1895
  * added module/alias_accessor
1942
- * renamed #superior to #super_at
1943
1896
  * kernel/instance_class; yet anouther meta_class name, but a more sensicle name this one
1944
1897
  * added kernel/populate; populates an object's inst. vars from a hash or assingment block
1945
1898
  * added kernel/daemonize; one last thanks to DHH!
@@ -1957,14 +1910,9 @@ Changes:
1957
1910
  * array/index takes a block
1958
1911
  * added fileutils/compress; very simple convenience methods for archiving folders
1959
1912
  * added fileutils/stage adn staged, a means of transfering files accoring to preset rules
1960
- * had to remove taskable.rb for now (implementation won't work as toplevel include)
1961
1913
  * added kernel/ask, simply command to get console input
1962
- * moved deprecated #facet_require to yore lib
1963
- * deprecated (yored) kernel/own, yet another term for the singleton class
1964
- * renamed quaclass to qua_class
1965
1914
  * added populate.rb, mixin for classes that need on a basic initializer
1966
1915
  * added version_number.rb (a specialized tuple)
1967
- * OpenObject = OpenHash (OpenObject will eventually be deprecated)
1968
1916
  * added uploadutils.rb
1969
1917
  * added Joel VanderWerf's great script.rb script
1970
1918
  * added Austin's minitar.rb --it's just too damn useful!
@@ -1972,20 +1920,55 @@ Changes:
1972
1920
  * added dependency.rb, allwos method to have dependend execution (like rake tasks)
1973
1921
  * added arguments.rb this is for parsing console command arguments
1974
1922
  * add new version of annotations: ann.rb and ann_attr.rb
1975
- * memoize should now work at toplevel
1923
+ * added File::yaml? to roughly detect if a file is a yaml file
1924
+
1925
+ * Renamed Features
1926
+
1927
+ * Rename #superior to #super_at.
1928
+ * OpenObject = OpenHash (OpenObject will eventually be deprecated)
1929
+ * renamed quaclass to qua_class
1930
+ * renamed openobject to openhash !!!
1931
+
1932
+ * Deprecations
1933
+
1934
+ * had to remove taskable.rb for now (implementation won't work as toplevel include)
1935
+ * deprecated (yored) kernel/own, yet another term for the singleton class
1976
1936
  * removed dataobject.rb (was never used)
1977
- * minor doc change to instance_intercept.rb
1978
- * doc change to methodfilter.rb (maybe deprecat in future)
1979
1937
  * deprecated (yored!) module/inject; what a silly method
1980
- * added File::yaml? to roughly detect if a file is a yaml file
1981
1938
  * deprecated kernel/require_facet (no longer needed)
1982
- * moved old module/namespace implementation to yore
1939
+
1940
+ * Bug Fixes
1941
+
1942
+ * Fix enumerable/partition_by.
1943
+ * memoize should now work at toplevel
1944
+ * minor bug fix to httpaccess
1945
+
1946
+ * General Enhancments
1947
+
1948
+ * Add buildingblock.rb, replacing builderobject.rb.
1949
+ * HtmlBuilder and XMLBuilder aer now based on BuildingBlock
1950
+ * adjust require for "yored" files
1951
+ * minor improvements to basic object (object_self to access kernel methods)
1952
+ * ostuct adjustment, use #instance_delegate to get underneth the open access
1953
+ * module/include_as is now based on module/namespace (thanks Pit!)
1954
+ * minor adjustments to methods for (class<<self;self;end)
1955
+ * facets.rb now references facets/sys.rb
1983
1956
  * adjust old annotation.rb (now in yore) to use openhash
1957
+
1958
+ * Admin Adjustments
1959
+
1960
+ * further updates to project info file (need to stop versioning this)
1961
+ * deprecated (yored) builderobject.rb (poor implementation)
1962
+ * moved deprecated #facet_require to yore lib
1963
+ * minor doc change to instance_intercept.rb
1964
+ * doc change to methodfilter.rb (maybe deprecat in future)
1965
+ * moved old module/namespace implementation to yore
1966
+
1967
+ * Unsorted Changes
1968
+
1984
1969
  * moved plugin.rb to ratchets/library project
1985
- * renamed openobject to openhash !!!
1986
1970
  * proper credit for multiton goes to Ara T. Howard!!!! Also improvements.
1987
1971
  * remove library.rb (move to ratchets/library project)
1988
- * minor bug fix to httpaccess
1989
1972
  * updated autovivify.rb to use openhash
1990
1973
  * improvement to command.rb
1991
1974
  * imporved time/stamp
@@ -2110,7 +2093,6 @@ Changes:
2110
2093
  * started setting project tasks up for sake
2111
2094
  * updates to enumerable each_slice
2112
2095
  * updated names of meta files
2113
- * updates to READMEs
2114
2096
  * added trace to command.rb
2115
2097
  * organizational changes
2116
2098
 
@@ -2119,33 +2101,39 @@ Changes:
2119
2101
 
2120
2102
  Changes:
2121
2103
 
2122
- * fix to inifinty.rb
2123
- * comment on cut.rb needed a quick fix
2124
- * updated infinity
2125
- * added tkxml.rb
2126
- * allow tasks to to arguments (all dependent tasks must take same args)
2127
- * update infinity.rb to conform more with common standards
2128
- * error catch added to command.rb (thanks Jonas)
2129
- * added singleton annotations
2130
- * minor improvement to wrap_method and proc/compose
2131
- * added more/infinity.rb
2132
- * major improvement to String#singular and plural
2133
- * update normalize_keys to take a proc instead of a "send" parameter
2134
- * projectinfo backups change
2135
- * added cuts implimentation
2136
- * separated integer/op_mul from compose, op_mul now composes and Integer#of
2137
- * wrap_method, no need to undef method before redefining it
2138
- * move calibre files (will we do ever use?) to work/pore/meta
2104
+ * Additions
2105
+
2106
+ * Add Infinity class.
2107
+ * Add `tkxml.rb`.
2108
+ * Add singleton Annotations.
2109
+ * Add Cuts implimentation.
2110
+
2111
+ * Improvements
2112
+
2113
+ * Improve command.rb with error catch. (Jonas)
2114
+ * Improve #wrap_method, no need to undef method before redefining.
2115
+ * Improve String#singular and plural.
2116
+ * Improve #normalize_keys to take a proc instead of a "send" parameter.
2117
+
2118
+ * Bug Fixes
2119
+
2120
+ * Add #to_a to OpenObject.
2121
+ * Fix instance_interception test.
2122
+
2123
+ * Miscellaneous Enhancements
2124
+
2125
+ * Add hash/op_div.rb and array/op_div.rb.
2126
+ * Allow tasks to do arguments (all dependent tasks must take same args)
2127
+ * Separated integer/op_mul from compose, op_mul now composes and Integer#of.
2139
2128
  * added work dir to repo
2140
- * fix instance_interception test
2129
+
2141
2130
  * doc cleanup
2142
- * added hash/op_div and array/op_div to BASE.
2131
+
2143
2132
  * remove kernel/called and fixed callee,__callee__ and __method__.
2144
2133
  * just about prefected OpenObject
2145
2134
  * keys_to_sym to symbolize_keys usage
2146
2135
  * remove explore dir, perhaps better to do without midstage
2147
- * added to_a to OpenObject
2148
- * minor touchup to opencascade
2136
+
2149
2137
 
2150
2138
 
2151
2139
  == 1.6.0 / 2006-07-20
@@ -2153,7 +2141,11 @@ Changes:
2153
2141
  Changes:
2154
2142
 
2155
2143
  * PrivateAccess expiremental class
2156
- * added reverse_merge (from Active Support)
2144
+
2145
+ * Additions
2146
+
2147
+ * Add Hash#reverse_merge (from ActiveSupport).
2148
+
2157
2149
  * adjustments to stringify_keys, record normalize_keys
2158
2150
  * work on other Hash subclasses Dictionary, OpenCascade, and Hash#having_fallback features
2159
2151
  * added some core methods enumerable#divide, array and hash op_div, kernel/meta
@@ -2197,502 +2189,198 @@ Changes:
2197
2189
  * added settings.rb from glue
2198
2190
  * openobject uses self[] instead of @table[]
2199
2191
  also update proj/infp to start 1.5 series
2200
- * deprecate BaasicObject
2201
-
2202
-
2203
- == 1.4.5 / 2006-07-05
2204
-
2205
- Changes:
2206
-
2207
- * move ProjectInfo to proj/info
2208
- * better arrangment of repository
2209
- * Added nil#status, module#alias_method_chain and enumerable#cascade.
2210
- nil#status - Allows a messgae to be passed through a failure chain.
2211
- module#alias_method_chain - from rails this is clever idiom for
2212
- module-based method wrapping. A limited solution, but since
2213
- there's no standard solution as of yet, well support til then.
2214
- enumerable#cascade - cascade a list of action on each element
2215
- of an enumerable.
2216
- * method missing in htmlbuilder effected by basic object fix
2217
- * minor update to functor.rb
2218
- * change WebAgent to Web
2219
- * Removed hash/keys_to_iv b/c it is a poor name. Since the alternative of
2220
- keys_to_instance_variables conveys the wrong idea, decided to just get
2221
- rid of this. Instead use the Rails compatibile hash/variablize_keys.
2222
- * 1.4RC3
2223
- * initial import
2224
-
2225
-
2226
- == 1.4.4 / 2007-07-03
2227
-
2228
- Changes:
2229
-
2230
- * added nil#status - Allows a messgae to be passed through
2231
- a failure chain.
2232
- * added module#alias_method_chain - from rails this is clever
2233
- idiom for module-based method wrapping. A limited
2234
- solution, but since there's no standard solution as
2235
- of yet, well support til then.
2236
- * added enumerable#cascade - cascade a list of actions on each
2237
- element of an enumerable. Better name for this?
2238
- * method missing in htmlbuilder effected by BasicObject fix
2239
- (use __self__.method instead of __metod__)
2240
- * minor update to functor.rb. Added @self = function.binding.self.
2241
- Still tweaking for best meta informatin access.
2242
- * change WebAgent to Web
2243
- * Removed hash/keys_to_iv b/c it is a poor name. Since the alternative
2244
- of #keys_to_instance_variables conveys the wrong idea, decided to just
2245
- get rid of this. Instead use the hash#variablize_keys which is also
2246
- Rails compatibile.
2247
-
2248
-
2249
- == 1.4.2 / 2006-06-21
2250
-
2251
- Changes:
2252
-
2253
- * Started using Darcs --finally!
2254
- * Transition to Darcs has interupted ChangeLog though :(
2255
- * Mostly minor fixes in prepeartion for official 1.4 release.
2256
- * Adjusted BasicObject slightly, further reducing unhidden methods.
2257
- Among them __object__, __method__ and #as. Also added method_missing
2258
- that detects shadow methods and rebinds them to Object. Keep in mind
2259
- that woun't help you if you override method_missing which is
2260
- typical for this class.
2261
- * Fixed bug in BasicObject#__self__.
2262
-
2263
-
2264
- == 1.4.0 / 2006-06-05
2265
-
2266
- Changes:
2267
-
2268
- * Added Cookie, HTTP and HTTPAccess of ...'s library.
2269
- * OpenObject's __get__ and __set__ methods have been changed
2270
- to __fetch__ and __store__ to correspond to the Hash methods.
2271
- * Added OpenCascade, which is like OpenObject but chains access.
2272
- * Added ...'s lazy.rb which include's Future and Promise classes.
2273
- * Added task.rb, which provides a Rake interface compatible task
2274
- system, but that can be used in any code.
2275
- * Improved Hash#traverse (it now does all traversing before yielding).
2276
- * kernel/me, kernel/methodname and kernel/method_name have all been
2277
- deprecated in favor of the 1.9 standard kernel/__method__ and
2278
- kernel/__callee__.
2279
- * Console::Application is deprecated and is no longer an alias for
2280
- Console::Command.
2281
- * Console::Command also now supports run-on flags (eg. -xvzf).
2282
- * More's classinherit.rb has been removed, and classmethods.rb will be
2283
- too in another version or two. You should transition all uses of
2284
- these to core/module/class_extension.rb.
2285
- * Updated tuple.rb so that when a string is converted to a Tuple (#to_t)
2286
- the values wll be made integers if they are composed of only numbers.
2287
- If you need all strings you can use a block since the block bypasses
2288
- this auto coercement, eg. to_t{ |v| v }.
2289
-
2290
-
2291
- == 1.3.1 / 2006-04-17
2292
-
2293
- Changes:
2294
-
2295
- * Deprecated string/to_arr, and slightly adjusted string#to_a.
2296
- (Not commonly used so not a major change.)
2297
- * Minor bug fixes.
2298
-
2299
-
2300
- == 1.3.0 / 2006-04-05
2301
-
2302
- Changes:
2303
-
2304
- * Ported parts of Nitro's Glue library to Facets.
2305
- * more/aspects.rb
2306
- * core/module/on_included.rb
2307
- * core/module/expirable.rb
2308
- * core/enumerable/accumulate.rb
2309
- * Added xoxo.rb, json.rb and rtals.rb.
2310
- * Repaired missing data files for units.rb.
2311
- * Moved cattr methods from module/ to class/.
2312
- * mattr methods are in limbo at the moment.
2313
- (They were aliases for cattr.)
2314
-
2315
-
2316
- == 1.2.1 / 2006-03-29
2317
-
2318
- Changes:
2319
-
2320
- * kernel/meta has been renamed to kernel/instance
2321
-
2322
-
2323
- == 1.2.0 / 2006-03-24
2324
-
2325
- Changes:
2326
-
2327
- * Added zimba.tm's string/modulize, pathize and methodize.
2328
- * Added some Gem methods, self/active?, self/gemspec, self/gempath.
2329
-
2330
-
2331
- == 1.0.3 / 2006-02-10
2332
-
2333
- Changes:
2334
-
2335
- * A last ditch attempt to keep facets and calibre as one project.
2336
- * Added _why's Array modulo.
2337
-
2338
2192
 
2339
- == 1.0.0 / 2005-12-04
2340
-
2341
- Okay. Now we've finally hit our 1.0.0 relase. Yea! Does it desrve 1.0 at this point?
2342
- Ah, well close enough. Mainly there won't be anymore silly development names ;)
2343
-
2344
- Changes:
2345
-
2346
- * Sped up string#similarity.
2347
- * By popular protest deprecated usage of "AClass.use Facets, :amethod".
2348
- * Created nicer layout of facets/support, /group, /english (one day /method).
2349
- * Odd sets of facets have been move to facets/group/, eg. facets/group/inflect.
2350
- * All is now well preped for a Rolls release shoud that come about.
2193
+ * Deprecations
2351
2194
 
2195
+ * Deprecate BasicObject.
2352
2196
 
2353
- == 0.10.30
2354
2197
 
2355
- Halloween
2198
+ == 1.4.5 / 2006-07-05
2356
2199
 
2357
2200
  Changes:
2358
2201
 
2359
- * Change OrderedHash (ohash.rb) to Dictionary (dictionary.rb).
2360
- * Change BlankSlate (blankslate.rb) to BasicObject (basicobject.rb).
2361
- * Old versions of the above should still work, but throw warnings
2362
- and will stop working come next version.
2363
- * 1.rb has been renamed to one.rb (I know, two more characters,
2364
- but you can do it! ;)
2365
- * Methods enumerable/op_mod (%) and enumerable/eF are deprecated.
2366
- Use #every or #ew instead.
2202
+ * Additions
2367
2203
 
2204
+ * Add NilClass#status which allows a message to be passed through a failure chain.
2205
+ * Add Module#alias_method_chain from Rails as a cleveridiom for module-based method wrapping.
2206
+ A limited solution, but since there's no standard solution as of yet, well support til then.
2207
+ * Add Enumerable#cascade, cascade a list of actions on each element of an enumerable.
2368
2208
 
2369
- == 0.10.11
2370
2209
 
2371
- Palapable
2210
+ == 1.4.4 / 2006-07-03
2372
2211
 
2373
2212
  Changes:
2374
2213
 
2375
- * Merged Mega into Facets. I put the old Mega ChangeLog at
2376
- the bottom of this document.
2377
- * This represents the One-Point-Oh realease (albeit RC1) of
2378
- Facets, but from now on I'll be using date versioning
2379
- --if you look at the versions below you may understand why.
2380
- The versioning sequence has no real rationality.
2381
- Instead I will use this simple Rational Versioning Policy:
2382
- * If YYYY-MM-DD it's a development release.
2383
- * If YYYY-MM it's an official release.
2384
- * If just YYYY it's hella stable.
2385
- One might argue this is not as robust as a compatability
2386
- significant point-based versioning system, but I'd say that's
2387
- all well and good in theory, now give me something that actually
2388
- works in practice.
2389
-
2390
-
2391
- == 0.9.5
2392
-
2393
- Rebirth
2214
+ * Bug Fixes
2394
2215
 
2395
- Changes:
2216
+ * The `#method missing` in HtmlBuilder effected by BasicObject fix
2217
+ (use __self__.method instead of __method__).
2396
2218
 
2397
- * Rebirth of Facets! As cool as the name Nano is, it became clear
2398
- that most people are drawn toward the name Facets. So we are
2399
- reverting back. Nonetheless Nano will remain a viable alias for
2400
- Facets.
2401
- * Must now use <code>require 'facets'</code> prior to using
2402
- other Facets. This does two things. First it loads the
2403
- base methods, which ensures that all programs have them
2404
- readibly available when using Facets. Secondly it supplements
2405
- #require to handle aliases. In essence, require 'facet/...',
2406
- require 'facets/...' and require 'nano/...' all point to the
2407
- same place(s). (NOTE This is a precursor to a more universal
2408
- system that will handle aliasing automatically.)
2409
- * kernel/require_esc has been removed. #require_nano will be also
2410
- in the next release. These will no longer be needed thanks to
2411
- the aliasing system.
2219
+ * Improved Features
2412
2220
 
2221
+ * Update Functor, by adding `@self = function.binding.self`.
2413
2222
 
2414
- == 0.9.2
2223
+ * Renamed Features
2415
2224
 
2416
- Littles
2225
+ * Change WebAgent to Web.
2417
2226
 
2418
- Changes:
2227
+ * Deprecations
2419
2228
 
2420
- * Added string/starts_with? and string/ends_with?
2421
- * Fixed module/memoize to cache on a per class/module bases.
2422
- * Added module/is as an alias for /include.
2423
- * Added module/shadow_method and shadow_all.
2424
- * Renamed module/superup (which was module/supers) to module/as. And defined a new
2425
- method called /superior which is like /super but skips to a sepecified ancestor.
2426
- * Renamed module/super_send to module/send_as.
2229
+ * Removed hash/keys_to_iv b/c it is a poor name. Since the alternative
2230
+ of #keys_to_instance_variables conveys the wrong idea, decided to just
2231
+ get rid of this. Instead use the hash#variablize_keys which is also
2232
+ Rails compatibile.
2427
2233
 
2428
2234
 
2429
- == 0.9.1
2235
+ == 1.4.3 / 2006-06-27
2430
2236
 
2431
- Wraps
2237
+ * Administrative Adjustments
2432
2238
 
2433
- Changes:
2239
+ * Move ProjectInfo to proj/info.
2240
+ * Better arrangment of repository,
2434
2241
 
2435
- * Added module/nesting (not to be confused with the class method Module::nesting).
2436
- * Thanks goes to Gavien Kistner for new string/word_wrap methods
2437
- (with additioanl thanks to Dyane Borderson for his suggestions).
2438
- * Added hash/each_with_key and each_with_index, as well as array/each_with_key;
2439
- increasing polymorphism between the two classes.
2440
- * Moved array/each_pair to enumerable/each_pair and changed how it worked to
2441
- what one might expect.
2442
2242
 
2243
+ == 1.4.2 / 2006-06-21
2443
2244
 
2444
- == 0.9.0 / 2005-10-28
2245
+ This release makes adjustments to BasicObject, further reducing unhidden
2246
+ methods. Among them __object__, __method__ and #as. Also added `#method_missing`
2247
+ that detects shadow methods and rebinds them to Object. Keep in mind that woun't
2248
+ help you if you override method_missing which is typical for this class.
2445
2249
 
2446
- NotUorI
2250
+ This release also marks the first use of Darcs version control manager!
2447
2251
 
2448
2252
  Changes:
2449
2253
 
2450
- * Deprecated object#special_class, which was a method for (class<<self;self;end).
2451
- Already have too many aliases for this, and though the name is fitting, the simpler
2452
- method #own is better (alternative: #singleton).
2453
- * Fixed enumerable/uniq_by file which was misnamed 'unique_by.rb'.
2454
- * BIG CHANGE! Got rid of URI encoding on file names and sub'd a converson table
2455
- of english readable names. Thanks Jeff Wood, Florain Gross, Dav Burt,
2456
- Gavin Kistner, James Edward Gray II, Brian Schröder, Mauricio Fernández,
2457
- David A. Black, Gavin Sinclair, Nikolai Weibull and Christian Neukirchen.
2458
-
2459
-
2460
- == 0.8.3
2254
+ * Improvements
2461
2255
 
2462
- UorI
2463
-
2464
- Changes:
2256
+ * Adjusted BasicObject slightly, further reducing unhidden methods.
2465
2257
 
2466
- * Added kernel/uri and kernel/unuri
2467
- * (Good idea?) removed methods module/sattr, sattr_reader, &c. Instead created object/meta
2468
- in which attr, attr_reader, &c. are made public. So, sattr -> meta.attr.
2469
- * Added array/unzip
2470
- * Added logger/format and logger/format_message (stub).
2471
- * Added string/dequote.
2472
- * Class method file names now begin with '::' to separate them from instance methods.
2258
+ * Bug Fixes
2473
2259
 
2260
+ * Fixed bug in BasicObject#__self__.
2474
2261
 
2475
- == 0.8.2
2262
+ * Administrative Adjustments
2476
2263
 
2477
- Nano Revolution
2264
+ * Started using Darcs --finally!
2265
+ * Transition to Darcs has interupted ChangeLog though :(
2478
2266
 
2479
- Changes:
2480
2267
 
2481
- * Name Change! What was Ruby Facets is now Nano Methods!
2482
- * New minor version as there has been a change of plans with the integration of what was Carats.
2483
- The classes and modules have been reseperated into their own project called Mega Modules.
2484
- * Modified the #firstxxx/#lastxxx methods to be more congruent and comprehensible.
2485
- * Renamed object/supers to object/superup. Better!
2486
- * Got rid ot symbol/gen. Use object/generate_method_name or module#generate_instance_method_name
2487
- instead ( Is that the longest non-foo method name ever? :)
2488
- * The file 1st.rb has moved to object/method. This modifies #method to persist the returned
2489
- Method object. The original non-persitent version of #method is aliased to #original_method.
2490
- (This arrangement is not set in stone though, and is still be considered.)
2491
- * Added module/clone_using, module/clone_ranaming and module/clone_removing.
2492
- * Added module/integrate (I love this one!)
2493
- * Added many new enumerable methods: #filter_map, #compact_map, #commonality, #frequency,
2494
- #probability and #find_collisions.
2495
- * Moved some methods from array to enumerable: #each_permutation, #each_combination,
2496
- #each_unique_pair and the class method ::combinations.
2497
- * Added string/bytes per ruby-dev summary 26385-26467.
2498
- * Moved #cattr_reader, #cattr_writer and #cattr_accessor from Class to Module.
2499
- * Renamed numeric/octet_units to numeric/bytes_to_s and added a #bits_to_s as well.
2500
- * Added class/descendants (alias subclasses) and class/remove_descendents, as well as
2501
- object/descendents_of and object/remove_descendents_of.
2502
- * Added methods to comparable: #cap, #clip. There are also #at_least and
2503
- #at_most, although FYI #cap and #clip handle the same functionality.
2504
- * Removed string/table_name and string/class_name (they were too Rails specific).
2505
- Note: A new module has been added to Mega Modules, called orm-inflect.rb. It contains numerous
2506
- methods for doing this sort of thing.
2507
- * Added numeric/ceil_multiple (not sure about name though, perhaps a better name like "ceil_to"?).
2508
- * Added string/soundex for calculating the soundex code of a word/name.
2509
- * Added io/expect. I thought Ruby already had this but can't find it, so here it is for now.
2510
- * Placed Florian's binding-of-caller.rb in binding/of_caller. Makes more sense there.
2511
- * Fixed bug with Continuation::create (it wasn't defined as a class method and should have been).
2512
- * Fixed bug with string/capitalized? which wasn't always giving the correct result.
2513
-
2514
-
2515
- == 0.7.2 | 2005-05-22 | George II
2268
+ == 1.4.0 / 2006-05-05
2516
2269
 
2517
2270
  Changes:
2518
2271
 
2519
- * Added a class method dir/recurse which allows one to loop through a dir and all its
2520
- subdirs, etc. It also has an alias #ls_r. Thanks goes to George Maschovitis for this.
2521
- * Changed array/permute to array/each_permutation.
2522
-
2272
+ * Additions
2523
2273
 
2524
- == 0.7.1 | Quick George
2274
+ * Added Cookie, HTTP and HTTPAccess of ...'s library.
2275
+ * Added OpenCascade, which is like OpenObject but chains access.
2276
+ * Added MenTalguy's lazy.rb which include's Future and Promise classes.
2277
+ * Added task.rb, which provides a Rake interface compatible task
2278
+ system, but that can be used in any code.
2525
2279
 
2526
- Changes:
2280
+ * Improvements
2527
2281
 
2528
- * Added facet.rb, although expiremental it makes it possible to use atomic methods without
2529
- specificaly requiring them. It uses Object#method_missing to require them as needed.
2530
- * Improved on "molecules", i.e. files that require numerous related atoms in a single go.
2531
- These will see a great deal of continued improvement in the future.
2282
+ * Improved Hash#traverse (it now does all traversing before yielding).
2283
+ * Console::Command also now supports run-on flags (eg. -xvzf).
2284
+ * Updated tuple.rb so that when a string is converted to a Tuple (#to_t)
2285
+ the values wll be made integers if they are composed of only numbers.
2286
+ If you need all strings you can use a block since the block bypasses
2287
+ this auto coercement, eg. to_t{ |v| v }.
2532
2288
 
2289
+ * Renames
2533
2290
 
2534
- == 0.7.0 | Georgian Transform
2291
+ * OpenObject's __get__ and __set__ methods have been changed
2292
+ to __fetch__ and __store__ to correspond to the Hash methods.
2535
2293
 
2536
- Changes:
2294
+ * Depreacetions
2537
2295
 
2538
- * All methods with names containing non-alphanumeric characters now have facet
2539
- files without those special characters. This removes some incompatibilites with
2540
- certain systems (including Windows). All such symbols have been replaced with
2541
- CGI escape sequences, for instance 'in?.rb' becomes 'in%3F.rb'. To avoid having
2542
- to use these "ugly" names, a new method has been added, kernel/require_facet.
2543
- * Methods that were grouped together in the same file have been separated
2544
- into their own files. Pure Atomicity has been achieved!
2545
- * The method array/put has been dropped in favor of array/top (as a better alias for #unshift).
2546
- * Methods #matchdata/post_match_from and #matchdata/pre_match_from have deprecated
2547
- in favor of more generalized methods that serves the same purposes,
2548
- matchdata/matchtree and matchdata/matchset.
2549
- * Added module/include_as.
2550
- * Added array/permute.
2296
+ * kernel/me, kernel/methodname and kernel/method_name have all been
2297
+ deprecated in favor of the 1.9 standard kernel/__method__ and
2298
+ kernel/__callee__.
2299
+ * Console::Application is deprecated and is no longer an alias for
2300
+ Console::Command.
2301
+ * More's classinherit.rb has been removed, and classmethods.rb will be
2302
+ too in another version or two. You should transition all uses of
2303
+ these to core/module/class_extension.rb.
2551
2304
 
2552
2305
 
2553
- == 0.6.3 | Gemstone
2306
+ == 1.3.1 / 2006-04-17
2554
2307
 
2555
2308
  Changes:
2556
2309
 
2557
- * Gem is now avaliable!
2558
- * Added kernel/require_all which allows one to require a pattern of files,
2559
- making it easy to require every file in a directory.
2560
- * Added hash/traverse and hash/traverse!, which takes a block and iterates over
2561
- each key-value pair descending into subhash values and applying the block.
2562
- (Thanks goes to Ara T. Howard and robert for their help.)
2563
- * Added hash/collect. This uses enumerable/graph so that
2564
- hash/collect will return a hash rather then an array.
2565
- * Added numeric/before and numeric/after in place of #ago and #since
2566
- and aliased #ago and #since to them, per the suggestions of
2567
- Francis Hwang.
2568
- * Added "poor man's profiler", time/elapse. (Thanks goes to Hal Fulton).
2569
- * Changed enumerable/build_hash to enumerable/graph. The method #build_hash
2570
- has been aliased to #graph for the time being for backward compatability.
2571
- * Added array/last_index. (Thanks goes to Jabari)
2572
-
2573
-
2574
- == 0.6.2 | Refinement I
2575
-
2576
- Changes:
2310
+ * Deprecations
2577
2311
 
2578
- * Added kernel/resc as a shortcut for Regexp.escape.
2579
- * Renamed hash/keys_to_string to hash/key_to_s and
2580
- hash/keys_to_symbol to hash/keys_to_sym to be more consistant
2581
- with other methods and what these methods specifically do.
2582
- The old names have been deprecated.
2583
- * Added hash/has_keys?, which allows for checking mutliple keys at once.
2584
- Also includes #has_only_keys?
2585
- * Added Rail's Time and Byte modules for Numeric with
2586
- numeric/times.rb and numeric/bytes.rb (I've been informed that
2587
- thanks go to Richard Kilmer for this. Thanks!)
2588
- * Added numeric/octet_unit which utilizes numeric/bytes.
2589
- (The name of this method may change in the future though.)
2590
- * Added enumerable/uniq_by.
2591
- * Added module/abstract.
2592
- * Added module/redirect which is similar to alias, but does not
2593
- copy the method, but rather wraps it. It also takes a hash so
2594
- multiple methods can be redirected all at once.
2595
- * Added string/shatter which is similar to split but includes
2596
- the matched portions of text.
2597
-
2598
- == 0.6.1 | Florian's Mixes
2312
+ * Deprecated string/to_arr.
2599
2313
 
2600
- Changes:
2314
+ * General Enhancements
2601
2315
 
2602
- * Updated the current set of mix files which were still from
2603
- version 0.5.0. (2004-12-31)
2316
+ * Slightly adjusted string#to_a.
2604
2317
 
2605
2318
 
2606
- == 0.6.0 | Florian's Onslaught
2319
+ == 1.3.0 / 2006-04-05
2607
2320
 
2608
2321
  Changes:
2609
2322
 
2610
- * Major revisions made by Florian's onslaught. (2004-12-28)
2611
- * First general public release.
2612
-
2323
+ * Additions
2613
2324
 
2614
- == 0.5.0 | Fit for First
2325
+ * Ported parts of Nitro's Glue library to Facets.
2326
+ * more/aspects.rb
2327
+ * core/module/on_included.rb
2328
+ * core/module/expirable.rb
2329
+ * core/enumerable/accumulate.rb
2330
+ * Added xoxo.rb, json.rb and rtals.rb.
2615
2331
 
2616
- Changes:
2332
+ * General Enhancements
2617
2333
 
2618
- * This is the beginning of offical releases. (2004-12-23)
2619
- * Now called Facets.
2620
- * Changed layout to be completely atomic! (2004-10-30)
2334
+ * Repaired missing data files for units.rb.
2335
+ * Moved cattr methods from module/ to class/.
2336
+ * mattr methods are in limbo at the moment (they were aliases for cattr).
2621
2337
 
2622
2338
 
2623
- == 0.4.0 | Raspberry
2339
+ == 1.2.1 / 2006-03-29
2624
2340
 
2625
2341
  Changes:
2626
2342
 
2627
- * Scoured the Ruby world for useful additions.
2628
- * Changed name again from A.B.C. to Raspberry.
2629
- I can't seem to settle on a name. Even the new
2630
- subsections have changed five times. (2004-08-08)
2631
- * Adjusted Tuple to use Tuple::[*args] instead of ::new, which now takes
2632
- a single argument instead, either an Array or a String which it splits.
2633
- * Removed services.rb unitl in gets fixed and a better name.
2634
-
2635
-
2636
- == 0.3.3 | Mega2
2637
-
2638
- Changes:
2343
+ * Renamed Features
2639
2344
 
2640
- * Added inheritable.rb, a lib for creating class vars inherit from ancestors
2641
- * Addes annotations.rb, a lightweight metadata system good for annotating
2642
- methods esspecially. It is built on top of inheritable.rb.
2345
+ * kernel/meta has been renamed to kernel/instance
2643
2346
 
2644
2347
 
2645
- == 0.3.2 | Mega
2348
+ == 1.2.0 / 2006-03-24
2646
2349
 
2647
2350
  Changes:
2648
2351
 
2649
- * Added services.rb, a lib for managing methods as first class objects
2650
- * Fixed/cleaned-up orm_supprt.rb
2651
-
2652
- == 0.3.1
2653
-
2654
- Changes:
2352
+ * Additions
2655
2353
 
2656
- * Aliased #autoload_classes with #autorequire.
2657
- * Added #strfbits and #strfbytes to binary_multiplers.rb.
2354
+ * Add zimba.tm's string/modulize, pathize and methodize.
2355
+ * Add some Gem methods, self/active?, self/gemspec, self/gempath.
2658
2356
 
2659
2357
 
2660
- == 0.3.0 | ABC
2358
+ == 1.0.3 / 2006-02-10
2661
2359
 
2662
2360
  Changes:
2663
2361
 
2664
- * Reorganinzed all of this together in a nice neat way.
2665
- * Changed name of library from Succ to A.B.C.
2666
- which stands for All Base Common. (2004-02-02)
2667
- * Name change to Mega Modules!
2668
- * Added a few important files: multipliers.rb, binary_multipliers.rb,
2669
- time_in_english.rb and orm_inlectors.rb.
2670
- * Each one of these is a "Methods Module", i.e. They are a collection of
2671
- closely related methods that modify one or more core classes/modules.
2672
- Individually these methods could have very well ended up in Nano Methods,
2673
- but given there quantity and interrelation they were more suitable to a
2674
- module, and thus placed here.
2362
+ * Additions
2675
2363
 
2364
+ * Added _why's Array#modulo.
2676
2365
 
2677
- == 0.2.0 | Succ
2366
+ * General Enhancements
2678
2367
 
2679
- Changes:
2368
+ * Last ditch attempt to keep facets and calibre as one project.
2680
2369
 
2681
- * A number of new methods added.
2682
- * Renamed it Succ for "successor". (2003-05-31)
2683
- * Initial public release
2684
2370
 
2371
+ == 1.0.0 / 2005-12-04
2685
2372
 
2686
- == 0.1.0 | Carats
2373
+ Okay. Now we've finally hit our 1.0.0 relase. Yea! Does it desrve 1.0 at this point?
2374
+ Ah, well close enough. Mainly there won't be anymore silly development names ;)
2687
2375
 
2688
2376
  Changes:
2689
2377
 
2690
- * Early Development as Ruby Carats
2691
-
2692
-
2693
- == 0.0.0 | 2002-07-01 | TomsLib
2378
+ * General Enhancements
2694
2379
 
2695
- Changes:
2380
+ * Sped up string#similarity.
2381
+ * By popular protest deprecated usage of "AClass.use Facets, :amethod".
2382
+ * Created nicer layout of facets/support, /group, /english (one day /method).
2383
+ * Odd sets of facets have been move to facets/group/, eg. facets/group/inflect.
2384
+ * All is now well preped for a Rolls release shoud that come about.
2696
2385
 
2697
- * Tomslib's just a few useful methods.
2698
2386