facets 2.6.0 → 2.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (321) hide show
  1. data/HISTORY.rdoc +331 -35
  2. data/MANIFEST +685 -826
  3. data/{doc/guide/notes.rd → NOTES} +0 -0
  4. data/README.rdoc +73 -25
  5. data/Rakefile +245 -2
  6. data/TODO +5 -0
  7. data/demo/hook.rd +47 -0
  8. data/demo/scenario_require.rd +9 -0
  9. data/doc/README.more +24 -6
  10. data/doc/manual/about.rb +47 -0
  11. data/doc/manual/annotations.rdoc +60 -0
  12. data/doc/manual/associations.rdoc +55 -0
  13. data/doc/manual/blockups.rdoc +101 -0
  14. data/doc/manual/capsule.rdoc +34 -0
  15. data/doc/manual/command.rdoc +177 -0
  16. data/doc/manual/core.rdoc +37 -0
  17. data/doc/manual/faq.rdoc +32 -0
  18. data/doc/manual/typecast.html +112 -0
  19. data/lib/core/facets.rb +359 -11
  20. data/lib/core/facets/array/combination.rb +3 -3
  21. data/lib/core/facets/array/index.rb +4 -1
  22. data/lib/core/facets/array/permutation.rb +2 -2
  23. data/lib/core/facets/array/product.rb +1 -1
  24. data/lib/core/facets/binding/eval.rb +1 -1
  25. data/lib/core/facets/denumerable.rb +76 -0
  26. data/lib/core/facets/duplicable.rb +34 -0
  27. data/lib/core/facets/enumerable/count.rb +10 -4
  28. data/lib/core/facets/enumerable/defer.rb +77 -0
  29. data/lib/core/facets/enumerable/each_by.rb +1 -1
  30. data/lib/core/facets/enumerable/every.rb +35 -0
  31. data/lib/{more/facets/elementwise.rb → core/facets/enumerable/ewise.rb} +0 -0
  32. data/lib/core/facets/enumerable/filter.rb +25 -0
  33. data/lib/core/facets/enumerable/group_by.rb +1 -1
  34. data/lib/core/facets/enumerable/none.rb +3 -2
  35. data/lib/core/facets/enumerable/one.rb +3 -2
  36. data/lib/core/facets/enumerable/per.rb +61 -0
  37. data/lib/core/facets/exception/raised.rb +14 -0
  38. data/lib/core/facets/integer/odd.rb +5 -1
  39. data/lib/core/facets/kernel/__dir__.rb +13 -3
  40. data/lib/core/facets/kernel/__here__.rb +14 -0
  41. data/lib/core/facets/kernel/__method__.rb +9 -3
  42. data/lib/core/facets/kernel/ask.rb +1 -0
  43. data/lib/core/facets/kernel/equate.rb +13 -0
  44. data/lib/core/facets/kernel/extension.rb +9 -0
  45. data/lib/core/facets/kernel/identical.rb +4 -0
  46. data/lib/core/facets/kernel/instance_exec.rb +2 -1
  47. data/lib/core/facets/kernel/method.rb +49 -0
  48. data/lib/core/facets/kernel/object_send.rb +2 -2
  49. data/lib/core/facets/kernel/{state.rb → object_state.rb} +23 -12
  50. data/lib/core/facets/kernel/require_all.rb +6 -1
  51. data/lib/core/facets/kernel/require_local.rb +8 -1
  52. data/lib/core/facets/kernel/require_relative.rb +52 -0
  53. data/lib/core/facets/kernel/source_location.rb +13 -0
  54. data/lib/core/facets/kernel/tap.rb +13 -6
  55. data/lib/core/facets/module/attr_setter.rb +57 -0
  56. data/lib/core/facets/module/instance_method.rb +24 -0
  57. data/lib/core/facets/module/module_load.rb +60 -44
  58. data/lib/core/facets/module/module_require.rb +1 -0
  59. data/lib/core/facets/nilclass/to_f.rb +1 -1
  60. data/lib/core/facets/objectspace/op_fetch.rb +3 -0
  61. data/lib/core/facets/proc/curry.rb +4 -3
  62. data/lib/core/facets/string/bytes.rb +10 -4
  63. data/lib/core/facets/string/camelcase.rb +6 -5
  64. data/lib/core/facets/string/chars.rb +5 -1
  65. data/lib/core/facets/string/each_char.rb +1 -1
  66. data/lib/core/facets/string/each_word.rb +1 -1
  67. data/lib/core/facets/string/lines.rb +11 -4
  68. data/lib/core/facets/string/start_with.rb +9 -2
  69. data/lib/core/facets/string/unfold.rb +27 -0
  70. data/lib/core/facets/symbol/succ.rb +3 -3
  71. data/lib/core/facets/symbol/thrown.rb +20 -0
  72. data/lib/core/facets/symbol/to_proc.rb +3 -2
  73. data/lib/core/facets/time/to_time.rb +1 -1
  74. data/lib/core/facets/to_hash.rb +41 -100
  75. data/lib/core/facets/unboundmethod/name.rb +20 -23
  76. data/lib/more/facets/ansicode.rb +1 -10
  77. data/lib/more/facets/autoarray.rb +3 -31
  78. data/lib/more/facets/basicobject.rb +73 -0
  79. data/lib/more/facets/blankslate.rb +2 -66
  80. data/lib/{lore → more}/facets/cgi.rb +0 -0
  81. data/lib/more/facets/class_extend.rb +1 -0
  82. data/lib/{lore → more}/facets/continuation.rb +0 -0
  83. data/lib/{lore → more}/facets/date.rb +3 -3
  84. data/lib/more/facets/enumargs.rb +192 -0
  85. data/lib/more/facets/enumerablepass.rb +2 -216
  86. data/lib/more/facets/enumerator.rb +62 -0
  87. data/lib/more/facets/{equatable.rb → equitable.rb} +11 -11
  88. data/lib/more/facets/expirable.rb +13 -41
  89. data/lib/{lore → more}/facets/fileutils.rb +0 -0
  90. data/lib/{lore → more}/facets/fileutils/head.rb +0 -0
  91. data/lib/{lore → more}/facets/fileutils/safe_ln.rb +0 -0
  92. data/lib/{lore → more}/facets/fileutils/slice.rb +0 -0
  93. data/lib/{lore → more}/facets/fileutils/tail.rb +0 -0
  94. data/lib/{lore → more}/facets/fileutils/wc.rb +0 -0
  95. data/lib/{lore → more}/facets/fileutils/whereis.rb +0 -0
  96. data/lib/{lore → more}/facets/fileutils/which.rb +0 -0
  97. data/lib/{lore → more}/facets/getoptlong.rb +0 -0
  98. data/lib/more/facets/hook.rb +2 -29
  99. data/lib/more/facets/inheritor.rb +2 -2
  100. data/lib/more/facets/instance_eval.rb +50 -0
  101. data/lib/more/facets/instance_function.rb +78 -0
  102. data/lib/more/facets/main.rb +20 -15
  103. data/lib/more/facets/memoize.rb +1 -113
  104. data/lib/more/facets/module/attr.rb +83 -0
  105. data/lib/more/facets/module/attr_tester.rb +44 -0
  106. data/lib/more/facets/module/attr_toggler.rb +59 -0
  107. data/lib/more/facets/module/attr_validator.rb +34 -0
  108. data/lib/more/facets/{class_extension.rb → module/class_extend.rb} +21 -13
  109. data/lib/more/facets/once.rb +59 -0
  110. data/lib/more/facets/openmodule.rb +1 -0
  111. data/lib/more/facets/orderedhash.rb +1 -33
  112. data/lib/{lore → more}/facets/ostruct.rb +0 -0
  113. data/lib/more/facets/ostructable.rb +1 -4
  114. data/lib/more/facets/partial.rb +18 -16
  115. data/lib/{lore → more}/facets/pathname.rb +0 -0
  116. data/lib/more/facets/preinitialize.rb +157 -0
  117. data/lib/{lore → more}/facets/rbconfig.rb +0 -0
  118. data/lib/more/facets/recorder.rb +1 -2
  119. data/lib/{lore → more}/facets/set.rb +0 -0
  120. data/lib/{lore → more}/facets/shellwords.rb +0 -0
  121. data/lib/{lore → more}/facets/uri.rb +0 -0
  122. data/lib/{lore → more}/facets/yaml.rb +0 -0
  123. data/lib/{lore → more}/facets/zlib.rb +0 -0
  124. data/meta/loadpath +0 -1
  125. data/meta/sitemap +4 -0
  126. data/meta/version +1 -1
  127. data/test/core/enumerable/test_count.rb +1 -1
  128. data/test/{more/test_filter.rb → core/enumerable/test_defer.rb} +24 -22
  129. data/test/{more/test_elementor.rb → core/enumerable/test_every.rb} +2 -15
  130. data/test/core/enumerable/test_ewise.rb +23 -0
  131. data/test/core/enumerable/test_per.rb +18 -0
  132. data/test/core/enumerable/test_take.rb +13 -0
  133. data/test/core/kernel/test_deepcopy.rb +1 -1
  134. data/test/{more/test_1stclassmethod.rb → core/kernel/test_method.rb} +2 -7
  135. data/test/core/kernel/test_tap.rb +1 -1
  136. data/test/core/proc/test_curry.rb +11 -0
  137. data/test/core/string/test_bytes.rb +1 -1
  138. data/test/core/string/test_camelcase.rb +23 -6
  139. data/test/core/string/test_lines.rb +1 -1
  140. data/test/core/string/test_unfold.rb +14 -0
  141. data/test/{more → core}/test_blank.rb +0 -0
  142. data/test/{more → core}/test_boolean.rb +0 -0
  143. data/test/{more → core}/test_functor.rb +0 -0
  144. data/test/{lore → more}/test_basicobject.rb +0 -0
  145. data/test/more/{test_class_extension.rb → test_class_extend.rb} +6 -6
  146. data/test/{lore → more}/test_continuation.rb +0 -0
  147. data/test/{lore → more}/test_date.rb +0 -0
  148. data/test/more/{test_enumerablepass.rb → test_enumargs.rb} +2 -4
  149. data/test/more/{test_equatable.rb → test_equitable.rb} +2 -2
  150. data/test/more/{test_instantise.rb → test_instance_function.rb} +3 -2
  151. data/test/more/test_memoize.rb +1 -1
  152. data/test/{lore → more}/test_ostruct.rb +0 -0
  153. metadata +865 -1016
  154. data/RELEASE +0 -38
  155. data/doc/README.lore +0 -51
  156. data/doc/log/basic_stats/index.html +0 -39
  157. data/doc/log/changelog.html +0 -648
  158. data/doc/log/changelog.txt +0 -217
  159. data/doc/log/stats/index.html +0 -39
  160. data/doc/log/testlog.txt +0 -278
  161. data/doc/notes/CHANGES +0 -2529
  162. data/doc/rdoc/lore/classes/Array.html +0 -176
  163. data/doc/rdoc/lore/classes/CGI.html +0 -191
  164. data/doc/rdoc/lore/classes/Config.html +0 -135
  165. data/doc/rdoc/lore/classes/Continuation.html +0 -113
  166. data/doc/rdoc/lore/classes/Date.html +0 -631
  167. data/doc/rdoc/lore/classes/DateTime.html +0 -583
  168. data/doc/rdoc/lore/classes/Enumerable.html +0 -89
  169. data/doc/rdoc/lore/classes/Enumerable/Enumerator.html +0 -147
  170. data/doc/rdoc/lore/classes/File.html +0 -128
  171. data/doc/rdoc/lore/classes/FileUtils.html +0 -434
  172. data/doc/rdoc/lore/classes/GetoptLong.html +0 -118
  173. data/doc/rdoc/lore/classes/GetoptLong/DSL.html +0 -208
  174. data/doc/rdoc/lore/classes/Kernel.html +0 -135
  175. data/doc/rdoc/lore/classes/Logger.html +0 -229
  176. data/doc/rdoc/lore/classes/Logger/Ansicolor.html +0 -277
  177. data/doc/rdoc/lore/classes/Logger/LogDevice.html +0 -121
  178. data/doc/rdoc/lore/classes/NilClass.html +0 -119
  179. data/doc/rdoc/lore/classes/OpenStruct.html +0 -432
  180. data/doc/rdoc/lore/classes/Pathname.html +0 -353
  181. data/doc/rdoc/lore/classes/Set.html +0 -117
  182. data/doc/rdoc/lore/classes/Shellwords.html +0 -111
  183. data/doc/rdoc/lore/classes/String.html +0 -140
  184. data/doc/rdoc/lore/classes/Time.html +0 -154
  185. data/doc/rdoc/lore/classes/URI.html +0 -454
  186. data/doc/rdoc/lore/classes/URI/Hash.html +0 -105
  187. data/doc/rdoc/lore/classes/URI/Kernel.html +0 -122
  188. data/doc/rdoc/lore/classes/Zlib.html +0 -188
  189. data/doc/rdoc/lore/created.rid +0 -1
  190. data/doc/rdoc/lore/files/README.html +0 -286
  191. data/doc/rdoc/lore/files/doc/README_lore.html +0 -155
  192. data/doc/rdoc/lore/files/lib/lore/facets/basicobject_rb.html +0 -118
  193. data/doc/rdoc/lore/files/lib/lore/facets/cgi_rb.html +0 -111
  194. data/doc/rdoc/lore/files/lib/lore/facets/continuation_rb.html +0 -147
  195. data/doc/rdoc/lore/files/lib/lore/facets/date_rb.html +0 -97
  196. data/doc/rdoc/lore/files/lib/lore/facets/enumerator_rb.html +0 -111
  197. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/head_rb.html +0 -96
  198. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/safe_ln_rb.html +0 -96
  199. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/slice_rb.html +0 -96
  200. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/tail_rb.html +0 -96
  201. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/wc_rb.html +0 -96
  202. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/whereis_rb.html +0 -96
  203. data/doc/rdoc/lore/files/lib/lore/facets/fileutils/which_rb.html +0 -96
  204. data/doc/rdoc/lore/files/lib/lore/facets/fileutils_rb.html +0 -131
  205. data/doc/rdoc/lore/files/lib/lore/facets/getoptlong_rb.html +0 -135
  206. data/doc/rdoc/lore/files/lib/lore/facets/logger_rb.html +0 -142
  207. data/doc/rdoc/lore/files/lib/lore/facets/ostruct_rb.html +0 -135
  208. data/doc/rdoc/lore/files/lib/lore/facets/pathname_rb.html +0 -145
  209. data/doc/rdoc/lore/files/lib/lore/facets/rbconfig_rb.html +0 -124
  210. data/doc/rdoc/lore/files/lib/lore/facets/set_rb.html +0 -96
  211. data/doc/rdoc/lore/files/lib/lore/facets/shellwords_rb.html +0 -124
  212. data/doc/rdoc/lore/files/lib/lore/facets/uri_rb.html +0 -125
  213. data/doc/rdoc/lore/files/lib/lore/facets/yaml_rb.html +0 -146
  214. data/doc/rdoc/lore/files/lib/lore/facets/zlib_rb.html +0 -97
  215. data/doc/rdoc/lore/fr_class_index.html +0 -73
  216. data/doc/rdoc/lore/fr_file_index.html +0 -71
  217. data/doc/rdoc/lore/fr_method_index.html +0 -177
  218. data/doc/rdoc/lore/index.html +0 -26
  219. data/doc/rdoc/lore/rdoc-style.css +0 -177
  220. data/doc/release-notes/RELEASE-2.0.5 +0 -8
  221. data/doc/release-notes/RELEASE-2.1.0 +0 -9
  222. data/doc/release-notes/RELEASE-2.1.1 +0 -5
  223. data/doc/release-notes/RELEASE-2.1.2 +0 -6
  224. data/doc/release-notes/RELEASE-2.1.3 +0 -5
  225. data/doc/release-notes/RELEASE-2.2.0 +0 -14
  226. data/doc/release-notes/RELEASE-2.2.1 +0 -4
  227. data/doc/release-notes/RELEASE-2.3.0 +0 -6
  228. data/doc/release-notes/RELEASE-2.4.0 +0 -70
  229. data/doc/release-notes/RELEASE-2.4.1 +0 -8
  230. data/doc/release-notes/RELEASE-2.4.2 +0 -4
  231. data/doc/release-notes/RELEASE-2.4.3 +0 -78
  232. data/doc/release-notes/RELEASE-2.4.4 +0 -38
  233. data/doc/release-notes/RELEASE-2.4.5 +0 -37
  234. data/doc/release-notes/RELEASE-2.5.0 +0 -83
  235. data/lib/core/facets/kernel/instance.rb +0 -19
  236. data/lib/lore/facets/basicobject.rb +0 -14
  237. data/lib/lore/facets/enumerator.rb +0 -67
  238. data/lib/lore/facets/logger.rb +0 -291
  239. data/lib/more/facets/1stclassmethod.rb +0 -140
  240. data/lib/more/facets/advisable.rb +0 -162
  241. data/lib/more/facets/association.rb +0 -210
  242. data/lib/more/facets/attr.rb +0 -209
  243. data/lib/more/facets/basex.rb +0 -37
  244. data/lib/more/facets/bbcode.rb +0 -397
  245. data/lib/more/facets/bicrypt.rb +0 -265
  246. data/lib/more/facets/binreadable.rb +0 -221
  247. data/lib/more/facets/censor.rb +0 -97
  248. data/lib/more/facets/classmethods.rb +0 -199
  249. data/lib/more/facets/consoleutils.rb +0 -99
  250. data/lib/more/facets/crypt.rb +0 -166
  251. data/lib/more/facets/dependency.rb +0 -151
  252. data/lib/more/facets/downloader.rb +0 -281
  253. data/lib/more/facets/duplicable.rb +0 -43
  254. data/lib/more/facets/elementor.rb +0 -133
  255. data/lib/more/facets/filter.rb +0 -121
  256. data/lib/more/facets/heap.rb +0 -22
  257. data/lib/more/facets/infinity.rb +0 -193
  258. data/lib/more/facets/ini.rb +0 -264
  259. data/lib/more/facets/instantise.rb +0 -1
  260. data/lib/more/facets/instantize.rb +0 -95
  261. data/lib/more/facets/interval.rb +0 -282
  262. data/lib/more/facets/iteration.rb +0 -65
  263. data/lib/more/facets/linkedlist.rb +0 -222
  264. data/lib/more/facets/lrucache.rb +0 -157
  265. data/lib/more/facets/matcher.rb +0 -140
  266. data/lib/more/facets/memoizer.rb +0 -74
  267. data/lib/more/facets/minitar.rb +0 -1063
  268. data/lib/more/facets/nackclass.rb +0 -41
  269. data/lib/more/facets/net/smtp_tls.rb +0 -131
  270. data/lib/more/facets/nilstatus.rb +0 -48
  271. data/lib/more/facets/overload.rb +0 -94
  272. data/lib/more/facets/paramix.rb +0 -202
  273. data/lib/more/facets/pool.rb +0 -91
  274. data/lib/more/facets/pqueue.rb +0 -449
  275. data/lib/more/facets/pry.rb +0 -32
  276. data/lib/more/facets/reflection.rb +0 -145
  277. data/lib/more/facets/semaphore.rb +0 -92
  278. data/lib/more/facets/settings.rb +0 -248
  279. data/lib/more/facets/snapshot.rb +0 -209
  280. data/lib/more/facets/sparse_array.rb +0 -809
  281. data/lib/more/facets/string/mask.rb +0 -278
  282. data/lib/more/facets/string/obfuscate.rb +0 -65
  283. data/lib/more/facets/string/stylize.rb +0 -169
  284. data/lib/more/facets/string/words.rb +0 -167
  285. data/lib/more/facets/syncarray.rb +0 -114
  286. data/lib/more/facets/synchash.rb +0 -157
  287. data/lib/more/facets/typecast.rb +0 -261
  288. data/lib/more/facets/uninheritable.rb +0 -50
  289. data/lib/more/facets/xmlhash.rb +0 -112
  290. data/lib/more/facets/xoxo.rb +0 -259
  291. data/lib/more/facets/ziputils.rb +0 -490
  292. data/task/conflicts +0 -63
  293. data/task/coverage.rake +0 -37
  294. data/task/methods +0 -49
  295. data/task/rdoc.rake +0 -17
  296. data/task/setup.rake +0 -38
  297. data/task/test.rake +0 -145
  298. data/test/more/test_advisable.rb +0 -71
  299. data/test/more/test_association.rb +0 -38
  300. data/test/more/test_bbcode.rb +0 -21
  301. data/test/more/test_binreadable.rb +0 -50
  302. data/test/more/test_buildable.rb +0 -73
  303. data/test/more/test_classmethods.rb +0 -56
  304. data/test/more/test_crypt.rb +0 -32
  305. data/test/more/test_dependency.rb +0 -69
  306. data/test/more/test_elementwise.rb +0 -25
  307. data/test/more/test_infinity.rb +0 -40
  308. data/test/more/test_interval.rb +0 -151
  309. data/test/more/test_linkedlist.rb +0 -41
  310. data/test/more/test_lrucache.rb +0 -14
  311. data/test/more/test_overload.rb +0 -160
  312. data/test/more/test_paramix.rb +0 -170
  313. data/test/more/test_prototype.rb +0 -35
  314. data/test/more/test_snapshot.rb +0 -21
  315. data/test/more/test_sparsearray.rb +0 -279
  316. data/test/more/test_syncarray.rb +0 -15
  317. data/test/more/test_synchash.rb +0 -16
  318. data/test/more/test_typecast.rb +0 -54
  319. data/test/more/test_uninheritable.rb +0 -31
  320. data/test/more/test_xoxo.rb +0 -274
  321. data/test/test_facets.rb +0 -9
@@ -1,217 +0,0 @@
1
- 2009-02-28 Sandor Szücs <sandor.szuecs@fu-berlin.de>
2
-
3
- * fixed: Hash#dearray_singluar_values
4
- added: tests for Hash#dearray_singluar_values and Hash#dearray_values
5
- Signed-off-by: trans <transfire@gmail.com>
6
-
7
-
8
- 2009-02-27 Sandor Szücs <sandor.szuecs@fu-berlin.de>
9
-
10
- * added tests for Array#to_h vs Array#to_h_* dispatch
11
- Signed-off-by: trans <transfire@gmail.com>
12
- 2009-02-27 trans <transfire@gmail.com>
13
-
14
- * added String#file
15
- * added to_h_auto and fixed return bug
16
-
17
-
18
- 2009-02-26 trans <transfire@gmail.com>
19
-
20
- * corrected ostruct.rb to test for frozen state on updates [minor]
21
-
22
-
23
- 2009-02-11 trans <transfire@gmail.com>
24
-
25
- * overhauled to_hash.rb, now has multiple methods
26
-
27
-
28
- 2009-02-08 trans <transfire@gmail.com>
29
-
30
- * added Hash#new_with (Pit Capitan)
31
-
32
-
33
- 2009-02-03 Sandor Szücs <sandor.szuecs@fu-berlin.de>
34
-
35
- * fixed doc on Array#product
36
- 2009-02-03 trans <transfire@gmail.com>
37
-
38
- * Merge: cd6fd7d... 7c70691...
39
- Merge commit 'origin/master'
40
- * added module/extend.rb, now can take a block.
41
- * Merge: 20022d2... fa22296...
42
- removed block from Array#product.rb
43
- * updated product.rb
44
-
45
-
46
- 2009-02-02 Sandor Szücs <sandor.szuecs@fu-berlin.de>
47
-
48
- * fixed test of Module#conflict according ruby19
49
- * fixed: Array#to_h, h={} was not initialized
50
- * ruby19 compatability: return symbols instead of strings
51
- * changed product to make it compatible to ruby 19, deleted block parameter
52
-
53
-
54
- 2009-01-29 trans <transfire@gmail.com>
55
-
56
- * fixed coruption of reciever by Hash#collate (thanks to Tilo Sloboda)
57
- * added test for enumerable/split
58
- * improvements to website
59
- * association.rb stores refernce when using #new
60
-
61
-
62
- 2009-01-27 trans <transfire@gmail.com>
63
-
64
- * fixed Enumreable#split when reciever is empty array
65
- * added Hash#group_by_value (thanks to Erik Veenstra)
66
- * fixed conflict between test_name.rb and test_arguments.rb
67
- * Doc'd that UnboundMethod#name returns Symbol in 1.9, but String in 1.8
68
-
69
-
70
- 2009-01-26 trans <transfire@gmail.com>
71
-
72
- * added suggestion
73
- * move test_to_hash.rb from more to core
74
- * applied sandor's patch to test task
75
- * applied sander's patch to to_hash.rb
76
-
77
-
78
- 2009-01-04 trans <transfire@gmail.com>
79
-
80
- * Dictionary#replace can take regular Hash too
81
- * improved Array#to_h for 1.9 using flatten(1)
82
-
83
-
84
- 2008-12-05 trans <transfire@gmail.com>
85
-
86
- * added hook.rb
87
-
88
-
89
- 2008-12-01 trans <transfire@gmail.com>
90
-
91
- * updated AUTHORS
92
-
93
-
94
- 2008-11-30 trans <transfire@gmail.com>
95
-
96
- * fixed String#left_align
97
- * Merge: ad7e8fa... a917218...
98
- Merge branch 'master' of gitosis@rubyforge.org:facets
99
- * fixed source link in website
100
- 2008-11-30 T. Sawyer <trans@di1525.(none)>
101
-
102
- * split enumerable/collect into map_with_index and comapct_map
103
-
104
-
105
- 2008-11-27 trans <transfire@gmail.com>
106
-
107
- * updated README
108
- * added MANIFEST to .gitignore
109
- * time/hence.rb, added extra precaution to activesupport clause
110
- * fixed namespace issure with filter.rb
111
-
112
-
113
- 2008-11-26 trans <transfire@gmail.com>
114
-
115
- * separated hash update operator tests
116
- * one last edit of the RELEASE file
117
- * removed RichUnits namespace from Duration class
118
- * removed multiplers.rb from deprecation list
119
- * old duration is in work/deprecated for now
120
- * rewrote duration class (as used in RichUnits)
121
- * added stash.rb to more library
122
-
123
-
124
- 2008-11-23 trans <transfire@gmail.com>
125
-
126
- * remove empty config file
127
- * closing in on 2.5 release
128
- * update RELEASE
129
-
130
-
131
- 2008-11-22 T. Sawyer <trans@di1525.(none)>
132
-
133
- * pathlist, minor spacing adjusment
134
-
135
-
136
- 2008-11-18 trans <transfire@gmail.com>
137
-
138
- * added sparse_array.rb (was old harray.rb)
139
-
140
-
141
- 2008-11-17 trans <transfire@gmail.com>
142
-
143
- * added work/suggestions.txt
144
- * deprecated uploadutils.rb & renamed cachedelegator to memoizer [major]
145
-
146
-
147
- 2008-11-16 trans <transfire@gmail.com>
148
-
149
- * moved reap service configs
150
- * updated reap service configs
151
- * deprecated eventhook.rb
152
-
153
-
154
- 2008-11-15 trans <transfire@gmail.com>
155
-
156
- * removed lingering .svn directories
157
- * collected notes into doc/guide/notes.rd
158
-
159
-
160
- 2008-11-14 trans <transfire@gmail.com>
161
-
162
- * adjusted docs for eventhook.rb
163
- * Merge: 805a1e7... 6713f9e...
164
- Merge branch 'master' of gitosis@rubyforge.org:facets
165
- * update authors
166
-
167
-
168
- 2008-11-13 Tyler Rick <github.com@tylerrick.com>
169
-
170
- * Fixed some bugs with Time#ago/Time#hence not changing years correctly when you changed months.
171
- (For example, Time.utc(2008, 1, 1).ago(12, :months) incorrectly returned 2009-01-01 instead of 2007-01-01.)
172
- Added a bunch of tests for Time#ago/Time#hence.
173
- Changed Time#ago/Time#hence to still work if passed negative number.
174
- 2008-11-13 trans <transfire@gmail.com>
175
-
176
- * added test for filter.rb
177
- * uploadutils.rb, added deprecation warning
178
- * removed some old work material
179
- * consoleutils.rb and ziputils.rb, added deprecation warning
180
- * fixed missing require in string/tabto and minor doc adjustments
181
- * Added Brian Candler's Enumerator::Filter [major]
182
- * removed more/chain.rb; it was expiremental
183
-
184
-
185
- 2008-11-09 trans <transfire@gmail.com>
186
-
187
- * removed tests of deprecated libraries
188
- * improved docs for Hash#rekey
189
- * renamed DictionaryMatcher to just Matcher
190
- * moved Hash#symolize_keys to core and removed tagiter.rb
191
- * finalized deprecation of buildable.rb, bytes.rb and times.rb [major]
192
- * minor touch up to a few tests
193
- * fixed some credits
194
- * binding/caller.rb, fixed require for callstack.rb
195
-
196
-
197
- 2008-11-06 trans <transfire@gmail.com>
198
-
199
- * updated all CREDIT: comments elminating any indent
200
-
201
-
202
- 2008-11-05 trans <transfire@gmail.com>
203
-
204
- * deprecated annotations.rb --use Anise project instead
205
- * added lazyenum.rb to work/consider
206
- * add string/outdent.rb file
207
- * updated AUTHORS and README
208
- * deactivated reap test services temporarily
209
- * fixed outdent test and demo in instance_variables.rb
210
-
211
-
212
- 2008-10-29 trans <transfire@gmail.com>
213
-
214
- * aliased Comparable#cap to at_most and separated bound methods into files
215
- * memoize.rb, bug had cache working at class-level, fixed to work at instance-level [major]
216
- * switched to git as of 2.4.4
217
-
@@ -1,39 +0,0 @@
1
-
2
- <html>
3
- <head>
4
- <title>Facets Code Statistics</title>
5
- <style>
6
- h2{margin: 5px 0;}
7
- table{width: 95%;}
8
- th{background: #dcc;}
9
- td{padding: 5px;}
10
- .basic_stats{margin: 0 auto; width: 800px;}
11
- </style>
12
- <link rel="stylesheet" type="text/css" href="stats.css"/>
13
- </head>
14
- <body>
15
- <div class="basic_stats">
16
- <h1>Facets -- Basic Code Statistics</h1>
17
- <table class="counts" border="1">
18
- <tr><th colspan="9"><h2>Counts</h2></th></tr>
19
- <tr><th>TYPE</th><th>Total</th><th>Code</th><th>-%-</th><th>Docs</th><th>-%-</th><th>Blank</th><th>-%-</th><th>Files</th></tr>
20
- <tr><th>Source</th><td>0</td><td>0</td><td>-</td><td>0</td><td>-</td><td>0</td><td>-</td><td>0</td></tr>
21
- <tr><th>Test</th><td>0</td><td>0</td><td>-</td><td>0</td><td>-</td><td>0</td><td>-</td><td>0</td></tr>
22
- <tr><th>Total</th><td>0</td><td>0</td><td>-</td><td>0</td><td>-</td><td>0</td><td>-</td><td>0</td></tr>
23
- </table>
24
- <br/>
25
- <table class="ratios" border="1">
26
- <tr><th colspan="6"><h2>Ratios</h2></th></tr>
27
- <tr><th>x:1</th><th>Code</th><th>Docs</th><th>Blank</th><th>Test</th><th>Total</th></tr>
28
- <tr><th>Code</th><td> -</td><td> -</td><td> -</td><td> -</td><td> -</td></tr>
29
- <tr><th>Docs</th><td> -</td><td> -</td><td> -</td><td> -</td><td> -</td></tr>
30
- <tr><th>Blank</th><td> -</td><td> -</td><td> -</td><td> -</td><td> -</td></tr>
31
- <tr><th>Test</th><td> -</td><td> -</td><td> -</td><td> -</td><td> -</td></tr>
32
- <tr><th>Total</th><td> -</td><td> -</td><td> -</td><td> -</td><td> -</td></tr>
33
- </table>
34
- <br/>
35
- <div class="date">Fri Jul 03 22:29:10 -0400 2009</div>
36
- </div>
37
- </body>
38
- </html>
39
-
@@ -1,278 +0,0 @@
1
- = Solo Test @ Wed Sep 24 12:27:29 -0400 2008
2
-
3
- TEST FILE TESTS ASSERTIONS FAILURES ERRORS
4
- test/test_facets.rb 1 1 0 0 [PASS]
5
- test/lore/test_basicobject.rb 3 4 0 0 [PASS]
6
- test/lore/test_continuation.rb 1 1 0 0 [PASS]
7
- test/lore/test_ostruct.rb 17 48 0 0 [PASS]
8
- test/lore/test_date.rb 10 12 0 0 [PASS]
9
- test/core/integer/test_of.rb 2 2 0 0 [PASS]
10
- test/core/integer/test_factorial.rb 1 5 0 0 [PASS]
11
- test/core/integer/test_even.rb 2 0 0 2 [FAIL]
12
- test/core/integer/test_ordinal.rb 1 4 0 0 [PASS]
13
- test/core/integer/test_bitmask.rb 6 21 0 0 [PASS]
14
- test/core/integer/test_multiple.rb 1 4 0 0 [PASS]
15
- test/core/symbol/test_generate.rb 2 4 0 0 [PASS]
16
- test/core/symbol/test_chomp.rb 2 2 0 0 [PASS]
17
- test/core/symbol/test_not.rb 1 2 0 0 [PASS]
18
- test/core/symbol/test_succ.rb 1 3 0 0 [PASS]
19
- test/core/symbol/test_to_proc.rb 3 7 0 0 [PASS]
20
- test/core/nilclass/test_to_f.rb 1 1 0 0 [PASS]
21
- test/core/numeric/test_distance.rb 1 3 0 0 [PASS]
22
- test/core/numeric/test_round.rb 4 8 0 0 [PASS]
23
- test/core/numeric/test_approx.rb 1 3 0 0 [PASS]
24
- test/core/binding/test_defined.rb 1 1 0 0 [PASS]
25
- test/core/binding/test_self.rb 1 1 0 0 [PASS]
26
- test/core/binding/test_eval.rb 1 1 0 0 [PASS]
27
- test/core/binding/test_caller.rb 7 7 0 0 [PASS]
28
- test/core/binding/test_local_variables.rb 1 1 0 0 [PASS]
29
- test/core/binding/test_opvars.rb 2 3 0 0 [PASS]
30
- test/core/proc/test_bind.rb 1 100 0 0 [PASS]
31
- test/core/proc/test_to_method.rb 2 6 0 0 [PASS]
32
- test/core/proc/test_curry.rb 2 3 0 0 [PASS]
33
- test/core/proc/test_compose.rb 2 4 0 0 [PASS]
34
- test/core/range/test_overlap.rb 2 2 0 0 [PASS]
35
- test/core/range/test_combine.rb 2 2 0 0 [PASS]
36
- test/core/range/test_to_r.rb 2 2 0 0 [PASS]
37
- test/core/range/test_within.rb 5 15 0 0 [PASS]
38
- test/core/file/test_file.rb 9 9 0 0 [PASS]
39
- test/core/hash/test_collate.rb 2 12 0 0 [PASS]
40
- test/core/hash/test_keys.rb 3 5 0 0 [PASS]
41
- test/core/hash/test_inverse.rb 1 3 0 0 [PASS]
42
- test/core/hash/test_stringify_keys.rb 2 4 0 0 [PASS]
43
- test/core/hash/test_delete.rb 3 3 0 0 [PASS]
44
- test/core/hash/test_slice.rb 2 3 0 0 [PASS]
45
- test/core/hash/test_symbolize_keys.rb 2 4 0 0 [PASS]
46
- test/core/hash/test_weave.rb 1 1 0 0 [PASS]
47
- test/core/hash/test_alias.rb 1 3 0 0 [PASS]
48
- test/core/hash/test_update.rb 6 6 0 0 [PASS]
49
- test/core/hash/test_swap.rb 1 1 0 0 [PASS]
50
- test/core/hash/test_at.rb 1 2 0 0 [PASS]
51
- test/core/hash/test_op.rb 5 5 0 0 [PASS]
52
- test/core/hash/test_select.rb 1 12 0 0 [PASS]
53
- test/core/hash/test_autonew.rb 1 0 0 0 [PASS]
54
- test/core/hash/test_insert.rb 1 2 0 0 [PASS]
55
- test/core/hash/test_traverse.rb 2 3 0 0 [PASS]
56
- test/core/hash/test_zipnew.rb 1 1 0 0 [PASS]
57
- test/core/hash/test_mash.rb 2 2 0 0 [PASS]
58
- test/core/hash/test_merge.rb 1 1 0 0 [PASS]
59
- test/core/hash/test_rekey.rb 9 24 0 0 [PASS]
60
- test/core/kernel/test_val.rb 3 6 0 0 [PASS]
61
- test/core/kernel/test_not_nil.rb 1 4 0 0 [PASS]
62
- test/core/kernel/test_resc.rb 1 2 0 0 [PASS]
63
- test/core/kernel/test_attr_singleton.rb 3 8 0 0 [PASS]
64
- test/core/kernel/test_constant.rb 1 4 0 0 [PASS]
65
- test/core/kernel/test_populate.rb 3 9 0 0 [PASS]
66
- test/core/kernel/test_callstack.rb 1 1 0 0 [PASS]
67
- test/core/kernel/test_instance_class.rb 1 1 0 0 [PASS]
68
- test/core/kernel/test_silence.rb 1 1 0 0 [PASS]
69
- test/core/kernel/test_object_hexid.rb 1 1 0 0 [PASS]
70
- test/core/kernel/test_in.rb 1 2 0 0 [PASS]
71
- test/core/kernel/test_instance_assign.rb 1 3 0 0 [PASS]
72
- test/core/kernel/test_object_class.rb 2 2 0 0 [PASS]
73
- test/core/kernel/test_tap.rb 2 2 0 0 [PASS]
74
- test/core/kernel/test_returning.rb 1 1 0 0 [PASS]
75
- test/core/kernel/test_here.rb 1 1 0 0 [PASS]
76
- test/core/kernel/test_deepcopy.rb 1 1 0 0 [PASS]
77
- test/core/kernel/test_as.rb 4 5 0 0 [PASS]
78
- test/core/comparable/test_cmp.rb 3 11 0 0 [PASS]
79
- test/core/comparable/test_comparable.rb 1 5 0 0 [PASS]
80
- test/core/comparable/test_bound.rb 4 22 0 0 [PASS]
81
- test/core/enumerable/test_uniq_by.rb 1 1 0 0 [PASS]
82
- test/core/enumerable/test_none.rb 1 4 0 0 [PASS]
83
- test/core/enumerable/test_frequency.rb 1 2 0 0 [PASS]
84
- test/core/enumerable/test_occur.rb 1 4 0 0 [PASS]
85
- test/core/enumerable/test_inject.rb 2 2 0 0 [PASS]
86
- test/core/enumerable/test_entropy.rb 2 3 0 0 [PASS]
87
- test/core/enumerable/test_modulate.rb 1 1 0 0 [PASS]
88
- test/core/enumerable/test_probability.rb 1 2 0 0 [PASS]
89
- test/core/enumerable/test_cluster_by.rb 2 3 0 0 [PASS]
90
- test/core/enumerable/test_group_by.rb 4 4 0 0 [PASS]
91
- test/core/enumerable/test_commonality.rb 1 2 0 0 [PASS]
92
- test/core/enumerable/test_count.rb 3 4 0 0 [PASS]
93
- test/core/enumerable/test_each_by.rb 7 7 0 0 [PASS]
94
- test/core/enumerable/test_collect.rb 2 2 0 0 [PASS]
95
- test/core/enumerable/test_one.rb 1 5 0 0 [PASS]
96
- test/core/enumerable/test_mash.rb 5 5 0 0 [PASS]
97
- test/core/string/test_subtract.rb 1 3 0 0 [PASS]
98
- test/core/string/test_natcmp.rb 1 5 0 0 [PASS]
99
- test/core/string/test_words.rb 3 3 0 0 [PASS]
100
- test/core/string/test_bytes.rb 1 1 0 0 [PASS]
101
- test/core/string/test_each_char.rb 1 1 0 0 [PASS]
102
- test/core/string/test_camelcase.rb 3 7 0 0 [PASS]
103
- test/core/string/test_nchar.rb 1 4 0 0 [PASS]
104
- test/core/string/test_cleave.rb 4 9 0 0 [PASS]
105
- test/core/string/test_capitalized.rb 3 3 0 0 [PASS]
106
- test/core/string/test_titlecase.rb 1 1 0 0 [PASS]
107
- test/core/string/test_fold.rb 2 2 0 0 [PASS]
108
- test/core/string/test_line_wrap.rb 1 2 0 0 [PASS]
109
- test/core/string/test_to_re.rb 3 9 0 0 [PASS]
110
- test/core/string/test_range.rb 3 5 0 0 [PASS]
111
- test/core/string/test_chars.rb 1 2 0 0 [PASS]
112
- test/core/string/test_align.rb 3 3 0 0 [PASS]
113
- test/core/string/test_lines.rb 1 1 0 0 [PASS]
114
- test/core/string/test_word_wrap.rb 2 10 0 0 [PASS]
115
- test/core/string/test_xor.rb 1 1 0 0 [PASS]
116
- test/core/string/test_divide.rb 1 1 0 0 [PASS]
117
- test/core/string/test_snakecase.rb 1 4 0 0 [PASS]
118
- test/core/string/test_shatter.rb 1 1 0 0 [PASS]
119
- test/core/string/test_interpolate.rb 1 1 0 0 [PASS]
120
- test/core/string/test_tab.rb 15 129 0 0 [PASS]
121
- test/core/string/test_mscan.rb 1 4 0 0 [PASS]
122
- test/core/string/test_each_word.rb 1 1 0 0 [PASS]
123
- test/core/string/test_bracket.rb 7 22 0 0 [PASS]
124
- test/core/module/test_spacename.rb 1 4 0 0 [PASS]
125
- test/core/module/test_basename.rb 1 1 0 0 [PASS]
126
- test/core/module/test_nesting.rb 1 1 0 0 [PASS]
127
- test/core/module/test_ancestor.rb 1 1 0 0 [PASS]
128
- test/core/module/test_modspace.rb 1 3 0 0 [PASS]
129
- test/core/module/test_alias.rb 2 2 0 0 [PASS]
130
- test/core/module/test_op.rb 3 11 0 0 [PASS]
131
- test/core/module/test_revise.rb 12 16 0 0 [PASS]
132
- test/core/module/test_abstract.rb 2 2 0 0 [PASS]
133
- test/core/module/test_pathize.rb 1 1 0 0 [PASS]
134
- test/core/time/test_to_time.rb 1 1 0 0 [PASS]
135
- test/core/time/test_hence.rb 1 1 0 0 [PASS]
136
- test/core/time/test_trunc.rb 4 4 0 0 [PASS]
137
- test/core/time/test_round.rb 4 4 0 0 [PASS]
138
- test/core/time/test_stamp.rb 2 2 0 0 [PASS]
139
- test/core/time/test_change.rb 1 1 0 0 [PASS]
140
- test/core/time/test_elapse.rb 1 1 0 0 [PASS]
141
- test/core/dir/test_descend.rb 1 4 0 0 [PASS]
142
- test/core/dir/test_ascend.rb 2 7 0 0 [PASS]
143
- test/core/dir/test_multiglob.rb 2 2 0 0 [PASS]
144
- test/core/dir/test_parent.rb 1 1 0 0 [PASS]
145
- test/core/dir/test_recurse.rb 2 2 0 0 [PASS]
146
- test/core/filetest/test_filetest.rb 1 1 0 0 [PASS]
147
- test/core/class/test_descendents.rb 1 1 0 0 [PASS]
148
- test/core/array/test_combination.rb 2 2 0 0 [PASS]
149
- test/core/array/test_product.rb 4 4 0 0 [PASS]
150
- test/core/array/test_delete.rb 3 7 0 0 [PASS]
151
- test/core/array/test_stackable.rb 2 4 0 0 [PASS]
152
- test/core/array/test_select.rb 1 1 0 0 [PASS]
153
- test/core/array/test_only.rb 1 4 0 0 [PASS]
154
- test/core/array/test_indexable.rb 14 28 0 0 [PASS]
155
- test/core/array/test_permutation.rb 1 1 0 0 [PASS]
156
- test/core/array/test_pad.rb 4 4 0 0 [PASS]
157
- test/core/array/test_merge.rb 2 2 0 0 [PASS]
158
- test/core/array/test_rotate.rb 2 4 0 0 [PASS]
159
- test/core/regexp/test_to_re.rb 2 2 0 0 [PASS]
160
- test/core/regexp/test_arity.rb 1 4 0 0 [PASS]
161
- test/core/matchdata/test_matchset.rb 3 3 0 0 [PASS]
162
- test/core/matchdata/test_match.rb 1 1 0 0 [PASS]
163
- test/core/exception/test_exception.rb 1 1 0 0 [PASS]
164
- test/more/test_syncarray.rb 1 1 0 0 [PASS]
165
- test/more/test_crypt.rb 2 8 0 0 [PASS]
166
- test/more/test_metaid.rb 4 2 0 2 [FAIL]
167
- test/more/test_bytes.rb 12 18 0 0 [PASS]
168
- test/more/test_infinity.rb 4 16 0 0 [PASS]
169
- test/more/test_1stclassmethod.rb 2 3 0 0 [PASS]
170
- test/more/test_typecast.rb 1 0 0 1 [FAIL]
171
- test/more/test_buildable.rb 2 2 0 0 [PASS]
172
- test/more/test_instantise.rb 2 2 0 0 [PASS]
173
- test/more/test_openobject.rb 13 29 0 0 [PASS]
174
- test/more/test_equatable.rb 1 3 0 0 [PASS]
175
- test/more/test_uri.rb 4 4 0 0 [PASS]
176
- test/more/test_opencascade.rb 7 108 0 1 [FAIL]
177
- test/more/test_multipliers.rb 22 22 0 0 [PASS]
178
- test/more/test_autoarray.rb 0 0 0 0 [PASS]
179
- test/more/test_random.rb 21 261 0 0 [PASS]
180
- test/more/test_boolean.rb 8 35 0 0 [PASS]
181
- test/more/test_prototype.rb 2 4 0 0 [PASS]
182
- test/more/test_elementwise.rb 2 8 0 0 [PASS]
183
- test/more/test_class_extension.rb 5 9 0 0 [PASS]
184
- test/more/test_thread.rb 3 3 0 0 [PASS]
185
- test/more/test_dependency.rb 4 4 0 0 [PASS]
186
- test/more/test_times.rb 13 13 0 0 [PASS]
187
- test/more/test_binreadable.rb 4 13 0 0 [PASS]
188
- test/more/test_cloneable.rb 2 6 0 0 [PASS]
189
- test/more/test_inheritor.rb 20 23 0 0 [PASS]
190
- test/more/test_uninheritable.rb 1 2 0 0 [PASS]
191
- test/more/test_timer.rb 3 8 0 0 [PASS]
192
- test/more/test_annotations.rb 16 22 0 0 [PASS]
193
- test/more/test_recorder.rb 1 1 0 0 [PASS]
194
- test/more/test_tuple.rb 6 11 0 0 [PASS]
195
- test/more/test_classmethods.rb 5 9 0 0 [PASS]
196
- test/more/test_association.rb 3 4 0 0 [PASS]
197
- test/more/test_blank.rb 1 2 0 0 [PASS]
198
- test/more/test_command.rb 3 3 0 0 [PASS]
199
- test/more/test_bbcode.rb 2 2 0 0 [PASS]
200
- test/more/test_memoize.rb 3 3 0 0 [PASS]
201
- test/more/test_interval.rb 38 38 0 0 [PASS]
202
- test/more/test_getoptlong.rb 1 2 0 0 [PASS]
203
- test/more/test_snapshot.rb 1 3 0 0 [PASS]
204
- test/more/test_succ.rb 3 16 0 0 [PASS]
205
- test/more/test_style.rb 1 0 0 1 [FAIL]
206
- test/more/test_coroutine.rb 1 1 0 0 [PASS]
207
- test/more/test_overload.rb 13 15 0 0 [PASS]
208
- test/more/test_elementor.rb 5 8 0 0 [PASS]
209
- test/more/test_to_hash.rb 5 5 0 0 [PASS]
210
- test/more/test_enumerablepass.rb 8 7 0 0 [PASS]
211
- test/more/test_ansicode.rb 2 2 0 0 [PASS]
212
- test/more/test_dictionary.rb 14 40 0 0 [PASS]
213
- test/more/test_lrucache.rb 1 0 0 0 [PASS]
214
- test/more/test_xoxo.rb 26 28 0 0 [PASS]
215
- test/more/test_instantiable.rb 2 2 0 0 [PASS]
216
- test/more/test_functor.rb 2 9 0 0 [PASS]
217
- test/more/test_linkedlist.rb 1 20 0 0 [PASS]
218
- test/more/test_partial.rb 3 3 0 0 [PASS]
219
- test/more/test_methodspace.rb 6 6 0 0 [PASS]
220
- test/more/test_synchash.rb 1 1 0 0 [PASS]
221
- test/more/test_arguments.rb 6 10 0 0 [PASS]
222
- test/more/test_paramix.rb 13 26 0 0 [PASS]
223
- test/more/test_multiton.rb 6 16 0 0 [PASS]
224
- test/more/test_advisable.rb 2 4 0 0 [PASS]
225
- test/more/test_cattr.rb 4 8 0 0 [PASS]
226
- TOTAL 748 1847 0 7
227
-
228
- -- Failures and Errors --
229
-
230
- Loaded suite test/core/integer/test_even
231
- Started
232
- EE
233
- Finished in 0.000703 seconds.
234
-
235
- 1) Error:
236
- test_even?(TC_Integer):
237
- NoMethodError: undefined method `even?' for -100:Fixnum
238
- test/core/integer/test_even.rb:8:in `test_even?'
239
- test/core/integer/test_even.rb:7:in `step'
240
- test/core/integer/test_even.rb:7:in `test_even?'
241
-
242
- 2) Error:
243
- test_odd?(TC_Integer):
244
- NoMethodError: undefined method `odd?' for -101:Fixnum
245
- test/core/integer/test_even.rb:17:in `test_odd?'
246
- test/core/integer/test_even.rb:16:in `step'
247
- test/core/integer/test_even.rb:16:in `test_odd?'
248
-
249
- 2 tests, 0 assertions, 0 failures, 2 errors
250
- Loaded suite test/more/test_metaid
251
- Started
252
- ..EE
253
- Finished in 0.000881 seconds.
254
-
255
- 1) Error:
256
- test_singleton(TestMetaid):
257
- NoMethodError: undefined method `singleton' for #<Object:0x7f091f178bd8>
258
- test/more/test_metaid.rb:18:in `test_singleton'
259
-
260
- 2) Error:
261
- test_singleton_class(TestMetaid):
262
- NoMethodError: undefined method `singleton_class' for #<Object:0x7f091f175ca8>
263
- test/more/test_metaid.rb:36:in `test_singleton_class'
264
-
265
- 4 tests, 2 assertions, 0 failures, 2 errors
266
- Loaded suite test/more/test_opencascade
267
- Started
268
- .E.....
269
- Finished in 0.011009 seconds.
270
-
271
- 1) Error:
272
- test_1_02(TestOpenCascade1):
273
- NoMethodError: undefined method `x' for {:x=>9}:Hash
274
- test/more/test_opencascade.rb:16:in `test_1_02'
275
-
276
- 7 tests, 108 assertions, 0 failures, 1 errors
277
-
278
-