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,12 +1,10 @@
1
- # Test lib/facets/enumerablepass.rb
2
-
3
- require 'facets/enumerablepass.rb'
1
+ require 'facets/enumargs'
4
2
  require 'test/unit'
5
3
 
6
4
  # fixture
7
5
 
8
6
  class PlusArray
9
- include EnumerablePass
7
+ include Enumerable::Arguments
10
8
  def initialize(arr)
11
9
  @arr = arr
12
10
  end
@@ -1,4 +1,4 @@
1
- require 'facets/equatable.rb'
1
+ require 'facets/equitable'
2
2
  require 'test/unit'
3
3
 
4
4
  class TestModuleEquatable < Test::Unit::TestCase
@@ -6,7 +6,7 @@ class TestModuleEquatable < Test::Unit::TestCase
6
6
  def test_equatable_with_arguments
7
7
  c = Class.new
8
8
  c.class_eval {
9
- include Equatable(:a,:b)
9
+ include Equitable(:a,:b)
10
10
  attr_accessor :a, :b
11
11
  }
12
12
  c1,c2 = c.new,c.new
@@ -1,10 +1,11 @@
1
- require 'facets/instantise'
1
+ require 'facets/instance_function'
2
2
  require 'test/unit'
3
3
 
4
4
  # fixture
5
5
 
6
6
  module MyModule
7
- extend Instantise
7
+ instance_function
8
+
8
9
  def self.jumble( obj, arg )
9
10
  obj + arg
10
11
  end
@@ -1,6 +1,6 @@
1
1
  # Test facets/memoize.rb
2
2
 
3
- require 'facets/memoize.rb'
3
+ require 'facets/once' #memoize'
4
4
  require 'test/unit'
5
5
 
6
6
  class TC_Memoize < Test::Unit::TestCase
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: facets
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - facets-universal@rubyforge.org
@@ -10,25 +10,12 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-07-03 00:00:00 -04:00
13
+ date: 2009-08-22 00:00:00 -04:00
14
14
  default_executable:
15
15
  dependencies: []
16
16
 
17
- description: |-
18
- Facets is the single largest collection of core extension methods
19
- and standard class additions available for the Ruby programming
20
- language.
21
-
22
- Premium Core Extensions and Standard Additions.
23
- Facets is a large collection of core extension methods
24
- and standard additions for the Ruby programming language.
25
- The core extensions are unique by virtue of thier atomicity.
26
- Methods are stored in small, tightly related collections,
27
- allowing for highly granular control of requirements.
28
- The modules include a variety of useful classes, mixins
29
- and microframeworks, from the Functor to a complete
30
- Annotations system.
31
- email:
17
+ description: Ruby Facets is the single largest collection of general purpose method extensions and system additions for the Ruby programming language. The CORE extensions is a large collection of methods which extend the core capabilities of Ruby's built-in classes and modules. This collection of extension methods are unique by virtue of their atomicity. The methods are generally stored in individual files so that each can be required independently. This gives developers the potential for much finer control over which extra methods to bring into their code. The MORE additions are a collection of classes, modules and lightweight systems which constitute an ever improving source of reusable components. This set of libraries is kept light and focused on useful to a wide variety of usecases.
18
+ email: facets-universal@rubyforge.org
32
19
  executables: []
33
20
 
34
21
  extensions: []
@@ -37,866 +24,748 @@ extra_rdoc_files:
37
24
  - Rakefile
38
25
  - HISTORY.rdoc
39
26
  - MANIFEST
40
- - RELEASE
27
+ - NOTES
28
+ - TODO
41
29
  - README.rdoc
42
30
  - AUTHORS
43
31
  - COPYING
44
32
  files:
45
- - Rakefile
46
- - HISTORY.rdoc
47
- - MANIFEST
48
- - RELEASE
49
- - README.rdoc
50
- - AUTHORS
51
- - COPYING
52
- - doc/README.lore
33
+ - demo/hook.rd
34
+ - demo/scenario_require.rd
53
35
  - doc/README.core
54
36
  - doc/README.more
55
- - doc/notes/CHANGES
56
- - doc/guide/notes.rd
57
- - doc/rdoc/lore/fr_file_index.html
58
- - doc/rdoc/lore/rdoc-style.css
59
- - doc/rdoc/lore/fr_class_index.html
60
- - doc/rdoc/lore/index.html
61
- - doc/rdoc/lore/created.rid
62
- - doc/rdoc/lore/fr_method_index.html
63
- - doc/rdoc/lore/classes/DateTime.html
64
- - doc/rdoc/lore/classes/String.html
65
- - doc/rdoc/lore/classes/URI.html
66
- - doc/rdoc/lore/classes/GetoptLong.html
67
- - doc/rdoc/lore/classes/Pathname.html
68
- - doc/rdoc/lore/classes/Array.html
69
- - doc/rdoc/lore/classes/Zlib.html
70
- - doc/rdoc/lore/classes/Date.html
71
- - doc/rdoc/lore/classes/Logger.html
72
- - doc/rdoc/lore/classes/NilClass.html
73
- - doc/rdoc/lore/classes/Config.html
74
- - doc/rdoc/lore/classes/Kernel.html
75
- - doc/rdoc/lore/classes/Set.html
76
- - doc/rdoc/lore/classes/Enumerable.html
77
- - doc/rdoc/lore/classes/FileUtils.html
78
- - doc/rdoc/lore/classes/Continuation.html
79
- - doc/rdoc/lore/classes/Shellwords.html
80
- - doc/rdoc/lore/classes/CGI.html
81
- - doc/rdoc/lore/classes/Time.html
82
- - doc/rdoc/lore/classes/OpenStruct.html
83
- - doc/rdoc/lore/classes/File.html
84
- - doc/rdoc/lore/classes/Logger/LogDevice.html
85
- - doc/rdoc/lore/classes/Logger/Ansicolor.html
86
- - doc/rdoc/lore/classes/URI/Hash.html
87
- - doc/rdoc/lore/classes/URI/Kernel.html
88
- - doc/rdoc/lore/classes/GetoptLong/DSL.html
89
- - doc/rdoc/lore/classes/Enumerable/Enumerator.html
90
- - doc/rdoc/lore/files/README.html
91
- - doc/rdoc/lore/files/doc/README_lore.html
92
- - doc/rdoc/lore/files/lib/lore/facets/rbconfig_rb.html
93
- - doc/rdoc/lore/files/lib/lore/facets/yaml_rb.html
94
- - doc/rdoc/lore/files/lib/lore/facets/basicobject_rb.html
95
- - doc/rdoc/lore/files/lib/lore/facets/uri_rb.html
96
- - doc/rdoc/lore/files/lib/lore/facets/continuation_rb.html
97
- - doc/rdoc/lore/files/lib/lore/facets/shellwords_rb.html
98
- - doc/rdoc/lore/files/lib/lore/facets/cgi_rb.html
99
- - doc/rdoc/lore/files/lib/lore/facets/set_rb.html
100
- - doc/rdoc/lore/files/lib/lore/facets/enumerator_rb.html
101
- - doc/rdoc/lore/files/lib/lore/facets/ostruct_rb.html
102
- - doc/rdoc/lore/files/lib/lore/facets/pathname_rb.html
103
- - doc/rdoc/lore/files/lib/lore/facets/fileutils_rb.html
104
- - doc/rdoc/lore/files/lib/lore/facets/getoptlong_rb.html
105
- - doc/rdoc/lore/files/lib/lore/facets/logger_rb.html
106
- - doc/rdoc/lore/files/lib/lore/facets/date_rb.html
107
- - doc/rdoc/lore/files/lib/lore/facets/zlib_rb.html
108
- - doc/rdoc/lore/files/lib/lore/facets/fileutils/head_rb.html
109
- - doc/rdoc/lore/files/lib/lore/facets/fileutils/wc_rb.html
110
- - doc/rdoc/lore/files/lib/lore/facets/fileutils/which_rb.html
111
- - doc/rdoc/lore/files/lib/lore/facets/fileutils/whereis_rb.html
112
- - doc/rdoc/lore/files/lib/lore/facets/fileutils/slice_rb.html
113
- - doc/rdoc/lore/files/lib/lore/facets/fileutils/safe_ln_rb.html
114
- - doc/rdoc/lore/files/lib/lore/facets/fileutils/tail_rb.html
115
- - doc/release-notes/RELEASE-2.4.3
116
- - doc/release-notes/RELEASE-2.2.0
117
- - doc/release-notes/RELEASE-2.4.2
118
- - doc/release-notes/RELEASE-2.4.0
119
- - doc/release-notes/RELEASE-2.3.0
120
- - doc/release-notes/RELEASE-2.0.5
121
- - doc/release-notes/RELEASE-2.1.2
122
- - doc/release-notes/RELEASE-2.1.0
123
- - doc/release-notes/RELEASE-2.2.1
124
- - doc/release-notes/RELEASE-2.4.4
125
- - doc/release-notes/RELEASE-2.5.0
126
- - doc/release-notes/RELEASE-2.1.1
127
- - doc/release-notes/RELEASE-2.1.3
128
- - doc/release-notes/RELEASE-2.4.5
129
- - doc/release-notes/RELEASE-2.4.1
130
- - doc/log/changelog.html
131
- - doc/log/changelog.txt
132
- - doc/log/testlog.txt
133
- - doc/log/basic_stats/index.html
134
- - doc/log/stats/index.html
135
- - lib/lore/facets/pathname.rb
136
- - lib/lore/facets/cgi.rb
137
- - lib/lore/facets/zlib.rb
138
- - lib/lore/facets/continuation.rb
139
- - lib/lore/facets/date.rb
140
- - lib/lore/facets/logger.rb
141
- - lib/lore/facets/getoptlong.rb
142
- - lib/lore/facets/basicobject.rb
143
- - lib/lore/facets/fileutils.rb
144
- - lib/lore/facets/shellwords.rb
145
- - lib/lore/facets/enumerator.rb
146
- - lib/lore/facets/yaml.rb
147
- - lib/lore/facets/set.rb
148
- - lib/lore/facets/uri.rb
149
- - lib/lore/facets/ostruct.rb
150
- - lib/lore/facets/rbconfig.rb
151
- - lib/lore/facets/fileutils/tail.rb
152
- - lib/lore/facets/fileutils/which.rb
153
- - lib/lore/facets/fileutils/whereis.rb
154
- - lib/lore/facets/fileutils/wc.rb
155
- - lib/lore/facets/fileutils/slice.rb
156
- - lib/lore/facets/fileutils/safe_ln.rb
157
- - lib/lore/facets/fileutils/head.rb
158
- - lib/core/facets.rb
159
- - lib/core/facets-load.rb
160
- - lib/core/facets-live.rb
161
- - lib/core/facets/file.rb
162
- - lib/core/facets/metaid.rb
163
- - lib/core/facets/matchdata.rb
164
- - lib/core/facets/time.rb
165
- - lib/core/facets/dir.rb
166
- - lib/core/facets/to_hash.rb
167
- - lib/core/facets/cattr.rb
168
- - lib/core/facets/objectspace.rb
169
- - lib/core/facets/filetest.rb
170
- - lib/core/facets/lazy.rb
171
- - lib/core/facets/range.rb
172
- - lib/core/facets/indexable.rb
173
- - lib/core/facets/module.rb
174
- - lib/core/facets/hash.rb
175
- - lib/core/facets/boolean.rb
176
- - lib/core/facets/struct.rb
177
- - lib/core/facets/nilclass.rb
178
- - lib/core/facets/bitmask.rb
179
- - lib/core/facets/integer.rb
180
- - lib/core/facets/exception.rb
181
- - lib/core/facets/comparable.rb
182
- - lib/core/facets/float.rb
183
- - lib/core/facets/regexp.rb
184
- - lib/core/facets/class.rb
185
- - lib/core/facets/symbol.rb
186
- - lib/core/facets/numeric.rb
187
- - lib/core/facets/proc.rb
37
+ - doc/manual/about.rb
38
+ - doc/manual/annotations.rdoc
39
+ - doc/manual/associations.rdoc
40
+ - doc/manual/blockups.rdoc
41
+ - doc/manual/capsule.rdoc
42
+ - doc/manual/command.rdoc
43
+ - doc/manual/core.rdoc
44
+ - doc/manual/faq.rdoc
45
+ - doc/manual/typecast.html
46
+ - lib/core/facets/array/combination.rb
47
+ - lib/core/facets/array/conjoin.rb
48
+ - lib/core/facets/array/delete.rb
49
+ - lib/core/facets/array/delete_unless.rb
50
+ - lib/core/facets/array/delete_values.rb
51
+ - lib/core/facets/array/index.rb
52
+ - lib/core/facets/array/indexable.rb
53
+ - lib/core/facets/array/merge.rb
54
+ - lib/core/facets/array/not_empty.rb
55
+ - lib/core/facets/array/only.rb
56
+ - lib/core/facets/array/pad.rb
57
+ - lib/core/facets/array/permutation.rb
58
+ - lib/core/facets/array/product.rb
59
+ - lib/core/facets/array/recursively.rb
60
+ - lib/core/facets/array/rotate.rb
61
+ - lib/core/facets/array/select.rb
62
+ - lib/core/facets/array/splice.rb
63
+ - lib/core/facets/array/stackable.rb
64
+ - lib/core/facets/array/traverse.rb
188
65
  - lib/core/facets/array.rb
189
- - lib/core/facets/enumerable.rb
190
- - lib/core/facets/functor.rb
191
- - lib/core/facets/unboundmethod.rb
192
- - lib/core/facets/stackable.rb
193
- - lib/core/facets/kernel.rb
194
- - lib/core/facets/string.rb
195
- - lib/core/facets/binding.rb
196
- - lib/core/facets/blank.rb
197
- - lib/core/facets/integer/multiple.rb
198
- - lib/core/facets/integer/ordinal.rb
199
- - lib/core/facets/integer/odd.rb
200
- - lib/core/facets/integer/length.rb
201
- - lib/core/facets/integer/even.rb
202
- - lib/core/facets/integer/factorial.rb
203
- - lib/core/facets/integer/of.rb
204
- - lib/core/facets/symbol/not.rb
205
- - lib/core/facets/symbol/setter.rb
206
- - lib/core/facets/symbol/re_s.rb
207
- - lib/core/facets/symbol/plain.rb
208
- - lib/core/facets/symbol/query.rb
209
- - lib/core/facets/symbol/variablize.rb
210
- - lib/core/facets/symbol/to_proc.rb
211
- - lib/core/facets/symbol/generate.rb
212
- - lib/core/facets/symbol/succ.rb
213
- - lib/core/facets/symbol/chomp.rb
214
- - lib/core/facets/objectspace/classes.rb
215
- - lib/core/facets/unboundmethod/name.rb
216
- - lib/core/facets/unboundmethod/arguments.rb
217
- - lib/core/facets/nilclass/ergo.rb
218
- - lib/core/facets/nilclass/to_f.rb
219
- - lib/core/facets/numeric/distance.rb
220
- - lib/core/facets/numeric/round.rb
221
- - lib/core/facets/numeric/approx.rb
222
66
  - lib/core/facets/binding/caller.rb
223
- - lib/core/facets/binding/eval.rb
224
- - lib/core/facets/binding/self.rb
225
- - lib/core/facets/binding/local_variables.rb
226
67
  - lib/core/facets/binding/callstack.rb
227
68
  - lib/core/facets/binding/defined.rb
69
+ - lib/core/facets/binding/eval.rb
70
+ - lib/core/facets/binding/local_variables.rb
228
71
  - lib/core/facets/binding/opvars.rb
229
- - lib/core/facets/float/round.rb
230
- - lib/core/facets/proc/update.rb
231
- - lib/core/facets/proc/curry.rb
232
- - lib/core/facets/proc/compose.rb
233
- - lib/core/facets/proc/to_method.rb
234
- - lib/core/facets/proc/bind.rb
235
- - lib/core/facets/range/overlap.rb
236
- - lib/core/facets/range/umbrella.rb
237
- - lib/core/facets/range/combine.rb
238
- - lib/core/facets/range/to_r.rb
239
- - lib/core/facets/range/within.rb
72
+ - lib/core/facets/binding/self.rb
73
+ - lib/core/facets/binding.rb
74
+ - lib/core/facets/bitmask.rb
75
+ - lib/core/facets/blank.rb
76
+ - lib/core/facets/boolean.rb
77
+ - lib/core/facets/cattr.rb
78
+ - lib/core/facets/class/cattr.rb
79
+ - lib/core/facets/class/cattr_accessor.rb
80
+ - lib/core/facets/class/cattr_reader.rb
81
+ - lib/core/facets/class/cattr_writer.rb
82
+ - lib/core/facets/class/descendents.rb
83
+ - lib/core/facets/class/methodize.rb
84
+ - lib/core/facets/class/pathize.rb
85
+ - lib/core/facets/class/prepend.rb
86
+ - lib/core/facets/class/subclasses.rb
87
+ - lib/core/facets/class/to_proc.rb
88
+ - lib/core/facets/class.rb
89
+ - lib/core/facets/comparable/at_least.rb
90
+ - lib/core/facets/comparable/at_most.rb
91
+ - lib/core/facets/comparable/bound.rb
92
+ - lib/core/facets/comparable/cap.rb
93
+ - lib/core/facets/comparable/clip.rb
94
+ - lib/core/facets/comparable/cmp.rb
95
+ - lib/core/facets/comparable/comparable.rb
96
+ - lib/core/facets/comparable.rb
97
+ - lib/core/facets/denumerable.rb
98
+ - lib/core/facets/dir/ascend.rb
99
+ - lib/core/facets/dir/descend.rb
100
+ - lib/core/facets/dir/multiglob.rb
101
+ - lib/core/facets/dir/parent.rb
102
+ - lib/core/facets/dir/recurse.rb
103
+ - lib/core/facets/dir.rb
104
+ - lib/core/facets/duplicable.rb
105
+ - lib/core/facets/enumerable/accumulate.rb
106
+ - lib/core/facets/enumerable/cluster_by.rb
107
+ - lib/core/facets/enumerable/collect.rb
108
+ - lib/core/facets/enumerable/commonality.rb
109
+ - lib/core/facets/enumerable/compact_map.rb
110
+ - lib/core/facets/enumerable/count.rb
111
+ - lib/core/facets/enumerable/defer.rb
112
+ - lib/core/facets/enumerable/divide.rb
113
+ - lib/core/facets/enumerable/duplicates.rb
114
+ - lib/core/facets/enumerable/each_by.rb
115
+ - lib/core/facets/enumerable/entropy.rb
116
+ - lib/core/facets/enumerable/every.rb
117
+ - lib/core/facets/enumerable/ewise.rb
118
+ - lib/core/facets/enumerable/filter.rb
119
+ - lib/core/facets/enumerable/frequency.rb
120
+ - lib/core/facets/enumerable/graph.rb
121
+ - lib/core/facets/enumerable/group_by.rb
122
+ - lib/core/facets/enumerable/inject.rb
123
+ - lib/core/facets/enumerable/map_send.rb
124
+ - lib/core/facets/enumerable/map_with_index.rb
125
+ - lib/core/facets/enumerable/mash.rb
126
+ - lib/core/facets/enumerable/mode.rb
127
+ - lib/core/facets/enumerable/modulate.rb
128
+ - lib/core/facets/enumerable/none.rb
129
+ - lib/core/facets/enumerable/occur.rb
130
+ - lib/core/facets/enumerable/one.rb
131
+ - lib/core/facets/enumerable/per.rb
132
+ - lib/core/facets/enumerable/probability.rb
133
+ - lib/core/facets/enumerable/split.rb
134
+ - lib/core/facets/enumerable/sum.rb
135
+ - lib/core/facets/enumerable/take.rb
136
+ - lib/core/facets/enumerable/uniq_by.rb
137
+ - lib/core/facets/enumerable.rb
138
+ - lib/core/facets/exception/detail.rb
139
+ - lib/core/facets/exception/raised.rb
140
+ - lib/core/facets/exception/suppress.rb
141
+ - lib/core/facets/exception.rb
142
+ - lib/core/facets/file/append.rb
143
+ - lib/core/facets/file/create.rb
144
+ - lib/core/facets/file/null.rb
145
+ - lib/core/facets/file/read.rb
146
+ - lib/core/facets/file/rewrite.rb
240
147
  - lib/core/facets/file/rootname.rb
148
+ - lib/core/facets/file/split_all.rb
241
149
  - lib/core/facets/file/split_root.rb
242
- - lib/core/facets/file/null.rb
243
- - lib/core/facets/file/create.rb
244
150
  - lib/core/facets/file/write.rb
245
151
  - lib/core/facets/file/writelines.rb
246
- - lib/core/facets/file/append.rb
247
- - lib/core/facets/file/split_all.rb
248
- - lib/core/facets/file/rewrite.rb
249
- - lib/core/facets/file/read.rb
250
- - lib/core/facets/hash/new_with.rb
251
- - lib/core/facets/hash/zipnew.rb
252
- - lib/core/facets/hash/dearray_values.rb
253
- - lib/core/facets/hash/update_values.rb
152
+ - lib/core/facets/file.rb
153
+ - lib/core/facets/filetest/root.rb
154
+ - lib/core/facets/filetest.rb
155
+ - lib/core/facets/float/round.rb
156
+ - lib/core/facets/float.rb
157
+ - lib/core/facets/functor.rb
254
158
  - lib/core/facets/hash/alias.rb
255
- - lib/core/facets/hash/update.rb
159
+ - lib/core/facets/hash/argumentize.rb
160
+ - lib/core/facets/hash/at.rb
256
161
  - lib/core/facets/hash/autonew.rb
257
- - lib/core/facets/hash/recursively.rb
258
- - lib/core/facets/hash/op_and.rb
259
- - lib/core/facets/hash/op_sub.rb
162
+ - lib/core/facets/hash/collate.rb
163
+ - lib/core/facets/hash/dearray_values.rb
164
+ - lib/core/facets/hash/delete.rb
165
+ - lib/core/facets/hash/diff.rb
260
166
  - lib/core/facets/hash/except.rb
261
- - lib/core/facets/hash/stringify_keys.rb
167
+ - lib/core/facets/hash/group_by_value.rb
168
+ - lib/core/facets/hash/insert.rb
169
+ - lib/core/facets/hash/inverse.rb
170
+ - lib/core/facets/hash/join.rb
262
171
  - lib/core/facets/hash/keys.rb
172
+ - lib/core/facets/hash/mash.rb
263
173
  - lib/core/facets/hash/merge.rb
264
- - lib/core/facets/hash/traverse.rb
265
- - lib/core/facets/hash/op_or.rb
174
+ - lib/core/facets/hash/new_with.rb
266
175
  - lib/core/facets/hash/op.rb
176
+ - lib/core/facets/hash/op_add.rb
177
+ - lib/core/facets/hash/op_and.rb
267
178
  - lib/core/facets/hash/op_mul.rb
179
+ - lib/core/facets/hash/op_or.rb
268
180
  - lib/core/facets/hash/op_push.rb
269
- - lib/core/facets/hash/inverse.rb
181
+ - lib/core/facets/hash/op_sub.rb
270
182
  - lib/core/facets/hash/recursive_merge.rb
271
- - lib/core/facets/hash/to_proc.rb
272
- - lib/core/facets/hash/insert.rb
183
+ - lib/core/facets/hash/recursively.rb
184
+ - lib/core/facets/hash/rekey.rb
185
+ - lib/core/facets/hash/replace_each.rb
273
186
  - lib/core/facets/hash/select.rb
274
- - lib/core/facets/hash/to_options.rb
275
- - lib/core/facets/hash/diff.rb
276
- - lib/core/facets/hash/mash.rb
277
- - lib/core/facets/hash/collate.rb
278
- - lib/core/facets/hash/delete.rb
279
- - lib/core/facets/hash/weave.rb
187
+ - lib/core/facets/hash/slice.rb
188
+ - lib/core/facets/hash/stringify_keys.rb
280
189
  - lib/core/facets/hash/swap.rb
281
- - lib/core/facets/hash/to_struct.rb
282
190
  - lib/core/facets/hash/symbolize_keys.rb
283
- - lib/core/facets/hash/join.rb
284
- - lib/core/facets/hash/group_by_value.rb
285
- - lib/core/facets/hash/replace_each.rb
286
- - lib/core/facets/hash/slice.rb
287
191
  - lib/core/facets/hash/to_h.rb
288
- - lib/core/facets/hash/op_add.rb
289
- - lib/core/facets/hash/rekey.rb
192
+ - lib/core/facets/hash/to_options.rb
193
+ - lib/core/facets/hash/to_proc.rb
194
+ - lib/core/facets/hash/to_struct.rb
195
+ - lib/core/facets/hash/traverse.rb
196
+ - lib/core/facets/hash/update.rb
290
197
  - lib/core/facets/hash/update_each.rb
291
198
  - lib/core/facets/hash/update_keys.rb
292
- - lib/core/facets/hash/argumentize.rb
293
- - lib/core/facets/hash/at.rb
294
- - lib/core/facets/kernel/here.rb
295
- - lib/core/facets/kernel/as.rb
199
+ - lib/core/facets/hash/update_values.rb
200
+ - lib/core/facets/hash/weave.rb
201
+ - lib/core/facets/hash/zipnew.rb
202
+ - lib/core/facets/hash.rb
203
+ - lib/core/facets/indexable.rb
204
+ - lib/core/facets/integer/even.rb
205
+ - lib/core/facets/integer/factorial.rb
206
+ - lib/core/facets/integer/length.rb
207
+ - lib/core/facets/integer/multiple.rb
208
+ - lib/core/facets/integer/odd.rb
209
+ - lib/core/facets/integer/of.rb
210
+ - lib/core/facets/integer/ordinal.rb
211
+ - lib/core/facets/integer.rb
212
+ - lib/core/facets/kernel/__callee__.rb
296
213
  - lib/core/facets/kernel/__class__.rb
297
- - lib/core/facets/kernel/ask.rb
298
- - lib/core/facets/kernel/state.rb
299
- - lib/core/facets/kernel/demo.rb
300
- - lib/core/facets/kernel/maybe.rb
301
- - lib/core/facets/kernel/instance_send.rb
302
- - lib/core/facets/kernel/object_hexid.rb
303
- - lib/core/facets/kernel/object_class.rb
304
- - lib/core/facets/kernel/tap.rb
305
- - lib/core/facets/kernel/instance.rb
306
- - lib/core/facets/kernel/object_send.rb
307
- - lib/core/facets/kernel/ergo.rb
308
- - lib/core/facets/kernel/complete.rb
214
+ - lib/core/facets/kernel/__dir__.rb
309
215
  - lib/core/facets/kernel/__get__.rb
310
- - lib/core/facets/kernel/not_nil.rb
216
+ - lib/core/facets/kernel/__here__.rb
217
+ - lib/core/facets/kernel/__method__.rb
218
+ - lib/core/facets/kernel/__set__.rb
219
+ - lib/core/facets/kernel/as.rb
220
+ - lib/core/facets/kernel/ask.rb
221
+ - lib/core/facets/kernel/attr_singleton.rb
222
+ - lib/core/facets/kernel/callstack.rb
223
+ - lib/core/facets/kernel/complete.rb
224
+ - lib/core/facets/kernel/constant.rb
225
+ - lib/core/facets/kernel/d.rb
311
226
  - lib/core/facets/kernel/deep_copy.rb
312
- - lib/core/facets/kernel/silence.rb
313
- - lib/core/facets/kernel/require_all.rb
314
- - lib/core/facets/kernel/qua_class.rb
315
- - lib/core/facets/kernel/resc.rb
316
- - lib/core/facets/kernel/instance_variables.rb
227
+ - lib/core/facets/kernel/demo.rb
228
+ - lib/core/facets/kernel/equate.rb
229
+ - lib/core/facets/kernel/ergo.rb
230
+ - lib/core/facets/kernel/extension.rb
231
+ - lib/core/facets/kernel/here.rb
232
+ - lib/core/facets/kernel/identical.rb
233
+ - lib/core/facets/kernel/in.rb
317
234
  - lib/core/facets/kernel/instance_assign.rb
318
- - lib/core/facets/kernel/with.rb
319
- - lib/core/facets/kernel/d.rb
320
- - lib/core/facets/kernel/__set__.rb
321
- - lib/core/facets/kernel/__method__.rb
322
235
  - lib/core/facets/kernel/instance_class.rb
323
236
  - lib/core/facets/kernel/instance_exec.rb
324
- - lib/core/facets/kernel/attr_singleton.rb
237
+ - lib/core/facets/kernel/instance_send.rb
238
+ - lib/core/facets/kernel/instance_variables.rb
239
+ - lib/core/facets/kernel/maybe.rb
240
+ - lib/core/facets/kernel/method.rb
241
+ - lib/core/facets/kernel/not_nil.rb
242
+ - lib/core/facets/kernel/object_class.rb
243
+ - lib/core/facets/kernel/object_hexid.rb
244
+ - lib/core/facets/kernel/object_send.rb
245
+ - lib/core/facets/kernel/object_state.rb
325
246
  - lib/core/facets/kernel/p.rb
326
- - lib/core/facets/kernel/singleton_class.rb
327
- - lib/core/facets/kernel/try.rb
328
- - lib/core/facets/kernel/__dir__.rb
329
- - lib/core/facets/kernel/returning.rb
330
- - lib/core/facets/kernel/callstack.rb
331
247
  - lib/core/facets/kernel/populate.rb
332
- - lib/core/facets/kernel/val.rb
333
- - lib/core/facets/kernel/constant.rb
248
+ - lib/core/facets/kernel/qua_class.rb
249
+ - lib/core/facets/kernel/require_all.rb
334
250
  - lib/core/facets/kernel/require_local.rb
335
- - lib/core/facets/kernel/__callee__.rb
251
+ - lib/core/facets/kernel/require_relative.rb
252
+ - lib/core/facets/kernel/resc.rb
336
253
  - lib/core/facets/kernel/respond.rb
337
- - lib/core/facets/kernel/in.rb
338
- - lib/core/facets/struct/attributes.rb
339
- - lib/core/facets/comparable/cap.rb
340
- - lib/core/facets/comparable/bound.rb
341
- - lib/core/facets/comparable/cmp.rb
342
- - lib/core/facets/comparable/clip.rb
343
- - lib/core/facets/comparable/comparable.rb
344
- - lib/core/facets/comparable/at_least.rb
345
- - lib/core/facets/comparable/at_most.rb
346
- - lib/core/facets/enumerable/take.rb
347
- - lib/core/facets/enumerable/one.rb
348
- - lib/core/facets/enumerable/cluster_by.rb
349
- - lib/core/facets/enumerable/group_by.rb
350
- - lib/core/facets/enumerable/sum.rb
351
- - lib/core/facets/enumerable/mode.rb
352
- - lib/core/facets/enumerable/graph.rb
353
- - lib/core/facets/enumerable/commonality.rb
354
- - lib/core/facets/enumerable/occur.rb
355
- - lib/core/facets/enumerable/collect.rb
356
- - lib/core/facets/enumerable/frequency.rb
357
- - lib/core/facets/enumerable/divide.rb
358
- - lib/core/facets/enumerable/inject.rb
359
- - lib/core/facets/enumerable/duplicates.rb
360
- - lib/core/facets/enumerable/none.rb
361
- - lib/core/facets/enumerable/uniq_by.rb
362
- - lib/core/facets/enumerable/accumulate.rb
363
- - lib/core/facets/enumerable/mash.rb
364
- - lib/core/facets/enumerable/modulate.rb
365
- - lib/core/facets/enumerable/entropy.rb
366
- - lib/core/facets/enumerable/split.rb
367
- - lib/core/facets/enumerable/map_send.rb
368
- - lib/core/facets/enumerable/probability.rb
369
- - lib/core/facets/enumerable/map_with_index.rb
370
- - lib/core/facets/enumerable/count.rb
371
- - lib/core/facets/enumerable/each_by.rb
372
- - lib/core/facets/enumerable/compact_map.rb
373
- - lib/core/facets/string/shatter.rb
374
- - lib/core/facets/string/file.rb
375
- - lib/core/facets/string/to_re.rb
376
- - lib/core/facets/string/fold.rb
377
- - lib/core/facets/string/start_with.rb
378
- - lib/core/facets/string/camelcase.rb
379
- - lib/core/facets/string/lines.rb
380
- - lib/core/facets/string/modulize.rb
381
- - lib/core/facets/string/word_wrap.rb
382
- - lib/core/facets/string/align.rb
383
- - lib/core/facets/string/tab.rb
384
- - lib/core/facets/string/methodize.rb
385
- - lib/core/facets/string/op_sub.rb
386
- - lib/core/facets/string/compress_lines.rb
387
- - lib/core/facets/string/range.rb
388
- - lib/core/facets/string/snakecase.rb
389
- - lib/core/facets/string/each_char.rb
390
- - lib/core/facets/string/divide.rb
391
- - lib/core/facets/string/margin.rb
392
- - lib/core/facets/string/mscan.rb
393
- - lib/core/facets/string/capitalized.rb
394
- - lib/core/facets/string/expand_tab.rb
395
- - lib/core/facets/string/natcmp.rb
396
- - lib/core/facets/string/variablize.rb
397
- - lib/core/facets/string/bytes.rb
398
- - lib/core/facets/string/subtract.rb
399
- - lib/core/facets/string/pathize.rb
400
- - lib/core/facets/string/outdent.rb
401
- - lib/core/facets/string/indent.rb
402
- - lib/core/facets/string/titlecase.rb
403
- - lib/core/facets/string/tabto.rb
404
- - lib/core/facets/string/words.rb
405
- - lib/core/facets/string/interpolate.rb
406
- - lib/core/facets/string/cleave.rb
407
- - lib/core/facets/string/line_wrap.rb
408
- - lib/core/facets/string/bracket.rb
409
- - lib/core/facets/string/lowercase.rb
410
- - lib/core/facets/string/chars.rb
411
- - lib/core/facets/string/chomp.rb
412
- - lib/core/facets/string/splice.rb
413
- - lib/core/facets/string/rewrite.rb
414
- - lib/core/facets/string/uppercase.rb
415
- - lib/core/facets/string/nchar.rb
416
- - lib/core/facets/string/xor.rb
417
- - lib/core/facets/string/end_with.rb
418
- - lib/core/facets/string/each_word.rb
419
- - lib/core/facets/string/underscore.rb
420
- - lib/core/facets/string/contains.rb
254
+ - lib/core/facets/kernel/returning.rb
255
+ - lib/core/facets/kernel/silence.rb
256
+ - lib/core/facets/kernel/singleton_class.rb
257
+ - lib/core/facets/kernel/source_location.rb
258
+ - lib/core/facets/kernel/tap.rb
259
+ - lib/core/facets/kernel/try.rb
260
+ - lib/core/facets/kernel/val.rb
261
+ - lib/core/facets/kernel/with.rb
262
+ - lib/core/facets/kernel.rb
263
+ - lib/core/facets/lazy.rb
264
+ - lib/core/facets/matchdata/match.rb
265
+ - lib/core/facets/matchdata/matchset.rb
266
+ - lib/core/facets/matchdata.rb
267
+ - lib/core/facets/metaid.rb
268
+ - lib/core/facets/module/abstract.rb
421
269
  - lib/core/facets/module/alias_accessor.rb
422
- - lib/core/facets/module/prepend.rb
270
+ - lib/core/facets/module/alias_method_chain.rb
271
+ - lib/core/facets/module/alias_module_function.rb
423
272
  - lib/core/facets/module/ancestor.rb
424
- - lib/core/facets/module/redirect_method.rb
425
- - lib/core/facets/module/methodize.rb
426
- - lib/core/facets/module/conflict.rb
273
+ - lib/core/facets/module/attr_setter.rb
274
+ - lib/core/facets/module/basename.rb
427
275
  - lib/core/facets/module/can.rb
276
+ - lib/core/facets/module/class.rb
277
+ - lib/core/facets/module/conflict.rb
278
+ - lib/core/facets/module/extend.rb
428
279
  - lib/core/facets/module/include_function_module.rb
429
- - lib/core/facets/module/redefine_method.rb
430
- - lib/core/facets/module/op.rb
431
- - lib/core/facets/module/pathize.rb
432
- - lib/core/facets/module/alias_module_function.rb
280
+ - lib/core/facets/module/instance_method.rb
433
281
  - lib/core/facets/module/instance_methods.rb
434
- - lib/core/facets/module/module_load.rb
282
+ - lib/core/facets/module/integrate.rb
435
283
  - lib/core/facets/module/is.rb
436
- - lib/core/facets/module/nesting.rb
437
- - lib/core/facets/module/class.rb
284
+ - lib/core/facets/module/methodize.rb
438
285
  - lib/core/facets/module/modspace.rb
439
- - lib/core/facets/module/abstract.rb
286
+ - lib/core/facets/module/module_load.rb
287
+ - lib/core/facets/module/module_require.rb
288
+ - lib/core/facets/module/nesting.rb
289
+ - lib/core/facets/module/op.rb
290
+ - lib/core/facets/module/pathize.rb
291
+ - lib/core/facets/module/prepend.rb
292
+ - lib/core/facets/module/redefine_method.rb
293
+ - lib/core/facets/module/redirect_method.rb
440
294
  - lib/core/facets/module/rename_method.rb
441
- - lib/core/facets/module/integrate.rb
442
- - lib/core/facets/module/alias_method_chain.rb
443
295
  - lib/core/facets/module/revise.rb
444
- - lib/core/facets/module/extend.rb
445
296
  - lib/core/facets/module/spacename.rb
446
297
  - lib/core/facets/module/wrap_method.rb
447
- - lib/core/facets/module/basename.rb
448
- - lib/core/facets/time/elapse.rb
449
- - lib/core/facets/time/ago.rb
450
- - lib/core/facets/time/trunc.rb
298
+ - lib/core/facets/module.rb
299
+ - lib/core/facets/nilclass/ergo.rb
300
+ - lib/core/facets/nilclass/to_f.rb
301
+ - lib/core/facets/nilclass.rb
302
+ - lib/core/facets/numeric/approx.rb
303
+ - lib/core/facets/numeric/distance.rb
304
+ - lib/core/facets/numeric/round.rb
305
+ - lib/core/facets/numeric.rb
306
+ - lib/core/facets/objectspace/classes.rb
307
+ - lib/core/facets/objectspace/op_fetch.rb
308
+ - lib/core/facets/objectspace.rb
309
+ - lib/core/facets/proc/bind.rb
310
+ - lib/core/facets/proc/compose.rb
311
+ - lib/core/facets/proc/curry.rb
312
+ - lib/core/facets/proc/to_method.rb
313
+ - lib/core/facets/proc/update.rb
314
+ - lib/core/facets/proc.rb
315
+ - lib/core/facets/range/combine.rb
316
+ - lib/core/facets/range/overlap.rb
317
+ - lib/core/facets/range/to_r.rb
318
+ - lib/core/facets/range/umbrella.rb
319
+ - lib/core/facets/range/within.rb
320
+ - lib/core/facets/range.rb
321
+ - lib/core/facets/regexp/arity.rb
322
+ - lib/core/facets/regexp/to_re.rb
323
+ - lib/core/facets/regexp.rb
324
+ - lib/core/facets/stackable.rb
325
+ - lib/core/facets/string/align.rb
326
+ - lib/core/facets/string/bracket.rb
327
+ - lib/core/facets/string/bytes.rb
328
+ - lib/core/facets/string/camelcase.rb
329
+ - lib/core/facets/string/capitalized.rb
330
+ - lib/core/facets/string/chars.rb
331
+ - lib/core/facets/string/chomp.rb
332
+ - lib/core/facets/string/cleave.rb
333
+ - lib/core/facets/string/compress_lines.rb
334
+ - lib/core/facets/string/contains.rb
335
+ - lib/core/facets/string/divide.rb
336
+ - lib/core/facets/string/each_char.rb
337
+ - lib/core/facets/string/each_word.rb
338
+ - lib/core/facets/string/end_with.rb
339
+ - lib/core/facets/string/expand_tab.rb
340
+ - lib/core/facets/string/file.rb
341
+ - lib/core/facets/string/fold.rb
342
+ - lib/core/facets/string/indent.rb
343
+ - lib/core/facets/string/interpolate.rb
344
+ - lib/core/facets/string/line_wrap.rb
345
+ - lib/core/facets/string/lines.rb
346
+ - lib/core/facets/string/lowercase.rb
347
+ - lib/core/facets/string/margin.rb
348
+ - lib/core/facets/string/methodize.rb
349
+ - lib/core/facets/string/modulize.rb
350
+ - lib/core/facets/string/mscan.rb
351
+ - lib/core/facets/string/natcmp.rb
352
+ - lib/core/facets/string/nchar.rb
353
+ - lib/core/facets/string/op_sub.rb
354
+ - lib/core/facets/string/outdent.rb
355
+ - lib/core/facets/string/pathize.rb
356
+ - lib/core/facets/string/range.rb
357
+ - lib/core/facets/string/rewrite.rb
358
+ - lib/core/facets/string/shatter.rb
359
+ - lib/core/facets/string/snakecase.rb
360
+ - lib/core/facets/string/splice.rb
361
+ - lib/core/facets/string/start_with.rb
362
+ - lib/core/facets/string/subtract.rb
363
+ - lib/core/facets/string/tab.rb
364
+ - lib/core/facets/string/tabto.rb
365
+ - lib/core/facets/string/titlecase.rb
366
+ - lib/core/facets/string/to_re.rb
367
+ - lib/core/facets/string/underscore.rb
368
+ - lib/core/facets/string/unfold.rb
369
+ - lib/core/facets/string/uppercase.rb
370
+ - lib/core/facets/string/variablize.rb
371
+ - lib/core/facets/string/word_wrap.rb
372
+ - lib/core/facets/string/words.rb
373
+ - lib/core/facets/string/xor.rb
374
+ - lib/core/facets/string.rb
375
+ - lib/core/facets/struct/attributes.rb
376
+ - lib/core/facets/struct.rb
377
+ - lib/core/facets/symbol/chomp.rb
378
+ - lib/core/facets/symbol/generate.rb
379
+ - lib/core/facets/symbol/not.rb
380
+ - lib/core/facets/symbol/plain.rb
381
+ - lib/core/facets/symbol/query.rb
382
+ - lib/core/facets/symbol/re_s.rb
383
+ - lib/core/facets/symbol/setter.rb
384
+ - lib/core/facets/symbol/succ.rb
385
+ - lib/core/facets/symbol/thrown.rb
386
+ - lib/core/facets/symbol/to_proc.rb
387
+ - lib/core/facets/symbol/variablize.rb
388
+ - lib/core/facets/symbol.rb
451
389
  - lib/core/facets/time/advance.rb
452
- - lib/core/facets/time/round.rb
390
+ - lib/core/facets/time/ago.rb
391
+ - lib/core/facets/time/change.rb
392
+ - lib/core/facets/time/elapse.rb
453
393
  - lib/core/facets/time/hence.rb
394
+ - lib/core/facets/time/round.rb
454
395
  - lib/core/facets/time/set.rb
455
- - lib/core/facets/time/to_time.rb
456
- - lib/core/facets/time/change.rb
457
396
  - lib/core/facets/time/stamp.rb
458
- - lib/core/facets/dir/ascend.rb
459
- - lib/core/facets/dir/multiglob.rb
460
- - lib/core/facets/dir/recurse.rb
461
- - lib/core/facets/dir/parent.rb
462
- - lib/core/facets/dir/descend.rb
463
- - lib/core/facets/filetest/root.rb
464
- - lib/core/facets/class/prepend.rb
465
- - lib/core/facets/class/cattr.rb
466
- - lib/core/facets/class/methodize.rb
467
- - lib/core/facets/class/subclasses.rb
468
- - lib/core/facets/class/cattr_reader.rb
469
- - lib/core/facets/class/pathize.rb
470
- - lib/core/facets/class/descendents.rb
471
- - lib/core/facets/class/to_proc.rb
472
- - lib/core/facets/class/cattr_accessor.rb
473
- - lib/core/facets/class/cattr_writer.rb
474
- - lib/core/facets/array/product.rb
475
- - lib/core/facets/array/recursively.rb
476
- - lib/core/facets/array/not_empty.rb
477
- - lib/core/facets/array/delete_unless.rb
478
- - lib/core/facets/array/rotate.rb
479
- - lib/core/facets/array/conjoin.rb
480
- - lib/core/facets/array/indexable.rb
481
- - lib/core/facets/array/merge.rb
482
- - lib/core/facets/array/traverse.rb
483
- - lib/core/facets/array/permutation.rb
484
- - lib/core/facets/array/select.rb
485
- - lib/core/facets/array/index.rb
486
- - lib/core/facets/array/only.rb
487
- - lib/core/facets/array/delete.rb
488
- - lib/core/facets/array/combination.rb
489
- - lib/core/facets/array/delete_values.rb
490
- - lib/core/facets/array/splice.rb
491
- - lib/core/facets/array/stackable.rb
492
- - lib/core/facets/array/pad.rb
493
- - lib/core/facets/regexp/to_re.rb
494
- - lib/core/facets/regexp/arity.rb
495
- - lib/core/facets/matchdata/match.rb
496
- - lib/core/facets/matchdata/matchset.rb
497
- - lib/core/facets/exception/suppress.rb
498
- - lib/core/facets/exception/detail.rb
499
- - lib/more/facets/synchash.rb
500
- - lib/more/facets/platform.rb
501
- - lib/more/facets/pathlist.rb
502
- - lib/more/facets/registerable.rb
503
- - lib/more/facets/classmethods.rb
397
+ - lib/core/facets/time/to_time.rb
398
+ - lib/core/facets/time/trunc.rb
399
+ - lib/core/facets/time.rb
400
+ - lib/core/facets/to_hash.rb
401
+ - lib/core/facets/unboundmethod/arguments.rb
402
+ - lib/core/facets/unboundmethod/name.rb
403
+ - lib/core/facets/unboundmethod.rb
404
+ - lib/core/facets-live.rb
405
+ - lib/core/facets-load.rb
406
+ - lib/core/facets.rb
407
+ - lib/more/facets/ansicode.rb
408
+ - lib/more/facets/argvector.rb
409
+ - lib/more/facets/autoarray.rb
410
+ - lib/more/facets/autoreload.rb
411
+ - lib/more/facets/basicobject.rb
412
+ - lib/more/facets/blankslate.rb
413
+ - lib/more/facets/capsule.rb
414
+ - lib/more/facets/cgi.rb
415
+ - lib/more/facets/class_extend.rb
504
416
  - lib/more/facets/cloneable.rb
505
- - lib/more/facets/expirable.rb
506
- - lib/more/facets/pry.rb
507
- - lib/more/facets/matcher.rb
508
- - lib/more/facets/duration.rb
509
- - lib/more/facets/opesc.rb
510
- - lib/more/facets/main.rb
511
- - lib/more/facets/censor.rb
417
+ - lib/more/facets/continuation.rb
512
418
  - lib/more/facets/coroutine.rb
513
- - lib/more/facets/downloader.rb
514
- - lib/more/facets/multiton.rb
515
- - lib/more/facets/dependency.rb
516
- - lib/more/facets/interval.rb
517
- - lib/more/facets/openhash.rb
518
- - lib/more/facets/memoize.rb
519
- - lib/more/facets/autoarray.rb
520
- - lib/more/facets/pqueue.rb
521
- - lib/more/facets/syncarray.rb
522
- - lib/more/facets/thread.rb
523
- - lib/more/facets/iteration.rb
524
419
  - lib/more/facets/daemonize.rb
525
- - lib/more/facets/elementwise.rb
526
- - lib/more/facets/reflection.rb
527
- - lib/more/facets/lrucache.rb
528
- - lib/more/facets/recorder.rb
529
- - lib/more/facets/ansicode.rb
530
- - lib/more/facets/bicrypt.rb
531
- - lib/more/facets/version.rb
532
- - lib/more/facets/multipliers.rb
533
- - lib/more/facets/basex.rb
534
- - lib/more/facets/typecast.rb
535
- - lib/more/facets/association.rb
536
- - lib/more/facets/nullclass.rb
537
- - lib/more/facets/instantize.rb
420
+ - lib/more/facets/date.rb
538
421
  - lib/more/facets/dictionary.rb
539
- - lib/more/facets/autoreload.rb
540
- - lib/more/facets/xoxo.rb
541
- - lib/more/facets/memoizer.rb
542
- - lib/more/facets/infinity.rb
543
- - lib/more/facets/reference.rb
544
- - lib/more/facets/attr.rb
545
- - lib/more/facets/settings.rb
546
- - lib/more/facets/heap.rb
547
- - lib/more/facets/partial.rb
548
- - lib/more/facets/openmodule.rb
549
- - lib/more/facets/sparse_array.rb
422
+ - lib/more/facets/duration.rb
423
+ - lib/more/facets/enumargs.rb
424
+ - lib/more/facets/enumerablepass.rb
425
+ - lib/more/facets/enumerator.rb
426
+ - lib/more/facets/equitable.rb
427
+ - lib/more/facets/expirable.rb
428
+ - lib/more/facets/fileable.rb
550
429
  - lib/more/facets/filelist.rb
551
- - lib/more/facets/1stclassmethod.rb
552
- - lib/more/facets/overload.rb
553
- - lib/more/facets/semaphore.rb
554
- - lib/more/facets/consoleutils.rb
555
- - lib/more/facets/methodspace.rb
556
- - lib/more/facets/orderedhash.rb
557
- - lib/more/facets/ioredirect.rb
558
- - lib/more/facets/duplicable.rb
559
- - lib/more/facets/pool.rb
430
+ - lib/more/facets/fileutils/head.rb
431
+ - lib/more/facets/fileutils/safe_ln.rb
432
+ - lib/more/facets/fileutils/slice.rb
433
+ - lib/more/facets/fileutils/tail.rb
434
+ - lib/more/facets/fileutils/wc.rb
435
+ - lib/more/facets/fileutils/whereis.rb
436
+ - lib/more/facets/fileutils/which.rb
437
+ - lib/more/facets/fileutils.rb
438
+ - lib/more/facets/getoptlong.rb
560
439
  - lib/more/facets/hook.rb
561
- - lib/more/facets/blankslate.rb
562
- - lib/more/facets/capsule.rb
563
- - lib/more/facets/tuple.rb
564
- - lib/more/facets/instantise.rb
565
- - lib/more/facets/filter.rb
566
- - lib/more/facets/rbsystem.rb
567
- - lib/more/facets/argvector.rb
568
- - lib/more/facets/nilstatus.rb
569
- - lib/more/facets/ziputils.rb
440
+ - lib/more/facets/inheritor.rb
441
+ - lib/more/facets/instance_eval.rb
442
+ - lib/more/facets/instance_function.rb
570
443
  - lib/more/facets/instantiable.rb
571
- - lib/more/facets/xmlhash.rb
444
+ - lib/more/facets/ioredirect.rb
445
+ - lib/more/facets/main.rb
446
+ - lib/more/facets/memoize.rb
447
+ - lib/more/facets/methodspace.rb
448
+ - lib/more/facets/module/attr.rb
449
+ - lib/more/facets/module/attr_tester.rb
450
+ - lib/more/facets/module/attr_toggler.rb
451
+ - lib/more/facets/module/attr_validator.rb
452
+ - lib/more/facets/module/class_extend.rb
453
+ - lib/more/facets/multipliers.rb
454
+ - lib/more/facets/multiton.rb
455
+ - lib/more/facets/nullclass.rb
456
+ - lib/more/facets/once.rb
572
457
  - lib/more/facets/opencascade.rb
458
+ - lib/more/facets/opencollection.rb
459
+ - lib/more/facets/openhash.rb
460
+ - lib/more/facets/openmodule.rb
461
+ - lib/more/facets/openobject.rb
462
+ - lib/more/facets/opesc.rb
463
+ - lib/more/facets/orderedhash.rb
464
+ - lib/more/facets/ostruct.rb
573
465
  - lib/more/facets/ostructable.rb
574
- - lib/more/facets/elementor.rb
575
- - lib/more/facets/succ.rb
576
- - lib/more/facets/inheritor.rb
577
- - lib/more/facets/equatable.rb
578
- - lib/more/facets/nackclass.rb
579
- - lib/more/facets/binreadable.rb
580
- - lib/more/facets/timer.rb
581
- - lib/more/facets/bbcode.rb
466
+ - lib/more/facets/partial.rb
467
+ - lib/more/facets/pathlist.rb
468
+ - lib/more/facets/pathname.rb
469
+ - lib/more/facets/platform.rb
470
+ - lib/more/facets/preinitialize.rb
582
471
  - lib/more/facets/progressbar.rb
583
- - lib/more/facets/advisable.rb
584
- - lib/more/facets/ini.rb
585
- - lib/more/facets/uninheritable.rb
586
- - lib/more/facets/enumerablepass.rb
587
- - lib/more/facets/snapshot.rb
588
- - lib/more/facets/minitar.rb
589
- - lib/more/facets/paramix.rb
590
- - lib/more/facets/class_extension.rb
591
- - lib/more/facets/crypt.rb
592
- - lib/more/facets/stash.rb
593
- - lib/more/facets/openobject.rb
594
472
  - lib/more/facets/random.rb
595
- - lib/more/facets/opencollection.rb
596
- - lib/more/facets/fileable.rb
597
- - lib/more/facets/linkedlist.rb
473
+ - lib/more/facets/rbconfig.rb
474
+ - lib/more/facets/rbsystem.rb
475
+ - lib/more/facets/recorder.rb
476
+ - lib/more/facets/reference.rb
477
+ - lib/more/facets/registerable.rb
478
+ - lib/more/facets/set.rb
479
+ - lib/more/facets/shellwords.rb
480
+ - lib/more/facets/stash.rb
481
+ - lib/more/facets/succ.rb
482
+ - lib/more/facets/thread.rb
483
+ - lib/more/facets/timer.rb
598
484
  - lib/more/facets/tracepoint.rb
599
- - lib/more/facets/net/smtp_tls.rb
600
- - lib/more/facets/string/stylize.rb
601
- - lib/more/facets/string/obfuscate.rb
602
- - lib/more/facets/string/words.rb
603
- - lib/more/facets/string/mask.rb
485
+ - lib/more/facets/tuple.rb
486
+ - lib/more/facets/uri.rb
487
+ - lib/more/facets/version.rb
488
+ - lib/more/facets/yaml.rb
489
+ - lib/more/facets/zlib.rb
490
+ - meta/abstract
491
+ - meta/authors
492
+ - meta/contact
493
+ - meta/contributors
604
494
  - meta/created
605
495
  - meta/homepage
606
- - meta/summary
607
- - meta/abstract
496
+ - meta/license
497
+ - meta/loadpath
498
+ - meta/modified
608
499
  - meta/package
609
500
  - meta/releases
610
- - meta/contributors
611
- - meta/version
612
- - meta/license
613
- - meta/authors
501
+ - meta/sitemap
614
502
  - meta/slogan
615
- - meta/modified
616
- - meta/loadpath
617
- - meta/contact
618
- - task/methods
619
- - task/test.rake
620
- - task/conflicts
621
- - task/rdoc.rake
622
- - task/setup.rake
623
- - task/coverage.rake
624
- - test/test_facets.rb
625
- - test/lore/test_basicobject.rb
626
- - test/lore/test_continuation.rb
627
- - test/lore/test_ostruct.rb
628
- - test/lore/test_date.rb
629
- - test/core/test_metaid.rb
630
- - test/core/test_to_hash.rb
631
- - test/core/integer/test_of.rb
632
- - test/core/integer/test_factorial.rb
633
- - test/core/integer/test_even.rb
634
- - test/core/integer/test_ordinal.rb
635
- - test/core/integer/test_odd.rb
636
- - test/core/integer/test_bitmask.rb
637
- - test/core/integer/test_length.rb
638
- - test/core/integer/test_multiple.rb
639
- - test/core/symbol/test_plain.rb
640
- - test/core/symbol/test_generate.rb
641
- - test/core/symbol/test_setter.rb
642
- - test/core/symbol/test_chomp.rb
643
- - test/core/symbol/test_not.rb
644
- - test/core/symbol/test_succ.rb
645
- - test/core/symbol/test_query.rb
646
- - test/core/symbol/test_to_proc.rb
647
- - test/core/unboundmethod/test_name.rb
648
- - test/core/unboundmethod/test_arguments.rb
649
- - test/core/nilclass/test_to_f.rb
650
- - test/core/numeric/test_distance.rb
651
- - test/core/numeric/test_round.rb
652
- - test/core/numeric/test_approx.rb
653
- - test/core/binding/test_defined.rb
654
- - test/core/binding/test_self.rb
655
- - test/core/binding/test_eval.rb
656
- - test/core/binding/test_caller.rb
657
- - test/core/binding/test_local_variables.rb
658
- - test/core/binding/test_opvars.rb
659
- - test/core/proc/test_bind.rb
660
- - test/core/proc/test_to_method.rb
661
- - test/core/proc/test_curry.rb
662
- - test/core/proc/test_compose.rb
663
- - test/core/range/test_overlap.rb
664
- - test/core/range/test_combine.rb
665
- - test/core/range/test_to_r.rb
666
- - test/core/range/test_within.rb
667
- - test/core/file/test_write.rb
668
- - test/core/file/test_writelines.rb
669
- - test/core/file/test_null.rb
670
- - test/core/file/test_split_all.rb
671
- - test/core/file/test_file.rb
503
+ - meta/summary
504
+ - meta/version
505
+ - test/core/array/test_combination.rb
506
+ - test/core/array/test_delete.rb
507
+ - test/core/array/test_index.rb
508
+ - test/core/array/test_indexable.rb
509
+ - test/core/array/test_merge.rb
510
+ - test/core/array/test_only.rb
511
+ - test/core/array/test_pad.rb
512
+ - test/core/array/test_permutation.rb
513
+ - test/core/array/test_product.rb
514
+ - test/core/array/test_rotate.rb
515
+ - test/core/array/test_select.rb
516
+ - test/core/array/test_stackable.rb
517
+ - test/core/binding/test_caller.rb
518
+ - test/core/binding/test_defined.rb
519
+ - test/core/binding/test_eval.rb
520
+ - test/core/binding/test_local_variables.rb
521
+ - test/core/binding/test_opvars.rb
522
+ - test/core/binding/test_self.rb
523
+ - test/core/class/test_cattr.rb
524
+ - test/core/class/test_cattr_accessor.rb
525
+ - test/core/class/test_cattr_reader.rb
526
+ - test/core/class/test_cattr_writer.rb
527
+ - test/core/class/test_descendents.rb
528
+ - test/core/class/test_to_proc.rb
529
+ - test/core/comparable/test_cap.rb
530
+ - test/core/comparable/test_clip.rb
531
+ - test/core/comparable/test_cmp.rb
532
+ - test/core/comparable/test_comparable.rb
533
+ - test/core/dir/test_ascend.rb
534
+ - test/core/dir/test_descend.rb
535
+ - test/core/dir/test_multiglob.rb
536
+ - test/core/dir/test_parent.rb
537
+ - test/core/dir/test_recurse.rb
538
+ - test/core/enumerable/test_cluster_by.rb
539
+ - test/core/enumerable/test_collect.rb
540
+ - test/core/enumerable/test_commonality.rb
541
+ - test/core/enumerable/test_count.rb
542
+ - test/core/enumerable/test_defer.rb
543
+ - test/core/enumerable/test_each_by.rb
544
+ - test/core/enumerable/test_entropy.rb
545
+ - test/core/enumerable/test_every.rb
546
+ - test/core/enumerable/test_ewise.rb
547
+ - test/core/enumerable/test_frequency.rb
548
+ - test/core/enumerable/test_group_by.rb
549
+ - test/core/enumerable/test_inject.rb
550
+ - test/core/enumerable/test_mash.rb
551
+ - test/core/enumerable/test_modulate.rb
552
+ - test/core/enumerable/test_none.rb
553
+ - test/core/enumerable/test_occur.rb
554
+ - test/core/enumerable/test_one.rb
555
+ - test/core/enumerable/test_per.rb
556
+ - test/core/enumerable/test_probability.rb
557
+ - test/core/enumerable/test_split.rb
558
+ - test/core/enumerable/test_take.rb
559
+ - test/core/enumerable/test_uniq_by.rb
560
+ - test/core/exception/test_exception.rb
672
561
  - test/core/file/test_create.rb
562
+ - test/core/file/test_file.rb
563
+ - test/core/file/test_null.rb
673
564
  - test/core/file/test_rewrite.rb
674
- - test/core/hash/test_collate.rb
675
- - test/core/hash/test_op_add.rb
676
- - test/core/hash/test_keys.rb
677
- - test/core/hash/test_inverse.rb
678
- - test/core/hash/test_stringify_keys.rb
679
- - test/core/hash/test_replace_each.rb
680
- - test/core/hash/test_delete.rb
681
- - test/core/hash/test_slice.rb
682
- - test/core/hash/test_op_mul.rb
683
- - test/core/hash/test_symbolize_keys.rb
684
- - test/core/hash/test_weave.rb
685
- - test/core/hash/test_update_keys.rb
565
+ - test/core/file/test_split_all.rb
566
+ - test/core/file/test_write.rb
567
+ - test/core/file/test_writelines.rb
568
+ - test/core/filetest/test_filetest.rb
686
569
  - test/core/hash/test_alias.rb
687
- - test/core/hash/test_swap.rb
688
- - test/core/hash/test_op_and.rb
689
570
  - test/core/hash/test_at.rb
690
- - test/core/hash/test_op.rb
691
- - test/core/hash/test_select.rb
692
- - test/core/hash/test_op_push.rb
693
- - test/core/hash/test_op_or.rb
694
- - test/core/hash/test_update_each.rb
695
- - test/core/hash/test_update_values.rb
696
571
  - test/core/hash/test_autonew.rb
697
- - test/core/hash/test_insert.rb
572
+ - test/core/hash/test_collate.rb
698
573
  - test/core/hash/test_dearray_values.rb
699
- - test/core/hash/test_traverse.rb
700
- - test/core/hash/test_zipnew.rb
574
+ - test/core/hash/test_delete.rb
575
+ - test/core/hash/test_insert.rb
576
+ - test/core/hash/test_inverse.rb
577
+ - test/core/hash/test_keys.rb
701
578
  - test/core/hash/test_mash.rb
702
579
  - test/core/hash/test_merge.rb
580
+ - test/core/hash/test_op.rb
581
+ - test/core/hash/test_op_add.rb
582
+ - test/core/hash/test_op_and.rb
583
+ - test/core/hash/test_op_mul.rb
584
+ - test/core/hash/test_op_or.rb
585
+ - test/core/hash/test_op_push.rb
703
586
  - test/core/hash/test_op_sub.rb
704
587
  - test/core/hash/test_rekey.rb
705
- - test/core/kernel/test_val.rb
706
- - test/core/kernel/test_not_nil.rb
707
- - test/core/kernel/test_resc.rb
588
+ - test/core/hash/test_replace_each.rb
589
+ - test/core/hash/test_select.rb
590
+ - test/core/hash/test_slice.rb
591
+ - test/core/hash/test_stringify_keys.rb
592
+ - test/core/hash/test_swap.rb
593
+ - test/core/hash/test_symbolize_keys.rb
594
+ - test/core/hash/test_traverse.rb
595
+ - test/core/hash/test_update_each.rb
596
+ - test/core/hash/test_update_keys.rb
597
+ - test/core/hash/test_update_values.rb
598
+ - test/core/hash/test_weave.rb
599
+ - test/core/hash/test_zipnew.rb
600
+ - test/core/integer/test_bitmask.rb
601
+ - test/core/integer/test_even.rb
602
+ - test/core/integer/test_factorial.rb
603
+ - test/core/integer/test_length.rb
604
+ - test/core/integer/test_multiple.rb
605
+ - test/core/integer/test_odd.rb
606
+ - test/core/integer/test_of.rb
607
+ - test/core/integer/test_ordinal.rb
608
+ - test/core/kernel/test_as.rb
708
609
  - test/core/kernel/test_attr_singleton.rb
709
- - test/core/kernel/test_constant.rb
710
- - test/core/kernel/test_populate.rb
711
610
  - test/core/kernel/test_callstack.rb
712
- - test/core/kernel/test_instance_class.rb
713
- - test/core/kernel/test_silence.rb
714
- - test/core/kernel/test_object_hexid.rb
611
+ - test/core/kernel/test_constant.rb
612
+ - test/core/kernel/test_deepcopy.rb
613
+ - test/core/kernel/test_here.rb
715
614
  - test/core/kernel/test_in.rb
716
615
  - test/core/kernel/test_instance_assign.rb
616
+ - test/core/kernel/test_instance_class.rb
617
+ - test/core/kernel/test_method.rb
618
+ - test/core/kernel/test_not_nil.rb
717
619
  - test/core/kernel/test_object_class.rb
718
- - test/core/kernel/test_tap.rb
620
+ - test/core/kernel/test_object_hexid.rb
621
+ - test/core/kernel/test_populate.rb
622
+ - test/core/kernel/test_resc.rb
719
623
  - test/core/kernel/test_returning.rb
720
- - test/core/kernel/test_here.rb
721
- - test/core/kernel/test_deepcopy.rb
722
- - test/core/kernel/test_as.rb
723
- - test/core/comparable/test_cmp.rb
724
- - test/core/comparable/test_comparable.rb
725
- - test/core/comparable/test_clip.rb
726
- - test/core/comparable/test_cap.rb
727
- - test/core/enumerable/test_uniq_by.rb
728
- - test/core/enumerable/test_none.rb
729
- - test/core/enumerable/test_frequency.rb
730
- - test/core/enumerable/test_occur.rb
731
- - test/core/enumerable/test_inject.rb
732
- - test/core/enumerable/test_entropy.rb
733
- - test/core/enumerable/test_modulate.rb
734
- - test/core/enumerable/test_probability.rb
735
- - test/core/enumerable/test_split.rb
736
- - test/core/enumerable/test_cluster_by.rb
737
- - test/core/enumerable/test_group_by.rb
738
- - test/core/enumerable/test_commonality.rb
739
- - test/core/enumerable/test_count.rb
740
- - test/core/enumerable/test_each_by.rb
741
- - test/core/enumerable/test_collect.rb
742
- - test/core/enumerable/test_one.rb
743
- - test/core/enumerable/test_mash.rb
744
- - test/core/string/test_subtract.rb
745
- - test/core/string/test_natcmp.rb
746
- - test/core/string/test_margin.rb
747
- - test/core/string/test_words.rb
624
+ - test/core/kernel/test_silence.rb
625
+ - test/core/kernel/test_tap.rb
626
+ - test/core/kernel/test_val.rb
627
+ - test/core/matchdata/test_match.rb
628
+ - test/core/matchdata/test_matchset.rb
629
+ - test/core/module/test_abstract.rb
630
+ - test/core/module/test_alias_accessor.rb
631
+ - test/core/module/test_alias_method_chain.rb
632
+ - test/core/module/test_alias_module_function.rb
633
+ - test/core/module/test_ancestor.rb
634
+ - test/core/module/test_basename.rb
635
+ - test/core/module/test_can.rb
636
+ - test/core/module/test_class.rb
637
+ - test/core/module/test_conflict.rb
638
+ - test/core/module/test_integrate.rb
639
+ - test/core/module/test_is.rb
640
+ - test/core/module/test_methodize.rb
641
+ - test/core/module/test_modspace.rb
642
+ - test/core/module/test_nesting.rb
643
+ - test/core/module/test_op.rb
644
+ - test/core/module/test_pathize.rb
645
+ - test/core/module/test_prepend.rb
646
+ - test/core/module/test_redefine_method.rb
647
+ - test/core/module/test_redirect_method.rb
648
+ - test/core/module/test_rename_method.rb
649
+ - test/core/module/test_revise.rb
650
+ - test/core/module/test_spacename.rb
651
+ - test/core/module/test_wrap_method.rb
652
+ - test/core/nilclass/test_to_f.rb
653
+ - test/core/numeric/test_approx.rb
654
+ - test/core/numeric/test_distance.rb
655
+ - test/core/numeric/test_round.rb
656
+ - test/core/proc/test_bind.rb
657
+ - test/core/proc/test_compose.rb
658
+ - test/core/proc/test_curry.rb
659
+ - test/core/proc/test_to_method.rb
660
+ - test/core/range/test_combine.rb
661
+ - test/core/range/test_overlap.rb
662
+ - test/core/range/test_to_r.rb
663
+ - test/core/range/test_within.rb
664
+ - test/core/regexp/test_arity.rb
665
+ - test/core/regexp/test_to_re.rb
666
+ - test/core/string/test_align.rb
667
+ - test/core/string/test_bracket.rb
748
668
  - test/core/string/test_bytes.rb
749
- - test/core/string/test_each_char.rb
750
- - test/core/string/test_tabto.rb
751
- - test/core/string/test_outdent.rb
752
669
  - test/core/string/test_camelcase.rb
753
- - test/core/string/test_nchar.rb
754
- - test/core/string/test_cleave.rb
755
670
  - test/core/string/test_capitalized.rb
756
- - test/core/string/test_titlecase.rb
757
- - test/core/string/test_fold.rb
758
- - test/core/string/test_line_wrap.rb
759
- - test/core/string/test_lchomp.rb
760
- - test/core/string/test_to_re.rb
761
- - test/core/string/test_range.rb
762
671
  - test/core/string/test_chars.rb
763
- - test/core/string/test_align.rb
764
- - test/core/string/test_lines.rb
765
- - test/core/string/test_word_wrap.rb
766
- - test/core/string/test_methodize.rb
767
- - test/core/string/test_xor.rb
672
+ - test/core/string/test_cleave.rb
768
673
  - test/core/string/test_divide.rb
769
- - test/core/string/test_snakecase.rb
770
- - test/core/string/test_shatter.rb
771
- - test/core/string/test_splice.rb
674
+ - test/core/string/test_each_char.rb
675
+ - test/core/string/test_each_word.rb
772
676
  - test/core/string/test_end_with.rb
773
- - test/core/string/test_interpolate.rb
774
- - test/core/string/test_start_with.rb
775
- - test/core/string/test_tab.rb
677
+ - test/core/string/test_fold.rb
776
678
  - test/core/string/test_indent.rb
777
- - test/core/string/test_rewrite.rb
679
+ - test/core/string/test_interpolate.rb
680
+ - test/core/string/test_lchomp.rb
681
+ - test/core/string/test_line_wrap.rb
682
+ - test/core/string/test_lines.rb
683
+ - test/core/string/test_margin.rb
684
+ - test/core/string/test_methodize.rb
778
685
  - test/core/string/test_modulize.rb
779
- - test/core/string/test_variablize.rb
780
- - test/core/string/test_op_sub.rb
781
- - test/core/string/test_pathize.rb
782
686
  - test/core/string/test_mscan.rb
783
- - test/core/string/test_each_word.rb
784
- - test/core/string/test_bracket.rb
785
- - test/core/module/test_wrap_method.rb
786
- - test/core/module/test_integrate.rb
787
- - test/core/module/test_spacename.rb
788
- - test/core/module/test_basename.rb
789
- - test/core/module/test_nesting.rb
790
- - test/core/module/test_class.rb
791
- - test/core/module/test_alias_module_function.rb
792
- - test/core/module/test_ancestor.rb
793
- - test/core/module/test_modspace.rb
794
- - test/core/module/test_rename_method.rb
795
- - test/core/module/test_op.rb
796
- - test/core/module/test_redirect_method.rb
797
- - test/core/module/test_can.rb
798
- - test/core/module/test_methodize.rb
799
- - test/core/module/test_alias_method_chain.rb
800
- - test/core/module/test_alias_accessor.rb
801
- - test/core/module/test_revise.rb
802
- - test/core/module/test_is.rb
803
- - test/core/module/test_abstract.rb
804
- - test/core/module/test_redefine_method.rb
805
- - test/core/module/test_conflict.rb
806
- - test/core/module/test_prepend.rb
807
- - test/core/module/test_pathize.rb
808
- - test/core/time/test_to_time.rb
687
+ - test/core/string/test_natcmp.rb
688
+ - test/core/string/test_nchar.rb
689
+ - test/core/string/test_op_sub.rb
690
+ - test/core/string/test_outdent.rb
691
+ - test/core/string/test_pathize.rb
692
+ - test/core/string/test_range.rb
693
+ - test/core/string/test_rewrite.rb
694
+ - test/core/string/test_shatter.rb
695
+ - test/core/string/test_snakecase.rb
696
+ - test/core/string/test_splice.rb
697
+ - test/core/string/test_start_with.rb
698
+ - test/core/string/test_subtract.rb
699
+ - test/core/string/test_tab.rb
700
+ - test/core/string/test_tabto.rb
701
+ - test/core/string/test_titlecase.rb
702
+ - test/core/string/test_to_re.rb
703
+ - test/core/string/test_unfold.rb
704
+ - test/core/string/test_variablize.rb
705
+ - test/core/string/test_word_wrap.rb
706
+ - test/core/string/test_words.rb
707
+ - test/core/string/test_xor.rb
708
+ - test/core/symbol/test_chomp.rb
709
+ - test/core/symbol/test_generate.rb
710
+ - test/core/symbol/test_not.rb
711
+ - test/core/symbol/test_plain.rb
712
+ - test/core/symbol/test_query.rb
713
+ - test/core/symbol/test_setter.rb
714
+ - test/core/symbol/test_succ.rb
715
+ - test/core/symbol/test_to_proc.rb
716
+ - test/core/test_blank.rb
717
+ - test/core/test_boolean.rb
718
+ - test/core/test_functor.rb
719
+ - test/core/test_metaid.rb
720
+ - test/core/test_to_hash.rb
721
+ - test/core/time/test_change.rb
722
+ - test/core/time/test_elapse.rb
809
723
  - test/core/time/test_hence.rb
810
- - test/core/time/test_trunc.rb
811
724
  - test/core/time/test_round.rb
812
725
  - test/core/time/test_stamp.rb
813
- - test/core/time/test_change.rb
814
- - test/core/time/test_elapse.rb
815
- - test/core/dir/test_descend.rb
816
- - test/core/dir/test_ascend.rb
817
- - test/core/dir/test_multiglob.rb
818
- - test/core/dir/test_parent.rb
819
- - test/core/dir/test_recurse.rb
820
- - test/core/filetest/test_filetest.rb
821
- - test/core/class/test_cattr_writer.rb
822
- - test/core/class/test_cattr_reader.rb
823
- - test/core/class/test_descendents.rb
824
- - test/core/class/test_cattr_accessor.rb
825
- - test/core/class/test_to_proc.rb
826
- - test/core/class/test_cattr.rb
827
- - test/core/array/test_combination.rb
828
- - test/core/array/test_product.rb
829
- - test/core/array/test_delete.rb
830
- - test/core/array/test_stackable.rb
831
- - test/core/array/test_select.rb
832
- - test/core/array/test_only.rb
833
- - test/core/array/test_indexable.rb
834
- - test/core/array/test_index.rb
835
- - test/core/array/test_permutation.rb
836
- - test/core/array/test_pad.rb
837
- - test/core/array/test_merge.rb
838
- - test/core/array/test_rotate.rb
839
- - test/core/regexp/test_to_re.rb
840
- - test/core/regexp/test_arity.rb
841
- - test/core/matchdata/test_matchset.rb
842
- - test/core/matchdata/test_match.rb
843
- - test/core/exception/test_exception.rb
844
- - test/more/test_syncarray.rb
845
- - test/more/test_crypt.rb
846
- - test/more/test_infinity.rb
847
- - test/more/test_1stclassmethod.rb
848
- - test/more/test_typecast.rb
849
- - test/more/test_buildable.rb
850
- - test/more/test_instantise.rb
851
- - test/more/test_openobject.rb
852
- - test/more/test_equatable.rb
853
- - test/more/test_uri.rb
854
- - test/more/test_opencascade.rb
855
- - test/more/test_multipliers.rb
856
- - test/more/test_autoarray.rb
857
- - test/more/test_random.rb
726
+ - test/core/time/test_to_time.rb
727
+ - test/core/time/test_trunc.rb
728
+ - test/core/unboundmethod/test_arguments.rb
729
+ - test/core/unboundmethod/test_name.rb
730
+ - test/more/test_ansicode.rb
858
731
  - test/more/test_argvector.rb
859
- - test/more/test_filter.rb
860
- - test/more/test_boolean.rb
861
- - test/more/test_prototype.rb
862
- - test/more/test_elementwise.rb
863
- - test/more/test_class_extension.rb
864
- - test/more/test_thread.rb
865
- - test/more/test_dependency.rb
866
- - test/more/test_sparsearray.rb
867
- - test/more/test_binreadable.rb
732
+ - test/more/test_autoarray.rb
733
+ - test/more/test_basicobject.rb
734
+ - test/more/test_class_extend.rb
868
735
  - test/more/test_cloneable.rb
869
- - test/more/test_inheritor.rb
870
- - test/more/test_uninheritable.rb
871
- - test/more/test_timer.rb
872
- - test/more/test_recorder.rb
873
- - test/more/test_tuple.rb
874
- - test/more/test_classmethods.rb
875
- - test/more/test_association.rb
876
- - test/more/test_blank.rb
877
- - test/more/test_bbcode.rb
878
- - test/more/test_memoize.rb
879
- - test/more/test_interval.rb
880
- - test/more/test_getoptlong.rb
881
- - test/more/test_snapshot.rb
882
- - test/more/test_succ.rb
736
+ - test/more/test_continuation.rb
883
737
  - test/more/test_coroutine.rb
884
- - test/more/test_overload.rb
885
- - test/more/test_elementor.rb
886
- - test/more/test_enumerablepass.rb
887
- - test/more/test_ansicode.rb
738
+ - test/more/test_date.rb
888
739
  - test/more/test_dictionary.rb
889
- - test/more/test_lrucache.rb
890
- - test/more/test_xoxo.rb
740
+ - test/more/test_enumargs.rb
741
+ - test/more/test_equitable.rb
742
+ - test/more/test_getoptlong.rb
743
+ - test/more/test_inheritor.rb
744
+ - test/more/test_instance_function.rb
891
745
  - test/more/test_instantiable.rb
892
- - test/more/test_functor.rb
893
- - test/more/test_linkedlist.rb
894
- - test/more/test_partial.rb
746
+ - test/more/test_memoize.rb
895
747
  - test/more/test_methodspace.rb
896
- - test/more/test_synchash.rb
897
- - test/more/test_paramix.rb
748
+ - test/more/test_multipliers.rb
898
749
  - test/more/test_multiton.rb
899
- - test/more/test_advisable.rb
750
+ - test/more/test_opencascade.rb
751
+ - test/more/test_openobject.rb
752
+ - test/more/test_ostruct.rb
753
+ - test/more/test_partial.rb
754
+ - test/more/test_random.rb
755
+ - test/more/test_recorder.rb
756
+ - test/more/test_succ.rb
757
+ - test/more/test_thread.rb
758
+ - test/more/test_timer.rb
759
+ - test/more/test_tuple.rb
760
+ - test/more/test_uri.rb
761
+ - Rakefile
762
+ - HISTORY.rdoc
763
+ - NOTES
764
+ - TODO
765
+ - README.rdoc
766
+ - AUTHORS
767
+ - COPYING
768
+ - MANIFEST
900
769
  has_rdoc: true
901
770
  homepage: http://facets.rubyforge.org
902
771
  licenses: []
@@ -908,7 +777,6 @@ rdoc_options:
908
777
  - facets api
909
778
  require_paths:
910
779
  - lib/core
911
- - lib/lore
912
780
  - lib/more
913
781
  required_ruby_version: !ruby/object:Gem::Requirement
914
782
  requirements:
@@ -925,285 +793,266 @@ required_rubygems_version: !ruby/object:Gem::Requirement
925
793
  requirements: []
926
794
 
927
795
  rubyforge_project: facets
928
- rubygems_version: 1.3.4
796
+ rubygems_version: 1.3.5
929
797
  signing_key:
930
798
  specification_version: 3
931
- summary: Facets is the single largest collection of core extension methods
799
+ summary: Premium Core Extensions and Standard Additions
932
800
  test_files:
933
801
  - lib/core/facets/filetest.rb
934
- - test/test_facets.rb
935
- - test/lore/test_basicobject.rb
936
- - test/lore/test_continuation.rb
937
- - test/lore/test_ostruct.rb
938
- - test/lore/test_date.rb
939
- - test/core/test_metaid.rb
940
- - test/core/test_to_hash.rb
941
- - test/core/integer/test_of.rb
942
- - test/core/integer/test_factorial.rb
943
- - test/core/integer/test_even.rb
944
- - test/core/integer/test_ordinal.rb
945
- - test/core/integer/test_odd.rb
802
+ - lib/more/facets/module/attr_tester.rb
803
+ - test/core/array/test_combination.rb
804
+ - test/core/array/test_delete.rb
805
+ - test/core/array/test_index.rb
806
+ - test/core/array/test_indexable.rb
807
+ - test/core/array/test_merge.rb
808
+ - test/core/array/test_only.rb
809
+ - test/core/array/test_pad.rb
810
+ - test/core/array/test_permutation.rb
811
+ - test/core/array/test_product.rb
812
+ - test/core/array/test_rotate.rb
813
+ - test/core/array/test_select.rb
814
+ - test/core/array/test_stackable.rb
815
+ - test/core/binding/test_caller.rb
816
+ - test/core/binding/test_defined.rb
817
+ - test/core/binding/test_eval.rb
818
+ - test/core/binding/test_local_variables.rb
819
+ - test/core/binding/test_opvars.rb
820
+ - test/core/binding/test_self.rb
821
+ - test/core/class/test_cattr.rb
822
+ - test/core/class/test_cattr_accessor.rb
823
+ - test/core/class/test_cattr_reader.rb
824
+ - test/core/class/test_cattr_writer.rb
825
+ - test/core/class/test_descendents.rb
826
+ - test/core/class/test_to_proc.rb
827
+ - test/core/comparable/test_cap.rb
828
+ - test/core/comparable/test_clip.rb
829
+ - test/core/comparable/test_cmp.rb
830
+ - test/core/comparable/test_comparable.rb
831
+ - test/core/dir/test_ascend.rb
832
+ - test/core/dir/test_descend.rb
833
+ - test/core/dir/test_multiglob.rb
834
+ - test/core/dir/test_parent.rb
835
+ - test/core/dir/test_recurse.rb
836
+ - test/core/enumerable/test_cluster_by.rb
837
+ - test/core/enumerable/test_collect.rb
838
+ - test/core/enumerable/test_commonality.rb
839
+ - test/core/enumerable/test_count.rb
840
+ - test/core/enumerable/test_defer.rb
841
+ - test/core/enumerable/test_each_by.rb
842
+ - test/core/enumerable/test_entropy.rb
843
+ - test/core/enumerable/test_every.rb
844
+ - test/core/enumerable/test_ewise.rb
845
+ - test/core/enumerable/test_frequency.rb
846
+ - test/core/enumerable/test_group_by.rb
847
+ - test/core/enumerable/test_inject.rb
848
+ - test/core/enumerable/test_mash.rb
849
+ - test/core/enumerable/test_modulate.rb
850
+ - test/core/enumerable/test_none.rb
851
+ - test/core/enumerable/test_occur.rb
852
+ - test/core/enumerable/test_one.rb
853
+ - test/core/enumerable/test_per.rb
854
+ - test/core/enumerable/test_probability.rb
855
+ - test/core/enumerable/test_split.rb
856
+ - test/core/enumerable/test_take.rb
857
+ - test/core/enumerable/test_uniq_by.rb
858
+ - test/core/exception/test_exception.rb
859
+ - test/core/file/test_create.rb
860
+ - test/core/file/test_file.rb
861
+ - test/core/file/test_null.rb
862
+ - test/core/file/test_rewrite.rb
863
+ - test/core/file/test_split_all.rb
864
+ - test/core/file/test_write.rb
865
+ - test/core/file/test_writelines.rb
866
+ - test/core/filetest/test_filetest.rb
867
+ - test/core/hash/test_alias.rb
868
+ - test/core/hash/test_at.rb
869
+ - test/core/hash/test_autonew.rb
870
+ - test/core/hash/test_collate.rb
871
+ - test/core/hash/test_dearray_values.rb
872
+ - test/core/hash/test_delete.rb
873
+ - test/core/hash/test_insert.rb
874
+ - test/core/hash/test_inverse.rb
875
+ - test/core/hash/test_keys.rb
876
+ - test/core/hash/test_mash.rb
877
+ - test/core/hash/test_merge.rb
878
+ - test/core/hash/test_op.rb
879
+ - test/core/hash/test_op_add.rb
880
+ - test/core/hash/test_op_and.rb
881
+ - test/core/hash/test_op_mul.rb
882
+ - test/core/hash/test_op_or.rb
883
+ - test/core/hash/test_op_push.rb
884
+ - test/core/hash/test_op_sub.rb
885
+ - test/core/hash/test_rekey.rb
886
+ - test/core/hash/test_replace_each.rb
887
+ - test/core/hash/test_select.rb
888
+ - test/core/hash/test_slice.rb
889
+ - test/core/hash/test_stringify_keys.rb
890
+ - test/core/hash/test_swap.rb
891
+ - test/core/hash/test_symbolize_keys.rb
892
+ - test/core/hash/test_traverse.rb
893
+ - test/core/hash/test_update_each.rb
894
+ - test/core/hash/test_update_keys.rb
895
+ - test/core/hash/test_update_values.rb
896
+ - test/core/hash/test_weave.rb
897
+ - test/core/hash/test_zipnew.rb
946
898
  - test/core/integer/test_bitmask.rb
899
+ - test/core/integer/test_even.rb
900
+ - test/core/integer/test_factorial.rb
947
901
  - test/core/integer/test_length.rb
948
902
  - test/core/integer/test_multiple.rb
949
- - test/core/symbol/test_plain.rb
950
- - test/core/symbol/test_generate.rb
951
- - test/core/symbol/test_setter.rb
952
- - test/core/symbol/test_chomp.rb
953
- - test/core/symbol/test_not.rb
954
- - test/core/symbol/test_succ.rb
955
- - test/core/symbol/test_query.rb
956
- - test/core/symbol/test_to_proc.rb
957
- - test/core/unboundmethod/test_name.rb
958
- - test/core/unboundmethod/test_arguments.rb
903
+ - test/core/integer/test_odd.rb
904
+ - test/core/integer/test_of.rb
905
+ - test/core/integer/test_ordinal.rb
906
+ - test/core/kernel/test_as.rb
907
+ - test/core/kernel/test_attr_singleton.rb
908
+ - test/core/kernel/test_callstack.rb
909
+ - test/core/kernel/test_constant.rb
910
+ - test/core/kernel/test_deepcopy.rb
911
+ - test/core/kernel/test_here.rb
912
+ - test/core/kernel/test_in.rb
913
+ - test/core/kernel/test_instance_assign.rb
914
+ - test/core/kernel/test_instance_class.rb
915
+ - test/core/kernel/test_method.rb
916
+ - test/core/kernel/test_not_nil.rb
917
+ - test/core/kernel/test_object_class.rb
918
+ - test/core/kernel/test_object_hexid.rb
919
+ - test/core/kernel/test_populate.rb
920
+ - test/core/kernel/test_resc.rb
921
+ - test/core/kernel/test_returning.rb
922
+ - test/core/kernel/test_silence.rb
923
+ - test/core/kernel/test_tap.rb
924
+ - test/core/kernel/test_val.rb
925
+ - test/core/matchdata/test_match.rb
926
+ - test/core/matchdata/test_matchset.rb
927
+ - test/core/module/test_abstract.rb
928
+ - test/core/module/test_alias_accessor.rb
929
+ - test/core/module/test_alias_method_chain.rb
930
+ - test/core/module/test_alias_module_function.rb
931
+ - test/core/module/test_ancestor.rb
932
+ - test/core/module/test_basename.rb
933
+ - test/core/module/test_can.rb
934
+ - test/core/module/test_class.rb
935
+ - test/core/module/test_conflict.rb
936
+ - test/core/module/test_integrate.rb
937
+ - test/core/module/test_is.rb
938
+ - test/core/module/test_methodize.rb
939
+ - test/core/module/test_modspace.rb
940
+ - test/core/module/test_nesting.rb
941
+ - test/core/module/test_op.rb
942
+ - test/core/module/test_pathize.rb
943
+ - test/core/module/test_prepend.rb
944
+ - test/core/module/test_redefine_method.rb
945
+ - test/core/module/test_redirect_method.rb
946
+ - test/core/module/test_rename_method.rb
947
+ - test/core/module/test_revise.rb
948
+ - test/core/module/test_spacename.rb
949
+ - test/core/module/test_wrap_method.rb
959
950
  - test/core/nilclass/test_to_f.rb
951
+ - test/core/numeric/test_approx.rb
960
952
  - test/core/numeric/test_distance.rb
961
953
  - test/core/numeric/test_round.rb
962
- - test/core/numeric/test_approx.rb
963
- - test/core/binding/test_defined.rb
964
- - test/core/binding/test_self.rb
965
- - test/core/binding/test_eval.rb
966
- - test/core/binding/test_caller.rb
967
- - test/core/binding/test_local_variables.rb
968
- - test/core/binding/test_opvars.rb
969
954
  - test/core/proc/test_bind.rb
970
- - test/core/proc/test_to_method.rb
971
- - test/core/proc/test_curry.rb
972
955
  - test/core/proc/test_compose.rb
973
- - test/core/range/test_overlap.rb
956
+ - test/core/proc/test_curry.rb
957
+ - test/core/proc/test_to_method.rb
974
958
  - test/core/range/test_combine.rb
959
+ - test/core/range/test_overlap.rb
975
960
  - test/core/range/test_to_r.rb
976
961
  - test/core/range/test_within.rb
977
- - test/core/file/test_write.rb
978
- - test/core/file/test_writelines.rb
979
- - test/core/file/test_null.rb
980
- - test/core/file/test_split_all.rb
981
- - test/core/file/test_file.rb
982
- - test/core/file/test_create.rb
983
- - test/core/file/test_rewrite.rb
984
- - test/core/hash/test_collate.rb
985
- - test/core/hash/test_op_add.rb
986
- - test/core/hash/test_keys.rb
987
- - test/core/hash/test_inverse.rb
988
- - test/core/hash/test_stringify_keys.rb
989
- - test/core/hash/test_replace_each.rb
990
- - test/core/hash/test_delete.rb
991
- - test/core/hash/test_slice.rb
992
- - test/core/hash/test_op_mul.rb
993
- - test/core/hash/test_symbolize_keys.rb
994
- - test/core/hash/test_weave.rb
995
- - test/core/hash/test_update_keys.rb
996
- - test/core/hash/test_alias.rb
997
- - test/core/hash/test_swap.rb
998
- - test/core/hash/test_op_and.rb
999
- - test/core/hash/test_at.rb
1000
- - test/core/hash/test_op.rb
1001
- - test/core/hash/test_select.rb
1002
- - test/core/hash/test_op_push.rb
1003
- - test/core/hash/test_op_or.rb
1004
- - test/core/hash/test_update_each.rb
1005
- - test/core/hash/test_update_values.rb
1006
- - test/core/hash/test_autonew.rb
1007
- - test/core/hash/test_insert.rb
1008
- - test/core/hash/test_dearray_values.rb
1009
- - test/core/hash/test_traverse.rb
1010
- - test/core/hash/test_zipnew.rb
1011
- - test/core/hash/test_mash.rb
1012
- - test/core/hash/test_merge.rb
1013
- - test/core/hash/test_op_sub.rb
1014
- - test/core/hash/test_rekey.rb
1015
- - test/core/kernel/test_val.rb
1016
- - test/core/kernel/test_not_nil.rb
1017
- - test/core/kernel/test_resc.rb
1018
- - test/core/kernel/test_attr_singleton.rb
1019
- - test/core/kernel/test_constant.rb
1020
- - test/core/kernel/test_populate.rb
1021
- - test/core/kernel/test_callstack.rb
1022
- - test/core/kernel/test_instance_class.rb
1023
- - test/core/kernel/test_silence.rb
1024
- - test/core/kernel/test_object_hexid.rb
1025
- - test/core/kernel/test_in.rb
1026
- - test/core/kernel/test_instance_assign.rb
1027
- - test/core/kernel/test_object_class.rb
1028
- - test/core/kernel/test_tap.rb
1029
- - test/core/kernel/test_returning.rb
1030
- - test/core/kernel/test_here.rb
1031
- - test/core/kernel/test_deepcopy.rb
1032
- - test/core/kernel/test_as.rb
1033
- - test/core/comparable/test_cmp.rb
1034
- - test/core/comparable/test_comparable.rb
1035
- - test/core/comparable/test_clip.rb
1036
- - test/core/comparable/test_cap.rb
1037
- - test/core/enumerable/test_uniq_by.rb
1038
- - test/core/enumerable/test_none.rb
1039
- - test/core/enumerable/test_frequency.rb
1040
- - test/core/enumerable/test_occur.rb
1041
- - test/core/enumerable/test_inject.rb
1042
- - test/core/enumerable/test_entropy.rb
1043
- - test/core/enumerable/test_modulate.rb
1044
- - test/core/enumerable/test_probability.rb
1045
- - test/core/enumerable/test_split.rb
1046
- - test/core/enumerable/test_cluster_by.rb
1047
- - test/core/enumerable/test_group_by.rb
1048
- - test/core/enumerable/test_commonality.rb
1049
- - test/core/enumerable/test_count.rb
1050
- - test/core/enumerable/test_each_by.rb
1051
- - test/core/enumerable/test_collect.rb
1052
- - test/core/enumerable/test_one.rb
1053
- - test/core/enumerable/test_mash.rb
1054
- - test/core/string/test_subtract.rb
1055
- - test/core/string/test_natcmp.rb
1056
- - test/core/string/test_margin.rb
1057
- - test/core/string/test_words.rb
962
+ - test/core/regexp/test_arity.rb
963
+ - test/core/regexp/test_to_re.rb
964
+ - test/core/string/test_align.rb
965
+ - test/core/string/test_bracket.rb
1058
966
  - test/core/string/test_bytes.rb
1059
- - test/core/string/test_each_char.rb
1060
- - test/core/string/test_tabto.rb
1061
- - test/core/string/test_outdent.rb
1062
967
  - test/core/string/test_camelcase.rb
1063
- - test/core/string/test_nchar.rb
1064
- - test/core/string/test_cleave.rb
1065
968
  - test/core/string/test_capitalized.rb
1066
- - test/core/string/test_titlecase.rb
969
+ - test/core/string/test_chars.rb
970
+ - test/core/string/test_cleave.rb
971
+ - test/core/string/test_divide.rb
972
+ - test/core/string/test_each_char.rb
973
+ - test/core/string/test_each_word.rb
974
+ - test/core/string/test_end_with.rb
1067
975
  - test/core/string/test_fold.rb
1068
- - test/core/string/test_line_wrap.rb
976
+ - test/core/string/test_indent.rb
977
+ - test/core/string/test_interpolate.rb
1069
978
  - test/core/string/test_lchomp.rb
1070
- - test/core/string/test_to_re.rb
1071
- - test/core/string/test_range.rb
1072
- - test/core/string/test_chars.rb
1073
- - test/core/string/test_align.rb
979
+ - test/core/string/test_line_wrap.rb
1074
980
  - test/core/string/test_lines.rb
1075
- - test/core/string/test_word_wrap.rb
981
+ - test/core/string/test_margin.rb
1076
982
  - test/core/string/test_methodize.rb
1077
- - test/core/string/test_xor.rb
1078
- - test/core/string/test_divide.rb
1079
- - test/core/string/test_snakecase.rb
983
+ - test/core/string/test_modulize.rb
984
+ - test/core/string/test_mscan.rb
985
+ - test/core/string/test_natcmp.rb
986
+ - test/core/string/test_nchar.rb
987
+ - test/core/string/test_op_sub.rb
988
+ - test/core/string/test_outdent.rb
989
+ - test/core/string/test_pathize.rb
990
+ - test/core/string/test_range.rb
991
+ - test/core/string/test_rewrite.rb
1080
992
  - test/core/string/test_shatter.rb
993
+ - test/core/string/test_snakecase.rb
1081
994
  - test/core/string/test_splice.rb
1082
- - test/core/string/test_end_with.rb
1083
- - test/core/string/test_interpolate.rb
1084
995
  - test/core/string/test_start_with.rb
996
+ - test/core/string/test_subtract.rb
1085
997
  - test/core/string/test_tab.rb
1086
- - test/core/string/test_indent.rb
1087
- - test/core/string/test_rewrite.rb
1088
- - test/core/string/test_modulize.rb
998
+ - test/core/string/test_tabto.rb
999
+ - test/core/string/test_titlecase.rb
1000
+ - test/core/string/test_to_re.rb
1001
+ - test/core/string/test_unfold.rb
1089
1002
  - test/core/string/test_variablize.rb
1090
- - test/core/string/test_op_sub.rb
1091
- - test/core/string/test_pathize.rb
1092
- - test/core/string/test_mscan.rb
1093
- - test/core/string/test_each_word.rb
1094
- - test/core/string/test_bracket.rb
1095
- - test/core/module/test_wrap_method.rb
1096
- - test/core/module/test_integrate.rb
1097
- - test/core/module/test_spacename.rb
1098
- - test/core/module/test_basename.rb
1099
- - test/core/module/test_nesting.rb
1100
- - test/core/module/test_class.rb
1101
- - test/core/module/test_alias_module_function.rb
1102
- - test/core/module/test_ancestor.rb
1103
- - test/core/module/test_modspace.rb
1104
- - test/core/module/test_rename_method.rb
1105
- - test/core/module/test_op.rb
1106
- - test/core/module/test_redirect_method.rb
1107
- - test/core/module/test_can.rb
1108
- - test/core/module/test_methodize.rb
1109
- - test/core/module/test_alias_method_chain.rb
1110
- - test/core/module/test_alias_accessor.rb
1111
- - test/core/module/test_revise.rb
1112
- - test/core/module/test_is.rb
1113
- - test/core/module/test_abstract.rb
1114
- - test/core/module/test_redefine_method.rb
1115
- - test/core/module/test_conflict.rb
1116
- - test/core/module/test_prepend.rb
1117
- - test/core/module/test_pathize.rb
1118
- - test/core/time/test_to_time.rb
1003
+ - test/core/string/test_word_wrap.rb
1004
+ - test/core/string/test_words.rb
1005
+ - test/core/string/test_xor.rb
1006
+ - test/core/symbol/test_chomp.rb
1007
+ - test/core/symbol/test_generate.rb
1008
+ - test/core/symbol/test_not.rb
1009
+ - test/core/symbol/test_plain.rb
1010
+ - test/core/symbol/test_query.rb
1011
+ - test/core/symbol/test_setter.rb
1012
+ - test/core/symbol/test_succ.rb
1013
+ - test/core/symbol/test_to_proc.rb
1014
+ - test/core/test_blank.rb
1015
+ - test/core/test_boolean.rb
1016
+ - test/core/test_functor.rb
1017
+ - test/core/test_metaid.rb
1018
+ - test/core/test_to_hash.rb
1019
+ - test/core/time/test_change.rb
1020
+ - test/core/time/test_elapse.rb
1119
1021
  - test/core/time/test_hence.rb
1120
- - test/core/time/test_trunc.rb
1121
1022
  - test/core/time/test_round.rb
1122
1023
  - test/core/time/test_stamp.rb
1123
- - test/core/time/test_change.rb
1124
- - test/core/time/test_elapse.rb
1125
- - test/core/dir/test_descend.rb
1126
- - test/core/dir/test_ascend.rb
1127
- - test/core/dir/test_multiglob.rb
1128
- - test/core/dir/test_parent.rb
1129
- - test/core/dir/test_recurse.rb
1130
- - test/core/filetest/test_filetest.rb
1131
- - test/core/class/test_cattr_writer.rb
1132
- - test/core/class/test_cattr_reader.rb
1133
- - test/core/class/test_descendents.rb
1134
- - test/core/class/test_cattr_accessor.rb
1135
- - test/core/class/test_to_proc.rb
1136
- - test/core/class/test_cattr.rb
1137
- - test/core/array/test_combination.rb
1138
- - test/core/array/test_product.rb
1139
- - test/core/array/test_delete.rb
1140
- - test/core/array/test_stackable.rb
1141
- - test/core/array/test_select.rb
1142
- - test/core/array/test_only.rb
1143
- - test/core/array/test_indexable.rb
1144
- - test/core/array/test_index.rb
1145
- - test/core/array/test_permutation.rb
1146
- - test/core/array/test_pad.rb
1147
- - test/core/array/test_merge.rb
1148
- - test/core/array/test_rotate.rb
1149
- - test/core/regexp/test_to_re.rb
1150
- - test/core/regexp/test_arity.rb
1151
- - test/core/matchdata/test_matchset.rb
1152
- - test/core/matchdata/test_match.rb
1153
- - test/core/exception/test_exception.rb
1154
- - test/more/test_syncarray.rb
1155
- - test/more/test_crypt.rb
1156
- - test/more/test_infinity.rb
1157
- - test/more/test_1stclassmethod.rb
1158
- - test/more/test_typecast.rb
1159
- - test/more/test_buildable.rb
1160
- - test/more/test_instantise.rb
1161
- - test/more/test_openobject.rb
1162
- - test/more/test_equatable.rb
1163
- - test/more/test_uri.rb
1164
- - test/more/test_opencascade.rb
1165
- - test/more/test_multipliers.rb
1166
- - test/more/test_autoarray.rb
1167
- - test/more/test_random.rb
1024
+ - test/core/time/test_to_time.rb
1025
+ - test/core/time/test_trunc.rb
1026
+ - test/core/unboundmethod/test_arguments.rb
1027
+ - test/core/unboundmethod/test_name.rb
1028
+ - test/more/test_ansicode.rb
1168
1029
  - test/more/test_argvector.rb
1169
- - test/more/test_filter.rb
1170
- - test/more/test_boolean.rb
1171
- - test/more/test_prototype.rb
1172
- - test/more/test_elementwise.rb
1173
- - test/more/test_class_extension.rb
1174
- - test/more/test_thread.rb
1175
- - test/more/test_dependency.rb
1176
- - test/more/test_sparsearray.rb
1177
- - test/more/test_binreadable.rb
1030
+ - test/more/test_autoarray.rb
1031
+ - test/more/test_basicobject.rb
1032
+ - test/more/test_class_extend.rb
1178
1033
  - test/more/test_cloneable.rb
1179
- - test/more/test_inheritor.rb
1180
- - test/more/test_uninheritable.rb
1181
- - test/more/test_timer.rb
1182
- - test/more/test_recorder.rb
1183
- - test/more/test_tuple.rb
1184
- - test/more/test_classmethods.rb
1185
- - test/more/test_association.rb
1186
- - test/more/test_blank.rb
1187
- - test/more/test_bbcode.rb
1188
- - test/more/test_memoize.rb
1189
- - test/more/test_interval.rb
1190
- - test/more/test_getoptlong.rb
1191
- - test/more/test_snapshot.rb
1192
- - test/more/test_succ.rb
1034
+ - test/more/test_continuation.rb
1193
1035
  - test/more/test_coroutine.rb
1194
- - test/more/test_overload.rb
1195
- - test/more/test_elementor.rb
1196
- - test/more/test_enumerablepass.rb
1197
- - test/more/test_ansicode.rb
1036
+ - test/more/test_date.rb
1198
1037
  - test/more/test_dictionary.rb
1199
- - test/more/test_lrucache.rb
1200
- - test/more/test_xoxo.rb
1038
+ - test/more/test_enumargs.rb
1039
+ - test/more/test_equitable.rb
1040
+ - test/more/test_getoptlong.rb
1041
+ - test/more/test_inheritor.rb
1042
+ - test/more/test_instance_function.rb
1201
1043
  - test/more/test_instantiable.rb
1202
- - test/more/test_functor.rb
1203
- - test/more/test_linkedlist.rb
1204
- - test/more/test_partial.rb
1044
+ - test/more/test_memoize.rb
1205
1045
  - test/more/test_methodspace.rb
1206
- - test/more/test_synchash.rb
1207
- - test/more/test_paramix.rb
1046
+ - test/more/test_multipliers.rb
1208
1047
  - test/more/test_multiton.rb
1209
- - test/more/test_advisable.rb
1048
+ - test/more/test_opencascade.rb
1049
+ - test/more/test_openobject.rb
1050
+ - test/more/test_ostruct.rb
1051
+ - test/more/test_partial.rb
1052
+ - test/more/test_random.rb
1053
+ - test/more/test_recorder.rb
1054
+ - test/more/test_succ.rb
1055
+ - test/more/test_thread.rb
1056
+ - test/more/test_timer.rb
1057
+ - test/more/test_tuple.rb
1058
+ - test/more/test_uri.rb